AddOnOptions¶
- 
class oci.container_engine.models.AddOnOptions(**kwargs)¶
- Bases: - object- The properties that define options for supported add-ons. - Methods - __init__(**kwargs)- Initializes a new AddOnOptions object with values from keyword arguments. - Attributes - is_kubernetes_dashboard_enabled- Gets the is_kubernetes_dashboard_enabled of this AddOnOptions. - is_tiller_enabled- Gets the is_tiller_enabled of this AddOnOptions. - 
__init__(**kwargs)¶
- Initializes a new AddOnOptions object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - is_kubernetes_dashboard_enabled (bool) – The value to assign to the is_kubernetes_dashboard_enabled property of this AddOnOptions.
- is_tiller_enabled (bool) – The value to assign to the is_tiller_enabled property of this AddOnOptions.
 
 - 
is_kubernetes_dashboard_enabled¶
- Gets the is_kubernetes_dashboard_enabled of this AddOnOptions. Whether or not to enable the Kubernetes Dashboard add-on. - Returns: - The is_kubernetes_dashboard_enabled of this AddOnOptions. - Return type: - bool 
 - 
is_tiller_enabled¶
- Gets the is_tiller_enabled of this AddOnOptions. Whether or not to enable the Tiller add-on. - Returns: - The is_tiller_enabled of this AddOnOptions. - Return type: - bool 
 
-