Show / Hide Table of Contents

Class AddonVersions

The properties that define a work request resource.

Inheritance
object
AddonVersions
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 AddonVersions

Properties

Configurations

Declaration
[JsonProperty(PropertyName = "configurations")]
public List<AddonVersionConfiguration> Configurations { get; set; }
Property Value
Type Description
List<AddonVersionConfiguration>

Addon version configuration details.

Description

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

Information about the addon version.

KubernetesVersionFilters

Declaration
[JsonProperty(PropertyName = "kubernetesVersionFilters")]
public KubernetesVersionsFilters KubernetesVersionFilters { get; set; }
Property Value
Type Description
KubernetesVersionsFilters

The range of kubernetes versions an addon can be configured.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AddonVersions.StatusEnum? Status { get; set; }
Property Value
Type Description
AddonVersions.StatusEnum?

Current state of the addon, only active will be visible to customer, visibility of versions in other status will be filtered based on limits property.

VersionNumber

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

Version number, need be comparable within an addon.

In this article
Back to top