google-apis-container_v1beta1 0.84.0 → 0.86.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,7 +32,7 @@ module Google
32
32
  attr_accessor :accelerator_count
33
33
 
34
34
  # The accelerator type resource name. List of supported accelerators [here](
35
- # https://cloud.google.com/compute/docs/gpus)
35
+ # https://`$universe.dns_names.final_documentation_domain`/compute/docs/gpus)
36
36
  # Corresponds to the JSON property `acceleratorType`
37
37
  # @return [String]
38
38
  attr_accessor :accelerator_type
@@ -76,6 +76,35 @@ module Google
76
76
  end
77
77
  end
78
78
 
79
+ # AdditionalIPRangesConfig is the configuration for individual additional
80
+ # subnetwork attached to the cluster
81
+ class AdditionalIpRangesConfig
82
+ include Google::Apis::Core::Hashable
83
+
84
+ # List of secondary ranges names within this subnetwork that can be used for pod
85
+ # IPs. Example1: gke-pod-range1 Example2: gke-pod-range1,gke-pod-range2
86
+ # Corresponds to the JSON property `podIpv4RangeNames`
87
+ # @return [Array<String>]
88
+ attr_accessor :pod_ipv4_range_names
89
+
90
+ # Name of the subnetwork. This can be the full path of the subnetwork or just
91
+ # the name. Example1: my-subnet Example2: projects/gke-project/regions/us-
92
+ # central1/subnetworks/my-subnet
93
+ # Corresponds to the JSON property `subnetwork`
94
+ # @return [String]
95
+ attr_accessor :subnetwork
96
+
97
+ def initialize(**args)
98
+ update!(**args)
99
+ end
100
+
101
+ # Update properties of this object
102
+ def update!(**args)
103
+ @pod_ipv4_range_names = args[:pod_ipv4_range_names] if args.key?(:pod_ipv4_range_names)
104
+ @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
105
+ end
106
+ end
107
+
79
108
  # AdditionalNodeNetworkConfig is the configuration for additional node networks
80
109
  # within the NodeNetworkConfig message
81
110
  class AdditionalNodeNetworkConfig
@@ -208,6 +237,11 @@ module Google
208
237
  # @return [Google::Apis::ContainerV1beta1::GkeBackupAgentConfig]
209
238
  attr_accessor :gke_backup_agent_config
210
239
 
240
+ # Configuration for the High Scale Checkpointing.
241
+ # Corresponds to the JSON property `highScaleCheckpointingConfig`
242
+ # @return [Google::Apis::ContainerV1beta1::HighScaleCheckpointingConfig]
243
+ attr_accessor :high_scale_checkpointing_config
244
+
211
245
  # Configuration options for the horizontal pod autoscaling feature, which
212
246
  # increases or decreases the number of replica pods a replication controller has
213
247
  # based on the resource usage of the existing pods.
@@ -271,6 +305,7 @@ module Google
271
305
  @gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
272
306
  @gcs_fuse_csi_driver_config = args[:gcs_fuse_csi_driver_config] if args.key?(:gcs_fuse_csi_driver_config)
273
307
  @gke_backup_agent_config = args[:gke_backup_agent_config] if args.key?(:gke_backup_agent_config)
308
+ @high_scale_checkpointing_config = args[:high_scale_checkpointing_config] if args.key?(:high_scale_checkpointing_config)
274
309
  @horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
275
310
  @http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
276
311
  @istio_config = args[:istio_config] if args.key?(:istio_config)
@@ -327,6 +362,12 @@ module Google
327
362
  attr_accessor :enable_nested_virtualization
328
363
  alias_method :enable_nested_virtualization?, :enable_nested_virtualization
329
364
 
365
+ # Type of Performance Monitoring Unit (PMU) requested on node pool instances. If
366
+ # unset, PMU will not be available to the node.
367
+ # Corresponds to the JSON property `performanceMonitoringUnit`
368
+ # @return [String]
369
+ attr_accessor :performance_monitoring_unit
370
+
330
371
  # The number of threads per physical core. To disable simultaneous
331
372
  # multithreading (SMT) set this to 1. If unset, the maximum number of threads
332
373
  # supported per core by the underlying processor is assumed.
@@ -341,10 +382,31 @@ module Google
341
382
  # Update properties of this object
342
383
  def update!(**args)
343
384
  @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
385
+ @performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
344
386
  @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
345
387
  end
346
388
  end
347
389
 
390
+ # AnonymousAuthenticationConfig defines the settings needed to limit endpoints
391
+ # that allow anonymous authentication.
392
+ class AnonymousAuthenticationConfig
393
+ include Google::Apis::Core::Hashable
394
+
395
+ # Defines the mode of limiting anonymous access in the cluster.
396
+ # Corresponds to the JSON property `mode`
397
+ # @return [String]
398
+ attr_accessor :mode
399
+
400
+ def initialize(**args)
401
+ update!(**args)
402
+ end
403
+
404
+ # Update properties of this object
405
+ def update!(**args)
406
+ @mode = args[:mode] if args.key?(:mode)
407
+ end
408
+ end
409
+
348
410
  # Configuration for returning group information from authenticators.
349
411
  class AuthenticatorGroupsConfig
350
412
  include Google::Apis::Core::Hashable
@@ -373,6 +435,19 @@ module Google
373
435
  end
374
436
  end
375
437
 
438
+ # AutoIpamConfig contains all information related to Auto IPAM
439
+ class AutoIpamConfig
440
+ include Google::Apis::Core::Hashable
441
+
442
+ def initialize(**args)
443
+ update!(**args)
444
+ end
445
+
446
+ # Update properties of this object
447
+ def update!(**args)
448
+ end
449
+ end
450
+
376
451
  # AutoMonitoringConfig defines the configuration for GKE Workload Auto-
377
452
  # Monitoring.
378
453
  class AutoMonitoringConfig
@@ -552,7 +627,8 @@ module Google
552
627
  # each node in the node pool. This should be of the form projects/[
553
628
  # KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
554
629
  # . For more information about protecting resources with Cloud KMS Keys please
555
- # see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption
630
+ # see: https://`$universe.dns_names.final_documentation_domain`/compute/docs/
631
+ # disks/customer-managed-encryption
556
632
  # Corresponds to the JSON property `bootDiskKmsKey`
557
633
  # @return [String]
558
634
  attr_accessor :boot_disk_kms_key
@@ -569,8 +645,9 @@ module Google
569
645
  # @return [String]
570
646
  attr_accessor :disk_type
571
647
 
572
- # The image type to use for NAP created node. Please see https://cloud.google.
573
- # com/kubernetes-engine/docs/concepts/node-images for available image types.
648
+ # The image type to use for NAP created node. Please see https://`$universe.
649
+ # dns_names.final_documentation_domain`/kubernetes-engine/docs/concepts/node-
650
+ # images for available image types.
574
651
  # Corresponds to the JSON property `imageType`
575
652
  # @return [String]
576
653
  attr_accessor :image_type
@@ -591,11 +668,11 @@ module Google
591
668
  # instance may be scheduled on the specified or newer CPU platform. Applicable
592
669
  # values are the friendly names of CPU platforms, such as minCpuPlatform: Intel
593
670
  # Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
594
- # to specify min CPU platform](https://cloud.google.com/compute/docs/instances/
595
- # specify-min-cpu-platform). This field is deprecated, min_cpu_platform should
596
- # be specified using `cloud.google.com/requested-min-cpu-platform` label
597
- # selector on the pod. To unset the min cpu platform field pass "automatic" as
598
- # field value.
671
+ # to specify min CPU platform](https://`$universe.dns_names.
672
+ # final_documentation_domain`/compute/docs/instances/specify-min-cpu-platform).
673
+ # This field is deprecated, min_cpu_platform should be specified using `cloud.
674
+ # google.com/requested-min-cpu-platform` label selector on the pod. To unset the
675
+ # min cpu platform field pass "automatic" as field value.
599
676
  # Corresponds to the JSON property `minCpuPlatform`
600
677
  # @return [String]
601
678
  attr_accessor :min_cpu_platform
@@ -605,10 +682,10 @@ module Google
605
682
  # required, and by default are not included: * `https://www.googleapis.com/auth/
606
683
  # compute` is required for mounting persistent storage on your nodes. * `https://
607
684
  # www.googleapis.com/auth/devstorage.read_only` is required for communicating
608
- # with **gcr.io** (the [Google Container Registry](https://cloud.google.com/
609
- # container-registry/)). If unspecified, no scopes are added, unless Cloud
610
- # Logging or Cloud Monitoring are enabled, in which case their required scopes
611
- # will be added.
685
+ # with **gcr.io** (the [Google Container Registry](https://`$universe.dns_names.
686
+ # final_documentation_domain`/container-registry/)). If unspecified, no scopes
687
+ # are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case
688
+ # their required scopes will be added.
612
689
  # Corresponds to the JSON property `oauthScopes`
613
690
  # @return [Array<String>]
614
691
  attr_accessor :oauth_scopes
@@ -892,22 +969,24 @@ module Google
892
969
  # @return [String]
893
970
  attr_accessor :name
894
971
 
895
- # Required. Deprecated. The server-assigned `name` of the operation. This field
896
- # has been deprecated and replaced by the name field.
972
+ # Deprecated. The server-assigned `name` of the operation. This field has been
973
+ # deprecated and replaced by the name field.
897
974
  # Corresponds to the JSON property `operationId`
898
975
  # @return [String]
899
976
  attr_accessor :operation_id
900
977
 
901
- # Required. Deprecated. The Google Developers Console [project ID or project
902
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
903
- # projects). This field has been deprecated and replaced by the name field.
978
+ # Deprecated. The Google Developers Console [project ID or project number](https:
979
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
980
+ # creating-managing-projects). This field has been deprecated and replaced by
981
+ # the name field.
904
982
  # Corresponds to the JSON property `projectId`
905
983
  # @return [String]
906
984
  attr_accessor :project_id
907
985
 
908
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
909
- # cloud.google.com/compute/docs/zones#available) in which the operation resides.
910
- # This field has been deprecated and replaced by the name field.
986
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
987
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
988
+ # the operation resides. This field has been deprecated and replaced by the name
989
+ # field.
911
990
  # Corresponds to the JSON property `zone`
912
991
  # @return [String]
913
992
  attr_accessor :zone
@@ -937,7 +1016,8 @@ module Google
937
1016
  attr_accessor :fqdns
938
1017
 
939
1018
  # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
940
- # Manager](https://cloud.google.com/secret-manager).
1019
+ # Manager](https://`$universe.dns_names.final_documentation_domain`/secret-
1020
+ # manager).
941
1021
  # Corresponds to the JSON property `gcpSecretManagerCertificateConfig`
942
1022
  # @return [Google::Apis::ContainerV1beta1::GcpSecretManagerCertificateConfig]
943
1023
  attr_accessor :gcp_secret_manager_certificate_config
@@ -1066,6 +1146,12 @@ module Google
1066
1146
  # @return [Array<String>]
1067
1147
  attr_accessor :alpha_cluster_feature_gates
1068
1148
 
1149
+ # AnonymousAuthenticationConfig defines the settings needed to limit endpoints
1150
+ # that allow anonymous authentication.
1151
+ # Corresponds to the JSON property `anonymousAuthenticationConfig`
1152
+ # @return [Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig]
1153
+ attr_accessor :anonymous_authentication_config
1154
+
1069
1155
  # Configuration for returning group information from authenticators.
1070
1156
  # Corresponds to the JSON property `authenticatorGroupsConfig`
1071
1157
  # @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
@@ -1145,11 +1231,12 @@ module Google
1145
1231
  # @return [Fixnum]
1146
1232
  attr_accessor :current_node_count
1147
1233
 
1148
- # Output only. Deprecated, use [NodePool.version](https://cloud.google.com/
1149
- # kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters.
1150
- # nodePools) instead. The current version of the node software components. If
1151
- # they are currently at multiple versions because they're in the process of
1152
- # being upgraded, this reflects the minimum version of all nodes.
1234
+ # Output only. Deprecated, use [NodePool.version](https://`$universe.dns_names.
1235
+ # final_documentation_domain`/kubernetes-engine/docs/reference/rest/v1beta1/
1236
+ # projects.locations.clusters.nodePools) instead. The current version of the
1237
+ # node software components. If they are currently at multiple versions because
1238
+ # they're in the process of being upgraded, this reflects the minimum version of
1239
+ # all nodes.
1153
1240
  # Corresponds to the JSON property `currentNodeVersion`
1154
1241
  # @return [String]
1155
1242
  attr_accessor :current_node_version
@@ -1223,6 +1310,11 @@ module Google
1223
1310
  # @return [Google::Apis::ContainerV1beta1::Fleet]
1224
1311
  attr_accessor :fleet
1225
1312
 
1313
+ # GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.
1314
+ # Corresponds to the JSON property `gkeAutoUpgradeConfig`
1315
+ # @return [Google::Apis::ContainerV1beta1::GkeAutoUpgradeConfig]
1316
+ attr_accessor :gke_auto_upgrade_config
1317
+
1226
1318
  # Output only. Unique id for the cluster.
1227
1319
  # Corresponds to the JSON property `id`
1228
1320
  # @return [String]
@@ -1248,13 +1340,14 @@ module Google
1248
1340
  attr_accessor :initial_cluster_version
1249
1341
 
1250
1342
  # The number of nodes to create in this cluster. You must ensure that your
1251
- # Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is
1252
- # sufficient for this number of instances. You must also have available firewall
1253
- # and routes quota. For requests, this field should only be used in lieu of a "
1254
- # node_pool" object, since this configuration (along with the "node_config")
1255
- # will be used to create a "NodePool" object with an auto-generated name. Do not
1256
- # use this and a node_pool at the same time. This field is deprecated, use
1257
- # node_pool.initial_node_count instead.
1343
+ # Compute Engine [resource quota](https://`$universe.dns_names.
1344
+ # final_documentation_domain`/compute/quotas) is sufficient for this number of
1345
+ # instances. You must also have available firewall and routes quota. For
1346
+ # requests, this field should only be used in lieu of a "node_pool" object,
1347
+ # since this configuration (along with the "node_config") will be used to create
1348
+ # a "NodePool" object with an auto-generated name. Do not use this and a
1349
+ # node_pool at the same time. This field is deprecated, use node_pool.
1350
+ # initial_node_count instead.
1258
1351
  # Corresponds to the JSON property `initialNodeCount`
1259
1352
  # @return [Fixnum]
1260
1353
  attr_accessor :initial_node_count
@@ -1279,23 +1372,26 @@ module Google
1279
1372
  # @return [Google::Apis::ContainerV1beta1::LegacyAbac]
1280
1373
  attr_accessor :legacy_abac
1281
1374
 
1282
- # Output only. The name of the Google Compute Engine [zone](https://cloud.google.
1283
- # com/compute/docs/regions-zones/regions-zones#available) or [region](https://
1284
- # cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
1285
- # the cluster resides.
1375
+ # Output only. The name of the Google Compute Engine [zone](https://`$universe.
1376
+ # dns_names.final_documentation_domain`/compute/docs/regions-zones/regions-zones#
1377
+ # available) or [region](https://`$universe.dns_names.final_documentation_domain`
1378
+ # /compute/docs/regions-zones/regions-zones#available) in which the cluster
1379
+ # resides.
1286
1380
  # Corresponds to the JSON property `location`
1287
1381
  # @return [String]
1288
1382
  attr_accessor :location
1289
1383
 
1290
- # The list of Google Compute Engine [zones](https://cloud.google.com/compute/
1291
- # docs/zones#available) in which the cluster's nodes should be located. This
1292
- # field provides a default value if [NodePool.Locations](https://cloud.google.
1293
- # com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters.
1294
- # nodePools#NodePool.FIELDS.locations) are not specified during node pool
1295
- # creation. Warning: changing cluster locations will update the [NodePool.
1296
- # Locations](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/
1297
- # projects.locations.clusters.nodePools#NodePool.FIELDS.locations) of all node
1298
- # pools and will result in nodes being added and/or removed.
1384
+ # The list of Google Compute Engine [zones](https://`$universe.dns_names.
1385
+ # final_documentation_domain`/compute/docs/zones#available) in which the cluster'
1386
+ # s nodes should be located. This field provides a default value if [NodePool.
1387
+ # Locations](https://`$universe.dns_names.final_documentation_domain`/kubernetes-
1388
+ # engine/docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.
1389
+ # FIELDS.locations) are not specified during node pool creation. Warning:
1390
+ # changing cluster locations will update the [NodePool.Locations](https://`$
1391
+ # universe.dns_names.final_documentation_domain`/kubernetes-engine/docs/
1392
+ # reference/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.
1393
+ # locations) of all node pools and will result in nodes being added and/or
1394
+ # removed.
1299
1395
  # Corresponds to the JSON property `locations`
1300
1396
  # @return [Array<String>]
1301
1397
  attr_accessor :locations
@@ -1377,10 +1473,10 @@ module Google
1377
1473
  # @return [String]
1378
1474
  attr_accessor :name
1379
1475
 
1380
- # The name of the Google Compute Engine [network](https://cloud.google.com/
1381
- # compute/docs/networks-and-firewalls#networks) to which the cluster is
1382
- # connected. If left unspecified, the `default` network will be used. On output
1383
- # this shows the network ID instead of the name.
1476
+ # The name of the Google Compute Engine [network](https://`$universe.dns_names.
1477
+ # final_documentation_domain`/compute/docs/networks-and-firewalls#networks) to
1478
+ # which the cluster is connected. If left unspecified, the `default` network
1479
+ # will be used. On output this shows the network ID instead of the name.
1384
1480
  # Corresponds to the JSON property `network`
1385
1481
  # @return [String]
1386
1482
  attr_accessor :network
@@ -1547,9 +1643,10 @@ module Google
1547
1643
  # @return [String]
1548
1644
  attr_accessor :status_message
1549
1645
 
1550
- # The name of the Google Compute Engine [subnetwork](https://cloud.google.com/
1551
- # compute/docs/subnetworks) to which the cluster is connected. On output this
1552
- # shows the subnetwork ID instead of the name.
1646
+ # The name of the Google Compute Engine [subnetwork](https://`$universe.
1647
+ # dns_names.final_documentation_domain`/compute/docs/subnetworks) to which the
1648
+ # cluster is connected. On output this shows the subnetwork ID instead of the
1649
+ # name.
1553
1650
  # Corresponds to the JSON property `subnetwork`
1554
1651
  # @return [String]
1555
1652
  attr_accessor :subnetwork
@@ -1596,9 +1693,9 @@ module Google
1596
1693
  # @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
1597
1694
  attr_accessor :workload_identity_config
1598
1695
 
1599
- # Output only. The name of the Google Compute Engine [zone](https://cloud.google.
1600
- # com/compute/docs/zones#available) in which the cluster resides. This field is
1601
- # deprecated, use location instead.
1696
+ # Output only. The name of the Google Compute Engine [zone](https://`$universe.
1697
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
1698
+ # the cluster resides. This field is deprecated, use location instead.
1602
1699
  # Corresponds to the JSON property `zone`
1603
1700
  # @return [String]
1604
1701
  attr_accessor :zone
@@ -1611,6 +1708,7 @@ module Google
1611
1708
  def update!(**args)
1612
1709
  @addons_config = args[:addons_config] if args.key?(:addons_config)
1613
1710
  @alpha_cluster_feature_gates = args[:alpha_cluster_feature_gates] if args.key?(:alpha_cluster_feature_gates)
1711
+ @anonymous_authentication_config = args[:anonymous_authentication_config] if args.key?(:anonymous_authentication_config)
1614
1712
  @authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
1615
1713
  @autopilot = args[:autopilot] if args.key?(:autopilot)
1616
1714
  @autoscaling = args[:autoscaling] if args.key?(:autoscaling)
@@ -1637,6 +1735,7 @@ module Google
1637
1735
  @etag = args[:etag] if args.key?(:etag)
1638
1736
  @expire_time = args[:expire_time] if args.key?(:expire_time)
1639
1737
  @fleet = args[:fleet] if args.key?(:fleet)
1738
+ @gke_auto_upgrade_config = args[:gke_auto_upgrade_config] if args.key?(:gke_auto_upgrade_config)
1640
1739
  @id = args[:id] if args.key?(:id)
1641
1740
  @identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
1642
1741
  @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
@@ -1704,8 +1803,9 @@ module Google
1704
1803
  class ClusterAutoscaling
1705
1804
  include Google::Apis::Core::Hashable
1706
1805
 
1707
- # The list of Google Compute Engine [zones](https://cloud.google.com/compute/
1708
- # docs/zones#available) in which the NodePool's nodes can be created by NAP.
1806
+ # The list of Google Compute Engine [zones](https://`$universe.dns_names.
1807
+ # final_documentation_domain`/compute/docs/zones#available) in which the
1808
+ # NodePool's nodes can be created by NAP.
1709
1809
  # Corresponds to the JSON property `autoprovisioningLocations`
1710
1810
  # @return [Array<String>]
1711
1811
  attr_accessor :autoprovisioning_locations
@@ -1796,17 +1896,34 @@ module Google
1796
1896
  # @return [Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig]
1797
1897
  attr_accessor :additional_pod_ranges_config
1798
1898
 
1899
+ # DesiredAdditionalIPRangesConfig is a wrapper used for cluster update operation
1900
+ # and contains multiple AdditionalIPRangesConfigs.
1901
+ # Corresponds to the JSON property `desiredAdditionalIpRangesConfig`
1902
+ # @return [Google::Apis::ContainerV1beta1::DesiredAdditionalIpRangesConfig]
1903
+ attr_accessor :desired_additional_ip_ranges_config
1904
+
1799
1905
  # Configuration for the addons that can be automatically spun up in the cluster,
1800
1906
  # enabling additional functionality.
1801
1907
  # Corresponds to the JSON property `desiredAddonsConfig`
1802
1908
  # @return [Google::Apis::ContainerV1beta1::AddonsConfig]
1803
1909
  attr_accessor :desired_addons_config
1804
1910
 
1911
+ # AnonymousAuthenticationConfig defines the settings needed to limit endpoints
1912
+ # that allow anonymous authentication.
1913
+ # Corresponds to the JSON property `desiredAnonymousAuthenticationConfig`
1914
+ # @return [Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig]
1915
+ attr_accessor :desired_anonymous_authentication_config
1916
+
1805
1917
  # Configuration for returning group information from authenticators.
1806
1918
  # Corresponds to the JSON property `desiredAuthenticatorGroupsConfig`
1807
1919
  # @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
1808
1920
  attr_accessor :desired_authenticator_groups_config
1809
1921
 
1922
+ # AutoIpamConfig contains all information related to Auto IPAM
1923
+ # Corresponds to the JSON property `desiredAutoIpamConfig`
1924
+ # @return [Google::Apis::ContainerV1beta1::AutoIpamConfig]
1925
+ attr_accessor :desired_auto_ipam_config
1926
+
1810
1927
  # WorkloadPolicyConfig is the configuration related to GCW workload policy
1811
1928
  # Corresponds to the JSON property `desiredAutopilotWorkloadPolicyConfig`
1812
1929
  # @return [Google::Apis::ContainerV1beta1::WorkloadPolicyConfig]
@@ -1973,11 +2090,11 @@ module Google
1973
2090
  # @return [Google::Apis::ContainerV1beta1::IlbSubsettingConfig]
1974
2091
  attr_accessor :desired_l4ilb_subsetting_config
1975
2092
 
1976
- # The desired list of Google Compute Engine [zones](https://cloud.google.com/
1977
- # compute/docs/zones#available) in which the cluster's nodes should be located.
1978
- # This list must always include the cluster's primary zone. Warning: changing
1979
- # cluster locations will update the locations of all node pools and will result
1980
- # in nodes being added and/or removed.
2093
+ # The desired list of Google Compute Engine [zones](https://`$universe.dns_names.
2094
+ # final_documentation_domain`/compute/docs/zones#available) in which the cluster'
2095
+ # s nodes should be located. This list must always include the cluster's primary
2096
+ # zone. Warning: changing cluster locations will update the locations of all
2097
+ # node pools and will result in nodes being added and/or removed.
1981
2098
  # Corresponds to the JSON property `desiredLocations`
1982
2099
  # @return [Array<String>]
1983
2100
  attr_accessor :desired_locations
@@ -2072,9 +2189,10 @@ module Google
2072
2189
 
2073
2190
  # A map of resource manager tag keys and values to be attached to the nodes for
2074
2191
  # managing Compute Engine firewalls using Network Firewall Policies. Tags must
2075
- # be according to specifications in https://cloud.google.com/vpc/docs/tags-
2076
- # firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
2077
- # specified. Existing tags will be replaced with new values.
2192
+ # be according to specifications in https://`$universe.dns_names.
2193
+ # final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
2194
+ # maximum of 5 tag key-value pairs can be specified. Existing tags will be
2195
+ # replaced with new values.
2078
2196
  # Corresponds to the JSON property `desiredNodePoolAutoConfigResourceManagerTags`
2079
2197
  # @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
2080
2198
  attr_accessor :desired_node_pool_auto_config_resource_manager_tags
@@ -2201,6 +2319,12 @@ module Google
2201
2319
  # @return [Google::Apis::ContainerV1beta1::TpuConfig]
2202
2320
  attr_accessor :desired_tpu_config
2203
2321
 
2322
+ # UserManagedKeysConfig holds the resource address to Keys which are used for
2323
+ # signing certs and token that are used for communication within cluster.
2324
+ # Corresponds to the JSON property `desiredUserManagedKeysConfig`
2325
+ # @return [Google::Apis::ContainerV1beta1::UserManagedKeysConfig]
2326
+ attr_accessor :desired_user_managed_keys_config
2327
+
2204
2328
  # VerticalPodAutoscaling contains global, per-cluster information required by
2205
2329
  # Vertical Pod Autoscaler to automatically adjust the resources of pods
2206
2330
  # controlled by it.
@@ -2235,6 +2359,11 @@ module Google
2235
2359
  # @return [String]
2236
2360
  attr_accessor :etag
2237
2361
 
2362
+ # GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.
2363
+ # Corresponds to the JSON property `gkeAutoUpgradeConfig`
2364
+ # @return [Google::Apis::ContainerV1beta1::GkeAutoUpgradeConfig]
2365
+ attr_accessor :gke_auto_upgrade_config
2366
+
2238
2367
  # Configuration options for private clusters.
2239
2368
  # Corresponds to the JSON property `privateClusterConfig`
2240
2369
  # @return [Google::Apis::ContainerV1beta1::PrivateClusterConfig]
@@ -2259,8 +2388,11 @@ module Google
2259
2388
  # Update properties of this object
2260
2389
  def update!(**args)
2261
2390
  @additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
2391
+ @desired_additional_ip_ranges_config = args[:desired_additional_ip_ranges_config] if args.key?(:desired_additional_ip_ranges_config)
2262
2392
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
2393
+ @desired_anonymous_authentication_config = args[:desired_anonymous_authentication_config] if args.key?(:desired_anonymous_authentication_config)
2263
2394
  @desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
2395
+ @desired_auto_ipam_config = args[:desired_auto_ipam_config] if args.key?(:desired_auto_ipam_config)
2264
2396
  @desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
2265
2397
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
2266
2398
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
@@ -2325,12 +2457,14 @@ module Google
2325
2457
  @desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
2326
2458
  @desired_stack_type = args[:desired_stack_type] if args.key?(:desired_stack_type)
2327
2459
  @desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
2460
+ @desired_user_managed_keys_config = args[:desired_user_managed_keys_config] if args.key?(:desired_user_managed_keys_config)
2328
2461
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
2329
2462
  @desired_workload_alts_config = args[:desired_workload_alts_config] if args.key?(:desired_workload_alts_config)
2330
2463
  @desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
2331
2464
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
2332
2465
  @enable_k8s_beta_apis = args[:enable_k8s_beta_apis] if args.key?(:enable_k8s_beta_apis)
2333
2466
  @etag = args[:etag] if args.key?(:etag)
2467
+ @gke_auto_upgrade_config = args[:gke_auto_upgrade_config] if args.key?(:gke_auto_upgrade_config)
2334
2468
  @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
2335
2469
  @removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
2336
2470
  @user_managed_keys_config = args[:user_managed_keys_config] if args.key?(:user_managed_keys_config)
@@ -2396,8 +2530,8 @@ module Google
2396
2530
  class CompleteIpRotationRequest
2397
2531
  include Google::Apis::Core::Hashable
2398
2532
 
2399
- # Required. Deprecated. The name of the cluster. This field has been deprecated
2400
- # and replaced by the name field.
2533
+ # Deprecated. The name of the cluster. This field has been deprecated and
2534
+ # replaced by the name field.
2401
2535
  # Corresponds to the JSON property `clusterId`
2402
2536
  # @return [String]
2403
2537
  attr_accessor :cluster_id
@@ -2408,16 +2542,18 @@ module Google
2408
2542
  # @return [String]
2409
2543
  attr_accessor :name
2410
2544
 
2411
- # Required. Deprecated. The Google Developers Console [project ID or project
2412
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
2413
- # projects). This field has been deprecated and replaced by the name field.
2545
+ # Deprecated. The Google Developers Console [project ID or project number](https:
2546
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
2547
+ # creating-managing-projects). This field has been deprecated and replaced by
2548
+ # the name field.
2414
2549
  # Corresponds to the JSON property `projectId`
2415
2550
  # @return [String]
2416
2551
  attr_accessor :project_id
2417
2552
 
2418
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
2419
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
2420
- # This field has been deprecated and replaced by the name field.
2553
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
2554
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
2555
+ # the cluster resides. This field has been deprecated and replaced by the name
2556
+ # field.
2421
2557
  # Corresponds to the JSON property `zone`
2422
2558
  # @return [String]
2423
2559
  attr_accessor :zone
@@ -2642,16 +2778,18 @@ module Google
2642
2778
  # @return [String]
2643
2779
  attr_accessor :parent
2644
2780
 
2645
- # Required. Deprecated. The Google Developers Console [project ID or project
2646
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
2647
- # projects). This field has been deprecated and replaced by the parent field.
2781
+ # Deprecated. The Google Developers Console [project ID or project number](https:
2782
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
2783
+ # creating-managing-projects). This field has been deprecated and replaced by
2784
+ # the parent field.
2648
2785
  # Corresponds to the JSON property `projectId`
2649
2786
  # @return [String]
2650
2787
  attr_accessor :project_id
2651
2788
 
2652
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
2653
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
2654
- # This field has been deprecated and replaced by the parent field.
2789
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
2790
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
2791
+ # the cluster resides. This field has been deprecated and replaced by the parent
2792
+ # field.
2655
2793
  # Corresponds to the JSON property `zone`
2656
2794
  # @return [String]
2657
2795
  attr_accessor :zone
@@ -2673,8 +2811,8 @@ module Google
2673
2811
  class CreateNodePoolRequest
2674
2812
  include Google::Apis::Core::Hashable
2675
2813
 
2676
- # Required. Deprecated. The name of the cluster. This field has been deprecated
2677
- # and replaced by the parent field.
2814
+ # Deprecated. The name of the cluster. This field has been deprecated and
2815
+ # replaced by the parent field.
2678
2816
  # Corresponds to the JSON property `clusterId`
2679
2817
  # @return [String]
2680
2818
  attr_accessor :cluster_id
@@ -2695,16 +2833,18 @@ module Google
2695
2833
  # @return [String]
2696
2834
  attr_accessor :parent
2697
2835
 
2698
- # Required. Deprecated. The Google Developers Console [project ID or project
2699
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
2700
- # projects). This field has been deprecated and replaced by the parent field.
2836
+ # Deprecated. The Google Developers Console [project ID or project number](https:
2837
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
2838
+ # creating-managing-projects). This field has been deprecated and replaced by
2839
+ # the parent field.
2701
2840
  # Corresponds to the JSON property `projectId`
2702
2841
  # @return [String]
2703
2842
  attr_accessor :project_id
2704
2843
 
2705
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
2706
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
2707
- # This field has been deprecated and replaced by the parent field.
2844
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
2845
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
2846
+ # the cluster resides. This field has been deprecated and replaced by the parent
2847
+ # field.
2708
2848
  # Corresponds to the JSON property `zone`
2709
2849
  # @return [String]
2710
2850
  attr_accessor :zone
@@ -2924,6 +3064,27 @@ module Google
2924
3064
  end
2925
3065
  end
2926
3066
 
3067
+ # DesiredAdditionalIPRangesConfig is a wrapper used for cluster update operation
3068
+ # and contains multiple AdditionalIPRangesConfigs.
3069
+ class DesiredAdditionalIpRangesConfig
3070
+ include Google::Apis::Core::Hashable
3071
+
3072
+ # List of additional IP ranges configs where each AdditionalIPRangesConfig
3073
+ # corresponds to one subnetwork's IP ranges
3074
+ # Corresponds to the JSON property `additionalIpRangesConfigs`
3075
+ # @return [Array<Google::Apis::ContainerV1beta1::AdditionalIpRangesConfig>]
3076
+ attr_accessor :additional_ip_ranges_configs
3077
+
3078
+ def initialize(**args)
3079
+ update!(**args)
3080
+ end
3081
+
3082
+ # Update properties of this object
3083
+ def update!(**args)
3084
+ @additional_ip_ranges_configs = args[:additional_ip_ranges_configs] if args.key?(:additional_ip_ranges_configs)
3085
+ end
3086
+ end
3087
+
2927
3088
  # DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
2928
3089
  class DesiredEnterpriseConfig
2929
3090
  include Google::Apis::Core::Hashable
@@ -3011,15 +3172,16 @@ module Google
3011
3172
 
3012
3173
  # Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces.
3013
3174
  # The limit for this value is dependent upon the maximum number of disk
3014
- # available on a machine per zone. See: https://cloud.google.com/compute/docs/
3015
- # disks/local-ssd for more information. A zero (or unset) value has different
3016
- # meanings depending on machine type being used: 1. For pre-Gen3 machines, which
3017
- # support flexible numbers of local ssds, zero (or unset) means to disable using
3018
- # local SSDs as ephemeral storage. 2. For Gen3 machines which dictate a specific
3019
- # number of local ssds, zero (or unset) means to use the default number of local
3020
- # ssds that goes with that machine type. For example, for a c3-standard-8-lssd
3021
- # machine, 2 local ssds would be provisioned. For c3-standard-8 (which doesn't
3022
- # support local ssds), 0 will be provisioned. See https://cloud.google.com/
3175
+ # available on a machine per zone. See: https://`$universe.dns_names.
3176
+ # final_documentation_domain`/compute/docs/disks/local-ssd for more information.
3177
+ # A zero (or unset) value has different meanings depending on machine type being
3178
+ # used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
3179
+ # zero (or unset) means to disable using local SSDs as ephemeral storage. 2. For
3180
+ # Gen3 machines which dictate a specific number of local ssds, zero (or unset)
3181
+ # means to use the default number of local ssds that goes with that machine type.
3182
+ # For example, for a c3-standard-8-lssd machine, 2 local ssds would be
3183
+ # provisioned. For c3-standard-8 (which doesn't support local ssds), 0 will be
3184
+ # provisioned. See https://`$universe.dns_names.final_documentation_domain`/
3023
3185
  # compute/docs/disks/local-ssd#choose_number_local_ssds for more info.
3024
3186
  # Corresponds to the JSON property `localSsdCount`
3025
3187
  # @return [Fixnum]
@@ -3050,13 +3212,15 @@ module Google
3050
3212
  # used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
3051
3213
  # zero (or unset) means to disable using local SSDs as ephemeral storage. The
3052
3214
  # limit for this value is dependent upon the maximum number of disk available on
3053
- # a machine per zone. See: https://cloud.google.com/compute/docs/disks/local-ssd
3054
- # for more information. 2. For Gen3 machines which dictate a specific number of
3055
- # local ssds, zero (or unset) means to use the default number of local ssds that
3056
- # goes with that machine type. For example, for a c3-standard-8-lssd machine, 2
3057
- # local ssds would be provisioned. For c3-standard-8 (which doesn't support
3058
- # local ssds), 0 will be provisioned. See https://cloud.google.com/compute/docs/
3059
- # disks/local-ssd#choose_number_local_ssds for more info.
3215
+ # a machine per zone. See: https://`$universe.dns_names.
3216
+ # final_documentation_domain`/compute/docs/disks/local-ssd for more information.
3217
+ # 2. For Gen3 machines which dictate a specific number of local ssds, zero (or
3218
+ # unset) means to use the default number of local ssds that goes with that
3219
+ # machine type. For example, for a c3-standard-8-lssd machine, 2 local ssds
3220
+ # would be provisioned. For c3-standard-8 (which doesn't support local ssds), 0
3221
+ # will be provisioned. See https://`$universe.dns_names.
3222
+ # final_documentation_domain`/compute/docs/disks/local-ssd#
3223
+ # choose_number_local_ssds for more info.
3060
3224
  # Corresponds to the JSON property `localSsdCount`
3061
3225
  # @return [Fixnum]
3062
3226
  attr_accessor :local_ssd_count
@@ -3151,7 +3315,8 @@ module Google
3151
3315
  end
3152
3316
 
3153
3317
  # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
3154
- # Manager](https://cloud.google.com/secret-manager).
3318
+ # Manager](https://`$universe.dns_names.final_documentation_domain`/secret-
3319
+ # manager).
3155
3320
  class GcpSecretManagerCertificateConfig
3156
3321
  include Google::Apis::Core::Hashable
3157
3322
 
@@ -3403,6 +3568,25 @@ module Google
3403
3568
  end
3404
3569
  end
3405
3570
 
3571
+ # GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.
3572
+ class GkeAutoUpgradeConfig
3573
+ include Google::Apis::Core::Hashable
3574
+
3575
+ # PatchMode specifies how auto upgrade patch builds should be selected.
3576
+ # Corresponds to the JSON property `patchMode`
3577
+ # @return [String]
3578
+ attr_accessor :patch_mode
3579
+
3580
+ def initialize(**args)
3581
+ update!(**args)
3582
+ end
3583
+
3584
+ # Update properties of this object
3585
+ def update!(**args)
3586
+ @patch_mode = args[:patch_mode] if args.key?(:patch_mode)
3587
+ end
3588
+ end
3589
+
3406
3590
  # Configuration for the Backup for GKE Agent.
3407
3591
  class GkeBackupAgentConfig
3408
3592
  include Google::Apis::Core::Hashable
@@ -3423,6 +3607,26 @@ module Google
3423
3607
  end
3424
3608
  end
3425
3609
 
3610
+ # Configuration for the High Scale Checkpointing.
3611
+ class HighScaleCheckpointingConfig
3612
+ include Google::Apis::Core::Hashable
3613
+
3614
+ # Whether the High Scale Checkpointing is enabled for this cluster.
3615
+ # Corresponds to the JSON property `enabled`
3616
+ # @return [Boolean]
3617
+ attr_accessor :enabled
3618
+ alias_method :enabled?, :enabled
3619
+
3620
+ def initialize(**args)
3621
+ update!(**args)
3622
+ end
3623
+
3624
+ # Update properties of this object
3625
+ def update!(**args)
3626
+ @enabled = args[:enabled] if args.key?(:enabled)
3627
+ end
3628
+ end
3629
+
3426
3630
  # Configuration options for the horizontal pod autoscaling feature, which
3427
3631
  # increases or decreases the number of replica pods a replication controller has
3428
3632
  # based on the resource usage of the existing pods.
@@ -3575,6 +3779,14 @@ module Google
3575
3779
  class IpAllocationPolicy
3576
3780
  include Google::Apis::Core::Hashable
3577
3781
 
3782
+ # Output only. The additional IP ranges that are added to the cluster. These IP
3783
+ # ranges can be used by new node pools to allocate node and pod IPs
3784
+ # automatically. Each AdditionalIPRangesConfig corresponds to a single
3785
+ # subnetwork. Once a range is removed it will not show up in IPAllocationPolicy.
3786
+ # Corresponds to the JSON property `additionalIpRangesConfigs`
3787
+ # @return [Array<Google::Apis::ContainerV1beta1::AdditionalIpRangesConfig>]
3788
+ attr_accessor :additional_ip_ranges_configs
3789
+
3578
3790
  # AdditionalPodRangesConfig is the configuration for additional pod secondary
3579
3791
  # ranges supporting the ClusterUpdate message.
3580
3792
  # Corresponds to the JSON property `additionalPodRangesConfig`
@@ -3595,6 +3807,11 @@ module Google
3595
3807
  attr_accessor :allow_route_overlap
3596
3808
  alias_method :allow_route_overlap?, :allow_route_overlap
3597
3809
 
3810
+ # AutoIpamConfig contains all information related to Auto IPAM
3811
+ # Corresponds to the JSON property `autoIpamConfig`
3812
+ # @return [Google::Apis::ContainerV1beta1::AutoIpamConfig]
3813
+ attr_accessor :auto_ipam_config
3814
+
3598
3815
  # This field is deprecated, use cluster_ipv4_cidr_block.
3599
3816
  # Corresponds to the JSON property `clusterIpv4Cidr`
3600
3817
  # @return [String]
@@ -3743,8 +3960,10 @@ module Google
3743
3960
 
3744
3961
  # Update properties of this object
3745
3962
  def update!(**args)
3963
+ @additional_ip_ranges_configs = args[:additional_ip_ranges_configs] if args.key?(:additional_ip_ranges_configs)
3746
3964
  @additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
3747
3965
  @allow_route_overlap = args[:allow_route_overlap] if args.key?(:allow_route_overlap)
3966
+ @auto_ipam_config = args[:auto_ipam_config] if args.key?(:auto_ipam_config)
3748
3967
  @cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
3749
3968
  @cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
3750
3969
  @cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
@@ -4228,17 +4447,18 @@ module Google
4228
4447
  include Google::Apis::Core::Hashable
4229
4448
 
4230
4449
  # Number of local NVMe SSDs to use. The limit for this value is dependent upon
4231
- # the maximum number of disk available on a machine per zone. See: https://cloud.
4232
- # google.com/compute/docs/disks/local-ssd for more information. A zero (or unset)
4233
- # value has different meanings depending on machine type being used: 1. For pre-
4234
- # Gen3 machines, which support flexible numbers of local ssds, zero (or unset)
4235
- # means to disable using local SSDs as ephemeral storage. 2. For Gen3 machines
4236
- # which dictate a specific number of local ssds, zero (or unset) means to use
4237
- # the default number of local ssds that goes with that machine type. For example,
4238
- # for a c3-standard-8-lssd machine, 2 local ssds would be provisioned. For c3-
4239
- # standard-8 (which doesn't support local ssds), 0 will be provisioned. See
4240
- # https://cloud.google.com/compute/docs/disks/local-ssd#choose_number_local_ssds
4241
- # for more info.
4450
+ # the maximum number of disk available on a machine per zone. See: https://`$
4451
+ # universe.dns_names.final_documentation_domain`/compute/docs/disks/local-ssd
4452
+ # for more information. A zero (or unset) value has different meanings depending
4453
+ # on machine type being used: 1. For pre-Gen3 machines, which support flexible
4454
+ # numbers of local ssds, zero (or unset) means to disable using local SSDs as
4455
+ # ephemeral storage. 2. For Gen3 machines which dictate a specific number of
4456
+ # local ssds, zero (or unset) means to use the default number of local ssds that
4457
+ # goes with that machine type. For example, for a c3-standard-8-lssd machine, 2
4458
+ # local ssds would be provisioned. For c3-standard-8 (which doesn't support
4459
+ # local ssds), 0 will be provisioned. See https://`$universe.dns_names.
4460
+ # final_documentation_domain`/compute/docs/disks/local-ssd#
4461
+ # choose_number_local_ssds for more info.
4242
4462
  # Corresponds to the JSON property `localSsdCount`
4243
4463
  # @return [Fixnum]
4244
4464
  attr_accessor :local_ssd_count
@@ -4498,8 +4718,9 @@ module Google
4498
4718
  # strong password. If a password is provided for cluster creation, username must
4499
4719
  # be non-empty. Warning: basic authentication is deprecated, and will be removed
4500
4720
  # in GKE control plane versions 1.19 and newer. For a list of recommended
4501
- # authentication methods, see: https://cloud.google.com/kubernetes-engine/docs/
4502
- # how-to/api-server-authentication
4721
+ # authentication methods, see: https://`$universe.dns_names.
4722
+ # final_documentation_domain`/kubernetes-engine/docs/how-to/api-server-
4723
+ # authentication
4503
4724
  # Corresponds to the JSON property `password`
4504
4725
  # @return [String]
4505
4726
  attr_accessor :password
@@ -4509,8 +4730,8 @@ module Google
4509
4730
  # username unspecified (or setting it to the empty string). Warning: basic
4510
4731
  # authentication is deprecated, and will be removed in GKE control plane
4511
4732
  # versions 1.19 and newer. For a list of recommended authentication methods, see:
4512
- # https://cloud.google.com/kubernetes-engine/docs/how-to/api-server-
4513
- # authentication
4733
+ # https://`$universe.dns_names.final_documentation_domain`/kubernetes-engine/
4734
+ # docs/how-to/api-server-authentication
4514
4735
  # Corresponds to the JSON property `username`
4515
4736
  # @return [String]
4516
4737
  attr_accessor :username
@@ -4807,9 +5028,10 @@ module Google
4807
5028
  # @return [String]
4808
5029
  attr_accessor :in_transit_encryption_config
4809
5030
 
4810
- # Output only. The relative name of the Google Compute Engine [network](https://
4811
- # cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
4812
- # cluster is connected. Example: projects/my-project/global/networks/my-network
5031
+ # Output only. The relative name of the Google Compute Engine [network](https://`
5032
+ # $universe.dns_names.final_documentation_domain`/compute/docs/networks-and-
5033
+ # firewalls#networks) to which the cluster is connected. Example: projects/my-
5034
+ # project/global/networks/my-network
4813
5035
  # Corresponds to the JSON property `network`
4814
5036
  # @return [String]
4815
5037
  attr_accessor :network
@@ -4831,8 +5053,9 @@ module Google
4831
5053
  attr_accessor :service_external_ips_config
4832
5054
 
4833
5055
  # Output only. The relative name of the Google Compute Engine [subnetwork](https:
4834
- # //cloud.google.com/compute/docs/vpc) to which the cluster is connected.
4835
- # Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
5056
+ # //`$universe.dns_names.final_documentation_domain`/compute/docs/vpc) to which
5057
+ # the cluster is connected. Example: projects/my-project/regions/us-central1/
5058
+ # subnetworks/my-subnet
4836
5059
  # Corresponds to the JSON property `subnetwork`
4837
5060
  # @return [String]
4838
5061
  attr_accessor :subnetwork
@@ -4960,8 +5183,9 @@ module Google
4960
5183
  end
4961
5184
 
4962
5185
  # Specifies the NodeAffinity key, values, and affinity operator according to [
4963
- # shared sole tenant node group affinities](https://cloud.google.com/compute/
4964
- # docs/nodes/sole-tenant-nodes#node_affinity_and_anti-affinity).
5186
+ # shared sole tenant node group affinities](https://`$universe.dns_names.
5187
+ # final_documentation_domain`/compute/docs/nodes/sole-tenant-nodes#
5188
+ # node_affinity_and_anti-affinity).
4965
5189
  class NodeAffinity
4966
5190
  include Google::Apis::Core::Hashable
4967
5191
 
@@ -4998,8 +5222,9 @@ module Google
4998
5222
  class NodeConfig
4999
5223
  include Google::Apis::Core::Hashable
5000
5224
 
5001
- # A list of hardware accelerators to be attached to each node. See https://cloud.
5002
- # google.com/compute/docs/gpus for more information about support for GPUs.
5225
+ # A list of hardware accelerators to be attached to each node. See https://`$
5226
+ # universe.dns_names.final_documentation_domain`/compute/docs/gpus for more
5227
+ # information about support for GPUs.
5003
5228
  # Corresponds to the JSON property `accelerators`
5004
5229
  # @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
5005
5230
  attr_accessor :accelerators
@@ -5013,7 +5238,8 @@ module Google
5013
5238
  # each node in the node pool. This should be of the form projects/[
5014
5239
  # KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
5015
5240
  # . For more information about protecting resources with Cloud KMS Keys please
5016
- # see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption
5241
+ # see: https://`$universe.dns_names.final_documentation_domain`/compute/docs/
5242
+ # disks/customer-managed-encryption
5017
5243
  # Corresponds to the JSON property `bootDiskKmsKey`
5018
5244
  # @return [String]
5019
5245
  attr_accessor :boot_disk_kms_key
@@ -5096,8 +5322,9 @@ module Google
5096
5322
  attr_accessor :host_maintenance_policy
5097
5323
 
5098
5324
  # The image type to use for this node. Note that for a given image type, the
5099
- # latest version of it will be used. Please see https://cloud.google.com/
5100
- # kubernetes-engine/docs/concepts/node-images for available image types.
5325
+ # latest version of it will be used. Please see https://`$universe.dns_names.
5326
+ # final_documentation_domain`/kubernetes-engine/docs/concepts/node-images for
5327
+ # available image types.
5101
5328
  # Corresponds to the JSON property `imageType`
5102
5329
  # @return [String]
5103
5330
  attr_accessor :image_type
@@ -5131,8 +5358,8 @@ module Google
5131
5358
 
5132
5359
  # The number of local SSD disks to be attached to the node. The limit for this
5133
5360
  # value is dependent upon the maximum number of disks available on a machine per
5134
- # zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for more
5135
- # information.
5361
+ # zone. See: https://`$universe.dns_names.final_documentation_domain`/compute/
5362
+ # docs/disks/local-ssd for more information.
5136
5363
  # Corresponds to the JSON property `localSsdCount`
5137
5364
  # @return [Fixnum]
5138
5365
  attr_accessor :local_ssd_count
@@ -5148,9 +5375,9 @@ module Google
5148
5375
  # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
5149
5376
  attr_accessor :logging_config
5150
5377
 
5151
- # The name of a Google Compute Engine [machine type](https://cloud.google.com/
5152
- # compute/docs/machine-types). If unspecified, the default machine type is `e2-
5153
- # medium`.
5378
+ # The name of a Google Compute Engine [machine type](https://`$universe.
5379
+ # dns_names.final_documentation_domain`/compute/docs/machine-types). If
5380
+ # unspecified, the default machine type is `e2-medium`.
5154
5381
  # Corresponds to the JSON property `machineType`
5155
5382
  # @return [String]
5156
5383
  attr_accessor :machine_type
@@ -5183,15 +5410,16 @@ module Google
5183
5410
  # scheduled on the specified or newer CPU platform. Applicable values are the
5184
5411
  # friendly names of CPU platforms, such as `minCpuPlatform: "Intel Haswell"` or `
5185
5412
  # minCpuPlatform: "Intel Sandy Bridge"`. For more information, read [how to
5186
- # specify min CPU platform](https://cloud.google.com/compute/docs/instances/
5187
- # specify-min-cpu-platform).
5413
+ # specify min CPU platform](https://`$universe.dns_names.
5414
+ # final_documentation_domain`/compute/docs/instances/specify-min-cpu-platform).
5188
5415
  # Corresponds to the JSON property `minCpuPlatform`
5189
5416
  # @return [String]
5190
5417
  attr_accessor :min_cpu_platform
5191
5418
 
5192
5419
  # Setting this field will assign instances of this pool to run on the specified
5193
5420
  # node group. This is useful for running workloads on [sole tenant nodes](https:/
5194
- # /cloud.google.com/compute/docs/nodes/sole-tenant-nodes).
5421
+ # /`$universe.dns_names.final_documentation_domain`/compute/docs/nodes/sole-
5422
+ # tenant-nodes).
5195
5423
  # Corresponds to the JSON property `nodeGroup`
5196
5424
  # @return [String]
5197
5425
  attr_accessor :node_group
@@ -5201,25 +5429,25 @@ module Google
5201
5429
  # required, and by default are not included: * `https://www.googleapis.com/auth/
5202
5430
  # compute` is required for mounting persistent storage on your nodes. * `https://
5203
5431
  # www.googleapis.com/auth/devstorage.read_only` is required for communicating
5204
- # with **gcr.io** (the [Google Container Registry](https://cloud.google.com/
5205
- # container-registry/)). If unspecified, no scopes are added, unless Cloud
5206
- # Logging or Cloud Monitoring are enabled, in which case their required scopes
5207
- # will be added.
5432
+ # with **gcr.io** (the [Google Container Registry](https://`$universe.dns_names.
5433
+ # final_documentation_domain`/container-registry/)). If unspecified, no scopes
5434
+ # are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case
5435
+ # their required scopes will be added.
5208
5436
  # Corresponds to the JSON property `oauthScopes`
5209
5437
  # @return [Array<String>]
5210
5438
  attr_accessor :oauth_scopes
5211
5439
 
5212
- # Whether the nodes are created as preemptible VM instances. See: https://cloud.
5213
- # google.com/compute/docs/instances/preemptible for more information about
5214
- # preemptible VM instances.
5440
+ # Whether the nodes are created as preemptible VM instances. See: https://`$
5441
+ # universe.dns_names.final_documentation_domain`/compute/docs/instances/
5442
+ # preemptible for more information about preemptible VM instances.
5215
5443
  # Corresponds to the JSON property `preemptible`
5216
5444
  # @return [Boolean]
5217
5445
  attr_accessor :preemptible
5218
5446
  alias_method :preemptible?, :preemptible
5219
5447
 
5220
- # [ReservationAffinity](https://cloud.google.com/compute/docs/instances/
5221
- # reserving-zonal-resources) is the configuration of desired reservation which
5222
- # instances could take capacity from.
5448
+ # [ReservationAffinity](https://`$universe.dns_names.final_documentation_domain`/
5449
+ # compute/docs/instances/reserving-zonal-resources) is the configuration of
5450
+ # desired reservation which instances could take capacity from.
5223
5451
  # Corresponds to the JSON property `reservationAffinity`
5224
5452
  # @return [Google::Apis::ContainerV1beta1::ReservationAffinity]
5225
5453
  attr_accessor :reservation_affinity
@@ -5232,9 +5460,10 @@ module Google
5232
5460
 
5233
5461
  # A map of resource manager tag keys and values to be attached to the nodes for
5234
5462
  # managing Compute Engine firewalls using Network Firewall Policies. Tags must
5235
- # be according to specifications in https://cloud.google.com/vpc/docs/tags-
5236
- # firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
5237
- # specified. Existing tags will be replaced with new values.
5463
+ # be according to specifications in https://`$universe.dns_names.
5464
+ # final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
5465
+ # maximum of 5 tag key-value pairs can be specified. Existing tags will be
5466
+ # replaced with new values.
5238
5467
  # Corresponds to the JSON property `resourceManagerTags`
5239
5468
  # @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
5240
5469
  attr_accessor :resource_manager_tags
@@ -5755,27 +5984,30 @@ module Google
5755
5984
  attr_accessor :etag
5756
5985
 
5757
5986
  # The initial node count for the pool. You must ensure that your Compute Engine [
5758
- # resource quota](https://cloud.google.com/compute/quotas) is sufficient for
5759
- # this number of instances. You must also have available firewall and routes
5760
- # quota.
5987
+ # resource quota](https://`$universe.dns_names.final_documentation_domain`/
5988
+ # compute/quotas) is sufficient for this number of instances. You must also have
5989
+ # available firewall and routes quota.
5761
5990
  # Corresponds to the JSON property `initialNodeCount`
5762
5991
  # @return [Fixnum]
5763
5992
  attr_accessor :initial_node_count
5764
5993
 
5765
- # Output only. The resource URLs of the [managed instance groups](https://cloud.
5766
- # google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
5767
- # associated with this node pool. During the node pool blue-green upgrade
5768
- # operation, the URLs contain both blue and green resources.
5994
+ # Output only. The resource URLs of the [managed instance groups](https://`$
5995
+ # universe.dns_names.final_documentation_domain`/compute/docs/instance-groups/
5996
+ # creating-groups-of-managed-instances) associated with this node pool. During
5997
+ # the node pool blue-green upgrade operation, the URLs contain both blue and
5998
+ # green resources.
5769
5999
  # Corresponds to the JSON property `instanceGroupUrls`
5770
6000
  # @return [Array<String>]
5771
6001
  attr_accessor :instance_group_urls
5772
6002
 
5773
- # The list of Google Compute Engine [zones](https://cloud.google.com/compute/
5774
- # docs/zones#available) in which the NodePool's nodes should be located. If this
5775
- # value is unspecified during node pool creation, the [Cluster.Locations](https:/
5776
- # /cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.
5777
- # clusters#Cluster.FIELDS.locations) value will be used, instead. Warning:
5778
- # changing node pool locations will result in nodes being added and/or removed.
6003
+ # The list of Google Compute Engine [zones](https://`$universe.dns_names.
6004
+ # final_documentation_domain`/compute/docs/zones#available) in which the
6005
+ # NodePool's nodes should be located. If this value is unspecified during node
6006
+ # pool creation, the [Cluster.Locations](https://`$universe.dns_names.
6007
+ # final_documentation_domain`/kubernetes-engine/docs/reference/rest/v1/projects.
6008
+ # locations.clusters#Cluster.FIELDS.locations) value will be used, instead.
6009
+ # Warning: changing node pool locations will result in nodes being added and/or
6010
+ # removed.
5779
6011
  # Corresponds to the JSON property `locations`
5780
6012
  # @return [Array<String>]
5781
6013
  attr_accessor :locations
@@ -5874,8 +6106,9 @@ module Google
5874
6106
  attr_accessor :upgrade_settings
5875
6107
 
5876
6108
  # The version of Kubernetes running on this NodePool's nodes. If unspecified, it
5877
- # defaults as described [here](https://cloud.google.com/kubernetes-engine/
5878
- # versioning#specifying_node_version).
6109
+ # defaults as described [here](https://`$universe.dns_names.
6110
+ # final_documentation_domain`/kubernetes-engine/versioning#
6111
+ # specifying_node_version).
5879
6112
  # Corresponds to the JSON property `version`
5880
6113
  # @return [String]
5881
6114
  attr_accessor :version
@@ -5935,9 +6168,10 @@ module Google
5935
6168
 
5936
6169
  # A map of resource manager tag keys and values to be attached to the nodes for
5937
6170
  # managing Compute Engine firewalls using Network Firewall Policies. Tags must
5938
- # be according to specifications in https://cloud.google.com/vpc/docs/tags-
5939
- # firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
5940
- # specified. Existing tags will be replaced with new values.
6171
+ # be according to specifications in https://`$universe.dns_names.
6172
+ # final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
6173
+ # maximum of 5 tag key-value pairs can be specified. Existing tags will be
6174
+ # replaced with new values.
5941
6175
  # Corresponds to the JSON property `resourceManagerTags`
5942
6176
  # @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
5943
6177
  attr_accessor :resource_manager_tags
@@ -6218,10 +6452,11 @@ module Google
6218
6452
  # @return [Google::Apis::ContainerV1beta1::Status]
6219
6453
  attr_accessor :error
6220
6454
 
6221
- # Output only. The name of the Google Compute Engine [zone](https://cloud.google.
6222
- # com/compute/docs/regions-zones/regions-zones#available) or [region](https://
6223
- # cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
6224
- # the cluster resides.
6455
+ # Output only. The name of the Google Compute Engine [zone](https://`$universe.
6456
+ # dns_names.final_documentation_domain`/compute/docs/regions-zones/regions-zones#
6457
+ # available) or [region](https://`$universe.dns_names.final_documentation_domain`
6458
+ # /compute/docs/regions-zones/regions-zones#available) in which the cluster
6459
+ # resides.
6225
6460
  # Corresponds to the JSON property `location`
6226
6461
  # @return [String]
6227
6462
  attr_accessor :location
@@ -6283,9 +6518,9 @@ module Google
6283
6518
  # @return [String]
6284
6519
  attr_accessor :target_link
6285
6520
 
6286
- # Output only. The name of the Google Compute Engine [zone](https://cloud.google.
6287
- # com/compute/docs/zones#available) in which the operation is taking place. This
6288
- # field is deprecated, use location instead.
6521
+ # Output only. The name of the Google Compute Engine [zone](https://`$universe.
6522
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
6523
+ # the operation is taking place. This field is deprecated, use location instead.
6289
6524
  # Corresponds to the JSON property `zone`
6290
6525
  # @return [String]
6291
6526
  attr_accessor :zone
@@ -6481,8 +6716,8 @@ module Google
6481
6716
  # @return [String]
6482
6717
  attr_accessor :policy_name
6483
6718
 
6484
- # TPU placement topology for pod slice node pool. https://cloud.google.com/tpu/
6485
- # docs/types-topologies#tpu_topologies
6719
+ # TPU placement topology for pod slice node pool. https://`$universe.dns_names.
6720
+ # final_documentation_domain`/tpu/docs/types-topologies#tpu_topologies
6486
6721
  # Corresponds to the JSON property `tpuTopology`
6487
6722
  # @return [String]
6488
6723
  attr_accessor :tpu_topology
@@ -7028,9 +7263,9 @@ module Google
7028
7263
  end
7029
7264
  end
7030
7265
 
7031
- # [ReservationAffinity](https://cloud.google.com/compute/docs/instances/
7032
- # reserving-zonal-resources) is the configuration of desired reservation which
7033
- # instances could take capacity from.
7266
+ # [ReservationAffinity](https://`$universe.dns_names.final_documentation_domain`/
7267
+ # compute/docs/instances/reserving-zonal-resources) is the configuration of
7268
+ # desired reservation which instances could take capacity from.
7034
7269
  class ReservationAffinity
7035
7270
  include Google::Apis::Core::Hashable
7036
7271
 
@@ -7063,8 +7298,8 @@ module Google
7063
7298
  end
7064
7299
  end
7065
7300
 
7066
- # Collection of [GCP labels](https://cloud.google.com/resource-manager/docs/
7067
- # creating-managing-labels).
7301
+ # Collection of [GCP labels](https://`$universe.dns_names.
7302
+ # final_documentation_domain`/resource-manager/docs/creating-managing-labels).
7068
7303
  class ResourceLabels
7069
7304
  include Google::Apis::Core::Hashable
7070
7305
 
@@ -7117,9 +7352,10 @@ module Google
7117
7352
 
7118
7353
  # A map of resource manager tag keys and values to be attached to the nodes for
7119
7354
  # managing Compute Engine firewalls using Network Firewall Policies. Tags must
7120
- # be according to specifications in https://cloud.google.com/vpc/docs/tags-
7121
- # firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
7122
- # specified. Existing tags will be replaced with new values.
7355
+ # be according to specifications in https://`$universe.dns_names.
7356
+ # final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
7357
+ # maximum of 5 tag key-value pairs can be specified. Existing tags will be
7358
+ # replaced with new values.
7123
7359
  class ResourceManagerTags
7124
7360
  include Google::Apis::Core::Hashable
7125
7361
 
@@ -7179,7 +7415,7 @@ module Google
7179
7415
  class RollbackNodePoolUpgradeRequest
7180
7416
  include Google::Apis::Core::Hashable
7181
7417
 
7182
- # Required. Deprecated. The name of the cluster to rollback. This field has been
7418
+ # Deprecated. The name of the cluster to rollback. This field has been
7183
7419
  # deprecated and replaced by the name field.
7184
7420
  # Corresponds to the JSON property `clusterId`
7185
7421
  # @return [String]
@@ -7192,15 +7428,16 @@ module Google
7192
7428
  # @return [String]
7193
7429
  attr_accessor :name
7194
7430
 
7195
- # Required. Deprecated. The name of the node pool to rollback. This field has
7196
- # been deprecated and replaced by the name field.
7431
+ # Deprecated. The name of the node pool to rollback. This field has been
7432
+ # deprecated and replaced by the name field.
7197
7433
  # Corresponds to the JSON property `nodePoolId`
7198
7434
  # @return [String]
7199
7435
  attr_accessor :node_pool_id
7200
7436
 
7201
- # Required. Deprecated. The Google Developers Console [project ID or project
7202
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7203
- # projects). This field has been deprecated and replaced by the name field.
7437
+ # Deprecated. The Google Developers Console [project ID or project number](https:
7438
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
7439
+ # creating-managing-projects). This field has been deprecated and replaced by
7440
+ # the name field.
7204
7441
  # Corresponds to the JSON property `projectId`
7205
7442
  # @return [String]
7206
7443
  attr_accessor :project_id
@@ -7211,9 +7448,10 @@ module Google
7211
7448
  attr_accessor :respect_pdb
7212
7449
  alias_method :respect_pdb?, :respect_pdb
7213
7450
 
7214
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7215
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7216
- # This field has been deprecated and replaced by the name field.
7451
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
7452
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
7453
+ # the cluster resides. This field has been deprecated and replaced by the name
7454
+ # field.
7217
7455
  # Corresponds to the JSON property `zone`
7218
7456
  # @return [String]
7219
7457
  attr_accessor :zone
@@ -7551,8 +7789,8 @@ module Google
7551
7789
  # @return [Google::Apis::ContainerV1beta1::AddonsConfig]
7552
7790
  attr_accessor :addons_config
7553
7791
 
7554
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
7555
- # deprecated and replaced by the name field.
7792
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
7793
+ # and replaced by the name field.
7556
7794
  # Corresponds to the JSON property `clusterId`
7557
7795
  # @return [String]
7558
7796
  attr_accessor :cluster_id
@@ -7563,16 +7801,18 @@ module Google
7563
7801
  # @return [String]
7564
7802
  attr_accessor :name
7565
7803
 
7566
- # Required. Deprecated. The Google Developers Console [project ID or project
7567
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7568
- # projects). This field has been deprecated and replaced by the name field.
7804
+ # Deprecated. The Google Developers Console [project ID or project number](https:
7805
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
7806
+ # creating-managing-projects). This field has been deprecated and replaced by
7807
+ # the name field.
7569
7808
  # Corresponds to the JSON property `projectId`
7570
7809
  # @return [String]
7571
7810
  attr_accessor :project_id
7572
7811
 
7573
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7574
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7575
- # This field has been deprecated and replaced by the name field.
7812
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
7813
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
7814
+ # the cluster resides. This field has been deprecated and replaced by the name
7815
+ # field.
7576
7816
  # Corresponds to the JSON property `zone`
7577
7817
  # @return [String]
7578
7818
  attr_accessor :zone
@@ -7597,8 +7837,8 @@ module Google
7597
7837
  class SetLabelsRequest
7598
7838
  include Google::Apis::Core::Hashable
7599
7839
 
7600
- # Required. Deprecated. The name of the cluster. This field has been deprecated
7601
- # and replaced by the name field.
7840
+ # Deprecated. The name of the cluster. This field has been deprecated and
7841
+ # replaced by the name field.
7602
7842
  # Corresponds to the JSON property `clusterId`
7603
7843
  # @return [String]
7604
7844
  attr_accessor :cluster_id
@@ -7618,9 +7858,10 @@ module Google
7618
7858
  # @return [String]
7619
7859
  attr_accessor :name
7620
7860
 
7621
- # Required. Deprecated. The Google Developers Console [project ID or project
7622
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7623
- # projects). This field has been deprecated and replaced by the name field.
7861
+ # Deprecated. The Google Developers Console [project ID or project number](https:
7862
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
7863
+ # creating-managing-projects). This field has been deprecated and replaced by
7864
+ # the name field.
7624
7865
  # Corresponds to the JSON property `projectId`
7625
7866
  # @return [String]
7626
7867
  attr_accessor :project_id
@@ -7630,9 +7871,10 @@ module Google
7630
7871
  # @return [Hash<String,String>]
7631
7872
  attr_accessor :resource_labels
7632
7873
 
7633
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7634
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7635
- # This field has been deprecated and replaced by the name field.
7874
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
7875
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
7876
+ # the cluster resides. This field has been deprecated and replaced by the name
7877
+ # field.
7636
7878
  # Corresponds to the JSON property `zone`
7637
7879
  # @return [String]
7638
7880
  attr_accessor :zone
@@ -7657,8 +7899,8 @@ module Google
7657
7899
  class SetLegacyAbacRequest
7658
7900
  include Google::Apis::Core::Hashable
7659
7901
 
7660
- # Required. Deprecated. The name of the cluster to update. This field has been
7661
- # deprecated and replaced by the name field.
7902
+ # Deprecated. The name of the cluster to update. This field has been deprecated
7903
+ # and replaced by the name field.
7662
7904
  # Corresponds to the JSON property `clusterId`
7663
7905
  # @return [String]
7664
7906
  attr_accessor :cluster_id
@@ -7675,16 +7917,18 @@ module Google
7675
7917
  # @return [String]
7676
7918
  attr_accessor :name
7677
7919
 
7678
- # Required. Deprecated. The Google Developers Console [project ID or project
7679
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7680
- # projects). This field has been deprecated and replaced by the name field.
7920
+ # Deprecated. The Google Developers Console [project ID or project number](https:
7921
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
7922
+ # creating-managing-projects). This field has been deprecated and replaced by
7923
+ # the name field.
7681
7924
  # Corresponds to the JSON property `projectId`
7682
7925
  # @return [String]
7683
7926
  attr_accessor :project_id
7684
7927
 
7685
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7686
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7687
- # This field has been deprecated and replaced by the name field.
7928
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
7929
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
7930
+ # the cluster resides. This field has been deprecated and replaced by the name
7931
+ # field.
7688
7932
  # Corresponds to the JSON property `zone`
7689
7933
  # @return [String]
7690
7934
  attr_accessor :zone
@@ -7707,18 +7951,18 @@ module Google
7707
7951
  class SetLocationsRequest
7708
7952
  include Google::Apis::Core::Hashable
7709
7953
 
7710
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
7711
- # deprecated and replaced by the name field.
7954
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
7955
+ # and replaced by the name field.
7712
7956
  # Corresponds to the JSON property `clusterId`
7713
7957
  # @return [String]
7714
7958
  attr_accessor :cluster_id
7715
7959
 
7716
- # Required. The desired list of Google Compute Engine [zones](https://cloud.
7717
- # google.com/compute/docs/zones#available) in which the cluster's nodes should
7718
- # be located. Changing the locations a cluster is in will result in nodes being
7719
- # either created or removed from the cluster, depending on whether locations are
7720
- # being added or removed. This list must always include the cluster's primary
7721
- # zone.
7960
+ # Required. The desired list of Google Compute Engine [zones](https://`$universe.
7961
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
7962
+ # the cluster's nodes should be located. Changing the locations a cluster is in
7963
+ # will result in nodes being either created or removed from the cluster,
7964
+ # depending on whether locations are being added or removed. This list must
7965
+ # always include the cluster's primary zone.
7722
7966
  # Corresponds to the JSON property `locations`
7723
7967
  # @return [Array<String>]
7724
7968
  attr_accessor :locations
@@ -7729,16 +7973,18 @@ module Google
7729
7973
  # @return [String]
7730
7974
  attr_accessor :name
7731
7975
 
7732
- # Required. Deprecated. The Google Developers Console [project ID or project
7733
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7734
- # projects). This field has been deprecated and replaced by the name field.
7976
+ # Deprecated. The Google Developers Console [project ID or project number](https:
7977
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
7978
+ # creating-managing-projects). This field has been deprecated and replaced by
7979
+ # the name field.
7735
7980
  # Corresponds to the JSON property `projectId`
7736
7981
  # @return [String]
7737
7982
  attr_accessor :project_id
7738
7983
 
7739
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7740
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7741
- # This field has been deprecated and replaced by the name field.
7984
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
7985
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
7986
+ # the cluster resides. This field has been deprecated and replaced by the name
7987
+ # field.
7742
7988
  # Corresponds to the JSON property `zone`
7743
7989
  # @return [String]
7744
7990
  attr_accessor :zone
@@ -7761,8 +8007,8 @@ module Google
7761
8007
  class SetLoggingServiceRequest
7762
8008
  include Google::Apis::Core::Hashable
7763
8009
 
7764
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
7765
- # deprecated and replaced by the name field.
8010
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
8011
+ # and replaced by the name field.
7766
8012
  # Corresponds to the JSON property `clusterId`
7767
8013
  # @return [String]
7768
8014
  attr_accessor :cluster_id
@@ -7784,16 +8030,18 @@ module Google
7784
8030
  # @return [String]
7785
8031
  attr_accessor :name
7786
8032
 
7787
- # Required. Deprecated. The Google Developers Console [project ID or project
7788
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7789
- # projects). This field has been deprecated and replaced by the name field.
8033
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8034
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8035
+ # creating-managing-projects). This field has been deprecated and replaced by
8036
+ # the name field.
7790
8037
  # Corresponds to the JSON property `projectId`
7791
8038
  # @return [String]
7792
8039
  attr_accessor :project_id
7793
8040
 
7794
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7795
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7796
- # This field has been deprecated and replaced by the name field.
8041
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8042
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8043
+ # the cluster resides. This field has been deprecated and replaced by the name
8044
+ # field.
7797
8045
  # Corresponds to the JSON property `zone`
7798
8046
  # @return [String]
7799
8047
  attr_accessor :zone
@@ -7833,13 +8081,15 @@ module Google
7833
8081
  attr_accessor :name
7834
8082
 
7835
8083
  # Required. The Google Developers Console [project ID or project number](https://
7836
- # cloud.google.com/resource-manager/docs/creating-managing-projects).
8084
+ # `$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8085
+ # creating-managing-projects).
7837
8086
  # Corresponds to the JSON property `projectId`
7838
8087
  # @return [String]
7839
8088
  attr_accessor :project_id
7840
8089
 
7841
- # Required. The name of the Google Compute Engine [zone](https://cloud.google.
7842
- # com/compute/docs/zones#available) in which the cluster resides.
8090
+ # Required. The name of the Google Compute Engine [zone](https://`$universe.
8091
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8092
+ # the cluster resides.
7843
8093
  # Corresponds to the JSON property `zone`
7844
8094
  # @return [String]
7845
8095
  attr_accessor :zone
@@ -7867,8 +8117,8 @@ module Google
7867
8117
  # @return [String]
7868
8118
  attr_accessor :action
7869
8119
 
7870
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
7871
- # deprecated and replaced by the name field.
8120
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
8121
+ # and replaced by the name field.
7872
8122
  # Corresponds to the JSON property `clusterId`
7873
8123
  # @return [String]
7874
8124
  attr_accessor :cluster_id
@@ -7879,9 +8129,10 @@ module Google
7879
8129
  # @return [String]
7880
8130
  attr_accessor :name
7881
8131
 
7882
- # Required. Deprecated. The Google Developers Console [project ID or project
7883
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7884
- # projects). This field has been deprecated and replaced by the name field.
8132
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8133
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8134
+ # creating-managing-projects). This field has been deprecated and replaced by
8135
+ # the name field.
7885
8136
  # Corresponds to the JSON property `projectId`
7886
8137
  # @return [String]
7887
8138
  attr_accessor :project_id
@@ -7892,9 +8143,10 @@ module Google
7892
8143
  # @return [Google::Apis::ContainerV1beta1::MasterAuth]
7893
8144
  attr_accessor :update
7894
8145
 
7895
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7896
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7897
- # This field has been deprecated and replaced by the name field.
8146
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8147
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8148
+ # the cluster resides. This field has been deprecated and replaced by the name
8149
+ # field.
7898
8150
  # Corresponds to the JSON property `zone`
7899
8151
  # @return [String]
7900
8152
  attr_accessor :zone
@@ -7918,8 +8170,8 @@ module Google
7918
8170
  class SetMonitoringServiceRequest
7919
8171
  include Google::Apis::Core::Hashable
7920
8172
 
7921
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
7922
- # deprecated and replaced by the name field.
8173
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
8174
+ # and replaced by the name field.
7923
8175
  # Corresponds to the JSON property `clusterId`
7924
8176
  # @return [String]
7925
8177
  attr_accessor :cluster_id
@@ -7941,16 +8193,18 @@ module Google
7941
8193
  # @return [String]
7942
8194
  attr_accessor :name
7943
8195
 
7944
- # Required. Deprecated. The Google Developers Console [project ID or project
7945
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7946
- # projects). This field has been deprecated and replaced by the name field.
8196
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8197
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8198
+ # creating-managing-projects). This field has been deprecated and replaced by
8199
+ # the name field.
7947
8200
  # Corresponds to the JSON property `projectId`
7948
8201
  # @return [String]
7949
8202
  attr_accessor :project_id
7950
8203
 
7951
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
7952
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
7953
- # This field has been deprecated and replaced by the name field.
8204
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8205
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8206
+ # the cluster resides. This field has been deprecated and replaced by the name
8207
+ # field.
7954
8208
  # Corresponds to the JSON property `zone`
7955
8209
  # @return [String]
7956
8210
  attr_accessor :zone
@@ -7973,8 +8227,8 @@ module Google
7973
8227
  class SetNetworkPolicyRequest
7974
8228
  include Google::Apis::Core::Hashable
7975
8229
 
7976
- # Required. Deprecated. The name of the cluster. This field has been deprecated
7977
- # and replaced by the name field.
8230
+ # Deprecated. The name of the cluster. This field has been deprecated and
8231
+ # replaced by the name field.
7978
8232
  # Corresponds to the JSON property `clusterId`
7979
8233
  # @return [String]
7980
8234
  attr_accessor :cluster_id
@@ -7991,16 +8245,18 @@ module Google
7991
8245
  # @return [Google::Apis::ContainerV1beta1::NetworkPolicy]
7992
8246
  attr_accessor :network_policy
7993
8247
 
7994
- # Required. Deprecated. The Google Developers Console [project ID or project
7995
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
7996
- # projects). This field has been deprecated and replaced by the name field.
8248
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8249
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8250
+ # creating-managing-projects). This field has been deprecated and replaced by
8251
+ # the name field.
7997
8252
  # Corresponds to the JSON property `projectId`
7998
8253
  # @return [String]
7999
8254
  attr_accessor :project_id
8000
8255
 
8001
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8002
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8003
- # This field has been deprecated and replaced by the name field.
8256
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8257
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8258
+ # the cluster resides. This field has been deprecated and replaced by the name
8259
+ # field.
8004
8260
  # Corresponds to the JSON property `zone`
8005
8261
  # @return [String]
8006
8262
  attr_accessor :zone
@@ -8029,8 +8285,8 @@ module Google
8029
8285
  # @return [Google::Apis::ContainerV1beta1::NodePoolAutoscaling]
8030
8286
  attr_accessor :autoscaling
8031
8287
 
8032
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
8033
- # deprecated and replaced by the name field.
8288
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
8289
+ # and replaced by the name field.
8034
8290
  # Corresponds to the JSON property `clusterId`
8035
8291
  # @return [String]
8036
8292
  attr_accessor :cluster_id
@@ -8042,22 +8298,24 @@ module Google
8042
8298
  # @return [String]
8043
8299
  attr_accessor :name
8044
8300
 
8045
- # Required. Deprecated. The name of the node pool to upgrade. This field has
8046
- # been deprecated and replaced by the name field.
8301
+ # Deprecated. The name of the node pool to upgrade. This field has been
8302
+ # deprecated and replaced by the name field.
8047
8303
  # Corresponds to the JSON property `nodePoolId`
8048
8304
  # @return [String]
8049
8305
  attr_accessor :node_pool_id
8050
8306
 
8051
- # Required. Deprecated. The Google Developers Console [project ID or project
8052
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
8053
- # projects). This field has been deprecated and replaced by the name field.
8307
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8308
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8309
+ # creating-managing-projects). This field has been deprecated and replaced by
8310
+ # the name field.
8054
8311
  # Corresponds to the JSON property `projectId`
8055
8312
  # @return [String]
8056
8313
  attr_accessor :project_id
8057
8314
 
8058
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8059
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8060
- # This field has been deprecated and replaced by the name field.
8315
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8316
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8317
+ # the cluster resides. This field has been deprecated and replaced by the name
8318
+ # field.
8061
8319
  # Corresponds to the JSON property `zone`
8062
8320
  # @return [String]
8063
8321
  attr_accessor :zone
@@ -8082,8 +8340,8 @@ module Google
8082
8340
  class SetNodePoolManagementRequest
8083
8341
  include Google::Apis::Core::Hashable
8084
8342
 
8085
- # Required. Deprecated. The name of the cluster to update. This field has been
8086
- # deprecated and replaced by the name field.
8343
+ # Deprecated. The name of the cluster to update. This field has been deprecated
8344
+ # and replaced by the name field.
8087
8345
  # Corresponds to the JSON property `clusterId`
8088
8346
  # @return [String]
8089
8347
  attr_accessor :cluster_id
@@ -8101,22 +8359,24 @@ module Google
8101
8359
  # @return [String]
8102
8360
  attr_accessor :name
8103
8361
 
8104
- # Required. Deprecated. The name of the node pool to update. This field has been
8362
+ # Deprecated. The name of the node pool to update. This field has been
8105
8363
  # deprecated and replaced by the name field.
8106
8364
  # Corresponds to the JSON property `nodePoolId`
8107
8365
  # @return [String]
8108
8366
  attr_accessor :node_pool_id
8109
8367
 
8110
- # Required. Deprecated. The Google Developers Console [project ID or project
8111
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
8112
- # projects). This field has been deprecated and replaced by the name field.
8368
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8369
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8370
+ # creating-managing-projects). This field has been deprecated and replaced by
8371
+ # the name field.
8113
8372
  # Corresponds to the JSON property `projectId`
8114
8373
  # @return [String]
8115
8374
  attr_accessor :project_id
8116
8375
 
8117
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8118
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8119
- # This field has been deprecated and replaced by the name field.
8376
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8377
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8378
+ # the cluster resides. This field has been deprecated and replaced by the name
8379
+ # field.
8120
8380
  # Corresponds to the JSON property `zone`
8121
8381
  # @return [String]
8122
8382
  attr_accessor :zone
@@ -8140,8 +8400,8 @@ module Google
8140
8400
  class SetNodePoolSizeRequest
8141
8401
  include Google::Apis::Core::Hashable
8142
8402
 
8143
- # Required. Deprecated. The name of the cluster to update. This field has been
8144
- # deprecated and replaced by the name field.
8403
+ # Deprecated. The name of the cluster to update. This field has been deprecated
8404
+ # and replaced by the name field.
8145
8405
  # Corresponds to the JSON property `clusterId`
8146
8406
  # @return [String]
8147
8407
  attr_accessor :cluster_id
@@ -8157,22 +8417,24 @@ module Google
8157
8417
  # @return [Fixnum]
8158
8418
  attr_accessor :node_count
8159
8419
 
8160
- # Required. Deprecated. The name of the node pool to update. This field has been
8420
+ # Deprecated. The name of the node pool to update. This field has been
8161
8421
  # deprecated and replaced by the name field.
8162
8422
  # Corresponds to the JSON property `nodePoolId`
8163
8423
  # @return [String]
8164
8424
  attr_accessor :node_pool_id
8165
8425
 
8166
- # Required. Deprecated. The Google Developers Console [project ID or project
8167
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
8168
- # projects). This field has been deprecated and replaced by the name field.
8426
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8427
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8428
+ # creating-managing-projects). This field has been deprecated and replaced by
8429
+ # the name field.
8169
8430
  # Corresponds to the JSON property `projectId`
8170
8431
  # @return [String]
8171
8432
  attr_accessor :project_id
8172
8433
 
8173
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8174
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8175
- # This field has been deprecated and replaced by the name field.
8434
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8435
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8436
+ # the cluster resides. This field has been deprecated and replaced by the name
8437
+ # field.
8176
8438
  # Corresponds to the JSON property `zone`
8177
8439
  # @return [String]
8178
8440
  attr_accessor :zone
@@ -8303,8 +8565,8 @@ module Google
8303
8565
  class StartIpRotationRequest
8304
8566
  include Google::Apis::Core::Hashable
8305
8567
 
8306
- # Required. Deprecated. The name of the cluster. This field has been deprecated
8307
- # and replaced by the name field.
8568
+ # Deprecated. The name of the cluster. This field has been deprecated and
8569
+ # replaced by the name field.
8308
8570
  # Corresponds to the JSON property `clusterId`
8309
8571
  # @return [String]
8310
8572
  attr_accessor :cluster_id
@@ -8315,9 +8577,10 @@ module Google
8315
8577
  # @return [String]
8316
8578
  attr_accessor :name
8317
8579
 
8318
- # Required. Deprecated. The Google Developers Console [project ID or project
8319
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
8320
- # projects). This field has been deprecated and replaced by the name field.
8580
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8581
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8582
+ # creating-managing-projects). This field has been deprecated and replaced by
8583
+ # the name field.
8321
8584
  # Corresponds to the JSON property `projectId`
8322
8585
  # @return [String]
8323
8586
  attr_accessor :project_id
@@ -8328,9 +8591,10 @@ module Google
8328
8591
  attr_accessor :rotate_credentials
8329
8592
  alias_method :rotate_credentials?, :rotate_credentials
8330
8593
 
8331
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8332
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8333
- # This field has been deprecated and replaced by the name field.
8594
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8595
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8596
+ # the cluster resides. This field has been deprecated and replaced by the name
8597
+ # field.
8334
8598
  # Corresponds to the JSON property `zone`
8335
8599
  # @return [String]
8336
8600
  attr_accessor :zone
@@ -8553,8 +8817,8 @@ module Google
8553
8817
  class UpdateClusterRequest
8554
8818
  include Google::Apis::Core::Hashable
8555
8819
 
8556
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
8557
- # deprecated and replaced by the name field.
8820
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
8821
+ # and replaced by the name field.
8558
8822
  # Corresponds to the JSON property `clusterId`
8559
8823
  # @return [String]
8560
8824
  attr_accessor :cluster_id
@@ -8565,9 +8829,10 @@ module Google
8565
8829
  # @return [String]
8566
8830
  attr_accessor :name
8567
8831
 
8568
- # Required. Deprecated. The Google Developers Console [project ID or project
8569
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
8570
- # projects). This field has been deprecated and replaced by the name field.
8832
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8833
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8834
+ # creating-managing-projects). This field has been deprecated and replaced by
8835
+ # the name field.
8571
8836
  # Corresponds to the JSON property `projectId`
8572
8837
  # @return [String]
8573
8838
  attr_accessor :project_id
@@ -8578,9 +8843,10 @@ module Google
8578
8843
  # @return [Google::Apis::ContainerV1beta1::ClusterUpdate]
8579
8844
  attr_accessor :update
8580
8845
 
8581
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8582
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8583
- # This field has been deprecated and replaced by the name field.
8846
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8847
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8848
+ # the cluster resides. This field has been deprecated and replaced by the name
8849
+ # field.
8584
8850
  # Corresponds to the JSON property `zone`
8585
8851
  # @return [String]
8586
8852
  attr_accessor :zone
@@ -8623,8 +8889,8 @@ module Google
8623
8889
  class UpdateMasterRequest
8624
8890
  include Google::Apis::Core::Hashable
8625
8891
 
8626
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
8627
- # deprecated and replaced by the name field.
8892
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
8893
+ # and replaced by the name field.
8628
8894
  # Corresponds to the JSON property `clusterId`
8629
8895
  # @return [String]
8630
8896
  attr_accessor :cluster_id
@@ -8646,16 +8912,18 @@ module Google
8646
8912
  # @return [String]
8647
8913
  attr_accessor :name
8648
8914
 
8649
- # Required. Deprecated. The Google Developers Console [project ID or project
8650
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
8651
- # projects). This field has been deprecated and replaced by the name field.
8915
+ # Deprecated. The Google Developers Console [project ID or project number](https:
8916
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
8917
+ # creating-managing-projects). This field has been deprecated and replaced by
8918
+ # the name field.
8652
8919
  # Corresponds to the JSON property `projectId`
8653
8920
  # @return [String]
8654
8921
  attr_accessor :project_id
8655
8922
 
8656
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8657
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8658
- # This field has been deprecated and replaced by the name field.
8923
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
8924
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
8925
+ # the cluster resides. This field has been deprecated and replaced by the name
8926
+ # field.
8659
8927
  # Corresponds to the JSON property `zone`
8660
8928
  # @return [String]
8661
8929
  attr_accessor :zone
@@ -8678,14 +8946,15 @@ module Google
8678
8946
  class UpdateNodePoolRequest
8679
8947
  include Google::Apis::Core::Hashable
8680
8948
 
8681
- # A list of hardware accelerators to be attached to each node. See https://cloud.
8682
- # google.com/compute/docs/gpus for more information about support for GPUs.
8949
+ # A list of hardware accelerators to be attached to each node. See https://`$
8950
+ # universe.dns_names.final_documentation_domain`/compute/docs/gpus for more
8951
+ # information about support for GPUs.
8683
8952
  # Corresponds to the JSON property `accelerators`
8684
8953
  # @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
8685
8954
  attr_accessor :accelerators
8686
8955
 
8687
- # Required. Deprecated. The name of the cluster to upgrade. This field has been
8688
- # deprecated and replaced by the name field.
8956
+ # Deprecated. The name of the cluster to upgrade. This field has been deprecated
8957
+ # and replaced by the name field.
8689
8958
  # Corresponds to the JSON property `clusterId`
8690
8959
  # @return [String]
8691
8960
  attr_accessor :cluster_id
@@ -8743,9 +9012,9 @@ module Google
8743
9012
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
8744
9013
  attr_accessor :gvnic
8745
9014
 
8746
- # Required. The desired image type for the node pool. Please see https://cloud.
8747
- # google.com/kubernetes-engine/docs/concepts/node-images for available image
8748
- # types.
9015
+ # Required. The desired image type for the node pool. Please see https://`$
9016
+ # universe.dns_names.final_documentation_domain`/kubernetes-engine/docs/concepts/
9017
+ # node-images for available image types.
8749
9018
  # Corresponds to the JSON property `imageType`
8750
9019
  # @return [String]
8751
9020
  attr_accessor :image_type
@@ -8766,11 +9035,11 @@ module Google
8766
9035
  # @return [Google::Apis::ContainerV1beta1::LinuxNodeConfig]
8767
9036
  attr_accessor :linux_node_config
8768
9037
 
8769
- # The desired list of Google Compute Engine [zones](https://cloud.google.com/
8770
- # compute/docs/zones#available) in which the node pool's nodes should be located.
8771
- # Changing the locations for a node pool will result in nodes being either
8772
- # created or removed from the node pool, depending on whether locations are
8773
- # being added or removed.
9038
+ # The desired list of Google Compute Engine [zones](https://`$universe.dns_names.
9039
+ # final_documentation_domain`/compute/docs/zones#available) in which the node
9040
+ # pool's nodes should be located. Changing the locations for a node pool will
9041
+ # result in nodes being either created or removed from the node pool, depending
9042
+ # on whether locations are being added or removed.
8774
9043
  # Corresponds to the JSON property `locations`
8775
9044
  # @return [Array<String>]
8776
9045
  attr_accessor :locations
@@ -8804,8 +9073,8 @@ module Google
8804
9073
  # @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
8805
9074
  attr_accessor :node_network_config
8806
9075
 
8807
- # Required. Deprecated. The name of the node pool to upgrade. This field has
8808
- # been deprecated and replaced by the name field.
9076
+ # Deprecated. The name of the node pool to upgrade. This field has been
9077
+ # deprecated and replaced by the name field.
8809
9078
  # Corresponds to the JSON property `nodePoolId`
8810
9079
  # @return [String]
8811
9080
  attr_accessor :node_pool_id
@@ -8821,9 +9090,10 @@ module Google
8821
9090
  # @return [String]
8822
9091
  attr_accessor :node_version
8823
9092
 
8824
- # Required. Deprecated. The Google Developers Console [project ID or project
8825
- # number](https://cloud.google.com/resource-manager/docs/creating-managing-
8826
- # projects). This field has been deprecated and replaced by the name field.
9093
+ # Deprecated. The Google Developers Console [project ID or project number](https:
9094
+ # //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
9095
+ # creating-managing-projects). This field has been deprecated and replaced by
9096
+ # the name field.
8827
9097
  # Corresponds to the JSON property `projectId`
8828
9098
  # @return [String]
8829
9099
  attr_accessor :project_id
@@ -8833,17 +9103,18 @@ module Google
8833
9103
  # @return [Google::Apis::ContainerV1beta1::QueuedProvisioning]
8834
9104
  attr_accessor :queued_provisioning
8835
9105
 
8836
- # Collection of [GCP labels](https://cloud.google.com/resource-manager/docs/
8837
- # creating-managing-labels).
9106
+ # Collection of [GCP labels](https://`$universe.dns_names.
9107
+ # final_documentation_domain`/resource-manager/docs/creating-managing-labels).
8838
9108
  # Corresponds to the JSON property `resourceLabels`
8839
9109
  # @return [Google::Apis::ContainerV1beta1::ResourceLabels]
8840
9110
  attr_accessor :resource_labels
8841
9111
 
8842
9112
  # A map of resource manager tag keys and values to be attached to the nodes for
8843
9113
  # managing Compute Engine firewalls using Network Firewall Policies. Tags must
8844
- # be according to specifications in https://cloud.google.com/vpc/docs/tags-
8845
- # firewalls-overview#specifications. A maximum of 5 tag key-value pairs can be
8846
- # specified. Existing tags will be replaced with new values.
9114
+ # be according to specifications in https://`$universe.dns_names.
9115
+ # final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
9116
+ # maximum of 5 tag key-value pairs can be specified. Existing tags will be
9117
+ # replaced with new values.
8847
9118
  # Corresponds to the JSON property `resourceManagerTags`
8848
9119
  # @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
8849
9120
  attr_accessor :resource_manager_tags
@@ -8915,9 +9186,10 @@ module Google
8915
9186
  # @return [Google::Apis::ContainerV1beta1::WorkloadMetadataConfig]
8916
9187
  attr_accessor :workload_metadata_config
8917
9188
 
8918
- # Required. Deprecated. The name of the Google Compute Engine [zone](https://
8919
- # cloud.google.com/compute/docs/zones#available) in which the cluster resides.
8920
- # This field has been deprecated and replaced by the name field.
9189
+ # Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
9190
+ # dns_names.final_documentation_domain`/compute/docs/zones#available) in which
9191
+ # the cluster resides. This field has been deprecated and replaced by the name
9192
+ # field.
8921
9193
  # Corresponds to the JSON property `zone`
8922
9194
  # @return [String]
8923
9195
  attr_accessor :zone