Class AzureControlPlane (0.1.0)

AzureControlPlane(mapping=None, *, ignore_unknown_fields=False, **kwargs)

AzureControlPlane represents the control plane configurations.

Attributes

NameDescription
version str
Required. The Kubernetes version to run on control plane replicas (e.g. ``1.19.10-gke.1000``). You can list all supported versions on a given Google Cloud region by calling GetAzureServerConfig.
subnet_id str
Optional. The ARM ID of the default subnet for the control plane. The control plane VMs are deployed in this subnet, unless ``AzureControlPlane.replica_placements`` is specified. This subnet will also be used as default for ``AzureControlPlane.endpoint_subnet_id`` if ``AzureControlPlane.endpoint_subnet_id`` is not specified. Similarly it will be used as default for ``AzureClusterNetworking.service_load_balancer_subnet_id``. Example: ``/subscriptions/
vm_size str
Optional. The Azure VM size name. Example: ``Standard_DS2_v2``. For available VM sizes, see https://docs.microsoft.com/en-us/azure/virtual-machines/vm-naming-conventions. When unspecified, it defaults to ``Standard_DS2_v2``.
ssh_config google.cloud.gke_multicloud_v1.types.AzureSshConfig
Required. SSH configuration for how to access the underlying control plane machines.
root_volume google.cloud.gke_multicloud_v1.types.AzureDiskTemplate
Optional. Configuration related to the root volume provisioned for each control plane replica. When unspecified, it defaults to 32-GiB Azure Disk.
main_volume google.cloud.gke_multicloud_v1.types.AzureDiskTemplate
Optional. Configuration related to the main volume provisioned for each control plane replica. The main volume is in charge of storing all of the cluster's etcd state. When unspecified, it defaults to a 8-GiB Azure Disk.
database_encryption google.cloud.gke_multicloud_v1.types.AzureDatabaseEncryption
Optional. Configuration related to application-layer secrets encryption.
proxy_config google.cloud.gke_multicloud_v1.types.AzureProxyConfig
Optional. Proxy configuration for outbound HTTP(S) traffic.
config_encryption google.cloud.gke_multicloud_v1.types.AzureConfigEncryption
Optional. Configuration related to vm config encryption.
tags Mapping[str, str]
Optional. A set of tags to apply to all underlying control plane Azure resources.
replica_placements Sequence[google.cloud.gke_multicloud_v1.types.ReplicaPlacement]
Optional. Configuration for where to place the control plane replicas. Up to three replica placement instances can be specified. If replica_placements is set, the replica placement instances will be applied to the three control plane replicas as evenly as possible.
endpoint_subnet_id str
Optional. The ARM ID of the subnet where the control plane load balancer is deployed. When unspecified, it defaults to AzureControlPlane.subnet_id. Example: "/subscriptions/d00494d6-6f3c-4280-bbb2-899e163d1d30/resourceGroups/anthos_cluster_gkeust4/providers/Microsoft.Network/virtualNetworks/gke-vnet-gkeust4/subnets/subnetid123".

Inheritance

builtins.object > proto.message.Message > AzureControlPlane

Classes

TagsEntry

TagsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, `.Message`]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.