InstallAddonDetails¶
-
class
oci.container_engine.models.
InstallAddonDetails
(**kwargs)¶ Bases:
object
The properties that define to install/enable addon on a cluster
Methods
__init__
(**kwargs)Initializes a new InstallAddonDetails object with values from keyword arguments. Attributes
addon_name
[Required] Gets the addon_name of this InstallAddonDetails. configurations
Gets the configurations of this InstallAddonDetails. is_override_existing
Gets the is_override_existing of this InstallAddonDetails. version
Gets the version of this InstallAddonDetails. -
__init__
(**kwargs)¶ Initializes a new InstallAddonDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - addon_name (str) – The value to assign to the addon_name property of this InstallAddonDetails.
- version (str) – The value to assign to the version property of this InstallAddonDetails.
- configurations (list[oci.container_engine.models.AddonConfiguration]) – The value to assign to the configurations property of this InstallAddonDetails.
- is_override_existing (bool) – The value to assign to the is_override_existing property of this InstallAddonDetails.
-
addon_name
¶ [Required] Gets the addon_name of this InstallAddonDetails. The name of the addon.
Returns: The addon_name of this InstallAddonDetails. Return type: str
-
configurations
¶ Gets the configurations of this InstallAddonDetails. Addon configuration details.
Returns: The configurations of this InstallAddonDetails. Return type: list[oci.container_engine.models.AddonConfiguration]
-
is_override_existing
¶ Gets the is_override_existing of this InstallAddonDetails. 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.
Returns: The is_override_existing of this InstallAddonDetails. Return type: bool
-
version
¶ Gets the version of this InstallAddonDetails. The version of addon to be installed.
Returns: The version of this InstallAddonDetails. Return type: str
-