As of January 1, 2020 this library no longer supports Python 2 on the latest released version. Library versions released prior to that date will continue to be available. For more information please visit Python 2 support on Google Cloud.

Source code for google.cloud.container_v1beta1.types.cluster_service

# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import proto  # type: ignore

from google.protobuf import timestamp_pb2  # type: ignore
from google.protobuf import wrappers_pb2  # type: ignore
from google.rpc import code_pb2  # type: ignore
from google.rpc import status_pb2  # type: ignore
from google.type import date_pb2  # type: ignore


__protobuf__ = proto.module(
    package="google.container.v1beta1",
    manifest={
        "PrivateIPv6GoogleAccess",
        "DatapathProvider",
        "UpgradeResourceType",
        "LinuxNodeConfig",
        "NodeKubeletConfig",
        "NodeConfig",
        "NodeNetworkConfig",
        "ShieldedInstanceConfig",
        "SandboxConfig",
        "EphemeralStorageConfig",
        "ReservationAffinity",
        "NodeTaint",
        "NodeTaints",
        "NodeLabels",
        "NetworkTags",
        "MasterAuth",
        "ClientCertificateConfig",
        "AddonsConfig",
        "HttpLoadBalancing",
        "HorizontalPodAutoscaling",
        "KubernetesDashboard",
        "NetworkPolicyConfig",
        "DnsCacheConfig",
        "KalmConfig",
        "ConfigConnectorConfig",
        "GcePersistentDiskCsiDriverConfig",
        "PrivateClusterMasterGlobalAccessConfig",
        "PrivateClusterConfig",
        "IstioConfig",
        "CloudRunConfig",
        "MasterAuthorizedNetworksConfig",
        "LegacyAbac",
        "NetworkPolicy",
        "IPAllocationPolicy",
        "BinaryAuthorization",
        "PodSecurityPolicyConfig",
        "AuthenticatorGroupsConfig",
        "ClusterTelemetry",
        "Cluster",
        "NodePoolDefaults",
        "NodeConfigDefaults",
        "ClusterUpdate",
        "Operation",
        "OperationProgress",
        "CreateClusterRequest",
        "GetClusterRequest",
        "UpdateClusterRequest",
        "UpdateNodePoolRequest",
        "SetNodePoolAutoscalingRequest",
        "SetLoggingServiceRequest",
        "SetMonitoringServiceRequest",
        "SetAddonsConfigRequest",
        "SetLocationsRequest",
        "UpdateMasterRequest",
        "SetMasterAuthRequest",
        "DeleteClusterRequest",
        "ListClustersRequest",
        "ListClustersResponse",
        "GetOperationRequest",
        "ListOperationsRequest",
        "CancelOperationRequest",
        "ListOperationsResponse",
        "GetServerConfigRequest",
        "ServerConfig",
        "WindowsVersions",
        "CreateNodePoolRequest",
        "DeleteNodePoolRequest",
        "ListNodePoolsRequest",
        "GetNodePoolRequest",
        "NodePool",
        "NodeManagement",
        "AutoUpgradeOptions",
        "MaintenancePolicy",
        "MaintenanceWindow",
        "TimeWindow",
        "RecurringTimeWindow",
        "DailyMaintenanceWindow",
        "SetNodePoolManagementRequest",
        "SetNodePoolSizeRequest",
        "RollbackNodePoolUpgradeRequest",
        "ListNodePoolsResponse",
        "ClusterAutoscaling",
        "AutoprovisioningNodePoolDefaults",
        "ResourceLimit",
        "NodePoolAutoscaling",
        "SetLabelsRequest",
        "SetLegacyAbacRequest",
        "StartIPRotationRequest",
        "CompleteIPRotationRequest",
        "AcceleratorConfig",
        "WorkloadMetadataConfig",
        "SetNetworkPolicyRequest",
        "SetMaintenancePolicyRequest",
        "ListLocationsRequest",
        "ListLocationsResponse",
        "Location",
        "StatusCondition",
        "NetworkConfig",
        "ServiceExternalIPsConfig",
        "ListUsableSubnetworksRequest",
        "ListUsableSubnetworksResponse",
        "UsableSubnetworkSecondaryRange",
        "UsableSubnetwork",
        "VerticalPodAutoscaling",
        "DefaultSnatStatus",
        "IntraNodeVisibilityConfig",
        "ILBSubsettingConfig",
        "DNSConfig",
        "MaxPodsConstraint",
        "WorkloadIdentityConfig",
        "WorkloadCertificates",
        "DatabaseEncryption",
        "ResourceUsageExportConfig",
        "ShieldedNodes",
        "VirtualNIC",
        "GetOpenIDConfigRequest",
        "GetOpenIDConfigResponse",
        "GetJSONWebKeysRequest",
        "Jwk",
        "GetJSONWebKeysResponse",
        "ReleaseChannel",
        "TpuConfig",
        "Master",
        "Autopilot",
        "NotificationConfig",
        "ConfidentialNodes",
        "UpgradeEvent",
        "UpgradeAvailableEvent",
        "IdentityServiceConfig",
        "LoggingConfig",
        "LoggingComponentConfig",
        "MonitoringConfig",
        "MonitoringComponentConfig",
    },
)


[docs]class PrivateIPv6GoogleAccess(proto.Enum): r"""PrivateIPv6GoogleAccess controls whether and how the pods can communicate with Google Services through gRPC over IPv6. """ PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED = 0 PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED = 1 PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE = 2 PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL = 3
[docs]class DatapathProvider(proto.Enum): r"""The datapath provider selects the implementation of the Kubernetes networking // model for service resolution and network policy enforcement. """ DATAPATH_PROVIDER_UNSPECIFIED = 0 LEGACY_DATAPATH = 1 ADVANCED_DATAPATH = 2
[docs]class UpgradeResourceType(proto.Enum): r"""UpgradeResourceType is the resource type that is upgrading. It is used in upgrade notifications. """ UPGRADE_RESOURCE_TYPE_UNSPECIFIED = 0 MASTER = 1 NODE_POOL = 2
[docs]class LinuxNodeConfig(proto.Message): r"""Parameters that can be configured on Linux nodes. Attributes: sysctls (Sequence[google.cloud.container_v1beta1.types.LinuxNodeConfig.SysctlsEntry]): The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse """ sysctls = proto.MapField(proto.STRING, proto.STRING, number=1,)
[docs]class NodeKubeletConfig(proto.Message): r"""Node kubelet configs. Attributes: cpu_manager_policy (str): Control the CPU management policy on the node. See https://kubernetes.io/docs/tasks/administer- cluster/cpu-management-policies/ The following values are allowed. - "none": the default, which represents the existing scheduling behavior. - "static": allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. The default value is 'none' if unspecified. cpu_cfs_quota (google.protobuf.wrappers_pb2.BoolValue): Enable CPU CFS quota enforcement for containers that specify CPU limits. This option is enabled by default which makes kubelet use CFS quota (https://www.kernel.org/doc/Documentation/scheduler/sched- bwc.txt) to enforce container CPU limits. Otherwise, CPU limits will not be enforced at all. Disable this option to mitigate CPU throttling problems while still having your pods to be in Guaranteed QoS class by specifying the CPU limits. The default value is 'true' if unspecified. cpu_cfs_quota_period (str): Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". The value must be a positive duration. """ cpu_manager_policy = proto.Field(proto.STRING, number=1,) cpu_cfs_quota = proto.Field( proto.MESSAGE, number=2, message=wrappers_pb2.BoolValue, ) cpu_cfs_quota_period = proto.Field(proto.STRING, number=3,)
[docs]class NodeConfig(proto.Message): r"""Parameters that describe the nodes in a cluster. Attributes: machine_type (str): The name of a Google Compute Engine `machine type <https://cloud.google.com/compute/docs/machine-types>`__. If unspecified, the default machine type is ``e2-medium``. disk_size_gb (int): Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB. If unspecified, the default disk size is 100GB. oauth_scopes (Sequence[str]): The set of Google API scopes to be made available on all of the node VMs under the "default" service account. The following scopes are recommended, but not required, and by default are not included: - ``https://www.googleapis.com/auth/compute`` is required for mounting persistent storage on your nodes. - ``https://www.googleapis.com/auth/devstorage.read_only`` is required for communicating with **gcr.io** (the `Google Container Registry <https://cloud.google.com/container-registry/>`__). If unspecified, no scopes are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case their required scopes will be added. service_account (str): The Google Cloud Platform Service Account to be used by the node VMs. Specify the email address of the Service Account; otherwise, if no Service Account is specified, the "default" service account is used. metadata (Sequence[google.cloud.container_v1beta1.types.NodeConfig.MetadataEntry]): The metadata key/value pairs assigned to instances in the cluster. Keys must conform to the regexp ``[a-zA-Z0-9-_]+`` and be less than 128 bytes in length. These are reflected as part of a URL in the metadata server. Additionally, to avoid ambiguity, keys must not conflict with any other metadata keys for the project or be one of the reserved keys: - "cluster-location" - "cluster-name" - "cluster-uid" - "configure-sh" - "containerd-configure-sh" - "enable-oslogin" - "gci-ensure-gke-docker" - "gci-metrics-enabled" - "gci-update-strategy" - "instance-template" - "kube-env" - "startup-script" - "user-data" - "disable-address-manager" - "windows-startup-script-ps1" - "common-psm1" - "k8s-node-setup-psm1" - "install-ssh-psm1" - "user-profile-psm1" Values are free-form strings, and only have meaning as interpreted by the image running in the instance. The only restriction placed on them is that each value's size must be less than or equal to 32 KB. The total size of all keys and values must be less than 512 KB. image_type (str): The image type to use for this node. Note that for a given image type, the latest version of it will be used. labels (Sequence[google.cloud.container_v1beta1.types.NodeConfig.LabelsEntry]): The map of Kubernetes labels (key/value pairs) to be applied to each node. These will added in addition to any default label(s) that Kubernetes may apply to the node. In case of conflict in label keys, the applied set may differ depending on the Kubernetes version -- it's best to assume the behavior is undefined and conflicts should be avoided. For more information, including usage and the valid values, see: https://kubernetes.io/docs/concepts/overview/working- with-objects/labels/ local_ssd_count (int): The number of local SSD disks to be attached to the node. The limit for this value is dependent upon the maximum number of disks available on a machine per zone. See: https://cloud.google.com/compute/docs/disks/local- ssd for more information. tags (Sequence[str]): The list of instance tags applied to all nodes. Tags are used to identify valid sources or targets for network firewalls and are specified by the client during cluster or node pool creation. Each tag within the list must comply with RFC1035. preemptible (bool): Whether the nodes are created as preemptible VM instances. See: https://cloud.google.com/compute/docs/instances/preemptible for more inforamtion about preemptible VM instances. accelerators (Sequence[google.cloud.container_v1beta1.types.AcceleratorConfig]): A list of hardware accelerators to be attached to each node. See https://cloud.google.com/compute/docs/gpus for more information about support for GPUs. sandbox_config (google.cloud.container_v1beta1.types.SandboxConfig): Sandbox configuration for this node. node_group (str): Setting this field will assign instances of this pool to run on the specified node group. This is useful for running workloads on `sole tenant nodes <https://cloud.google.com/compute/docs/nodes/sole-tenant-nodes>`__. reservation_affinity (google.cloud.container_v1beta1.types.ReservationAffinity): The optional reservation affinity. Setting this field will apply the specified `Zonal Compute Reservation <https://cloud.google.com/compute/docs/instances/reserving-zonal-resources>`__ to this node pool. disk_type (str): Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd' or 'pd-balanced') If unspecified, the default disk type is 'pd- standard' min_cpu_platform (str): Minimum CPU platform to be used by this instance. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as ``minCpuPlatform: "Intel Haswell"`` or ``minCpuPlatform: "Intel Sandy Bridge"``. For more information, read `how to specify min CPU platform <https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform>`__ workload_metadata_config (google.cloud.container_v1beta1.types.WorkloadMetadataConfig): The workload metadata configuration for this node. taints (Sequence[google.cloud.container_v1beta1.types.NodeTaint]): List of kubernetes taints to be applied to each node. For more information, including usage and the valid values, see: https://kubernetes.io/docs/concepts/configuration/taint- and-toleration/ boot_disk_kms_key (str): The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption shielded_instance_config (google.cloud.container_v1beta1.types.ShieldedInstanceConfig): Shielded Instance options. linux_node_config (google.cloud.container_v1beta1.types.LinuxNodeConfig): Parameters that can be configured on Linux nodes. kubelet_config (google.cloud.container_v1beta1.types.NodeKubeletConfig): Node kubelet configs. ephemeral_storage_config (google.cloud.container_v1beta1.types.EphemeralStorageConfig): Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. gvnic (google.cloud.container_v1beta1.types.VirtualNIC): Enable or disable gvnic on the node pool. """ machine_type = proto.Field(proto.STRING, number=1,) disk_size_gb = proto.Field(proto.INT32, number=2,) oauth_scopes = proto.RepeatedField(proto.STRING, number=3,) service_account = proto.Field(proto.STRING, number=9,) metadata = proto.MapField(proto.STRING, proto.STRING, number=4,) image_type = proto.Field(proto.STRING, number=5,) labels = proto.MapField(proto.STRING, proto.STRING, number=6,) local_ssd_count = proto.Field(proto.INT32, number=7,) tags = proto.RepeatedField(proto.STRING, number=8,) preemptible = proto.Field(proto.BOOL, number=10,) accelerators = proto.RepeatedField( proto.MESSAGE, number=11, message="AcceleratorConfig", ) sandbox_config = proto.Field(proto.MESSAGE, number=17, message="SandboxConfig",) node_group = proto.Field(proto.STRING, number=18,) reservation_affinity = proto.Field( proto.MESSAGE, number=19, message="ReservationAffinity", ) disk_type = proto.Field(proto.STRING, number=12,) min_cpu_platform = proto.Field(proto.STRING, number=13,) workload_metadata_config = proto.Field( proto.MESSAGE, number=14, message="WorkloadMetadataConfig", ) taints = proto.RepeatedField(proto.MESSAGE, number=15, message="NodeTaint",) boot_disk_kms_key = proto.Field(proto.STRING, number=23,) shielded_instance_config = proto.Field( proto.MESSAGE, number=20, message="ShieldedInstanceConfig", ) linux_node_config = proto.Field( proto.MESSAGE, number=21, message="LinuxNodeConfig", ) kubelet_config = proto.Field(proto.MESSAGE, number=22, message="NodeKubeletConfig",) ephemeral_storage_config = proto.Field( proto.MESSAGE, number=24, message="EphemeralStorageConfig", ) gvnic = proto.Field(proto.MESSAGE, number=29, message="VirtualNIC",)
[docs]class NodeNetworkConfig(proto.Message): r"""Parameters for node pool-level network config. Attributes: create_pod_range (bool): Input only. Whether to create a new range for pod IPs in this node pool. Defaults are provided for ``pod_range`` and ``pod_ipv4_cidr_block`` if they are not specified. If neither ``create_pod_range`` or ``pod_range`` are specified, the cluster-level default (``ip_allocation_policy.cluster_ipv4_cidr_block``) is used. Only applicable if ``ip_allocation_policy.use_ip_aliases`` is true. This field cannot be changed after the node pool has been created. pod_range (str): The ID of the secondary range for pod IPs. If ``create_pod_range`` is true, this ID is used for the new range. If ``create_pod_range`` is false, uses an existing secondary range with this ID. Only applicable if ``ip_allocation_policy.use_ip_aliases`` is true. This field cannot be changed after the node pool has been created. pod_ipv4_cidr_block (str): The IP address range for pod IPs in this node pool. Only applicable if ``create_pod_range`` is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. ``/14``) to have a range chosen with a specific netmask. Set to a `CIDR <https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``10.96.0.0/14``) to pick a specific range to use. Only applicable if ``ip_allocation_policy.use_ip_aliases`` is true. This field cannot be changed after the node pool has been created. """ create_pod_range = proto.Field(proto.BOOL, number=4,) pod_range = proto.Field(proto.STRING, number=5,) pod_ipv4_cidr_block = proto.Field(proto.STRING, number=6,)
[docs]class ShieldedInstanceConfig(proto.Message): r"""A set of Shielded Instance options. Attributes: enable_secure_boot (bool): Defines whether the instance has Secure Boot enabled. Secure Boot helps ensure that the system only runs authentic software by verifying the digital signature of all boot components, and halting the boot process if signature verification fails. enable_integrity_monitoring (bool): Defines whether the instance has integrity monitoring enabled. Enables monitoring and attestation of the boot integrity of the instance. The attestation is performed against the integrity policy baseline. This baseline is initially derived from the implicitly trusted boot image when the instance is created. """ enable_secure_boot = proto.Field(proto.BOOL, number=1,) enable_integrity_monitoring = proto.Field(proto.BOOL, number=2,)
[docs]class SandboxConfig(proto.Message): r"""SandboxConfig contains configurations of the sandbox to use for the node. Attributes: sandbox_type (str): Type of the sandbox to use for the node (e.g. 'gvisor') type_ (google.cloud.container_v1beta1.types.SandboxConfig.Type): Type of the sandbox to use for the node. """
[docs] class Type(proto.Enum): r"""Possible types of sandboxes.""" UNSPECIFIED = 0 GVISOR = 1
sandbox_type = proto.Field(proto.STRING, number=1,) type_ = proto.Field(proto.ENUM, number=2, enum=Type,)
[docs]class EphemeralStorageConfig(proto.Message): r"""EphemeralStorageConfig contains configuration for the ephemeral storage filesystem. Attributes: local_ssd_count (int): Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage. """ local_ssd_count = proto.Field(proto.INT32, number=1,)
[docs]class ReservationAffinity(proto.Message): r"""`ReservationAffinity <https://cloud.google.com/compute/docs/instances/reserving-zonal-resources>`__ is the configuration of desired reservation which instances could take capacity from. Attributes: consume_reservation_type (google.cloud.container_v1beta1.types.ReservationAffinity.Type): Corresponds to the type of reservation consumption. key (str): Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify "googleapis.com/reservation-name" as the key and specify the name of your reservation as its value. values (Sequence[str]): Corresponds to the label value(s) of reservation resource(s). """
[docs] class Type(proto.Enum): r"""Indicates whether to consume capacity from a reservation or not. """ UNSPECIFIED = 0 NO_RESERVATION = 1 ANY_RESERVATION = 2 SPECIFIC_RESERVATION = 3
consume_reservation_type = proto.Field(proto.ENUM, number=1, enum=Type,) key = proto.Field(proto.STRING, number=2,) values = proto.RepeatedField(proto.STRING, number=3,)
[docs]class NodeTaint(proto.Message): r"""Kubernetes taint is comprised of three fields: key, value, and effect. Effect can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See `here <https://kubernetes.io/docs/concepts/configuration/taint-and-toleration>`__ for more information, including usage and the valid values. Attributes: key (str): Key for taint. value (str): Value for taint. effect (google.cloud.container_v1beta1.types.NodeTaint.Effect): Effect for taint. """
[docs] class Effect(proto.Enum): r"""Possible values for Effect in taint.""" EFFECT_UNSPECIFIED = 0 NO_SCHEDULE = 1 PREFER_NO_SCHEDULE = 2 NO_EXECUTE = 3
key = proto.Field(proto.STRING, number=1,) value = proto.Field(proto.STRING, number=2,) effect = proto.Field(proto.ENUM, number=3, enum=Effect,)
[docs]class NodeTaints(proto.Message): r"""Collection of Kubernetes `node taints <https://kubernetes.io/docs/concepts/configuration/taint-and-toleration>`__. Attributes: taints (Sequence[google.cloud.container_v1beta1.types.NodeTaint]): List of node taints. """ taints = proto.RepeatedField(proto.MESSAGE, number=1, message="NodeTaint",)
[docs]class NodeLabels(proto.Message): r"""Collection of node-level `Kubernetes labels <https://kubernetes.io/docs/concepts/overview/working-with-objects/labels>`__. Attributes: labels (Sequence[google.cloud.container_v1beta1.types.NodeLabels.LabelsEntry]): Map of node label keys and node label values. """ labels = proto.MapField(proto.STRING, proto.STRING, number=1,)
[docs]class NetworkTags(proto.Message): r"""Collection of Compute Engine network tags that can be applied to a node's underlying VM instance. (See ``tags`` field in ```NodeConfig`` </kubernetes-engine/docs/reference/rest/v1/NodeConfig>`__). Attributes: tags (Sequence[str]): List of network tags. """ tags = proto.RepeatedField(proto.STRING, number=1,)
[docs]class MasterAuth(proto.Message): r"""The authentication information for accessing the master endpoint. Authentication can be done using HTTP basic auth or using client certificates. Attributes: username (str): The username to use for HTTP basic authentication to the master endpoint. For clusters v1.6.0 and later, basic authentication can be disabled by leaving username unspecified (or setting it to the empty string). Warning: basic authentication is deprecated, and will be removed in GKE control plane versions 1.19 and newer. For a list of recommended authentication methods, see: https://cloud.google.com/kubernetes- engine/docs/how-to/api-server-authentication password (str): The password to use for HTTP basic authentication to the master endpoint. Because the master endpoint is open to the Internet, you should create a strong password. If a password is provided for cluster creation, username must be non-empty. Warning: basic authentication is deprecated, and will be removed in GKE control plane versions 1.19 and newer. For a list of recommended authentication methods, see: https://cloud.google.com/kubernetes- engine/docs/how-to/api-server-authentication client_certificate_config (google.cloud.container_v1beta1.types.ClientCertificateConfig): Configuration for client certificate authentication on the cluster. For clusters before v1.12, if no configuration is specified, a client certificate is issued. cluster_ca_certificate (str): client_certificate (str): [Output only] Base64-encoded public certificate used by clients to authenticate to the cluster endpoint. client_key (str): [Output only] Base64-encoded private key used by clients to authenticate to the cluster endpoint. """ username = proto.Field(proto.STRING, number=1,) password = proto.Field(proto.STRING, number=2,) client_certificate_config = proto.Field( proto.MESSAGE, number=3, message="ClientCertificateConfig", ) cluster_ca_certificate = proto.Field(proto.STRING, number=100,) client_certificate = proto.Field(proto.STRING, number=101,) client_key = proto.Field(proto.STRING, number=102,)
[docs]class ClientCertificateConfig(proto.Message): r"""Configuration for client certificates on the cluster. Attributes: issue_client_certificate (bool): Issue a client certificate. """ issue_client_certificate = proto.Field(proto.BOOL, number=1,)
[docs]class AddonsConfig(proto.Message): r"""Configuration for the addons that can be automatically spun up in the cluster, enabling additional functionality. Attributes: http_load_balancing (google.cloud.container_v1beta1.types.HttpLoadBalancing): Configuration for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster. horizontal_pod_autoscaling (google.cloud.container_v1beta1.types.HorizontalPodAutoscaling): Configuration for the horizontal pod autoscaling feature, which increases or decreases the number of replica pods a replication controller has based on the resource usage of the existing pods. kubernetes_dashboard (google.cloud.container_v1beta1.types.KubernetesDashboard): Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes clusters, workloads and applications. For more information, see: https://cloud.google.com/kubernetes- engine/docs/concepts/dashboards network_policy_config (google.cloud.container_v1beta1.types.NetworkPolicyConfig): Configuration for NetworkPolicy. This only tracks whether the addon is enabled or not on the Master, it does not track whether network policy is enabled for the nodes. istio_config (google.cloud.container_v1beta1.types.IstioConfig): Configuration for Istio, an open platform to connect, manage, and secure microservices. cloud_run_config (google.cloud.container_v1beta1.types.CloudRunConfig): Configuration for the Cloud Run addon. The ``IstioConfig`` addon must be enabled in order to enable Cloud Run addon. This option can only be enabled at cluster creation time. dns_cache_config (google.cloud.container_v1beta1.types.DnsCacheConfig): Configuration for NodeLocalDNS, a dns cache running on cluster nodes config_connector_config (google.cloud.container_v1beta1.types.ConfigConnectorConfig): Configuration for the ConfigConnector add-on, a Kubernetes extension to manage hosted GCP services through the Kubernetes API gce_persistent_disk_csi_driver_config (google.cloud.container_v1beta1.types.GcePersistentDiskCsiDriverConfig): Configuration for the Compute Engine Persistent Disk CSI driver. kalm_config (google.cloud.container_v1beta1.types.KalmConfig): Configuration for the KALM addon, which manages the lifecycle of k8s applications. """ http_load_balancing = proto.Field( proto.MESSAGE, number=1, message="HttpLoadBalancing", ) horizontal_pod_autoscaling = proto.Field( proto.MESSAGE, number=2, message="HorizontalPodAutoscaling", ) kubernetes_dashboard = proto.Field( proto.MESSAGE, number=3, message="KubernetesDashboard", ) network_policy_config = proto.Field( proto.MESSAGE, number=4, message="NetworkPolicyConfig", ) istio_config = proto.Field(proto.MESSAGE, number=5, message="IstioConfig",) cloud_run_config = proto.Field(proto.MESSAGE, number=7, message="CloudRunConfig",) dns_cache_config = proto.Field(proto.MESSAGE, number=8, message="DnsCacheConfig",) config_connector_config = proto.Field( proto.MESSAGE, number=10, message="ConfigConnectorConfig", ) gce_persistent_disk_csi_driver_config = proto.Field( proto.MESSAGE, number=11, message="GcePersistentDiskCsiDriverConfig", ) kalm_config = proto.Field(proto.MESSAGE, number=12, message="KalmConfig",)
[docs]class HttpLoadBalancing(proto.Message): r"""Configuration options for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster. Attributes: disabled (bool): Whether the HTTP Load Balancing controller is enabled in the cluster. When enabled, it runs a small pod in the cluster that manages the load balancers. """ disabled = proto.Field(proto.BOOL, number=1,)
[docs]class HorizontalPodAutoscaling(proto.Message): r"""Configuration options for the horizontal pod autoscaling feature, which increases or decreases the number of replica pods a replication controller has based on the resource usage of the existing pods. Attributes: disabled (bool): Whether the Horizontal Pod Autoscaling feature is enabled in the cluster. When enabled, it ensures that metrics are collected into Stackdriver Monitoring. """ disabled = proto.Field(proto.BOOL, number=1,)
[docs]class KubernetesDashboard(proto.Message): r"""Configuration for the Kubernetes Dashboard. Attributes: disabled (bool): Whether the Kubernetes Dashboard is enabled for this cluster. """ disabled = proto.Field(proto.BOOL, number=1,)
[docs]class NetworkPolicyConfig(proto.Message): r"""Configuration for NetworkPolicy. This only tracks whether the addon is enabled or not on the Master, it does not track whether network policy is enabled for the nodes. Attributes: disabled (bool): Whether NetworkPolicy is enabled for this cluster. """ disabled = proto.Field(proto.BOOL, number=1,)
[docs]class DnsCacheConfig(proto.Message): r"""Configuration for NodeLocal DNSCache Attributes: enabled (bool): Whether NodeLocal DNSCache is enabled for this cluster. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class KalmConfig(proto.Message): r"""Configuration options for the KALM addon. Attributes: enabled (bool): Whether KALM is enabled for this cluster. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class ConfigConnectorConfig(proto.Message): r"""Configuration options for the Config Connector add-on. Attributes: enabled (bool): Whether Cloud Connector is enabled for this cluster. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class GcePersistentDiskCsiDriverConfig(proto.Message): r"""Configuration for the Compute Engine PD CSI driver. Attributes: enabled (bool): Whether the Compute Engine PD CSI driver is enabled for this cluster. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class PrivateClusterMasterGlobalAccessConfig(proto.Message): r"""Configuration for controlling master global access settings. Attributes: enabled (bool): Whenever master is accessible globally or not. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class PrivateClusterConfig(proto.Message): r"""Configuration options for private clusters. Attributes: enable_private_nodes (bool): Whether nodes have internal IP addresses only. If enabled, all nodes are given only RFC 1918 private addresses and communicate with the master via private networking. enable_private_endpoint (bool): Whether the master's internal IP address is used as the cluster endpoint. master_ipv4_cidr_block (str): The IP range in CIDR notation to use for the hosted master network. This range will be used for assigning internal IP addresses to the master or set of masters, as well as the ILB VIP. This range must not overlap with any other ranges in use within the cluster's network. private_endpoint (str): Output only. The internal IP address of this cluster's master endpoint. public_endpoint (str): Output only. The external IP address of this cluster's master endpoint. peering_name (str): Output only. The peering name in the customer VPC used by this cluster. master_global_access_config (google.cloud.container_v1beta1.types.PrivateClusterMasterGlobalAccessConfig): Controls master global access settings. """ enable_private_nodes = proto.Field(proto.BOOL, number=1,) enable_private_endpoint = proto.Field(proto.BOOL, number=2,) master_ipv4_cidr_block = proto.Field(proto.STRING, number=3,) private_endpoint = proto.Field(proto.STRING, number=4,) public_endpoint = proto.Field(proto.STRING, number=5,) peering_name = proto.Field(proto.STRING, number=7,) master_global_access_config = proto.Field( proto.MESSAGE, number=8, message="PrivateClusterMasterGlobalAccessConfig", )
[docs]class IstioConfig(proto.Message): r"""Configuration options for Istio addon. Attributes: disabled (bool): Whether Istio is enabled for this cluster. auth (google.cloud.container_v1beta1.types.IstioConfig.IstioAuthMode): The specified Istio auth mode, either none, or mutual TLS. """
[docs] class IstioAuthMode(proto.Enum): r"""Istio auth mode, https://istio.io/docs/concepts/security/mutual-tls.html """ AUTH_NONE = 0 AUTH_MUTUAL_TLS = 1
disabled = proto.Field(proto.BOOL, number=1,) auth = proto.Field(proto.ENUM, number=2, enum=IstioAuthMode,)
[docs]class CloudRunConfig(proto.Message): r"""Configuration options for the Cloud Run feature. Attributes: disabled (bool): Whether Cloud Run addon is enabled for this cluster. load_balancer_type (google.cloud.container_v1beta1.types.CloudRunConfig.LoadBalancerType): Which load balancer type is installed for Cloud Run. """
[docs] class LoadBalancerType(proto.Enum): r"""Load balancer type of ingress service of Cloud Run.""" LOAD_BALANCER_TYPE_UNSPECIFIED = 0 LOAD_BALANCER_TYPE_EXTERNAL = 1 LOAD_BALANCER_TYPE_INTERNAL = 2
disabled = proto.Field(proto.BOOL, number=1,) load_balancer_type = proto.Field(proto.ENUM, number=3, enum=LoadBalancerType,)
[docs]class MasterAuthorizedNetworksConfig(proto.Message): r"""Configuration options for the master authorized networks feature. Enabled master authorized networks will disallow all external traffic to access Kubernetes master through HTTPS except traffic from the given CIDR blocks, Google Compute Engine Public IPs and Google Prod IPs. Attributes: enabled (bool): Whether or not master authorized networks is enabled. cidr_blocks (Sequence[google.cloud.container_v1beta1.types.MasterAuthorizedNetworksConfig.CidrBlock]): cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS. """
[docs] class CidrBlock(proto.Message): r"""CidrBlock contains an optional name and one CIDR block. Attributes: display_name (str): display_name is an optional field for users to identify CIDR blocks. cidr_block (str): cidr_block must be specified in CIDR notation. """ display_name = proto.Field(proto.STRING, number=1,) cidr_block = proto.Field(proto.STRING, number=2,)
enabled = proto.Field(proto.BOOL, number=1,) cidr_blocks = proto.RepeatedField(proto.MESSAGE, number=2, message=CidrBlock,)
[docs]class LegacyAbac(proto.Message): r"""Configuration for the legacy Attribute Based Access Control authorization mode. Attributes: enabled (bool): Whether the ABAC authorizer is enabled for this cluster. When enabled, identities in the system, including service accounts, nodes, and controllers, will have statically granted permissions beyond those provided by the RBAC configuration or IAM. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class NetworkPolicy(proto.Message): r"""Configuration options for the NetworkPolicy feature. https://kubernetes.io/docs/concepts/services- networking/networkpolicies/ Attributes: provider (google.cloud.container_v1beta1.types.NetworkPolicy.Provider): The selected network policy provider. enabled (bool): Whether network policy is enabled on the cluster. """
[docs] class Provider(proto.Enum): r"""Allowed Network Policy providers.""" PROVIDER_UNSPECIFIED = 0 CALICO = 1
provider = proto.Field(proto.ENUM, number=1, enum=Provider,) enabled = proto.Field(proto.BOOL, number=2,)
[docs]class IPAllocationPolicy(proto.Message): r"""Configuration for controlling how IPs are allocated in the cluster. Attributes: use_ip_aliases (bool): Whether alias IPs will be used for pod IPs in the cluster. This is used in conjunction with use_routes. It cannot be true if use_routes is true. If both use_ip_aliases and use_routes are false, then the server picks the default IP allocation mode create_subnetwork (bool): Whether a new subnetwork will be created automatically for the cluster. This field is only applicable when ``use_ip_aliases`` is true. subnetwork_name (str): A custom subnetwork name to be used if ``create_subnetwork`` is true. If this field is empty, then an automatic name will be chosen for the new subnetwork. cluster_ipv4_cidr (str): This field is deprecated, use cluster_ipv4_cidr_block. node_ipv4_cidr (str): This field is deprecated, use node_ipv4_cidr_block. services_ipv4_cidr (str): This field is deprecated, use services_ipv4_cidr_block. cluster_secondary_range_name (str): The name of the secondary range to be used for the cluster CIDR block. The secondary range will be used for pod IP addresses. This must be an existing secondary range associated with the cluster subnetwork. This field is only applicable with use_ip_aliases and create_subnetwork is false. services_secondary_range_name (str): The name of the secondary range to be used as for the services CIDR block. The secondary range will be used for service ClusterIPs. This must be an existing secondary range associated with the cluster subnetwork. This field is only applicable with use_ip_aliases and create_subnetwork is false. cluster_ipv4_cidr_block (str): The IP address range for the cluster pod IPs. If this field is set, then ``cluster.cluster_ipv4_cidr`` must be left blank. This field is only applicable when ``use_ip_aliases`` is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. ``/14``) to have a range chosen with a specific netmask. Set to a `CIDR <http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``10.96.0.0/14``) from the RFC-1918 private networks (e.g. ``10.0.0.0/8``, ``172.16.0.0/12``, ``192.168.0.0/16``) to pick a specific range to use. node_ipv4_cidr_block (str): The IP address range of the instance IPs in this cluster. This is applicable only if ``create_subnetwork`` is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. ``/14``) to have a range chosen with a specific netmask. Set to a `CIDR <http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``10.96.0.0/14``) from the RFC-1918 private networks (e.g. ``10.0.0.0/8``, ``172.16.0.0/12``, ``192.168.0.0/16``) to pick a specific range to use. services_ipv4_cidr_block (str): The IP address range of the services IPs in this cluster. If blank, a range will be automatically chosen with the default size. This field is only applicable when ``use_ip_aliases`` is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. ``/14``) to have a range chosen with a specific netmask. Set to a `CIDR <http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``10.96.0.0/14``) from the RFC-1918 private networks (e.g. ``10.0.0.0/8``, ``172.16.0.0/12``, ``192.168.0.0/16``) to pick a specific range to use. allow_route_overlap (bool): If true, allow allocation of cluster CIDR ranges that overlap with certain kinds of network routes. By default we do not allow cluster CIDR ranges to intersect with any user declared routes. With allow_route_overlap == true, we allow overlapping with CIDR ranges that are larger than the cluster CIDR range. If this field is set to true, then cluster and services CIDRs must be fully-specified (e.g. ``10.96.0.0/14``, but not ``/14``), which means: 1) When ``use_ip_aliases`` is true, ``cluster_ipv4_cidr_block`` and ``services_ipv4_cidr_block`` must be fully-specified. 2) When ``use_ip_aliases`` is false, ``cluster.cluster_ipv4_cidr`` muse be fully-specified. tpu_ipv4_cidr_block (str): The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when ``use_ip_aliases`` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. ``/14``) to have a range chosen with a specific netmask. Set to a `CIDR <http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``10.96.0.0/14``) from the RFC-1918 private networks (e.g. ``10.0.0.0/8``, ``172.16.0.0/12``, ``192.168.0.0/16``) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead. use_routes (bool): Whether routes will be used for pod IPs in the cluster. This is used in conjunction with use_ip_aliases. It cannot be true if use_ip_aliases is true. If both use_ip_aliases and use_routes are false, then the server picks the default IP allocation mode """ use_ip_aliases = proto.Field(proto.BOOL, number=1,) create_subnetwork = proto.Field(proto.BOOL, number=2,) subnetwork_name = proto.Field(proto.STRING, number=3,) cluster_ipv4_cidr = proto.Field(proto.STRING, number=4,) node_ipv4_cidr = proto.Field(proto.STRING, number=5,) services_ipv4_cidr = proto.Field(proto.STRING, number=6,) cluster_secondary_range_name = proto.Field(proto.STRING, number=7,) services_secondary_range_name = proto.Field(proto.STRING, number=8,) cluster_ipv4_cidr_block = proto.Field(proto.STRING, number=9,) node_ipv4_cidr_block = proto.Field(proto.STRING, number=10,) services_ipv4_cidr_block = proto.Field(proto.STRING, number=11,) allow_route_overlap = proto.Field(proto.BOOL, number=12,) tpu_ipv4_cidr_block = proto.Field(proto.STRING, number=13,) use_routes = proto.Field(proto.BOOL, number=15,)
[docs]class BinaryAuthorization(proto.Message): r"""Configuration for Binary Authorization. Attributes: enabled (bool): Enable Binary Authorization for this cluster. If enabled, all container images will be validated by Google Binauthz. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class PodSecurityPolicyConfig(proto.Message): r"""Configuration for the PodSecurityPolicy feature. Attributes: enabled (bool): Enable the PodSecurityPolicy controller for this cluster. If enabled, pods must be valid under a PodSecurityPolicy to be created. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class AuthenticatorGroupsConfig(proto.Message): r"""Configuration for returning group information from authenticators. Attributes: enabled (bool): Whether this cluster should return group membership lookups during authentication using a group of security groups. security_group (str): The name of the security group-of-groups to be used. Only relevant if enabled = true. """ enabled = proto.Field(proto.BOOL, number=1,) security_group = proto.Field(proto.STRING, number=2,)
[docs]class ClusterTelemetry(proto.Message): r"""Telemetry integration for the cluster. Attributes: type_ (google.cloud.container_v1beta1.types.ClusterTelemetry.Type): Type of the integration. """
[docs] class Type(proto.Enum): r"""Type of the integration.""" UNSPECIFIED = 0 DISABLED = 1 ENABLED = 2 SYSTEM_ONLY = 3
type_ = proto.Field(proto.ENUM, number=1, enum=Type,)
[docs]class Cluster(proto.Message): r"""A Google Kubernetes Engine cluster. Attributes: name (str): The name of this cluster. The name must be unique within this project and location (e.g. zone or region), and can be up to 40 characters with the following restrictions: - Lowercase letters, numbers, and hyphens only. - Must start with a letter. - Must end with a number or a letter. description (str): An optional description of this cluster. initial_node_count (int): The number of nodes to create in this cluster. You must ensure that your Compute Engine `resource quota <https://cloud.google.com/compute/quotas>`__ is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "node_config") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead. node_config (google.cloud.container_v1beta1.types.NodeConfig): Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "initial_node_count") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see ``node_pool.config``) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead. master_auth (google.cloud.container_v1beta1.types.MasterAuth): The authentication information for accessing the master endpoint. If unspecified, the defaults are used: For clusters before v1.12, if master_auth is unspecified, ``username`` will be set to "admin", a random password will be generated, and a client certificate will be issued. logging_service (str): The logging service the cluster should use to write logs. Currently available options: - ``logging.googleapis.com/kubernetes`` - The Cloud Logging service with a Kubernetes-native resource model - ``logging.googleapis.com`` - The legacy Cloud Logging service (no longer available as of GKE 1.15). - ``none`` - no logs will be exported from the cluster. If left as an empty string,\ ``logging.googleapis.com/kubernetes`` will be used for GKE 1.14+ or ``logging.googleapis.com`` for earlier versions. monitoring_service (str): The monitoring service the cluster should use to write metrics. Currently available options: - "monitoring.googleapis.com/kubernetes" - The Cloud Monitoring service with a Kubernetes-native resource model - ``monitoring.googleapis.com`` - The legacy Cloud Monitoring service (no longer available as of GKE 1.15). - ``none`` - No metrics will be exported from the cluster. If left as an empty string,\ ``monitoring.googleapis.com/kubernetes`` will be used for GKE 1.14+ or ``monitoring.googleapis.com`` for earlier versions. network (str): The name of the Google Compute Engine `network <https://cloud.google.com/compute/docs/networks-and-firewalls#networks>`__ to which the cluster is connected. If left unspecified, the ``default`` network will be used. On output this shows the network ID instead of the name. cluster_ipv4_cidr (str): The IP address range of the container pods in this cluster, in `CIDR <http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``10.96.0.0/14``). Leave blank to have one automatically chosen or specify a ``/14`` block in ``10.0.0.0/8``. addons_config (google.cloud.container_v1beta1.types.AddonsConfig): Configurations for the various addons available to run in the cluster. subnetwork (str): The name of the Google Compute Engine `subnetwork <https://cloud.google.com/compute/docs/subnetworks>`__ to which the cluster is connected. On output this shows the subnetwork ID instead of the name. node_pools (Sequence[google.cloud.container_v1beta1.types.NodePool]): The node pools associated with this cluster. This field should not be set if "node_config" or "initial_node_count" are specified. locations (Sequence[str]): The list of Google Compute Engine `zones <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster's nodes should be located. This field provides a default value if `NodePool.Locations <https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.locations>`__ are not specified during node pool creation. Warning: changing cluster locations will update the `NodePool.Locations <https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.locations>`__ of all node pools and will result in nodes being added and/or removed. enable_kubernetes_alpha (bool): Kubernetes alpha features are enabled on this cluster. This includes alpha API groups (e.g. v1beta1) and features that may not be production ready in the kubernetes version of the master and nodes. The cluster has no SLA for uptime and master/node upgrades are disabled. Alpha enabled clusters are automatically deleted thirty days after creation. resource_labels (Sequence[google.cloud.container_v1beta1.types.Cluster.ResourceLabelsEntry]): The resource labels for the cluster to use to annotate any related Google Compute Engine resources. label_fingerprint (str): The fingerprint of the set of labels for this cluster. legacy_abac (google.cloud.container_v1beta1.types.LegacyAbac): Configuration for the legacy ABAC authorization mode. network_policy (google.cloud.container_v1beta1.types.NetworkPolicy): Configuration options for the NetworkPolicy feature. ip_allocation_policy (google.cloud.container_v1beta1.types.IPAllocationPolicy): Configuration for cluster IP allocation. master_authorized_networks_config (google.cloud.container_v1beta1.types.MasterAuthorizedNetworksConfig): The configuration options for master authorized networks feature. maintenance_policy (google.cloud.container_v1beta1.types.MaintenancePolicy): Configure the maintenance policy for this cluster. binary_authorization (google.cloud.container_v1beta1.types.BinaryAuthorization): Configuration for Binary Authorization. pod_security_policy_config (google.cloud.container_v1beta1.types.PodSecurityPolicyConfig): Configuration for the PodSecurityPolicy feature. autoscaling (google.cloud.container_v1beta1.types.ClusterAutoscaling): Cluster-level autoscaling configuration. network_config (google.cloud.container_v1beta1.types.NetworkConfig): Configuration for cluster networking. private_cluster (bool): If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead. master_ipv4_cidr_block (str): The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead. default_max_pods_constraint (google.cloud.container_v1beta1.types.MaxPodsConstraint): The default constraint on the maximum number of pods that can be run simultaneously on a node in the node pool of this cluster. Only honored if cluster created with IP Alias support. resource_usage_export_config (google.cloud.container_v1beta1.types.ResourceUsageExportConfig): Configuration for exporting resource usages. Resource usage export is disabled when this config unspecified. authenticator_groups_config (google.cloud.container_v1beta1.types.AuthenticatorGroupsConfig): Configuration controlling RBAC group membership information. private_cluster_config (google.cloud.container_v1beta1.types.PrivateClusterConfig): Configuration for private cluster. vertical_pod_autoscaling (google.cloud.container_v1beta1.types.VerticalPodAutoscaling): Cluster-level Vertical Pod Autoscaling configuration. shielded_nodes (google.cloud.container_v1beta1.types.ShieldedNodes): Shielded Nodes configuration. release_channel (google.cloud.container_v1beta1.types.ReleaseChannel): Release channel configuration. workload_identity_config (google.cloud.container_v1beta1.types.WorkloadIdentityConfig): Configuration for the use of Kubernetes Service Accounts in GCP IAM policies. workload_certificates (google.cloud.container_v1beta1.types.WorkloadCertificates): Configuration for issuance of mTLS keys and certificates to Kubernetes pods. cluster_telemetry (google.cloud.container_v1beta1.types.ClusterTelemetry): Telemetry integration for the cluster. tpu_config (google.cloud.container_v1beta1.types.TpuConfig): Configuration for Cloud TPU support; notification_config (google.cloud.container_v1beta1.types.NotificationConfig): Notification configuration of the cluster. confidential_nodes (google.cloud.container_v1beta1.types.ConfidentialNodes): Configuration of Confidential Nodes identity_service_config (google.cloud.container_v1beta1.types.IdentityServiceConfig): Configuration for Identity Service component. self_link (str): [Output only] Server-defined URL for the resource. zone (str): [Output only] The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field is deprecated, use location instead. endpoint (str): [Output only] The IP address of this cluster's master endpoint. The endpoint can be accessed from the internet at ``https://username:password@endpoint/``. See the ``masterAuth`` property of this resource for username and password information. initial_cluster_version (str): The initial Kubernetes version for this cluster. Valid versions are those found in validMasterVersions returned by getServerConfig. The version can be upgraded over time; such upgrades are reflected in currentMasterVersion and currentNodeVersion. Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - "latest": picks the highest valid Kubernetes version - "1.X": picks the highest valid patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit Kubernetes version - "","-": picks the default Kubernetes version current_master_version (str): [Output only] The current software version of the master endpoint. current_node_version (str): [Output only] Deprecated, use `NodePool.version <https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters.nodePools>`__ instead. The current version of the node software components. If they are currently at multiple versions because they're in the process of being upgraded, this reflects the minimum version of all nodes. create_time (str): [Output only] The time the cluster was created, in `RFC3339 <https://www.ietf.org/rfc/rfc3339.txt>`__ text format. status (google.cloud.container_v1beta1.types.Cluster.Status): [Output only] The current status of this cluster. status_message (str): [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available. node_ipv4_cidr_size (int): [Output only] The size of the address space on each node for hosting containers. This is provisioned from within the ``container_ipv4_cidr`` range. This field will only be set when cluster is in route-based network mode. services_ipv4_cidr (str): [Output only] The IP address range of the Kubernetes services in this cluster, in `CIDR <http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``1.2.3.4/29``). Service addresses are typically put in the last ``/16`` from the container CIDR. instance_group_urls (Sequence[str]): Deprecated. Use node_pools.instance_group_urls. current_node_count (int): [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information. expire_time (str): [Output only] The time the cluster will be automatically deleted in `RFC3339 <https://www.ietf.org/rfc/rfc3339.txt>`__ text format. location (str): [Output only] The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/regions-zones/regions-zones#available>`__ or `region <https://cloud.google.com/compute/docs/regions-zones/regions-zones#available>`__ in which the cluster resides. enable_tpu (bool): Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead. tpu_ipv4_cidr_block (str): [Output only] The IP address range of the Cloud TPUs in this cluster, in `CIDR <http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing>`__ notation (e.g. ``1.2.3.4/29``). database_encryption (google.cloud.container_v1beta1.types.DatabaseEncryption): Configuration of etcd encryption. conditions (Sequence[google.cloud.container_v1beta1.types.StatusCondition]): Which conditions caused the current cluster state. master (google.cloud.container_v1beta1.types.Master): Configuration for master components. autopilot (google.cloud.container_v1beta1.types.Autopilot): Autopilot configuration for the cluster. id (str): Output only. Unique id for the cluster. node_pool_defaults (google.cloud.container_v1beta1.types.NodePoolDefaults): Default NodePool settings for the entire cluster. These settings are overridden if specified on the specific NodePool object. This field is a member of `oneof`_ ``_node_pool_defaults``. logging_config (google.cloud.container_v1beta1.types.LoggingConfig): Logging configuration for the cluster. monitoring_config (google.cloud.container_v1beta1.types.MonitoringConfig): Monitoring configuration for the cluster. """
[docs] class Status(proto.Enum): r"""The current status of the cluster.""" STATUS_UNSPECIFIED = 0 PROVISIONING = 1 RUNNING = 2 RECONCILING = 3 STOPPING = 4 ERROR = 5 DEGRADED = 6
name = proto.Field(proto.STRING, number=1,) description = proto.Field(proto.STRING, number=2,) initial_node_count = proto.Field(proto.INT32, number=3,) node_config = proto.Field(proto.MESSAGE, number=4, message="NodeConfig",) master_auth = proto.Field(proto.MESSAGE, number=5, message="MasterAuth",) logging_service = proto.Field(proto.STRING, number=6,) monitoring_service = proto.Field(proto.STRING, number=7,) network = proto.Field(proto.STRING, number=8,) cluster_ipv4_cidr = proto.Field(proto.STRING, number=9,) addons_config = proto.Field(proto.MESSAGE, number=10, message="AddonsConfig",) subnetwork = proto.Field(proto.STRING, number=11,) node_pools = proto.RepeatedField(proto.MESSAGE, number=12, message="NodePool",) locations = proto.RepeatedField(proto.STRING, number=13,) enable_kubernetes_alpha = proto.Field(proto.BOOL, number=14,) resource_labels = proto.MapField(proto.STRING, proto.STRING, number=15,) label_fingerprint = proto.Field(proto.STRING, number=16,) legacy_abac = proto.Field(proto.MESSAGE, number=18, message="LegacyAbac",) network_policy = proto.Field(proto.MESSAGE, number=19, message="NetworkPolicy",) ip_allocation_policy = proto.Field( proto.MESSAGE, number=20, message="IPAllocationPolicy", ) master_authorized_networks_config = proto.Field( proto.MESSAGE, number=22, message="MasterAuthorizedNetworksConfig", ) maintenance_policy = proto.Field( proto.MESSAGE, number=23, message="MaintenancePolicy", ) binary_authorization = proto.Field( proto.MESSAGE, number=24, message="BinaryAuthorization", ) pod_security_policy_config = proto.Field( proto.MESSAGE, number=25, message="PodSecurityPolicyConfig", ) autoscaling = proto.Field(proto.MESSAGE, number=26, message="ClusterAutoscaling",) network_config = proto.Field(proto.MESSAGE, number=27, message="NetworkConfig",) private_cluster = proto.Field(proto.BOOL, number=28,) master_ipv4_cidr_block = proto.Field(proto.STRING, number=29,) default_max_pods_constraint = proto.Field( proto.MESSAGE, number=30, message="MaxPodsConstraint", ) resource_usage_export_config = proto.Field( proto.MESSAGE, number=33, message="ResourceUsageExportConfig", ) authenticator_groups_config = proto.Field( proto.MESSAGE, number=34, message="AuthenticatorGroupsConfig", ) private_cluster_config = proto.Field( proto.MESSAGE, number=37, message="PrivateClusterConfig", ) vertical_pod_autoscaling = proto.Field( proto.MESSAGE, number=39, message="VerticalPodAutoscaling", ) shielded_nodes = proto.Field(proto.MESSAGE, number=40, message="ShieldedNodes",) release_channel = proto.Field(proto.MESSAGE, number=41, message="ReleaseChannel",) workload_identity_config = proto.Field( proto.MESSAGE, number=43, message="WorkloadIdentityConfig", ) workload_certificates = proto.Field( proto.MESSAGE, number=52, message="WorkloadCertificates", ) cluster_telemetry = proto.Field( proto.MESSAGE, number=46, message="ClusterTelemetry", ) tpu_config = proto.Field(proto.MESSAGE, number=47, message="TpuConfig",) notification_config = proto.Field( proto.MESSAGE, number=49, message="NotificationConfig", ) confidential_nodes = proto.Field( proto.MESSAGE, number=50, message="ConfidentialNodes", ) identity_service_config = proto.Field( proto.MESSAGE, number=54, message="IdentityServiceConfig", ) self_link = proto.Field(proto.STRING, number=100,) zone = proto.Field(proto.STRING, number=101,) endpoint = proto.Field(proto.STRING, number=102,) initial_cluster_version = proto.Field(proto.STRING, number=103,) current_master_version = proto.Field(proto.STRING, number=104,) current_node_version = proto.Field(proto.STRING, number=105,) create_time = proto.Field(proto.STRING, number=106,) status = proto.Field(proto.ENUM, number=107, enum=Status,) status_message = proto.Field(proto.STRING, number=108,) node_ipv4_cidr_size = proto.Field(proto.INT32, number=109,) services_ipv4_cidr = proto.Field(proto.STRING, number=110,) instance_group_urls = proto.RepeatedField(proto.STRING, number=111,) current_node_count = proto.Field(proto.INT32, number=112,) expire_time = proto.Field(proto.STRING, number=113,) location = proto.Field(proto.STRING, number=114,) enable_tpu = proto.Field(proto.BOOL, number=115,) tpu_ipv4_cidr_block = proto.Field(proto.STRING, number=116,) database_encryption = proto.Field( proto.MESSAGE, number=38, message="DatabaseEncryption", ) conditions = proto.RepeatedField( proto.MESSAGE, number=118, message="StatusCondition", ) master = proto.Field(proto.MESSAGE, number=124, message="Master",) autopilot = proto.Field(proto.MESSAGE, number=128, message="Autopilot",) id = proto.Field(proto.STRING, number=129,) node_pool_defaults = proto.Field( proto.MESSAGE, number=131, optional=True, message="NodePoolDefaults", ) logging_config = proto.Field(proto.MESSAGE, number=132, message="LoggingConfig",) monitoring_config = proto.Field( proto.MESSAGE, number=133, message="MonitoringConfig", )
[docs]class NodePoolDefaults(proto.Message): r"""Subset of Nodepool message that has defaults. Attributes: node_config_defaults (google.cloud.container_v1beta1.types.NodeConfigDefaults): Subset of NodeConfig message that has defaults. """ node_config_defaults = proto.Field( proto.MESSAGE, number=1, message="NodeConfigDefaults", )
[docs]class NodeConfigDefaults(proto.Message): r"""Subset of NodeConfig message that has defaults. """
[docs]class ClusterUpdate(proto.Message): r"""ClusterUpdate describes an update to the cluster. Exactly one update can be applied to a cluster with each request, so at most one field can be provided. Attributes: desired_node_version (str): The Kubernetes version to change the nodes to (typically an upgrade). Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - "latest": picks the highest valid Kubernetes version - "1.X": picks the highest valid patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit Kubernetes version - "-": picks the Kubernetes master version desired_monitoring_service (str): The monitoring service the cluster should use to write metrics. Currently available options: - "monitoring.googleapis.com/kubernetes" - The Cloud Monitoring service with a Kubernetes-native resource model - ``monitoring.googleapis.com`` - The legacy Cloud Monitoring service (no longer available as of GKE 1.15). - ``none`` - No metrics will be exported from the cluster. If left as an empty string,\ ``monitoring.googleapis.com/kubernetes`` will be used for GKE 1.14+ or ``monitoring.googleapis.com`` for earlier versions. desired_addons_config (google.cloud.container_v1beta1.types.AddonsConfig): Configurations for the various addons available to run in the cluster. desired_node_pool_id (str): The node pool to be upgraded. This field is mandatory if "desired_node_version", "desired_image_family", "desired_node_pool_autoscaling", or "desired_workload_metadata_config" is specified and there is more than one node pool on the cluster. desired_image_type (str): The desired image type for the node pool. NOTE: Set the "desired_node_pool" field as well. desired_node_pool_autoscaling (google.cloud.container_v1beta1.types.NodePoolAutoscaling): Autoscaler configuration for the node pool specified in desired_node_pool_id. If there is only one pool in the cluster and desired_node_pool_id is not provided then the change applies to that single node pool. desired_locations (Sequence[str]): The desired list of Google Compute Engine `zones <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster's nodes should be located. This list must always include the cluster's primary zone. Warning: changing cluster locations will update the locations of all node pools and will result in nodes being added and/or removed. desired_master_authorized_networks_config (google.cloud.container_v1beta1.types.MasterAuthorizedNetworksConfig): The desired configuration options for master authorized networks feature. desired_pod_security_policy_config (google.cloud.container_v1beta1.types.PodSecurityPolicyConfig): The desired configuration options for the PodSecurityPolicy feature. desired_cluster_autoscaling (google.cloud.container_v1beta1.types.ClusterAutoscaling): Cluster-level autoscaling configuration. desired_binary_authorization (google.cloud.container_v1beta1.types.BinaryAuthorization): The desired configuration options for the Binary Authorization feature. desired_logging_service (str): The logging service the cluster should use to write logs. Currently available options: - ``logging.googleapis.com/kubernetes`` - The Cloud Logging service with a Kubernetes-native resource model - ``logging.googleapis.com`` - The legacy Cloud Logging service (no longer available as of GKE 1.15). - ``none`` - no logs will be exported from the cluster. If left as an empty string,\ ``logging.googleapis.com/kubernetes`` will be used for GKE 1.14+ or ``logging.googleapis.com`` for earlier versions. desired_resource_usage_export_config (google.cloud.container_v1beta1.types.ResourceUsageExportConfig): The desired configuration for exporting resource usage. desired_vertical_pod_autoscaling (google.cloud.container_v1beta1.types.VerticalPodAutoscaling): Cluster-level Vertical Pod Autoscaling configuration. desired_private_cluster_config (google.cloud.container_v1beta1.types.PrivateClusterConfig): The desired private cluster configuration. desired_intra_node_visibility_config (google.cloud.container_v1beta1.types.IntraNodeVisibilityConfig): The desired config of Intra-node visibility. desired_default_snat_status (google.cloud.container_v1beta1.types.DefaultSnatStatus): The desired status of whether to disable default sNAT for this cluster. desired_cluster_telemetry (google.cloud.container_v1beta1.types.ClusterTelemetry): The desired telemetry integration for the cluster. desired_release_channel (google.cloud.container_v1beta1.types.ReleaseChannel): The desired release channel configuration. desired_tpu_config (google.cloud.container_v1beta1.types.TpuConfig): The desired Cloud TPU configuration. desired_l4ilb_subsetting_config (google.cloud.container_v1beta1.types.ILBSubsettingConfig): The desired L4 Internal Load Balancer Subsetting configuration. desired_datapath_provider (google.cloud.container_v1beta1.types.DatapathProvider): The desired datapath provider for the cluster. desired_private_ipv6_google_access (google.cloud.container_v1beta1.types.PrivateIPv6GoogleAccess): The desired state of IPv6 connectivity to Google Services. desired_notification_config (google.cloud.container_v1beta1.types.NotificationConfig): The desired notification configuration. desired_master_version (str): The Kubernetes version to change the master to. The only valid value is the latest supported version. Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - "latest": picks the highest valid Kubernetes version - "1.X": picks the highest valid patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit Kubernetes version - "-": picks the default Kubernetes version desired_database_encryption (google.cloud.container_v1beta1.types.DatabaseEncryption): Configuration of etcd encryption. desired_workload_identity_config (google.cloud.container_v1beta1.types.WorkloadIdentityConfig): Configuration for Workload Identity. desired_workload_certificates (google.cloud.container_v1beta1.types.WorkloadCertificates): Configuration for issuance of mTLS keys and certificates to Kubernetes pods. desired_shielded_nodes (google.cloud.container_v1beta1.types.ShieldedNodes): Configuration for Shielded Nodes. desired_master (google.cloud.container_v1beta1.types.Master): Configuration for master components. desired_dns_config (google.cloud.container_v1beta1.types.DNSConfig): DNSConfig contains clusterDNS config for this cluster. desired_service_external_ips_config (google.cloud.container_v1beta1.types.ServiceExternalIPsConfig): ServiceExternalIPsConfig specifies the config for the use of Services with ExternalIPs field. desired_authenticator_groups_config (google.cloud.container_v1beta1.types.AuthenticatorGroupsConfig): AuthenticatorGroupsConfig specifies the config for the cluster security groups settings. desired_logging_config (google.cloud.container_v1beta1.types.LoggingConfig): The desired logging configuration. desired_monitoring_config (google.cloud.container_v1beta1.types.MonitoringConfig): The desired monitoring configuration. desired_identity_service_config (google.cloud.container_v1beta1.types.IdentityServiceConfig): The desired Identity Service component configuration. """ desired_node_version = proto.Field(proto.STRING, number=4,) desired_monitoring_service = proto.Field(proto.STRING, number=5,) desired_addons_config = proto.Field( proto.MESSAGE, number=6, message="AddonsConfig", ) desired_node_pool_id = proto.Field(proto.STRING, number=7,) desired_image_type = proto.Field(proto.STRING, number=8,) desired_node_pool_autoscaling = proto.Field( proto.MESSAGE, number=9, message="NodePoolAutoscaling", ) desired_locations = proto.RepeatedField(proto.STRING, number=10,) desired_master_authorized_networks_config = proto.Field( proto.MESSAGE, number=12, message="MasterAuthorizedNetworksConfig", ) desired_pod_security_policy_config = proto.Field( proto.MESSAGE, number=14, message="PodSecurityPolicyConfig", ) desired_cluster_autoscaling = proto.Field( proto.MESSAGE, number=15, message="ClusterAutoscaling", ) desired_binary_authorization = proto.Field( proto.MESSAGE, number=16, message="BinaryAuthorization", ) desired_logging_service = proto.Field(proto.STRING, number=19,) desired_resource_usage_export_config = proto.Field( proto.MESSAGE, number=21, message="ResourceUsageExportConfig", ) desired_vertical_pod_autoscaling = proto.Field( proto.MESSAGE, number=22, message="VerticalPodAutoscaling", ) desired_private_cluster_config = proto.Field( proto.MESSAGE, number=25, message="PrivateClusterConfig", ) desired_intra_node_visibility_config = proto.Field( proto.MESSAGE, number=26, message="IntraNodeVisibilityConfig", ) desired_default_snat_status = proto.Field( proto.MESSAGE, number=28, message="DefaultSnatStatus", ) desired_cluster_telemetry = proto.Field( proto.MESSAGE, number=30, message="ClusterTelemetry", ) desired_release_channel = proto.Field( proto.MESSAGE, number=31, message="ReleaseChannel", ) desired_tpu_config = proto.Field(proto.MESSAGE, number=38, message="TpuConfig",) desired_l4ilb_subsetting_config = proto.Field( proto.MESSAGE, number=39, message="ILBSubsettingConfig", ) desired_datapath_provider = proto.Field( proto.ENUM, number=50, enum="DatapathProvider", ) desired_private_ipv6_google_access = proto.Field( proto.ENUM, number=51, enum="PrivateIPv6GoogleAccess", ) desired_notification_config = proto.Field( proto.MESSAGE, number=55, message="NotificationConfig", ) desired_master_version = proto.Field(proto.STRING, number=100,) desired_database_encryption = proto.Field( proto.MESSAGE, number=46, message="DatabaseEncryption", ) desired_workload_identity_config = proto.Field( proto.MESSAGE, number=47, message="WorkloadIdentityConfig", ) desired_workload_certificates = proto.Field( proto.MESSAGE, number=61, message="WorkloadCertificates", ) desired_shielded_nodes = proto.Field( proto.MESSAGE, number=48, message="ShieldedNodes", ) desired_master = proto.Field(proto.MESSAGE, number=52, message="Master",) desired_dns_config = proto.Field(proto.MESSAGE, number=53, message="DNSConfig",) desired_service_external_ips_config = proto.Field( proto.MESSAGE, number=60, message="ServiceExternalIPsConfig", ) desired_authenticator_groups_config = proto.Field( proto.MESSAGE, number=63, message="AuthenticatorGroupsConfig", ) desired_logging_config = proto.Field( proto.MESSAGE, number=64, message="LoggingConfig", ) desired_monitoring_config = proto.Field( proto.MESSAGE, number=65, message="MonitoringConfig", ) desired_identity_service_config = proto.Field( proto.MESSAGE, number=66, message="IdentityServiceConfig", )
[docs]class Operation(proto.Message): r"""This operation resource represents operations that may have happened or are happening on the cluster. All fields are output only. Attributes: name (str): The server-assigned ID for the operation. zone (str): The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the operation is taking place. This field is deprecated, use location instead. operation_type (google.cloud.container_v1beta1.types.Operation.Type): The operation type. status (google.cloud.container_v1beta1.types.Operation.Status): The current status of the operation. detail (str): Detailed operation progress, if available. status_message (str): Output only. If an error has occurred, a textual description of the error. Deprecated. Use field error instead. self_link (str): Server-defined URL for the resource. target_link (str): Server-defined URL for the target of the operation. location (str): [Output only] The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/regions-zones/regions-zones#available>`__ or `region <https://cloud.google.com/compute/docs/regions-zones/regions-zones#available>`__ in which the cluster resides. start_time (str): [Output only] The time the operation started, in `RFC3339 <https://www.ietf.org/rfc/rfc3339.txt>`__ text format. end_time (str): [Output only] The time the operation completed, in `RFC3339 <https://www.ietf.org/rfc/rfc3339.txt>`__ text format. progress (google.cloud.container_v1beta1.types.OperationProgress): Output only. [Output only] Progress information for an operation. cluster_conditions (Sequence[google.cloud.container_v1beta1.types.StatusCondition]): Which conditions caused the current cluster state. Deprecated. Use field error instead. nodepool_conditions (Sequence[google.cloud.container_v1beta1.types.StatusCondition]): Which conditions caused the current node pool state. Deprecated. Use field error instead. error (google.rpc.status_pb2.Status): The error result of the operation in case of failure. """
[docs] class Status(proto.Enum): r"""Current status of the operation.""" STATUS_UNSPECIFIED = 0 PENDING = 1 RUNNING = 2 DONE = 3 ABORTING = 4
[docs] class Type(proto.Enum): r"""Operation type.""" TYPE_UNSPECIFIED = 0 CREATE_CLUSTER = 1 DELETE_CLUSTER = 2 UPGRADE_MASTER = 3 UPGRADE_NODES = 4 REPAIR_CLUSTER = 5 UPDATE_CLUSTER = 6 CREATE_NODE_POOL = 7 DELETE_NODE_POOL = 8 SET_NODE_POOL_MANAGEMENT = 9 AUTO_REPAIR_NODES = 10 AUTO_UPGRADE_NODES = 11 SET_LABELS = 12 SET_MASTER_AUTH = 13 SET_NODE_POOL_SIZE = 14 SET_NETWORK_POLICY = 15 SET_MAINTENANCE_POLICY = 16
name = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) operation_type = proto.Field(proto.ENUM, number=3, enum=Type,) status = proto.Field(proto.ENUM, number=4, enum=Status,) detail = proto.Field(proto.STRING, number=8,) status_message = proto.Field(proto.STRING, number=5,) self_link = proto.Field(proto.STRING, number=6,) target_link = proto.Field(proto.STRING, number=7,) location = proto.Field(proto.STRING, number=9,) start_time = proto.Field(proto.STRING, number=10,) end_time = proto.Field(proto.STRING, number=11,) progress = proto.Field(proto.MESSAGE, number=12, message="OperationProgress",) cluster_conditions = proto.RepeatedField( proto.MESSAGE, number=13, message="StatusCondition", ) nodepool_conditions = proto.RepeatedField( proto.MESSAGE, number=14, message="StatusCondition", ) error = proto.Field(proto.MESSAGE, number=15, message=status_pb2.Status,)
[docs]class OperationProgress(proto.Message): r"""Information about operation (or operation stage) progress. Attributes: name (str): A non-parameterized string describing an operation stage. Unset for single-stage operations. status (google.cloud.container_v1beta1.types.Operation.Status): Status of an operation stage. Unset for single-stage operations. metrics (Sequence[google.cloud.container_v1beta1.types.OperationProgress.Metric]): Progress metric bundle, for example: metrics: [{name: "nodes done", int_value: 15}, {name: "nodes total", int_value: 32}] or metrics: [{name: "progress", double_value: 0.56}, {name: "progress scale", double_value: 1.0}] stages (Sequence[google.cloud.container_v1beta1.types.OperationProgress]): Substages of an operation or a stage. """
[docs] class Metric(proto.Message): r"""Progress metric is (string, int|float|string) pair. This message has `oneof`_ fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members. .. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields Attributes: name (str): Required. Metric name, e.g., "nodes total", "percent done". int_value (int): For metrics with integer value. This field is a member of `oneof`_ ``value``. double_value (float): For metrics with floating point value. This field is a member of `oneof`_ ``value``. string_value (str): For metrics with custom values (ratios, visual progress, etc.). This field is a member of `oneof`_ ``value``. """ name = proto.Field(proto.STRING, number=1,) int_value = proto.Field(proto.INT64, number=2, oneof="value",) double_value = proto.Field(proto.DOUBLE, number=3, oneof="value",) string_value = proto.Field(proto.STRING, number=4, oneof="value",)
name = proto.Field(proto.STRING, number=1,) status = proto.Field(proto.ENUM, number=2, enum="Operation.Status",) metrics = proto.RepeatedField(proto.MESSAGE, number=3, message=Metric,) stages = proto.RepeatedField(proto.MESSAGE, number=4, message="OperationProgress",)
[docs]class CreateClusterRequest(proto.Message): r"""CreateClusterRequest creates a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the parent field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the parent field. cluster (google.cloud.container_v1beta1.types.Cluster): Required. A `cluster resource <https://cloud.google.com/container-engine/reference/rest/v1beta1/projects.locations.clusters>`__ parent (str): The parent (project and location) where the cluster will be created. Specified in the format ``projects/*/locations/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster = proto.Field(proto.MESSAGE, number=3, message="Cluster",) parent = proto.Field(proto.STRING, number=5,)
[docs]class GetClusterRequest(proto.Message): r"""GetClusterRequest gets the settings of a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to retrieve. This field has been deprecated and replaced by the name field. name (str): The name (project, location, cluster) of the cluster to retrieve. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) name = proto.Field(proto.STRING, number=5,)
[docs]class UpdateClusterRequest(proto.Message): r"""UpdateClusterRequest updates the settings of a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. update (google.cloud.container_v1beta1.types.ClusterUpdate): Required. A description of the update. name (str): The name (project, location, cluster) of the cluster to update. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) update = proto.Field(proto.MESSAGE, number=4, message="ClusterUpdate",) name = proto.Field(proto.STRING, number=5,)
[docs]class UpdateNodePoolRequest(proto.Message): r"""SetNodePoolVersionRequest updates the version of a node pool. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. node_pool_id (str): Required. Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field. node_version (str): Required. The Kubernetes version to change the nodes to (typically an upgrade). Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - "latest": picks the highest valid Kubernetes version - "1.X": picks the highest valid patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit Kubernetes version - "-": picks the Kubernetes master version image_type (str): Required. The desired image type for the node pool. locations (Sequence[str]): The desired list of Google Compute Engine `zones <https://cloud.google.com/compute/docs/zones#available>`__ in which the node pool's nodes should be located. Changing the locations for a node pool will result in nodes being either created or removed from the node pool, depending on whether locations are being added or removed. workload_metadata_config (google.cloud.container_v1beta1.types.WorkloadMetadataConfig): The desired workload metadata config for the node pool. name (str): The name (project, location, cluster, node pool) of the node pool to update. Specified in the format ``projects/*/locations/*/clusters/*/nodePools/*``. upgrade_settings (google.cloud.container_v1beta1.types.NodePool.UpgradeSettings): Upgrade settings control disruption and speed of the upgrade. tags (google.cloud.container_v1beta1.types.NetworkTags): The desired network tags to be applied to all nodes in the node pool. If this field is not present, the tags will not be changed. Otherwise, the existing network tags will be *replaced* with the provided tags. taints (google.cloud.container_v1beta1.types.NodeTaints): The desired node taints to be applied to all nodes in the node pool. If this field is not present, the taints will not be changed. Otherwise, the existing node taints will be *replaced* with the provided taints. labels (google.cloud.container_v1beta1.types.NodeLabels): The desired node labels to be applied to all nodes in the node pool. If this field is not present, the labels will not be changed. Otherwise, the existing node labels will be *replaced* with the provided labels. linux_node_config (google.cloud.container_v1beta1.types.LinuxNodeConfig): Parameters that can be configured on Linux nodes. kubelet_config (google.cloud.container_v1beta1.types.NodeKubeletConfig): Node kubelet configs. gvnic (google.cloud.container_v1beta1.types.VirtualNIC): Enable or disable gvnic on the node pool. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool_id = proto.Field(proto.STRING, number=4,) node_version = proto.Field(proto.STRING, number=5,) image_type = proto.Field(proto.STRING, number=6,) locations = proto.RepeatedField(proto.STRING, number=13,) workload_metadata_config = proto.Field( proto.MESSAGE, number=14, message="WorkloadMetadataConfig", ) name = proto.Field(proto.STRING, number=8,) upgrade_settings = proto.Field( proto.MESSAGE, number=15, message="NodePool.UpgradeSettings", ) tags = proto.Field(proto.MESSAGE, number=16, message="NetworkTags",) taints = proto.Field(proto.MESSAGE, number=17, message="NodeTaints",) labels = proto.Field(proto.MESSAGE, number=18, message="NodeLabels",) linux_node_config = proto.Field( proto.MESSAGE, number=19, message="LinuxNodeConfig", ) kubelet_config = proto.Field(proto.MESSAGE, number=20, message="NodeKubeletConfig",) gvnic = proto.Field(proto.MESSAGE, number=29, message="VirtualNIC",)
[docs]class SetNodePoolAutoscalingRequest(proto.Message): r"""SetNodePoolAutoscalingRequest sets the autoscaler settings of a node pool. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. node_pool_id (str): Required. Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field. autoscaling (google.cloud.container_v1beta1.types.NodePoolAutoscaling): Required. Autoscaling configuration for the node pool. name (str): The name (project, location, cluster, node pool) of the node pool to set autoscaler settings. Specified in the format ``projects/*/locations/*/clusters/*/nodePools/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool_id = proto.Field(proto.STRING, number=4,) autoscaling = proto.Field(proto.MESSAGE, number=5, message="NodePoolAutoscaling",) name = proto.Field(proto.STRING, number=6,)
[docs]class SetLoggingServiceRequest(proto.Message): r"""SetLoggingServiceRequest sets the logging service of a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. logging_service (str): Required. The logging service the cluster should use to write logs. Currently available options: - ``logging.googleapis.com/kubernetes`` - The Cloud Logging service with a Kubernetes-native resource model - ``logging.googleapis.com`` - The legacy Cloud Logging service (no longer available as of GKE 1.15). - ``none`` - no logs will be exported from the cluster. If left as an empty string,\ ``logging.googleapis.com/kubernetes`` will be used for GKE 1.14+ or ``logging.googleapis.com`` for earlier versions. name (str): The name (project, location, cluster) of the cluster to set logging. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) logging_service = proto.Field(proto.STRING, number=4,) name = proto.Field(proto.STRING, number=5,)
[docs]class SetMonitoringServiceRequest(proto.Message): r"""SetMonitoringServiceRequest sets the monitoring service of a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. monitoring_service (str): Required. The monitoring service the cluster should use to write metrics. Currently available options: - "monitoring.googleapis.com/kubernetes" - The Cloud Monitoring service with a Kubernetes-native resource model - ``monitoring.googleapis.com`` - The legacy Cloud Monitoring service (no longer available as of GKE 1.15). - ``none`` - No metrics will be exported from the cluster. If left as an empty string,\ ``monitoring.googleapis.com/kubernetes`` will be used for GKE 1.14+ or ``monitoring.googleapis.com`` for earlier versions. name (str): The name (project, location, cluster) of the cluster to set monitoring. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) monitoring_service = proto.Field(proto.STRING, number=4,) name = proto.Field(proto.STRING, number=6,)
[docs]class SetAddonsConfigRequest(proto.Message): r"""SetAddonsRequest sets the addons associated with the cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. addons_config (google.cloud.container_v1beta1.types.AddonsConfig): Required. The desired configurations for the various addons available to run in the cluster. name (str): The name (project, location, cluster) of the cluster to set addons. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) addons_config = proto.Field(proto.MESSAGE, number=4, message="AddonsConfig",) name = proto.Field(proto.STRING, number=6,)
[docs]class SetLocationsRequest(proto.Message): r"""SetLocationsRequest sets the locations of the cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. locations (Sequence[str]): Required. The desired list of Google Compute Engine `zones <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster's nodes should be located. Changing the locations a cluster is in will result in nodes being either created or removed from the cluster, depending on whether locations are being added or removed. This list must always include the cluster's primary zone. name (str): The name (project, location, cluster) of the cluster to set locations. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) locations = proto.RepeatedField(proto.STRING, number=4,) name = proto.Field(proto.STRING, number=6,)
[docs]class UpdateMasterRequest(proto.Message): r"""UpdateMasterRequest updates the master of the cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. master_version (str): Required. The Kubernetes version to change the master to. Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - "latest": picks the highest valid Kubernetes version - "1.X": picks the highest valid patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit Kubernetes version - "-": picks the default Kubernetes version name (str): The name (project, location, cluster) of the cluster to update. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) master_version = proto.Field(proto.STRING, number=4,) name = proto.Field(proto.STRING, number=7,)
[docs]class SetMasterAuthRequest(proto.Message): r"""SetMasterAuthRequest updates the admin password of a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field. action (google.cloud.container_v1beta1.types.SetMasterAuthRequest.Action): Required. The exact form of action to be taken on the master auth. update (google.cloud.container_v1beta1.types.MasterAuth): Required. A description of the update. name (str): The name (project, location, cluster) of the cluster to set auth. Specified in the format ``projects/*/locations/*/clusters/*``. """
[docs] class Action(proto.Enum): r"""Operation type: what type update to perform.""" UNKNOWN = 0 SET_PASSWORD = 1 GENERATE_PASSWORD = 2 SET_USERNAME = 3
project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) action = proto.Field(proto.ENUM, number=4, enum=Action,) update = proto.Field(proto.MESSAGE, number=5, message="MasterAuth",) name = proto.Field(proto.STRING, number=7,)
[docs]class DeleteClusterRequest(proto.Message): r"""DeleteClusterRequest deletes a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to delete. This field has been deprecated and replaced by the name field. name (str): The name (project, location, cluster) of the cluster to delete. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) name = proto.Field(proto.STRING, number=4,)
[docs]class ListClustersRequest(proto.Message): r"""ListClustersRequest lists clusters. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the parent field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides, or "-" for all zones. This field has been deprecated and replaced by the parent field. parent (str): The parent (project and location) where the clusters will be listed. Specified in the format ``projects/*/locations/*``. Location "-" matches all zones and all regions. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) parent = proto.Field(proto.STRING, number=4,)
[docs]class ListClustersResponse(proto.Message): r"""ListClustersResponse is the result of ListClustersRequest. Attributes: clusters (Sequence[google.cloud.container_v1beta1.types.Cluster]): A list of clusters in the project in the specified zone, or across all ones. missing_zones (Sequence[str]): If any zones are listed here, the list of clusters returned may be missing those zones. """ clusters = proto.RepeatedField(proto.MESSAGE, number=1, message="Cluster",) missing_zones = proto.RepeatedField(proto.STRING, number=2,)
[docs]class GetOperationRequest(proto.Message): r"""GetOperationRequest gets a single operation. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. operation_id (str): Required. Deprecated. The server-assigned ``name`` of the operation. This field has been deprecated and replaced by the name field. name (str): The name (project, location, operation id) of the operation to get. Specified in the format ``projects/*/locations/*/operations/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) operation_id = proto.Field(proto.STRING, number=3,) name = proto.Field(proto.STRING, number=5,)
[docs]class ListOperationsRequest(proto.Message): r"""ListOperationsRequest lists operations. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the parent field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ to return operations for, or ``-`` for all zones. This field has been deprecated and replaced by the parent field. parent (str): The parent (project and location) where the operations will be listed. Specified in the format ``projects/*/locations/*``. Location "-" matches all zones and all regions. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) parent = proto.Field(proto.STRING, number=4,)
[docs]class CancelOperationRequest(proto.Message): r"""CancelOperationRequest cancels a single operation. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the operation resides. This field has been deprecated and replaced by the name field. operation_id (str): Required. Deprecated. The server-assigned ``name`` of the operation. This field has been deprecated and replaced by the name field. name (str): The name (project, location, operation id) of the operation to cancel. Specified in the format ``projects/*/locations/*/operations/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) operation_id = proto.Field(proto.STRING, number=3,) name = proto.Field(proto.STRING, number=4,)
[docs]class ListOperationsResponse(proto.Message): r"""ListOperationsResponse is the result of ListOperationsRequest. Attributes: operations (Sequence[google.cloud.container_v1beta1.types.Operation]): A list of operations in the project in the specified zone. missing_zones (Sequence[str]): If any zones are listed here, the list of operations returned may be missing the operations from those zones. """ operations = proto.RepeatedField(proto.MESSAGE, number=1, message="Operation",) missing_zones = proto.RepeatedField(proto.STRING, number=2,)
[docs]class GetServerConfigRequest(proto.Message): r"""Gets the current Kubernetes Engine service configuration. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ to return operations for. This field has been deprecated and replaced by the name field. name (str): The name (project and location) of the server config to get, specified in the format ``projects/*/locations/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) name = proto.Field(proto.STRING, number=4,)
[docs]class ServerConfig(proto.Message): r"""Kubernetes Engine service configuration. Attributes: default_cluster_version (str): Version of Kubernetes the service deploys by default. valid_node_versions (Sequence[str]): List of valid node upgrade target versions, in descending order. default_image_type (str): Default image type. valid_image_types (Sequence[str]): List of valid image types. valid_master_versions (Sequence[str]): List of valid master versions, in descending order. channels (Sequence[google.cloud.container_v1beta1.types.ServerConfig.ReleaseChannelConfig]): List of release channel configurations. windows_version_maps (Sequence[google.cloud.container_v1beta1.types.ServerConfig.WindowsVersionMapsEntry]): Maps of Kubernetes version and supported Windows server versions. """
[docs] class ReleaseChannelConfig(proto.Message): r"""ReleaseChannelConfig exposes configuration for a release channel. Attributes: channel (google.cloud.container_v1beta1.types.ReleaseChannel.Channel): The release channel this configuration applies to. default_version (str): The default version for newly created clusters on the channel. available_versions (Sequence[google.cloud.container_v1beta1.types.ServerConfig.ReleaseChannelConfig.AvailableVersion]): Deprecated. This field has been deprecated and replaced with the valid_versions field. valid_versions (Sequence[str]): List of valid versions for the channel. """
[docs] class AvailableVersion(proto.Message): r"""Deprecated. Attributes: version (str): Kubernetes version. reason (str): Reason for availability. """ version = proto.Field(proto.STRING, number=1,) reason = proto.Field(proto.STRING, number=2,)
channel = proto.Field(proto.ENUM, number=1, enum="ReleaseChannel.Channel",) default_version = proto.Field(proto.STRING, number=2,) available_versions = proto.RepeatedField( proto.MESSAGE, number=3, message="ServerConfig.ReleaseChannelConfig.AvailableVersion", ) valid_versions = proto.RepeatedField(proto.STRING, number=4,)
default_cluster_version = proto.Field(proto.STRING, number=1,) valid_node_versions = proto.RepeatedField(proto.STRING, number=3,) default_image_type = proto.Field(proto.STRING, number=4,) valid_image_types = proto.RepeatedField(proto.STRING, number=5,) valid_master_versions = proto.RepeatedField(proto.STRING, number=6,) channels = proto.RepeatedField( proto.MESSAGE, number=9, message=ReleaseChannelConfig, ) windows_version_maps = proto.MapField( proto.STRING, proto.MESSAGE, number=10, message="WindowsVersions", )
[docs]class WindowsVersions(proto.Message): r"""Windows server versions. Attributes: windows_versions (Sequence[google.cloud.container_v1beta1.types.WindowsVersions.WindowsVersion]): List of Windows server versions. """
[docs] class WindowsVersion(proto.Message): r"""Windows server version. Attributes: image_type (str): Windows server image type os_version (str): Windows server build number support_end_date (google.type.date_pb2.Date): Mainstream support end date """ image_type = proto.Field(proto.STRING, number=1,) os_version = proto.Field(proto.STRING, number=2,) support_end_date = proto.Field(proto.MESSAGE, number=3, message=date_pb2.Date,)
windows_versions = proto.RepeatedField( proto.MESSAGE, number=1, message=WindowsVersion, )
[docs]class CreateNodePoolRequest(proto.Message): r"""CreateNodePoolRequest creates a node pool for a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the parent field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the parent field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field. node_pool (google.cloud.container_v1beta1.types.NodePool): Required. The node pool to create. parent (str): The parent (project, location, cluster id) where the node pool will be created. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool = proto.Field(proto.MESSAGE, number=4, message="NodePool",) parent = proto.Field(proto.STRING, number=6,)
[docs]class DeleteNodePoolRequest(proto.Message): r"""DeleteNodePoolRequest deletes a node pool for a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field. node_pool_id (str): Required. Deprecated. The name of the node pool to delete. This field has been deprecated and replaced by the name field. name (str): The name (project, location, cluster, node pool id) of the node pool to delete. Specified in the format ``projects/*/locations/*/clusters/*/nodePools/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool_id = proto.Field(proto.STRING, number=4,) name = proto.Field(proto.STRING, number=6,)
[docs]class ListNodePoolsRequest(proto.Message): r"""ListNodePoolsRequest lists the node pool(s) for a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the parent field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the parent field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field. parent (str): The parent (project, location, cluster id) where the node pools will be listed. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) parent = proto.Field(proto.STRING, number=5,)
[docs]class GetNodePoolRequest(proto.Message): r"""GetNodePoolRequest retrieves a node pool for a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field. node_pool_id (str): Required. Deprecated. The name of the node pool. This field has been deprecated and replaced by the name field. name (str): The name (project, location, cluster, node pool id) of the node pool to get. Specified in the format ``projects/*/locations/*/clusters/*/nodePools/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool_id = proto.Field(proto.STRING, number=4,) name = proto.Field(proto.STRING, number=6,)
[docs]class NodePool(proto.Message): r"""NodePool contains the name and configuration for a cluster's node pool. Node pools are a set of nodes (i.e. VM's), with a common configuration and specification, under the control of the cluster master. They may have a set of Kubernetes labels applied to them, which may be used to reference them during pod scheduling. They may also be resized up or down, to accommodate the workload. These upgrade settings control the level of parallelism and the level of disruption caused by an upgrade. maxUnavailable controls the number of nodes that can be simultaneously unavailable. maxSurge controls the number of additional nodes that can be added to the node pool temporarily for the time of the upgrade to increase the number of available nodes. (maxUnavailable + maxSurge) determines the level of parallelism (how many nodes are being upgraded at the same time). Note: upgrades inevitably introduce some disruption since workloads need to be moved from old nodes to new, upgraded ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the same time. This ensures that there are always at least 4 nodes available. Attributes: name (str): The name of the node pool. config (google.cloud.container_v1beta1.types.NodeConfig): The node configuration of the pool. initial_node_count (int): The initial node count for the pool. You must ensure that your Compute Engine `resource quota <https://cloud.google.com/compute/quotas>`__ is sufficient for this number of instances. You must also have available firewall and routes quota. locations (Sequence[str]): The list of Google Compute Engine `zones <https://cloud.google.com/compute/docs/zones#available>`__ in which the NodePool's nodes should be located. If this value is unspecified during node pool creation, the `Cluster.Locations <https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters#Cluster.FIELDS.locations>`__ value will be used, instead. Warning: changing node pool locations will result in nodes being added and/or removed. network_config (google.cloud.container_v1beta1.types.NodeNetworkConfig): Networking configuration for this NodePool. If specified, it overrides the cluster-level defaults. self_link (str): [Output only] Server-defined URL for the resource. version (str): The version of the Kubernetes of this node. instance_group_urls (Sequence[str]): [Output only] The resource URLs of the `managed instance groups <https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances>`__ associated with this node pool. status (google.cloud.container_v1beta1.types.NodePool.Status): [Output only] The status of the nodes in this pool instance. status_message (str): [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available. autoscaling (google.cloud.container_v1beta1.types.NodePoolAutoscaling): Autoscaler configuration for this NodePool. Autoscaler is enabled only if a valid configuration is present. management (google.cloud.container_v1beta1.types.NodeManagement): NodeManagement configuration for this NodePool. max_pods_constraint (google.cloud.container_v1beta1.types.MaxPodsConstraint): The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool. conditions (Sequence[google.cloud.container_v1beta1.types.StatusCondition]): Which conditions caused the current node pool state. pod_ipv4_cidr_size (int): [Output only] The pod CIDR block size per node in this node pool. upgrade_settings (google.cloud.container_v1beta1.types.NodePool.UpgradeSettings): Upgrade settings control disruption and speed of the upgrade. """
[docs] class Status(proto.Enum): r"""The current status of the node pool instance.""" STATUS_UNSPECIFIED = 0 PROVISIONING = 1 RUNNING = 2 RUNNING_WITH_ERROR = 3 RECONCILING = 4 STOPPING = 5 ERROR = 6
[docs] class UpgradeSettings(proto.Message): r""" Attributes: max_surge (int): The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process. max_unavailable (int): The maximum number of nodes that can be simultaneously unavailable during the upgrade process. A node is considered available if its status is Ready. """ max_surge = proto.Field(proto.INT32, number=1,) max_unavailable = proto.Field(proto.INT32, number=2,)
name = proto.Field(proto.STRING, number=1,) config = proto.Field(proto.MESSAGE, number=2, message="NodeConfig",) initial_node_count = proto.Field(proto.INT32, number=3,) locations = proto.RepeatedField(proto.STRING, number=13,) network_config = proto.Field(proto.MESSAGE, number=14, message="NodeNetworkConfig",) self_link = proto.Field(proto.STRING, number=100,) version = proto.Field(proto.STRING, number=101,) instance_group_urls = proto.RepeatedField(proto.STRING, number=102,) status = proto.Field(proto.ENUM, number=103, enum=Status,) status_message = proto.Field(proto.STRING, number=104,) autoscaling = proto.Field(proto.MESSAGE, number=4, message="NodePoolAutoscaling",) management = proto.Field(proto.MESSAGE, number=5, message="NodeManagement",) max_pods_constraint = proto.Field( proto.MESSAGE, number=6, message="MaxPodsConstraint", ) conditions = proto.RepeatedField( proto.MESSAGE, number=105, message="StatusCondition", ) pod_ipv4_cidr_size = proto.Field(proto.INT32, number=7,) upgrade_settings = proto.Field(proto.MESSAGE, number=107, message=UpgradeSettings,)
[docs]class NodeManagement(proto.Message): r"""NodeManagement defines the set of node management services turned on for the node pool. Attributes: auto_upgrade (bool): Whether the nodes will be automatically upgraded. auto_repair (bool): Whether the nodes will be automatically repaired. upgrade_options (google.cloud.container_v1beta1.types.AutoUpgradeOptions): Specifies the Auto Upgrade knobs for the node pool. """ auto_upgrade = proto.Field(proto.BOOL, number=1,) auto_repair = proto.Field(proto.BOOL, number=2,) upgrade_options = proto.Field( proto.MESSAGE, number=10, message="AutoUpgradeOptions", )
[docs]class AutoUpgradeOptions(proto.Message): r"""AutoUpgradeOptions defines the set of options for the user to control how the Auto Upgrades will proceed. Attributes: auto_upgrade_start_time (str): [Output only] This field is set when upgrades are about to commence with the approximate start time for the upgrades, in `RFC3339 <https://www.ietf.org/rfc/rfc3339.txt>`__ text format. description (str): [Output only] This field is set when upgrades are about to commence with the description of the upgrade. """ auto_upgrade_start_time = proto.Field(proto.STRING, number=1,) description = proto.Field(proto.STRING, number=2,)
[docs]class MaintenancePolicy(proto.Message): r"""MaintenancePolicy defines the maintenance policy to be used for the cluster. Attributes: window (google.cloud.container_v1beta1.types.MaintenanceWindow): Specifies the maintenance window in which maintenance may be performed. resource_version (str): A hash identifying the version of this policy, so that updates to fields of the policy won't accidentally undo intermediate changes (and so that users of the API unaware of some fields won't accidentally remove other fields). Make a ``get()`` request to the cluster to get the current resource version and include it with requests to set the policy. """ window = proto.Field(proto.MESSAGE, number=1, message="MaintenanceWindow",) resource_version = proto.Field(proto.STRING, number=3,)
[docs]class MaintenanceWindow(proto.Message): r"""MaintenanceWindow defines the maintenance window to be used for the cluster. This message has `oneof`_ fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members. .. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields Attributes: daily_maintenance_window (google.cloud.container_v1beta1.types.DailyMaintenanceWindow): DailyMaintenanceWindow specifies a daily maintenance operation window. This field is a member of `oneof`_ ``policy``. recurring_window (google.cloud.container_v1beta1.types.RecurringTimeWindow): RecurringWindow specifies some number of recurring time periods for maintenance to occur. The time windows may be overlapping. If no maintenance windows are set, maintenance can occur at any time. This field is a member of `oneof`_ ``policy``. maintenance_exclusions (Sequence[google.cloud.container_v1beta1.types.MaintenanceWindow.MaintenanceExclusionsEntry]): Exceptions to maintenance window. Non- mergency maintenance should not occur in these windows. """ daily_maintenance_window = proto.Field( proto.MESSAGE, number=2, oneof="policy", message="DailyMaintenanceWindow", ) recurring_window = proto.Field( proto.MESSAGE, number=3, oneof="policy", message="RecurringTimeWindow", ) maintenance_exclusions = proto.MapField( proto.STRING, proto.MESSAGE, number=4, message="TimeWindow", )
[docs]class TimeWindow(proto.Message): r"""Represents an arbitrary window of time. Attributes: start_time (google.protobuf.timestamp_pb2.Timestamp): The time that the window first starts. end_time (google.protobuf.timestamp_pb2.Timestamp): The time that the window ends. The end time should take place after the start time. """ start_time = proto.Field(proto.MESSAGE, number=1, message=timestamp_pb2.Timestamp,) end_time = proto.Field(proto.MESSAGE, number=2, message=timestamp_pb2.Timestamp,)
[docs]class RecurringTimeWindow(proto.Message): r"""Represents an arbitrary window of time that recurs. Attributes: window (google.cloud.container_v1beta1.types.TimeWindow): The window of the first recurrence. recurrence (str): An RRULE (https://tools.ietf.org/html/rfc5545#section-3.8.5.3) for how this window reccurs. They go on for the span of time between the start and end time. For example, to have something repeat every weekday, you'd use: ``FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR`` To repeat some window daily (equivalent to the DailyMaintenanceWindow): ``FREQ=DAILY`` For the first weekend of every month: ``FREQ=MONTHLY;BYSETPOS=1;BYDAY=SA,SU`` This specifies how frequently the window starts. Eg, if you wanted to have a 9-5 UTC-4 window every weekday, you'd use something like: :: start time = 2019-01-01T09:00:00-0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR Windows can span multiple days. Eg, to make the window encompass every weekend from midnight Saturday till the last minute of Sunday UTC: :: start time = 2019-01-05T00:00:00Z end time = 2019-01-07T23:59:00Z recurrence = FREQ=WEEKLY;BYDAY=SA Note the start and end time's specific dates are largely arbitrary except to specify duration of the window and when it first starts. The FREQ values of HOURLY, MINUTELY, and SECONDLY are not supported. """ window = proto.Field(proto.MESSAGE, number=1, message="TimeWindow",) recurrence = proto.Field(proto.STRING, number=2,)
[docs]class DailyMaintenanceWindow(proto.Message): r"""Time window specified for daily maintenance operations. Attributes: start_time (str): Time within the maintenance window to start the maintenance operations. It must be in format "HH:MM", where HH : [00-23] and MM : [00-59] GMT. duration (str): [Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario. """ start_time = proto.Field(proto.STRING, number=2,) duration = proto.Field(proto.STRING, number=3,)
[docs]class SetNodePoolManagementRequest(proto.Message): r"""SetNodePoolManagementRequest sets the node management properties of a node pool. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field. node_pool_id (str): Required. Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field. management (google.cloud.container_v1beta1.types.NodeManagement): Required. NodeManagement configuration for the node pool. name (str): The name (project, location, cluster, node pool id) of the node pool to set management properties. Specified in the format ``projects/*/locations/*/clusters/*/nodePools/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool_id = proto.Field(proto.STRING, number=4,) management = proto.Field(proto.MESSAGE, number=5, message="NodeManagement",) name = proto.Field(proto.STRING, number=7,)
[docs]class SetNodePoolSizeRequest(proto.Message): r"""SetNodePoolSizeRequest sets the size of a node pool. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field. node_pool_id (str): Required. Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field. node_count (int): Required. The desired node count for the pool. name (str): The name (project, location, cluster, node pool id) of the node pool to set size. Specified in the format ``projects/*/locations/*/clusters/*/nodePools/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool_id = proto.Field(proto.STRING, number=4,) node_count = proto.Field(proto.INT32, number=5,) name = proto.Field(proto.STRING, number=7,)
[docs]class RollbackNodePoolUpgradeRequest(proto.Message): r"""RollbackNodePoolUpgradeRequest rollbacks the previously Aborted or Failed NodePool upgrade. This will be an no-op if the last upgrade successfully completed. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to rollback. This field has been deprecated and replaced by the name field. node_pool_id (str): Required. Deprecated. The name of the node pool to rollback. This field has been deprecated and replaced by the name field. name (str): The name (project, location, cluster, node pool id) of the node poll to rollback upgrade. Specified in the format ``projects/*/locations/*/clusters/*/nodePools/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) node_pool_id = proto.Field(proto.STRING, number=4,) name = proto.Field(proto.STRING, number=6,)
[docs]class ListNodePoolsResponse(proto.Message): r"""ListNodePoolsResponse is the result of ListNodePoolsRequest. Attributes: node_pools (Sequence[google.cloud.container_v1beta1.types.NodePool]): A list of node pools for a cluster. """ node_pools = proto.RepeatedField(proto.MESSAGE, number=1, message="NodePool",)
[docs]class ClusterAutoscaling(proto.Message): r"""ClusterAutoscaling contains global, per-cluster information required by Cluster Autoscaler to automatically adjust the size of the cluster and create/delete node pools based on the current needs. Attributes: enable_node_autoprovisioning (bool): Enables automatic node pool creation and deletion. resource_limits (Sequence[google.cloud.container_v1beta1.types.ResourceLimit]): Contains global constraints regarding minimum and maximum amount of resources in the cluster. autoscaling_profile (google.cloud.container_v1beta1.types.ClusterAutoscaling.AutoscalingProfile): Defines autoscaling behaviour. autoprovisioning_node_pool_defaults (google.cloud.container_v1beta1.types.AutoprovisioningNodePoolDefaults): AutoprovisioningNodePoolDefaults contains defaults for a node pool created by NAP. autoprovisioning_locations (Sequence[str]): The list of Google Compute Engine `zones <https://cloud.google.com/compute/docs/zones#available>`__ in which the NodePool's nodes can be created by NAP. """
[docs] class AutoscalingProfile(proto.Enum): r"""Defines possible options for autoscaling_profile field.""" PROFILE_UNSPECIFIED = 0 OPTIMIZE_UTILIZATION = 1 BALANCED = 2
enable_node_autoprovisioning = proto.Field(proto.BOOL, number=1,) resource_limits = proto.RepeatedField( proto.MESSAGE, number=2, message="ResourceLimit", ) autoscaling_profile = proto.Field(proto.ENUM, number=3, enum=AutoscalingProfile,) autoprovisioning_node_pool_defaults = proto.Field( proto.MESSAGE, number=4, message="AutoprovisioningNodePoolDefaults", ) autoprovisioning_locations = proto.RepeatedField(proto.STRING, number=5,)
[docs]class AutoprovisioningNodePoolDefaults(proto.Message): r"""AutoprovisioningNodePoolDefaults contains defaults for a node pool created by NAP. Attributes: oauth_scopes (Sequence[str]): The set of Google API scopes to be made available on all of the node VMs under the "default" service account. The following scopes are recommended, but not required, and by default are not included: - ``https://www.googleapis.com/auth/compute`` is required for mounting persistent storage on your nodes. - ``https://www.googleapis.com/auth/devstorage.read_only`` is required for communicating with **gcr.io** (the `Google Container Registry <https://cloud.google.com/container-registry/>`__). If unspecified, no scopes are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case their required scopes will be added. service_account (str): The Google Cloud Platform Service Account to be used by the node VMs. Specify the email address of the Service Account; otherwise, if no Service Account is specified, the "default" service account is used. upgrade_settings (google.cloud.container_v1beta1.types.NodePool.UpgradeSettings): Upgrade settings control disruption and speed of the upgrade. management (google.cloud.container_v1beta1.types.NodeManagement): NodeManagement configuration for this NodePool. min_cpu_platform (str): Minimum CPU platform to be used by this instance. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as ``minCpuPlatform: "Intel Haswell"`` or ``minCpuPlatform: "Intel Sandy Bridge"``. For more information, read `how to specify min CPU platform <https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform>`__ To unset the min cpu platform field pass "automatic" as field value. disk_size_gb (int): Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB. If unspecified, the default disk size is 100GB. disk_type (str): Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd' or 'pd-balanced') If unspecified, the default disk type is 'pd- standard' shielded_instance_config (google.cloud.container_v1beta1.types.ShieldedInstanceConfig): Shielded Instance options. boot_disk_kms_key (str): The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption image_type (str): The image type to use for NAP created node. """ oauth_scopes = proto.RepeatedField(proto.STRING, number=1,) service_account = proto.Field(proto.STRING, number=2,) upgrade_settings = proto.Field( proto.MESSAGE, number=3, message="NodePool.UpgradeSettings", ) management = proto.Field(proto.MESSAGE, number=4, message="NodeManagement",) min_cpu_platform = proto.Field(proto.STRING, number=5,) disk_size_gb = proto.Field(proto.INT32, number=6,) disk_type = proto.Field(proto.STRING, number=7,) shielded_instance_config = proto.Field( proto.MESSAGE, number=8, message="ShieldedInstanceConfig", ) boot_disk_kms_key = proto.Field(proto.STRING, number=9,) image_type = proto.Field(proto.STRING, number=10,)
[docs]class ResourceLimit(proto.Message): r"""Contains information about amount of some resource in the cluster. For memory, value should be in GB. Attributes: resource_type (str): Resource name "cpu", "memory" or gpu-specific string. minimum (int): Minimum amount of the resource in the cluster. maximum (int): Maximum amount of the resource in the cluster. """ resource_type = proto.Field(proto.STRING, number=1,) minimum = proto.Field(proto.INT64, number=2,) maximum = proto.Field(proto.INT64, number=3,)
[docs]class NodePoolAutoscaling(proto.Message): r"""NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage. Attributes: enabled (bool): Is autoscaling enabled for this node pool. min_node_count (int): Minimum number of nodes in the NodePool. Must be >= 1 and <= max_node_count. max_node_count (int): Maximum number of nodes in the NodePool. Must be >= min_node_count. There has to be enough quota to scale up the cluster. autoprovisioned (bool): Can this node pool be deleted automatically. """ enabled = proto.Field(proto.BOOL, number=1,) min_node_count = proto.Field(proto.INT32, number=2,) max_node_count = proto.Field(proto.INT32, number=3,) autoprovisioned = proto.Field(proto.BOOL, number=4,)
[docs]class SetLabelsRequest(proto.Message): r"""SetLabelsRequest sets the Google Cloud Platform labels on a Google Container Engine cluster, which will in turn set them for Google Compute Engine resources used by that cluster Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field. resource_labels (Sequence[google.cloud.container_v1beta1.types.SetLabelsRequest.ResourceLabelsEntry]): Required. The labels to set for that cluster. label_fingerprint (str): Required. The fingerprint of the previous set of labels for this resource, used to detect conflicts. The fingerprint is initially generated by Kubernetes Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash when updating or changing labels. Make a ``get()`` request to the resource to get the latest fingerprint. name (str): The name (project, location, cluster id) of the cluster to set labels. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) resource_labels = proto.MapField(proto.STRING, proto.STRING, number=4,) label_fingerprint = proto.Field(proto.STRING, number=5,) name = proto.Field(proto.STRING, number=7,)
[docs]class SetLegacyAbacRequest(proto.Message): r"""SetLegacyAbacRequest enables or disables the ABAC authorization mechanism for a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field. enabled (bool): Required. Whether ABAC authorization will be enabled in the cluster. name (str): The name (project, location, cluster id) of the cluster to set legacy abac. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) enabled = proto.Field(proto.BOOL, number=4,) name = proto.Field(proto.STRING, number=6,)
[docs]class StartIPRotationRequest(proto.Message): r"""StartIPRotationRequest creates a new IP for the cluster and then performs a node upgrade on each node pool to point to the new IP. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field. name (str): The name (project, location, cluster id) of the cluster to start IP rotation. Specified in the format ``projects/*/locations/*/clusters/*``. rotate_credentials (bool): Whether to rotate credentials during IP rotation. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) name = proto.Field(proto.STRING, number=6,) rotate_credentials = proto.Field(proto.BOOL, number=7,)
[docs]class CompleteIPRotationRequest(proto.Message): r"""CompleteIPRotationRequest moves the cluster master back into single-IP mode. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field. name (str): The name (project, location, cluster id) of the cluster to complete IP rotation. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) name = proto.Field(proto.STRING, number=7,)
[docs]class AcceleratorConfig(proto.Message): r"""AcceleratorConfig represents a Hardware Accelerator request. Attributes: accelerator_count (int): The number of the accelerator cards exposed to an instance. accelerator_type (str): The accelerator type resource name. List of supported accelerators `here <https://cloud.google.com/compute/docs/gpus>`__ gpu_partition_size (str): Size of partitions to create on the GPU. Valid values are described in the NVIDIA `mig user guide <https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning>`__. """ accelerator_count = proto.Field(proto.INT64, number=1,) accelerator_type = proto.Field(proto.STRING, number=2,) gpu_partition_size = proto.Field(proto.STRING, number=3,)
[docs]class WorkloadMetadataConfig(proto.Message): r"""WorkloadMetadataConfig defines the metadata configuration to expose to workloads on the node pool. Attributes: node_metadata (google.cloud.container_v1beta1.types.WorkloadMetadataConfig.NodeMetadata): NodeMetadata is the configuration for how to expose metadata to the workloads running on the node. mode (google.cloud.container_v1beta1.types.WorkloadMetadataConfig.Mode): Mode is the configuration for how to expose metadata to workloads running on the node pool. """
[docs] class NodeMetadata(proto.Enum): r"""NodeMetadata is the configuration for if and how to expose the node metadata to the workload running on the node. """ UNSPECIFIED = 0 SECURE = 1 EXPOSE = 2 GKE_METADATA_SERVER = 3
[docs] class Mode(proto.Enum): r"""Mode is the configuration for how to expose metadata to workloads running on the node. """ MODE_UNSPECIFIED = 0 GCE_METADATA = 1 GKE_METADATA = 2
node_metadata = proto.Field(proto.ENUM, number=1, enum=NodeMetadata,) mode = proto.Field(proto.ENUM, number=2, enum=Mode,)
[docs]class SetNetworkPolicyRequest(proto.Message): r"""SetNetworkPolicyRequest enables/disables network policy for a cluster. Attributes: project_id (str): Required. Deprecated. The Google Developers Console `project ID or project number <https://developers.google.com/console/help/new/#projectnumber>`__. This field has been deprecated and replaced by the name field. zone (str): Required. Deprecated. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. This field has been deprecated and replaced by the name field. cluster_id (str): Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field. network_policy (google.cloud.container_v1beta1.types.NetworkPolicy): Required. Configuration options for the NetworkPolicy feature. name (str): The name (project, location, cluster id) of the cluster to set networking policy. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) network_policy = proto.Field(proto.MESSAGE, number=4, message="NetworkPolicy",) name = proto.Field(proto.STRING, number=6,)
[docs]class SetMaintenancePolicyRequest(proto.Message): r"""SetMaintenancePolicyRequest sets the maintenance policy for a cluster. Attributes: project_id (str): Required. The Google Developers Console `project ID or project number <https://support.google.com/cloud/answer/6158840>`__. zone (str): Required. The name of the Google Compute Engine `zone <https://cloud.google.com/compute/docs/zones#available>`__ in which the cluster resides. cluster_id (str): Required. The name of the cluster to update. maintenance_policy (google.cloud.container_v1beta1.types.MaintenancePolicy): Required. The maintenance policy to be set for the cluster. An empty field clears the existing maintenance policy. name (str): The name (project, location, cluster id) of the cluster to set maintenance policy. Specified in the format ``projects/*/locations/*/clusters/*``. """ project_id = proto.Field(proto.STRING, number=1,) zone = proto.Field(proto.STRING, number=2,) cluster_id = proto.Field(proto.STRING, number=3,) maintenance_policy = proto.Field( proto.MESSAGE, number=4, message="MaintenancePolicy", ) name = proto.Field(proto.STRING, number=5,)
[docs]class ListLocationsRequest(proto.Message): r"""ListLocationsRequest is used to request the locations that offer GKE. Attributes: parent (str): Required. Contains the name of the resource requested. Specified in the format ``projects/*``. """ parent = proto.Field(proto.STRING, number=1,)
[docs]class ListLocationsResponse(proto.Message): r"""ListLocationsResponse returns the list of all GKE locations and their recommendation state. Attributes: locations (Sequence[google.cloud.container_v1beta1.types.Location]): A full list of GKE locations. next_page_token (str): Only return ListLocationsResponse that occur after the page_token. This value should be populated from the ListLocationsResponse.next_page_token if that response token was set (which happens when listing more Locations than fit in a single ListLocationsResponse). """ @property def raw_page(self): return self locations = proto.RepeatedField(proto.MESSAGE, number=1, message="Location",) next_page_token = proto.Field(proto.STRING, number=2,)
[docs]class Location(proto.Message): r"""Location returns the location name, and if the location is recommended for GKE cluster scheduling. Attributes: type_ (google.cloud.container_v1beta1.types.Location.LocationType): Contains the type of location this Location is for. Regional or Zonal. name (str): Contains the name of the resource requested. Specified in the format ``projects/*/locations/*``. recommended (bool): Whether the location is recomended for GKE cluster scheduling. """
[docs] class LocationType(proto.Enum): r"""LocationType is the type of GKE location, regional or zonal.""" LOCATION_TYPE_UNSPECIFIED = 0 ZONE = 1 REGION = 2
type_ = proto.Field(proto.ENUM, number=1, enum=LocationType,) name = proto.Field(proto.STRING, number=2,) recommended = proto.Field(proto.BOOL, number=3,)
[docs]class StatusCondition(proto.Message): r"""StatusCondition describes why a cluster or a node pool has a certain status (e.g., ERROR or DEGRADED). Attributes: code (google.cloud.container_v1beta1.types.StatusCondition.Code): Machine-friendly representation of the condition Deprecated. Use canonical_code instead. message (str): Human-friendly representation of the condition canonical_code (google.rpc.code_pb2.Code): Canonical code of the condition. """
[docs] class Code(proto.Enum): r"""Code for each condition""" _pb_options = {"deprecated": True} UNKNOWN = 0 GCE_STOCKOUT = 1 GKE_SERVICE_ACCOUNT_DELETED = 2 GCE_QUOTA_EXCEEDED = 3 SET_BY_OPERATOR = 4 CLOUD_KMS_KEY_ERROR = 7 CA_EXPIRING = 9
code = proto.Field(proto.ENUM, number=1, enum=Code,) message = proto.Field(proto.STRING, number=2,) canonical_code = proto.Field(proto.ENUM, number=3, enum=code_pb2.Code,)
[docs]class NetworkConfig(proto.Message): r"""NetworkConfig reports the relative names of network & subnetwork. Attributes: network (str): Output only. The relative name of the Google Compute Engine [network]`google.container.v1beta1.NetworkConfig.network <https://cloud.google.com/compute/docs/networks-and-firewalls#networks>`__ to which the cluster is connected. Example: projects/my-project/global/networks/my-network subnetwork (str): Output only. The relative name of the Google Compute Engine `subnetwork <https://cloud.google.com/compute/docs/vpc>`__ to which the cluster is connected. Example: projects/my-project/regions/us-central1/subnetworks/my-subnet enable_intra_node_visibility (bool): Whether Intra-node visibility is enabled for this cluster. This makes same node pod to pod traffic visible for VPC network. default_snat_status (google.cloud.container_v1beta1.types.DefaultSnatStatus): Whether the cluster disables default in-node sNAT rules. In-node sNAT rules will be disabled when default_snat_status is disabled. When disabled is set to false, default IP masquerade rules will be applied to the nodes to prevent sNAT on cluster internal traffic. enable_l4ilb_subsetting (bool): Whether L4ILB Subsetting is enabled for this cluster. datapath_provider (google.cloud.container_v1beta1.types.DatapathProvider): The desired datapath provider for this cluster. By default, uses the IPTables-based kube-proxy implementation. private_ipv6_google_access (google.cloud.container_v1beta1.types.PrivateIPv6GoogleAccess): The desired state of IPv6 connectivity to Google Services. By default, no private IPv6 access to or from Google Services (all access will be via IPv4) dns_config (google.cloud.container_v1beta1.types.DNSConfig): DNSConfig contains clusterDNS config for this cluster. service_external_ips_config (google.cloud.container_v1beta1.types.ServiceExternalIPsConfig): ServiceExternalIPsConfig specifies if services with externalIPs field are blocked or not. """ network = proto.Field(proto.STRING, number=1,) subnetwork = proto.Field(proto.STRING, number=2,) enable_intra_node_visibility = proto.Field(proto.BOOL, number=5,) default_snat_status = proto.Field( proto.MESSAGE, number=7, message="DefaultSnatStatus", ) enable_l4ilb_subsetting = proto.Field(proto.BOOL, number=10,) datapath_provider = proto.Field(proto.ENUM, number=11, enum="DatapathProvider",) private_ipv6_google_access = proto.Field( proto.ENUM, number=12, enum="PrivateIPv6GoogleAccess", ) dns_config = proto.Field(proto.MESSAGE, number=13, message="DNSConfig",) service_external_ips_config = proto.Field( proto.MESSAGE, number=15, message="ServiceExternalIPsConfig", )
[docs]class ServiceExternalIPsConfig(proto.Message): r"""Config to block services with externalIPs field. Attributes: enabled (bool): Whether Services with ExternalIPs field are allowed or not. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class ListUsableSubnetworksRequest(proto.Message): r"""ListUsableSubnetworksRequest requests the list of usable subnetworks. available to a user for creating clusters. Attributes: parent (str): Required. The parent project where subnetworks are usable. Specified in the format ``projects/*``. filter (str): Filtering currently only supports equality on the networkProjectId and must be in the form: "networkProjectId=[PROJECTID]", where ``networkProjectId`` is the project which owns the listed subnetworks. This defaults to the parent project ID. page_size (int): The max number of results per page that should be returned. If the number of available results is larger than ``page_size``, a ``next_page_token`` is returned which can be used to get the next page of results in subsequent requests. Acceptable values are 0 to 500, inclusive. (Default: 500) page_token (str): Specifies a page token to use. Set this to the nextPageToken returned by previous list requests to get the next page of results. """ parent = proto.Field(proto.STRING, number=1,) filter = proto.Field(proto.STRING, number=2,) page_size = proto.Field(proto.INT32, number=3,) page_token = proto.Field(proto.STRING, number=4,)
[docs]class ListUsableSubnetworksResponse(proto.Message): r"""ListUsableSubnetworksResponse is the response of ListUsableSubnetworksRequest. Attributes: subnetworks (Sequence[google.cloud.container_v1beta1.types.UsableSubnetwork]): A list of usable subnetworks in the specified network project. next_page_token (str): This token allows you to get the next page of results for list requests. If the number of results is larger than ``page_size``, use the ``next_page_token`` as a value for the query parameter ``page_token`` in the next request. The value will become empty when there are no more pages. """ @property def raw_page(self): return self subnetworks = proto.RepeatedField( proto.MESSAGE, number=1, message="UsableSubnetwork", ) next_page_token = proto.Field(proto.STRING, number=2,)
[docs]class UsableSubnetworkSecondaryRange(proto.Message): r"""Secondary IP range of a usable subnetwork. Attributes: range_name (str): The name associated with this subnetwork secondary range, used when adding an alias IP range to a VM instance. ip_cidr_range (str): The range of IP addresses belonging to this subnetwork secondary range. status (google.cloud.container_v1beta1.types.UsableSubnetworkSecondaryRange.Status): This field is to determine the status of the secondary range programmably. """
[docs] class Status(proto.Enum): r"""Status shows the current usage of a secondary IP range.""" UNKNOWN = 0 UNUSED = 1 IN_USE_SERVICE = 2 IN_USE_SHAREABLE_POD = 3 IN_USE_MANAGED_POD = 4
range_name = proto.Field(proto.STRING, number=1,) ip_cidr_range = proto.Field(proto.STRING, number=2,) status = proto.Field(proto.ENUM, number=3, enum=Status,)
[docs]class UsableSubnetwork(proto.Message): r"""UsableSubnetwork resource returns the subnetwork name, its associated network and the primary CIDR range. Attributes: subnetwork (str): Subnetwork Name. Example: projects/my-project/regions/us- central1/subnetworks/my-subnet network (str): Network Name. Example: projects/my-project/global/networks/my- network ip_cidr_range (str): The range of internal addresses that are owned by this subnetwork. secondary_ip_ranges (Sequence[google.cloud.container_v1beta1.types.UsableSubnetworkSecondaryRange]): Secondary IP ranges. status_message (str): A human readable status message representing the reasons for cases where the caller cannot use the secondary ranges under the subnet. For example if the secondary_ip_ranges is empty due to a permission issue, an insufficient permission message will be given by status_message. """ subnetwork = proto.Field(proto.STRING, number=1,) network = proto.Field(proto.STRING, number=2,) ip_cidr_range = proto.Field(proto.STRING, number=3,) secondary_ip_ranges = proto.RepeatedField( proto.MESSAGE, number=4, message="UsableSubnetworkSecondaryRange", ) status_message = proto.Field(proto.STRING, number=5,)
[docs]class VerticalPodAutoscaling(proto.Message): r"""VerticalPodAutoscaling contains global, per-cluster information required by Vertical Pod Autoscaler to automatically adjust the resources of pods controlled by it. Attributes: enabled (bool): Enables vertical pod autoscaling. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class DefaultSnatStatus(proto.Message): r"""DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster. Attributes: disabled (bool): Disables cluster default sNAT rules. """ disabled = proto.Field(proto.BOOL, number=1,)
[docs]class IntraNodeVisibilityConfig(proto.Message): r"""IntraNodeVisibilityConfig contains the desired config of the intra-node visibility on this cluster. Attributes: enabled (bool): Enables intra node visibility for this cluster. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class ILBSubsettingConfig(proto.Message): r"""ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer subsetting on this cluster. Attributes: enabled (bool): Enables l4 ILB subsetting for this cluster """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class DNSConfig(proto.Message): r"""DNSConfig contains the desired set of options for configuring clusterDNS. Attributes: cluster_dns (google.cloud.container_v1beta1.types.DNSConfig.Provider): cluster_dns indicates which in-cluster DNS provider should be used. cluster_dns_scope (google.cloud.container_v1beta1.types.DNSConfig.DNSScope): cluster_dns_scope indicates the scope of access to cluster DNS records. cluster_dns_domain (str): cluster_dns_domain is the suffix used for all cluster service records. """
[docs] class Provider(proto.Enum): r"""Provider lists the various in-cluster DNS providers.""" PROVIDER_UNSPECIFIED = 0 PLATFORM_DEFAULT = 1 CLOUD_DNS = 2
[docs] class DNSScope(proto.Enum): r"""DNSScope lists the various scopes of access to cluster DNS records. """ DNS_SCOPE_UNSPECIFIED = 0 CLUSTER_SCOPE = 1 VPC_SCOPE = 2
cluster_dns = proto.Field(proto.ENUM, number=1, enum=Provider,) cluster_dns_scope = proto.Field(proto.ENUM, number=2, enum=DNSScope,) cluster_dns_domain = proto.Field(proto.STRING, number=3,)
[docs]class MaxPodsConstraint(proto.Message): r"""Constraints applied to pods. Attributes: max_pods_per_node (int): Constraint enforced on the max num of pods per node. """ max_pods_per_node = proto.Field(proto.INT64, number=1,)
[docs]class WorkloadIdentityConfig(proto.Message): r"""Configuration for the use of Kubernetes Service Accounts in GCP IAM policies. Attributes: identity_namespace (str): IAM Identity Namespace to attach all Kubernetes Service Accounts to. workload_pool (str): The workload pool to attach all Kubernetes service accounts to. identity_provider (str): identity provider is the third party identity provider. """ identity_namespace = proto.Field(proto.STRING, number=1,) workload_pool = proto.Field(proto.STRING, number=2,) identity_provider = proto.Field(proto.STRING, number=3,)
[docs]class WorkloadCertificates(proto.Message): r"""Configuration for issuance of mTLS keys and certificates to Kubernetes pods. Attributes: enable_certificates (google.protobuf.wrappers_pb2.BoolValue): enable_certificates controls issuance of workload mTLS certificates. If set, the GKE Workload Identity Certificates controller and node agent will be deployed in the cluster, which can then be configured by creating a WorkloadCertificateConfig Custom Resource. Requires Workload Identity ([workload_pool][google.container.v1beta1.WorkloadIdentityConfig.workload_pool] must be non-empty). """ enable_certificates = proto.Field( proto.MESSAGE, number=1, message=wrappers_pb2.BoolValue, )
[docs]class DatabaseEncryption(proto.Message): r"""Configuration of etcd encryption. Attributes: state (google.cloud.container_v1beta1.types.DatabaseEncryption.State): Denotes the state of etcd encryption. key_name (str): Name of CloudKMS key to use for the encryption of secrets in etcd. Ex. projects/my- project/locations/global/keyRings/my- ring/cryptoKeys/my-key """
[docs] class State(proto.Enum): r"""State of etcd encryption.""" UNKNOWN = 0 ENCRYPTED = 1 DECRYPTED = 2
state = proto.Field(proto.ENUM, number=2, enum=State,) key_name = proto.Field(proto.STRING, number=1,)
[docs]class ResourceUsageExportConfig(proto.Message): r"""Configuration for exporting cluster resource usages. Attributes: bigquery_destination (google.cloud.container_v1beta1.types.ResourceUsageExportConfig.BigQueryDestination): Configuration to use BigQuery as usage export destination. enable_network_egress_metering (bool): Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic. consumption_metering_config (google.cloud.container_v1beta1.types.ResourceUsageExportConfig.ConsumptionMeteringConfig): Configuration to enable resource consumption metering. """
[docs] class BigQueryDestination(proto.Message): r"""Parameters for using BigQuery as the destination of resource usage export. Attributes: dataset_id (str): The ID of a BigQuery Dataset. """ dataset_id = proto.Field(proto.STRING, number=1,)
[docs] class ConsumptionMeteringConfig(proto.Message): r"""Parameters for controlling consumption metering. Attributes: enabled (bool): Whether to enable consumption metering for this cluster. If enabled, a second BigQuery table will be created to hold resource consumption records. """ enabled = proto.Field(proto.BOOL, number=1,)
bigquery_destination = proto.Field( proto.MESSAGE, number=1, message=BigQueryDestination, ) enable_network_egress_metering = proto.Field(proto.BOOL, number=2,) consumption_metering_config = proto.Field( proto.MESSAGE, number=3, message=ConsumptionMeteringConfig, )
[docs]class ShieldedNodes(proto.Message): r"""Configuration of Shielded Nodes feature. Attributes: enabled (bool): Whether Shielded Nodes features are enabled on all nodes in this cluster. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class VirtualNIC(proto.Message): r"""Configuration of gVNIC feature. Attributes: enabled (bool): Whether gVNIC features are enabled in the node pool. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class GetOpenIDConfigRequest(proto.Message): r"""GetOpenIDConfigRequest gets the OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details. Attributes: parent (str): The cluster (project, location, cluster id) to get the discovery document for. Specified in the format ``projects/*/locations/*/clusters/*``. """ parent = proto.Field(proto.STRING, number=1,)
[docs]class GetOpenIDConfigResponse(proto.Message): r"""GetOpenIDConfigResponse is an OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details. Attributes: issuer (str): OIDC Issuer. jwks_uri (str): JSON Web Key uri. response_types_supported (Sequence[str]): Supported response types. subject_types_supported (Sequence[str]): Supported subject types. id_token_signing_alg_values_supported (Sequence[str]): supported ID Token signing Algorithms. claims_supported (Sequence[str]): Supported claims. grant_types (Sequence[str]): Supported grant types. """ issuer = proto.Field(proto.STRING, number=1,) jwks_uri = proto.Field(proto.STRING, number=2,) response_types_supported = proto.RepeatedField(proto.STRING, number=3,) subject_types_supported = proto.RepeatedField(proto.STRING, number=4,) id_token_signing_alg_values_supported = proto.RepeatedField(proto.STRING, number=5,) claims_supported = proto.RepeatedField(proto.STRING, number=6,) grant_types = proto.RepeatedField(proto.STRING, number=7,)
[docs]class GetJSONWebKeysRequest(proto.Message): r"""GetJSONWebKeysRequest gets the public component of the keys used by the cluster to sign token requests. This will be the jwks_uri for the discover document returned by getOpenIDConfig. See the OpenID Connect Discovery 1.0 specification for details. Attributes: parent (str): The cluster (project, location, cluster id) to get keys for. Specified in the format ``projects/*/locations/*/clusters/*``. """ parent = proto.Field(proto.STRING, number=1,)
[docs]class Jwk(proto.Message): r"""Jwk is a JSON Web Key as specified in RFC 7517 Attributes: kty (str): Key Type. alg (str): Algorithm. use (str): Permitted uses for the public keys. kid (str): Key ID. n (str): Used for RSA keys. e (str): Used for RSA keys. x (str): Used for ECDSA keys. y (str): Used for ECDSA keys. crv (str): Used for ECDSA keys. """ kty = proto.Field(proto.STRING, number=1,) alg = proto.Field(proto.STRING, number=2,) use = proto.Field(proto.STRING, number=3,) kid = proto.Field(proto.STRING, number=4,) n = proto.Field(proto.STRING, number=5,) e = proto.Field(proto.STRING, number=6,) x = proto.Field(proto.STRING, number=7,) y = proto.Field(proto.STRING, number=8,) crv = proto.Field(proto.STRING, number=9,)
[docs]class GetJSONWebKeysResponse(proto.Message): r"""GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517 Attributes: keys (Sequence[google.cloud.container_v1beta1.types.Jwk]): The public component of the keys used by the cluster to sign token requests. """ keys = proto.RepeatedField(proto.MESSAGE, number=1, message="Jwk",)
[docs]class ReleaseChannel(proto.Message): r"""ReleaseChannel indicates which release channel a cluster is subscribed to. Release channels are arranged in order of risk. When a cluster is subscribed to a release channel, Google maintains both the master version and the node version. Node auto-upgrade defaults to true and cannot be disabled. Attributes: channel (google.cloud.container_v1beta1.types.ReleaseChannel.Channel): channel specifies which release channel the cluster is subscribed to. """
[docs] class Channel(proto.Enum): r"""Possible values for 'channel'.""" UNSPECIFIED = 0 RAPID = 1 REGULAR = 2 STABLE = 3
channel = proto.Field(proto.ENUM, number=1, enum=Channel,)
[docs]class TpuConfig(proto.Message): r"""Configuration for Cloud TPU. Attributes: enabled (bool): Whether Cloud TPU integration is enabled or not. use_service_networking (bool): Whether to use service networking for Cloud TPU or not. ipv4_cidr_block (str): IPv4 CIDR block reserved for Cloud TPU in the VPC. """ enabled = proto.Field(proto.BOOL, number=1,) use_service_networking = proto.Field(proto.BOOL, number=2,) ipv4_cidr_block = proto.Field(proto.STRING, number=3,)
[docs]class Master(proto.Message): r"""Master is the configuration for components on master. """
[docs]class Autopilot(proto.Message): r"""Autopilot is the configuration for Autopilot settings on the cluster. Attributes: enabled (bool): Enable Autopilot """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class NotificationConfig(proto.Message): r"""NotificationConfig is the configuration of notifications. Attributes: pubsub (google.cloud.container_v1beta1.types.NotificationConfig.PubSub): Notification config for Pub/Sub. """
[docs] class PubSub(proto.Message): r"""Pub/Sub specific notification config. Attributes: enabled (bool): Enable notifications for Pub/Sub. topic (str): The desired Pub/Sub topic to which notifications will be sent by GKE. Format is ``projects/{project}/topics/{topic}``. """ enabled = proto.Field(proto.BOOL, number=1,) topic = proto.Field(proto.STRING, number=2,)
pubsub = proto.Field(proto.MESSAGE, number=1, message=PubSub,)
[docs]class ConfidentialNodes(proto.Message): r"""ConfidentialNodes is configuration for the confidential nodes feature, which makes nodes run on confidential VMs. Attributes: enabled (bool): Whether Confidential Nodes feature is enabled for all nodes in this cluster. """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class UpgradeEvent(proto.Message): r"""UpgradeEvent is a notification sent to customers by the cluster server when a resource is upgrading. Attributes: resource_type (google.cloud.container_v1beta1.types.UpgradeResourceType): The resource type that is upgrading. operation (str): The operation associated with this upgrade. operation_start_time (google.protobuf.timestamp_pb2.Timestamp): The time when the operation was started. current_version (str): The current version before the upgrade. target_version (str): The target version for the upgrade. resource (str): Optional relative path to the resource. For example in node pool upgrades, the relative path of the node pool. """ resource_type = proto.Field(proto.ENUM, number=1, enum="UpgradeResourceType",) operation = proto.Field(proto.STRING, number=2,) operation_start_time = proto.Field( proto.MESSAGE, number=3, message=timestamp_pb2.Timestamp, ) current_version = proto.Field(proto.STRING, number=4,) target_version = proto.Field(proto.STRING, number=5,) resource = proto.Field(proto.STRING, number=6,)
[docs]class UpgradeAvailableEvent(proto.Message): r"""UpgradeAvailableEvent is a notification sent to customers when a new available version is released. Attributes: version (str): The release version available for upgrade. resource_type (google.cloud.container_v1beta1.types.UpgradeResourceType): The resource type of the release version. release_channel (google.cloud.container_v1beta1.types.ReleaseChannel): The release channel of the version. If empty, it means a non-channel release. resource (str): Optional relative path to the resource. For example, the relative path of the node pool. windows_versions (google.cloud.container_v1beta1.types.WindowsVersions): Windows node versions info. """ version = proto.Field(proto.STRING, number=1,) resource_type = proto.Field(proto.ENUM, number=2, enum="UpgradeResourceType",) release_channel = proto.Field(proto.MESSAGE, number=3, message="ReleaseChannel",) resource = proto.Field(proto.STRING, number=4,) windows_versions = proto.Field(proto.MESSAGE, number=5, message="WindowsVersions",)
[docs]class IdentityServiceConfig(proto.Message): r"""IdentityServiceConfig is configuration for Identity Service which allows customers to use external identity providers with the K8S API Attributes: enabled (bool): Whether to enable the Identity Service component """ enabled = proto.Field(proto.BOOL, number=1,)
[docs]class LoggingConfig(proto.Message): r"""LoggingConfig is cluster logging configuration. Attributes: component_config (google.cloud.container_v1beta1.types.LoggingComponentConfig): Logging components configuration """ component_config = proto.Field( proto.MESSAGE, number=1, message="LoggingComponentConfig", )
[docs]class LoggingComponentConfig(proto.Message): r"""LoggingComponentConfig is cluster logging component configuration. Attributes: enable_components (Sequence[google.cloud.container_v1beta1.types.LoggingComponentConfig.Component]): Select components to collect logs. An empty set would disable all logging. """
[docs] class Component(proto.Enum): r"""GKE components exposing logs""" COMPONENT_UNSPECIFIED = 0 SYSTEM_COMPONENTS = 1 WORKLOADS = 2
enable_components = proto.RepeatedField(proto.ENUM, number=1, enum=Component,)
[docs]class MonitoringConfig(proto.Message): r"""MonitoringConfig is cluster monitoring configuration. Attributes: component_config (google.cloud.container_v1beta1.types.MonitoringComponentConfig): Monitoring components configuration """ component_config = proto.Field( proto.MESSAGE, number=1, message="MonitoringComponentConfig", )
[docs]class MonitoringComponentConfig(proto.Message): r"""MonitoringComponentConfig is cluster monitoring component configuration. Attributes: enable_components (Sequence[google.cloud.container_v1beta1.types.MonitoringComponentConfig.Component]): Select components to collect metrics. An empty set would disable all monitoring. """
[docs] class Component(proto.Enum): r"""GKE components exposing metrics""" COMPONENT_UNSPECIFIED = 0 SYSTEM_COMPONENTS = 1 WORKLOADS = 2
enable_components = proto.RepeatedField(proto.ENUM, number=1, enum=Component,)
__all__ = tuple(sorted(__protobuf__.manifest))