Show / Hide Table of Contents

Class AddonOptionSummary

The properties that define addon summary.

Inheritance
object
AddonOptionSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.dll
Syntax
public class AddonOptionSummary

Properties

AddonGroup

Declaration
[JsonProperty(PropertyName = "addonGroup")]
public string AddonGroup { get; set; }
Property Value
Type Description
string

Addon group info, a namespace concept that groups addons with similar functionalities.

AddonSchemaVersion

Declaration
[JsonProperty(PropertyName = "addonSchemaVersion")]
public string AddonSchemaVersion { get; set; }
Property Value
Type Description
string

Addon definition schema version to validate addon.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Description on the addon.

FreeformTags

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"}

IsEssential

Declaration
[Required(ErrorMessage = "IsEssential is required.")]
[JsonProperty(PropertyName = "isEssential")]
public bool? IsEssential { get; set; }
Property Value
Type Description
bool?

Is it an essential addon for cluster operation or not.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AddonOptionSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
AddonOptionSummary.LifecycleStateEnum?

The life cycle 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

Name of the addon and it would be unique.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the work request was created.

Versions

Declaration
[Required(ErrorMessage = "Versions is required.")]
[JsonProperty(PropertyName = "versions")]
public List<AddonVersions> Versions { get; set; }
Property Value
Type Description
List<AddonVersions>

The resources this work request affects.

Remarks

Required

In this article
Back to top