Class AddonSummary
The properties that define an addon summary.
Inherited Members
Namespace: Oci.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.dll
Syntax
public class AddonSummary
Properties
AddonError
Declaration
[JsonProperty(PropertyName = "addonError")]
public AddonError AddonError { get; set; }
Property Value
Type | Description |
---|---|
AddonError | The error info of the addon. |
CurrentInstalledVersion
Declaration
[JsonProperty(PropertyName = "currentInstalledVersion")]
public string CurrentInstalledVersion { get; set; }
Property Value
Type | Description |
---|---|
string | current installed version of the addon |
LifecycleState
Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AddonLifecycleState? LifecycleState { get; set; }
Property Value
Type | Description |
---|---|
AddonLifecycleState? | The state of the addon. |
Remarks
Required
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the addon. |
Remarks
Required
TimeCreated
Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The time the cluster was created. |
Version
Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type | Description |
---|---|
string | selected addon version, or null indicates autoUpdate |