Show / Hide Table of Contents

Class InstallAddonDetails

The properties that define to install/enable addon on a cluster

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

Properties

AddonName

Declaration
[Required(ErrorMessage = "AddonName is required.")]
[JsonProperty(PropertyName = "addonName")]
public string AddonName { get; set; }
Property Value
Type Description
string

The name of the addon.

Remarks

Required

Configurations

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

Addon configuration details.

IsOverrideExisting

Declaration
[JsonProperty(PropertyName = "isOverrideExisting")]
public bool? IsOverrideExisting { get; set; }
Property Value
Type Description
bool?

Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.

Version

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

The version of addon to be installed.

In this article
Back to top