Class ApplicationSummary
Summary of an application.
Inheritance
ApplicationSummary
Assembly: OCI.DotNetSDK.Functions.dll
Syntax
public class ApplicationSummary
Properties
CompartmentId
Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
| Type |
Description |
| string |
The OCID of the compartment that contains the application.
|
Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
DisplayName
Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
| Type |
Description |
| string |
The display name of the application. The display name is unique within the compartment containing the application.
|
Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
| Type |
Description |
| Dictionary<string, string> |
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
For more information, see Resource Tags.
Example: {"Department": "Finance"}
|
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
| Type |
Description |
| string |
The OCID of the application.
|
ImagePolicyConfig
Declaration
[JsonProperty(PropertyName = "imagePolicyConfig")]
public ImagePolicyConfig ImagePolicyConfig { get; set; }
Property Value
LifecycleState
Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Application.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Logging
Declaration
[JsonProperty(PropertyName = "logging")]
public ApplicationLoggingConfig Logging { get; set; }
Property Value
NetworkSecurityGroupIds
Declaration
[JsonProperty(PropertyName = "networkSecurityGroupIds")]
public List<string> NetworkSecurityGroupIds { get; set; }
Property Value
| Type |
Description |
| List<string> |
The OCIDs of the Network Security Groups to add the application to.
|
SecurityAttributes
Declaration
[JsonProperty(PropertyName = "securityAttributes")]
public Dictionary<string, Dictionary<string, object>> SecurityAttributes { get; set; }
Property Value
| Type |
Description |
| Dictionary<string, Dictionary<string, object>> |
Security attributes for this resource. Each key is predefined and scoped to a namespace.
For more information, see Resource Tags.
Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}
|
Shape
Declaration
[JsonProperty(PropertyName = "shape")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApplicationSummary.ShapeEnum? Shape { get; set; }
Property Value
| Type |
Description |
| ApplicationSummary.ShapeEnum? |
Valid values are GENERIC_X86, GENERIC_ARM and GENERIC_X86_ARM. Default is GENERIC_X86. Setting this to GENERIC_X86, will run the functions in the application on X86 processor architecture.
Setting this to GENERIC_ARM, will run the functions in the application on ARM processor architecture.
When set to GENERIC_X86_ARM, functions in the application are run on either X86 or ARM processor architecture.
Accepted values are:
GENERIC_X86, GENERIC_ARM, GENERIC_X86_ARM
|
SubnetIds
Declaration
[JsonProperty(PropertyName = "subnetIds")]
public List<string> SubnetIds { get; set; }
Property Value
| Type |
Description |
| List<string> |
The OCIDs of the subnets in which to run functions in the application.
|
TimeCreated
Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
| Type |
Description |
| DateTime? |
The time the application was created, expressed in RFC 3339
timestamp format.
Example: 2018-09-12T22:47:12.613Z
|
TimeUpdated
Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
| Type |
Description |
| DateTime? |
The time the application was updated, expressed in RFC 3339
timestamp format.
Example: 2018-09-12T22:47:12.613Z
|
TraceConfig
Declaration
[JsonProperty(PropertyName = "traceConfig")]
public ApplicationTraceConfig TraceConfig { get; set; }
Property Value