KubernetesClusterPropertiesForPut
Properties
Name | Type | Description | Notes |
---|---|---|---|
ApiSubnetAllowList | Pointer to []string | Access to the K8s API server is restricted to these CIDRs. Intra-cluster traffic is not affected by this restriction. If no AllowList is specified, access is not limited. If an IP is specified without a subnet mask, the default value is 32 for IPv4 and 128 for IPv6. | [optional] |
K8sVersion | Pointer to string | The Kubernetes version that the cluster is running. This limits which Kubernetes versions can run in a cluster's node pools. Also, not all Kubernetes versions are suitable upgrade targets for all earlier versions. | [optional] |
MaintenanceWindow | Pointer to KubernetesMaintenanceWindow | [optional] | |
Name | string | A Kubernetes cluster name. Valid Kubernetes cluster name must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between. | |
S3Buckets | Pointer to []S3Bucket | List of S3 buckets configured for K8s usage. At the moment, it contains only one S3 bucket that is used to store K8s API audit logs. | [optional] |
Methods
NewKubernetesClusterPropertiesForPut
func NewKubernetesClusterPropertiesForPut(name string, ) *KubernetesClusterPropertiesForPut
NewKubernetesClusterPropertiesForPut instantiates a new KubernetesClusterPropertiesForPut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
NewKubernetesClusterPropertiesForPutWithDefaults
func NewKubernetesClusterPropertiesForPutWithDefaults() *KubernetesClusterPropertiesForPut
NewKubernetesClusterPropertiesForPutWithDefaults instantiates a new KubernetesClusterPropertiesForPut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
GetApiSubnetAllowList
func (o *KubernetesClusterPropertiesForPut) GetApiSubnetAllowList() []string
GetApiSubnetAllowList returns the ApiSubnetAllowList field if non-nil, zero value otherwise.
GetApiSubnetAllowListOk
func (o *KubernetesClusterPropertiesForPut) GetApiSubnetAllowListOk() (*[]string, bool)
GetApiSubnetAllowListOk returns a tuple with the ApiSubnetAllowList field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetApiSubnetAllowList
func (o *KubernetesClusterPropertiesForPut) SetApiSubnetAllowList(v []string)
SetApiSubnetAllowList sets ApiSubnetAllowList field to given value.
HasApiSubnetAllowList
func (o *KubernetesClusterPropertiesForPut) HasApiSubnetAllowList() bool
HasApiSubnetAllowList returns a boolean if a field has been set.
GetK8sVersion
func (o *KubernetesClusterPropertiesForPut) GetK8sVersion() string
GetK8sVersion returns the K8sVersion field if non-nil, zero value otherwise.
GetK8sVersionOk
func (o *KubernetesClusterPropertiesForPut) GetK8sVersionOk() (*string, bool)
GetK8sVersionOk returns a tuple with the K8sVersion field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetK8sVersion
func (o *KubernetesClusterPropertiesForPut) SetK8sVersion(v string)
SetK8sVersion sets K8sVersion field to given value.
HasK8sVersion
func (o *KubernetesClusterPropertiesForPut) HasK8sVersion() bool
HasK8sVersion returns a boolean if a field has been set.
GetMaintenanceWindow
func (o *KubernetesClusterPropertiesForPut) GetMaintenanceWindow() KubernetesMaintenanceWindow
GetMaintenanceWindow returns the MaintenanceWindow field if non-nil, zero value otherwise.
GetMaintenanceWindowOk
func (o *KubernetesClusterPropertiesForPut) GetMaintenanceWindowOk() (*KubernetesMaintenanceWindow, bool)
GetMaintenanceWindowOk returns a tuple with the MaintenanceWindow field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetMaintenanceWindow
func (o *KubernetesClusterPropertiesForPut) SetMaintenanceWindow(v KubernetesMaintenanceWindow)
SetMaintenanceWindow sets MaintenanceWindow field to given value.
HasMaintenanceWindow
func (o *KubernetesClusterPropertiesForPut) HasMaintenanceWindow() bool
HasMaintenanceWindow returns a boolean if a field has been set.
GetName
func (o *KubernetesClusterPropertiesForPut) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
GetNameOk
func (o *KubernetesClusterPropertiesForPut) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetName
func (o *KubernetesClusterPropertiesForPut) SetName(v string)
SetName sets Name field to given value.
GetS3Buckets
func (o *KubernetesClusterPropertiesForPut) GetS3Buckets() []S3Bucket
GetS3Buckets returns the S3Buckets field if non-nil, zero value otherwise.
GetS3BucketsOk
func (o *KubernetesClusterPropertiesForPut) GetS3BucketsOk() (*[]S3Bucket, bool)
GetS3BucketsOk returns a tuple with the S3Buckets field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetS3Buckets
func (o *KubernetesClusterPropertiesForPut) SetS3Buckets(v []S3Bucket)
SetS3Buckets sets S3Buckets field to given value.
HasS3Buckets
func (o *KubernetesClusterPropertiesForPut) HasS3Buckets() bool
HasS3Buckets returns a boolean if a field has been set.
Last updated