google-apis-container_v1beta1 0.85.0 → 0.87.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/container_v1beta1/classes.rb +586 -348
- data/lib/google/apis/container_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/container_v1beta1/representations.rb +71 -0
- data/lib/google/apis/container_v1beta1/service.rb +398 -324
- metadata +2 -2
@@ -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
|
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
|
@@ -363,12 +392,18 @@ module Google
|
|
363
392
|
class AnonymousAuthenticationConfig
|
364
393
|
include Google::Apis::Core::Hashable
|
365
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
|
+
|
366
400
|
def initialize(**args)
|
367
401
|
update!(**args)
|
368
402
|
end
|
369
403
|
|
370
404
|
# Update properties of this object
|
371
405
|
def update!(**args)
|
406
|
+
@mode = args[:mode] if args.key?(:mode)
|
372
407
|
end
|
373
408
|
end
|
374
409
|
|
@@ -400,6 +435,19 @@ module Google
|
|
400
435
|
end
|
401
436
|
end
|
402
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
|
+
|
403
451
|
# AutoMonitoringConfig defines the configuration for GKE Workload Auto-
|
404
452
|
# Monitoring.
|
405
453
|
class AutoMonitoringConfig
|
@@ -579,7 +627,8 @@ module Google
|
|
579
627
|
# each node in the node pool. This should be of the form projects/[
|
580
628
|
# KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
|
581
629
|
# . For more information about protecting resources with Cloud KMS Keys please
|
582
|
-
# see: https
|
630
|
+
# see: https://`$universe.dns_names.final_documentation_domain`/compute/docs/
|
631
|
+
# disks/customer-managed-encryption
|
583
632
|
# Corresponds to the JSON property `bootDiskKmsKey`
|
584
633
|
# @return [String]
|
585
634
|
attr_accessor :boot_disk_kms_key
|
@@ -596,8 +645,9 @@ module Google
|
|
596
645
|
# @return [String]
|
597
646
|
attr_accessor :disk_type
|
598
647
|
|
599
|
-
# The image type to use for NAP created node. Please see https
|
600
|
-
#
|
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.
|
601
651
|
# Corresponds to the JSON property `imageType`
|
602
652
|
# @return [String]
|
603
653
|
attr_accessor :image_type
|
@@ -618,11 +668,11 @@ module Google
|
|
618
668
|
# instance may be scheduled on the specified or newer CPU platform. Applicable
|
619
669
|
# values are the friendly names of CPU platforms, such as minCpuPlatform: Intel
|
620
670
|
# Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
|
621
|
-
# to specify min CPU platform](https
|
622
|
-
# specify-min-cpu-platform).
|
623
|
-
# be specified using `cloud.
|
624
|
-
# selector on the pod. To unset the
|
625
|
-
# 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.
|
626
676
|
# Corresponds to the JSON property `minCpuPlatform`
|
627
677
|
# @return [String]
|
628
678
|
attr_accessor :min_cpu_platform
|
@@ -632,10 +682,10 @@ module Google
|
|
632
682
|
# required, and by default are not included: * `https://www.googleapis.com/auth/
|
633
683
|
# compute` is required for mounting persistent storage on your nodes. * `https://
|
634
684
|
# www.googleapis.com/auth/devstorage.read_only` is required for communicating
|
635
|
-
# with **gcr.io** (the [Google Container Registry](https
|
636
|
-
# container-registry/)). If unspecified, no scopes
|
637
|
-
# Logging or Cloud Monitoring are enabled, in which case
|
638
|
-
# 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.
|
639
689
|
# Corresponds to the JSON property `oauthScopes`
|
640
690
|
# @return [Array<String>]
|
641
691
|
attr_accessor :oauth_scopes
|
@@ -919,22 +969,24 @@ module Google
|
|
919
969
|
# @return [String]
|
920
970
|
attr_accessor :name
|
921
971
|
|
922
|
-
#
|
923
|
-
#
|
972
|
+
# Deprecated. The server-assigned `name` of the operation. This field has been
|
973
|
+
# deprecated and replaced by the name field.
|
924
974
|
# Corresponds to the JSON property `operationId`
|
925
975
|
# @return [String]
|
926
976
|
attr_accessor :operation_id
|
927
977
|
|
928
|
-
#
|
929
|
-
#
|
930
|
-
# projects). This field has been deprecated and replaced by
|
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.
|
931
982
|
# Corresponds to the JSON property `projectId`
|
932
983
|
# @return [String]
|
933
984
|
attr_accessor :project_id
|
934
985
|
|
935
|
-
#
|
936
|
-
#
|
937
|
-
# This field has been deprecated and replaced by the name
|
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.
|
938
990
|
# Corresponds to the JSON property `zone`
|
939
991
|
# @return [String]
|
940
992
|
attr_accessor :zone
|
@@ -964,7 +1016,8 @@ module Google
|
|
964
1016
|
attr_accessor :fqdns
|
965
1017
|
|
966
1018
|
# GCPSecretManagerCertificateConfig configures a secret from [Google Secret
|
967
|
-
# Manager](https
|
1019
|
+
# Manager](https://`$universe.dns_names.final_documentation_domain`/secret-
|
1020
|
+
# manager).
|
968
1021
|
# Corresponds to the JSON property `gcpSecretManagerCertificateConfig`
|
969
1022
|
# @return [Google::Apis::ContainerV1beta1::GcpSecretManagerCertificateConfig]
|
970
1023
|
attr_accessor :gcp_secret_manager_certificate_config
|
@@ -1178,11 +1231,12 @@ module Google
|
|
1178
1231
|
# @return [Fixnum]
|
1179
1232
|
attr_accessor :current_node_count
|
1180
1233
|
|
1181
|
-
# Output only. Deprecated, use [NodePool.version](https
|
1182
|
-
# kubernetes-engine/docs/reference/rest/v1beta1/
|
1183
|
-
# nodePools) instead. The current version of the
|
1184
|
-
# they are currently at multiple versions because
|
1185
|
-
# being upgraded, this reflects the minimum version of
|
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.
|
1186
1240
|
# Corresponds to the JSON property `currentNodeVersion`
|
1187
1241
|
# @return [String]
|
1188
1242
|
attr_accessor :current_node_version
|
@@ -1256,6 +1310,11 @@ module Google
|
|
1256
1310
|
# @return [Google::Apis::ContainerV1beta1::Fleet]
|
1257
1311
|
attr_accessor :fleet
|
1258
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
|
+
|
1259
1318
|
# Output only. Unique id for the cluster.
|
1260
1319
|
# Corresponds to the JSON property `id`
|
1261
1320
|
# @return [String]
|
@@ -1281,13 +1340,14 @@ module Google
|
|
1281
1340
|
attr_accessor :initial_cluster_version
|
1282
1341
|
|
1283
1342
|
# The number of nodes to create in this cluster. You must ensure that your
|
1284
|
-
# Compute Engine [resource quota](https
|
1285
|
-
# sufficient for this number of
|
1286
|
-
#
|
1287
|
-
#
|
1288
|
-
#
|
1289
|
-
#
|
1290
|
-
# node_pool.
|
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.
|
1291
1351
|
# Corresponds to the JSON property `initialNodeCount`
|
1292
1352
|
# @return [Fixnum]
|
1293
1353
|
attr_accessor :initial_node_count
|
@@ -1312,23 +1372,26 @@ module Google
|
|
1312
1372
|
# @return [Google::Apis::ContainerV1beta1::LegacyAbac]
|
1313
1373
|
attr_accessor :legacy_abac
|
1314
1374
|
|
1315
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
1316
|
-
#
|
1317
|
-
#
|
1318
|
-
# the cluster
|
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.
|
1319
1380
|
# Corresponds to the JSON property `location`
|
1320
1381
|
# @return [String]
|
1321
1382
|
attr_accessor :location
|
1322
1383
|
|
1323
|
-
# The list of Google Compute Engine [zones](https
|
1324
|
-
# docs/zones#available) in which the cluster'
|
1325
|
-
# field provides a default value if [NodePool.
|
1326
|
-
#
|
1327
|
-
# nodePools#NodePool.
|
1328
|
-
#
|
1329
|
-
# Locations](https
|
1330
|
-
#
|
1331
|
-
#
|
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.
|
1332
1395
|
# Corresponds to the JSON property `locations`
|
1333
1396
|
# @return [Array<String>]
|
1334
1397
|
attr_accessor :locations
|
@@ -1410,10 +1473,10 @@ module Google
|
|
1410
1473
|
# @return [String]
|
1411
1474
|
attr_accessor :name
|
1412
1475
|
|
1413
|
-
# The name of the Google Compute Engine [network](https
|
1414
|
-
# compute/docs/networks-and-firewalls#networks) to
|
1415
|
-
# connected. If left unspecified, the `default` network
|
1416
|
-
# 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.
|
1417
1480
|
# Corresponds to the JSON property `network`
|
1418
1481
|
# @return [String]
|
1419
1482
|
attr_accessor :network
|
@@ -1580,9 +1643,10 @@ module Google
|
|
1580
1643
|
# @return [String]
|
1581
1644
|
attr_accessor :status_message
|
1582
1645
|
|
1583
|
-
# The name of the Google Compute Engine [subnetwork](https
|
1584
|
-
# compute/docs/subnetworks) to which the
|
1585
|
-
# shows the subnetwork ID instead of the
|
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.
|
1586
1650
|
# Corresponds to the JSON property `subnetwork`
|
1587
1651
|
# @return [String]
|
1588
1652
|
attr_accessor :subnetwork
|
@@ -1629,9 +1693,9 @@ module Google
|
|
1629
1693
|
# @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
|
1630
1694
|
attr_accessor :workload_identity_config
|
1631
1695
|
|
1632
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
1633
|
-
#
|
1634
|
-
# 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.
|
1635
1699
|
# Corresponds to the JSON property `zone`
|
1636
1700
|
# @return [String]
|
1637
1701
|
attr_accessor :zone
|
@@ -1671,6 +1735,7 @@ module Google
|
|
1671
1735
|
@etag = args[:etag] if args.key?(:etag)
|
1672
1736
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1673
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)
|
1674
1739
|
@id = args[:id] if args.key?(:id)
|
1675
1740
|
@identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
|
1676
1741
|
@initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
|
@@ -1738,8 +1803,9 @@ module Google
|
|
1738
1803
|
class ClusterAutoscaling
|
1739
1804
|
include Google::Apis::Core::Hashable
|
1740
1805
|
|
1741
|
-
# The list of Google Compute Engine [zones](https
|
1742
|
-
# docs/zones#available) in which the
|
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.
|
1743
1809
|
# Corresponds to the JSON property `autoprovisioningLocations`
|
1744
1810
|
# @return [Array<String>]
|
1745
1811
|
attr_accessor :autoprovisioning_locations
|
@@ -1830,6 +1896,12 @@ module Google
|
|
1830
1896
|
# @return [Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig]
|
1831
1897
|
attr_accessor :additional_pod_ranges_config
|
1832
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
|
+
|
1833
1905
|
# Configuration for the addons that can be automatically spun up in the cluster,
|
1834
1906
|
# enabling additional functionality.
|
1835
1907
|
# Corresponds to the JSON property `desiredAddonsConfig`
|
@@ -1847,6 +1919,11 @@ module Google
|
|
1847
1919
|
# @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
|
1848
1920
|
attr_accessor :desired_authenticator_groups_config
|
1849
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
|
+
|
1850
1927
|
# WorkloadPolicyConfig is the configuration related to GCW workload policy
|
1851
1928
|
# Corresponds to the JSON property `desiredAutopilotWorkloadPolicyConfig`
|
1852
1929
|
# @return [Google::Apis::ContainerV1beta1::WorkloadPolicyConfig]
|
@@ -2013,11 +2090,11 @@ module Google
|
|
2013
2090
|
# @return [Google::Apis::ContainerV1beta1::IlbSubsettingConfig]
|
2014
2091
|
attr_accessor :desired_l4ilb_subsetting_config
|
2015
2092
|
|
2016
|
-
# The desired list of Google Compute Engine [zones](https
|
2017
|
-
# compute/docs/zones#available) in which the cluster'
|
2018
|
-
# This list must always include the cluster's primary
|
2019
|
-
# cluster locations will update the locations of all
|
2020
|
-
# 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.
|
2021
2098
|
# Corresponds to the JSON property `desiredLocations`
|
2022
2099
|
# @return [Array<String>]
|
2023
2100
|
attr_accessor :desired_locations
|
@@ -2112,9 +2189,10 @@ module Google
|
|
2112
2189
|
|
2113
2190
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
2114
2191
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
2115
|
-
# be according to specifications in https
|
2116
|
-
# firewalls-overview#specifications. A
|
2117
|
-
# specified. Existing tags will be
|
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.
|
2118
2196
|
# Corresponds to the JSON property `desiredNodePoolAutoConfigResourceManagerTags`
|
2119
2197
|
# @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
|
2120
2198
|
attr_accessor :desired_node_pool_auto_config_resource_manager_tags
|
@@ -2241,6 +2319,12 @@ module Google
|
|
2241
2319
|
# @return [Google::Apis::ContainerV1beta1::TpuConfig]
|
2242
2320
|
attr_accessor :desired_tpu_config
|
2243
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
|
+
|
2244
2328
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
2245
2329
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
2246
2330
|
# controlled by it.
|
@@ -2275,6 +2359,11 @@ module Google
|
|
2275
2359
|
# @return [String]
|
2276
2360
|
attr_accessor :etag
|
2277
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
|
+
|
2278
2367
|
# Configuration options for private clusters.
|
2279
2368
|
# Corresponds to the JSON property `privateClusterConfig`
|
2280
2369
|
# @return [Google::Apis::ContainerV1beta1::PrivateClusterConfig]
|
@@ -2299,9 +2388,11 @@ module Google
|
|
2299
2388
|
# Update properties of this object
|
2300
2389
|
def update!(**args)
|
2301
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)
|
2302
2392
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
2303
2393
|
@desired_anonymous_authentication_config = args[:desired_anonymous_authentication_config] if args.key?(:desired_anonymous_authentication_config)
|
2304
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)
|
2305
2396
|
@desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
|
2306
2397
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
2307
2398
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
@@ -2366,12 +2457,14 @@ module Google
|
|
2366
2457
|
@desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
|
2367
2458
|
@desired_stack_type = args[:desired_stack_type] if args.key?(:desired_stack_type)
|
2368
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)
|
2369
2461
|
@desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
|
2370
2462
|
@desired_workload_alts_config = args[:desired_workload_alts_config] if args.key?(:desired_workload_alts_config)
|
2371
2463
|
@desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
|
2372
2464
|
@desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
|
2373
2465
|
@enable_k8s_beta_apis = args[:enable_k8s_beta_apis] if args.key?(:enable_k8s_beta_apis)
|
2374
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)
|
2375
2468
|
@private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
|
2376
2469
|
@removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
|
2377
2470
|
@user_managed_keys_config = args[:user_managed_keys_config] if args.key?(:user_managed_keys_config)
|
@@ -2437,8 +2530,8 @@ module Google
|
|
2437
2530
|
class CompleteIpRotationRequest
|
2438
2531
|
include Google::Apis::Core::Hashable
|
2439
2532
|
|
2440
|
-
#
|
2441
|
-
#
|
2533
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2534
|
+
# replaced by the name field.
|
2442
2535
|
# Corresponds to the JSON property `clusterId`
|
2443
2536
|
# @return [String]
|
2444
2537
|
attr_accessor :cluster_id
|
@@ -2449,16 +2542,18 @@ module Google
|
|
2449
2542
|
# @return [String]
|
2450
2543
|
attr_accessor :name
|
2451
2544
|
|
2452
|
-
#
|
2453
|
-
#
|
2454
|
-
# projects). This field has been deprecated and replaced by
|
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.
|
2455
2549
|
# Corresponds to the JSON property `projectId`
|
2456
2550
|
# @return [String]
|
2457
2551
|
attr_accessor :project_id
|
2458
2552
|
|
2459
|
-
#
|
2460
|
-
#
|
2461
|
-
# This field has been deprecated and replaced by the name
|
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.
|
2462
2557
|
# Corresponds to the JSON property `zone`
|
2463
2558
|
# @return [String]
|
2464
2559
|
attr_accessor :zone
|
@@ -2683,16 +2778,18 @@ module Google
|
|
2683
2778
|
# @return [String]
|
2684
2779
|
attr_accessor :parent
|
2685
2780
|
|
2686
|
-
#
|
2687
|
-
#
|
2688
|
-
# projects). This field has been deprecated and replaced by
|
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.
|
2689
2785
|
# Corresponds to the JSON property `projectId`
|
2690
2786
|
# @return [String]
|
2691
2787
|
attr_accessor :project_id
|
2692
2788
|
|
2693
|
-
#
|
2694
|
-
#
|
2695
|
-
# This field has been deprecated and replaced by the parent
|
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.
|
2696
2793
|
# Corresponds to the JSON property `zone`
|
2697
2794
|
# @return [String]
|
2698
2795
|
attr_accessor :zone
|
@@ -2714,8 +2811,8 @@ module Google
|
|
2714
2811
|
class CreateNodePoolRequest
|
2715
2812
|
include Google::Apis::Core::Hashable
|
2716
2813
|
|
2717
|
-
#
|
2718
|
-
#
|
2814
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2815
|
+
# replaced by the parent field.
|
2719
2816
|
# Corresponds to the JSON property `clusterId`
|
2720
2817
|
# @return [String]
|
2721
2818
|
attr_accessor :cluster_id
|
@@ -2736,16 +2833,18 @@ module Google
|
|
2736
2833
|
# @return [String]
|
2737
2834
|
attr_accessor :parent
|
2738
2835
|
|
2739
|
-
#
|
2740
|
-
#
|
2741
|
-
# projects). This field has been deprecated and replaced by
|
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.
|
2742
2840
|
# Corresponds to the JSON property `projectId`
|
2743
2841
|
# @return [String]
|
2744
2842
|
attr_accessor :project_id
|
2745
2843
|
|
2746
|
-
#
|
2747
|
-
#
|
2748
|
-
# This field has been deprecated and replaced by the parent
|
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.
|
2749
2848
|
# Corresponds to the JSON property `zone`
|
2750
2849
|
# @return [String]
|
2751
2850
|
attr_accessor :zone
|
@@ -2965,6 +3064,27 @@ module Google
|
|
2965
3064
|
end
|
2966
3065
|
end
|
2967
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
|
+
|
2968
3088
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
2969
3089
|
class DesiredEnterpriseConfig
|
2970
3090
|
include Google::Apis::Core::Hashable
|
@@ -3052,15 +3172,16 @@ module Google
|
|
3052
3172
|
|
3053
3173
|
# Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces.
|
3054
3174
|
# The limit for this value is dependent upon the maximum number of disk
|
3055
|
-
# available on a machine per zone. See: https
|
3056
|
-
# disks/local-ssd for more information.
|
3057
|
-
# meanings depending on machine type being
|
3058
|
-
# support flexible numbers of local ssds,
|
3059
|
-
# local SSDs as ephemeral storage. 2. For
|
3060
|
-
# number of local ssds, zero (or unset)
|
3061
|
-
# ssds that goes with that machine type.
|
3062
|
-
# machine, 2 local ssds would be
|
3063
|
-
# support local ssds), 0 will be
|
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`/
|
3064
3185
|
# compute/docs/disks/local-ssd#choose_number_local_ssds for more info.
|
3065
3186
|
# Corresponds to the JSON property `localSsdCount`
|
3066
3187
|
# @return [Fixnum]
|
@@ -3091,13 +3212,15 @@ module Google
|
|
3091
3212
|
# used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
|
3092
3213
|
# zero (or unset) means to disable using local SSDs as ephemeral storage. The
|
3093
3214
|
# limit for this value is dependent upon the maximum number of disk available on
|
3094
|
-
# a machine per zone. See: https
|
3095
|
-
# for more information.
|
3096
|
-
#
|
3097
|
-
#
|
3098
|
-
#
|
3099
|
-
# local ssds), 0
|
3100
|
-
#
|
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.
|
3101
3224
|
# Corresponds to the JSON property `localSsdCount`
|
3102
3225
|
# @return [Fixnum]
|
3103
3226
|
attr_accessor :local_ssd_count
|
@@ -3192,7 +3315,8 @@ module Google
|
|
3192
3315
|
end
|
3193
3316
|
|
3194
3317
|
# GCPSecretManagerCertificateConfig configures a secret from [Google Secret
|
3195
|
-
# Manager](https
|
3318
|
+
# Manager](https://`$universe.dns_names.final_documentation_domain`/secret-
|
3319
|
+
# manager).
|
3196
3320
|
class GcpSecretManagerCertificateConfig
|
3197
3321
|
include Google::Apis::Core::Hashable
|
3198
3322
|
|
@@ -3444,6 +3568,25 @@ module Google
|
|
3444
3568
|
end
|
3445
3569
|
end
|
3446
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
|
+
|
3447
3590
|
# Configuration for the Backup for GKE Agent.
|
3448
3591
|
class GkeBackupAgentConfig
|
3449
3592
|
include Google::Apis::Core::Hashable
|
@@ -3636,6 +3779,14 @@ module Google
|
|
3636
3779
|
class IpAllocationPolicy
|
3637
3780
|
include Google::Apis::Core::Hashable
|
3638
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
|
+
|
3639
3790
|
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
3640
3791
|
# ranges supporting the ClusterUpdate message.
|
3641
3792
|
# Corresponds to the JSON property `additionalPodRangesConfig`
|
@@ -3656,6 +3807,11 @@ module Google
|
|
3656
3807
|
attr_accessor :allow_route_overlap
|
3657
3808
|
alias_method :allow_route_overlap?, :allow_route_overlap
|
3658
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
|
+
|
3659
3815
|
# This field is deprecated, use cluster_ipv4_cidr_block.
|
3660
3816
|
# Corresponds to the JSON property `clusterIpv4Cidr`
|
3661
3817
|
# @return [String]
|
@@ -3804,8 +3960,10 @@ module Google
|
|
3804
3960
|
|
3805
3961
|
# Update properties of this object
|
3806
3962
|
def update!(**args)
|
3963
|
+
@additional_ip_ranges_configs = args[:additional_ip_ranges_configs] if args.key?(:additional_ip_ranges_configs)
|
3807
3964
|
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
3808
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)
|
3809
3967
|
@cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
|
3810
3968
|
@cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
|
3811
3969
|
@cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
|
@@ -4289,17 +4447,18 @@ module Google
|
|
4289
4447
|
include Google::Apis::Core::Hashable
|
4290
4448
|
|
4291
4449
|
# Number of local NVMe SSDs to use. The limit for this value is dependent upon
|
4292
|
-
# the maximum number of disk available on a machine per zone. See: https
|
4293
|
-
#
|
4294
|
-
#
|
4295
|
-
#
|
4296
|
-
# means to disable using local SSDs as
|
4297
|
-
# which dictate a specific number of
|
4298
|
-
# the default number of local ssds that
|
4299
|
-
# for a c3-standard-8-lssd machine, 2
|
4300
|
-
# standard-8 (which doesn't support
|
4301
|
-
# https
|
4302
|
-
#
|
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.
|
4303
4462
|
# Corresponds to the JSON property `localSsdCount`
|
4304
4463
|
# @return [Fixnum]
|
4305
4464
|
attr_accessor :local_ssd_count
|
@@ -4559,8 +4718,9 @@ module Google
|
|
4559
4718
|
# strong password. If a password is provided for cluster creation, username must
|
4560
4719
|
# be non-empty. Warning: basic authentication is deprecated, and will be removed
|
4561
4720
|
# in GKE control plane versions 1.19 and newer. For a list of recommended
|
4562
|
-
# authentication methods, see: https
|
4563
|
-
# how-to/api-server-
|
4721
|
+
# authentication methods, see: https://`$universe.dns_names.
|
4722
|
+
# final_documentation_domain`/kubernetes-engine/docs/how-to/api-server-
|
4723
|
+
# authentication
|
4564
4724
|
# Corresponds to the JSON property `password`
|
4565
4725
|
# @return [String]
|
4566
4726
|
attr_accessor :password
|
@@ -4570,8 +4730,8 @@ module Google
|
|
4570
4730
|
# username unspecified (or setting it to the empty string). Warning: basic
|
4571
4731
|
# authentication is deprecated, and will be removed in GKE control plane
|
4572
4732
|
# versions 1.19 and newer. For a list of recommended authentication methods, see:
|
4573
|
-
# https
|
4574
|
-
# authentication
|
4733
|
+
# https://`$universe.dns_names.final_documentation_domain`/kubernetes-engine/
|
4734
|
+
# docs/how-to/api-server-authentication
|
4575
4735
|
# Corresponds to the JSON property `username`
|
4576
4736
|
# @return [String]
|
4577
4737
|
attr_accessor :username
|
@@ -4868,9 +5028,10 @@ module Google
|
|
4868
5028
|
# @return [String]
|
4869
5029
|
attr_accessor :in_transit_encryption_config
|
4870
5030
|
|
4871
|
-
# Output only. The relative name of the Google Compute Engine [network](https
|
4872
|
-
#
|
4873
|
-
# cluster is connected. Example: projects/my-
|
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
|
4874
5035
|
# Corresponds to the JSON property `network`
|
4875
5036
|
# @return [String]
|
4876
5037
|
attr_accessor :network
|
@@ -4892,8 +5053,9 @@ module Google
|
|
4892
5053
|
attr_accessor :service_external_ips_config
|
4893
5054
|
|
4894
5055
|
# Output only. The relative name of the Google Compute Engine [subnetwork](https:
|
4895
|
-
#
|
4896
|
-
# Example: projects/my-project/regions/us-central1/
|
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
|
4897
5059
|
# Corresponds to the JSON property `subnetwork`
|
4898
5060
|
# @return [String]
|
4899
5061
|
attr_accessor :subnetwork
|
@@ -5021,8 +5183,9 @@ module Google
|
|
5021
5183
|
end
|
5022
5184
|
|
5023
5185
|
# Specifies the NodeAffinity key, values, and affinity operator according to [
|
5024
|
-
# shared sole tenant node group affinities](https
|
5025
|
-
# docs/nodes/sole-tenant-nodes#
|
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).
|
5026
5189
|
class NodeAffinity
|
5027
5190
|
include Google::Apis::Core::Hashable
|
5028
5191
|
|
@@ -5059,8 +5222,9 @@ module Google
|
|
5059
5222
|
class NodeConfig
|
5060
5223
|
include Google::Apis::Core::Hashable
|
5061
5224
|
|
5062
|
-
# A list of hardware accelerators to be attached to each node. See https
|
5063
|
-
#
|
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.
|
5064
5228
|
# Corresponds to the JSON property `accelerators`
|
5065
5229
|
# @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
|
5066
5230
|
attr_accessor :accelerators
|
@@ -5074,7 +5238,8 @@ module Google
|
|
5074
5238
|
# each node in the node pool. This should be of the form projects/[
|
5075
5239
|
# KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
|
5076
5240
|
# . For more information about protecting resources with Cloud KMS Keys please
|
5077
|
-
# see: https
|
5241
|
+
# see: https://`$universe.dns_names.final_documentation_domain`/compute/docs/
|
5242
|
+
# disks/customer-managed-encryption
|
5078
5243
|
# Corresponds to the JSON property `bootDiskKmsKey`
|
5079
5244
|
# @return [String]
|
5080
5245
|
attr_accessor :boot_disk_kms_key
|
@@ -5157,8 +5322,9 @@ module Google
|
|
5157
5322
|
attr_accessor :host_maintenance_policy
|
5158
5323
|
|
5159
5324
|
# The image type to use for this node. Note that for a given image type, the
|
5160
|
-
# latest version of it will be used. Please see https
|
5161
|
-
# kubernetes-engine/docs/concepts/node-images for
|
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.
|
5162
5328
|
# Corresponds to the JSON property `imageType`
|
5163
5329
|
# @return [String]
|
5164
5330
|
attr_accessor :image_type
|
@@ -5192,8 +5358,8 @@ module Google
|
|
5192
5358
|
|
5193
5359
|
# The number of local SSD disks to be attached to the node. The limit for this
|
5194
5360
|
# value is dependent upon the maximum number of disks available on a machine per
|
5195
|
-
# zone. See: https
|
5196
|
-
# information.
|
5361
|
+
# zone. See: https://`$universe.dns_names.final_documentation_domain`/compute/
|
5362
|
+
# docs/disks/local-ssd for more information.
|
5197
5363
|
# Corresponds to the JSON property `localSsdCount`
|
5198
5364
|
# @return [Fixnum]
|
5199
5365
|
attr_accessor :local_ssd_count
|
@@ -5209,9 +5375,9 @@ module Google
|
|
5209
5375
|
# @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
|
5210
5376
|
attr_accessor :logging_config
|
5211
5377
|
|
5212
|
-
# The name of a Google Compute Engine [machine type](https
|
5213
|
-
# compute/docs/machine-types). If
|
5214
|
-
# 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`.
|
5215
5381
|
# Corresponds to the JSON property `machineType`
|
5216
5382
|
# @return [String]
|
5217
5383
|
attr_accessor :machine_type
|
@@ -5244,15 +5410,16 @@ module Google
|
|
5244
5410
|
# scheduled on the specified or newer CPU platform. Applicable values are the
|
5245
5411
|
# friendly names of CPU platforms, such as `minCpuPlatform: "Intel Haswell"` or `
|
5246
5412
|
# minCpuPlatform: "Intel Sandy Bridge"`. For more information, read [how to
|
5247
|
-
# specify min CPU platform](https
|
5248
|
-
# specify-min-cpu-platform).
|
5413
|
+
# specify min CPU platform](https://`$universe.dns_names.
|
5414
|
+
# final_documentation_domain`/compute/docs/instances/specify-min-cpu-platform).
|
5249
5415
|
# Corresponds to the JSON property `minCpuPlatform`
|
5250
5416
|
# @return [String]
|
5251
5417
|
attr_accessor :min_cpu_platform
|
5252
5418
|
|
5253
5419
|
# Setting this field will assign instances of this pool to run on the specified
|
5254
5420
|
# node group. This is useful for running workloads on [sole tenant nodes](https:/
|
5255
|
-
#
|
5421
|
+
# /`$universe.dns_names.final_documentation_domain`/compute/docs/nodes/sole-
|
5422
|
+
# tenant-nodes).
|
5256
5423
|
# Corresponds to the JSON property `nodeGroup`
|
5257
5424
|
# @return [String]
|
5258
5425
|
attr_accessor :node_group
|
@@ -5262,25 +5429,25 @@ module Google
|
|
5262
5429
|
# required, and by default are not included: * `https://www.googleapis.com/auth/
|
5263
5430
|
# compute` is required for mounting persistent storage on your nodes. * `https://
|
5264
5431
|
# www.googleapis.com/auth/devstorage.read_only` is required for communicating
|
5265
|
-
# with **gcr.io** (the [Google Container Registry](https
|
5266
|
-
# container-registry/)). If unspecified, no scopes
|
5267
|
-
# Logging or Cloud Monitoring are enabled, in which case
|
5268
|
-
# 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.
|
5269
5436
|
# Corresponds to the JSON property `oauthScopes`
|
5270
5437
|
# @return [Array<String>]
|
5271
5438
|
attr_accessor :oauth_scopes
|
5272
5439
|
|
5273
|
-
# Whether the nodes are created as preemptible VM instances. See: https
|
5274
|
-
#
|
5275
|
-
# 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.
|
5276
5443
|
# Corresponds to the JSON property `preemptible`
|
5277
5444
|
# @return [Boolean]
|
5278
5445
|
attr_accessor :preemptible
|
5279
5446
|
alias_method :preemptible?, :preemptible
|
5280
5447
|
|
5281
|
-
# [ReservationAffinity](https
|
5282
|
-
# reserving-zonal-resources) is the configuration of
|
5283
|
-
# 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.
|
5284
5451
|
# Corresponds to the JSON property `reservationAffinity`
|
5285
5452
|
# @return [Google::Apis::ContainerV1beta1::ReservationAffinity]
|
5286
5453
|
attr_accessor :reservation_affinity
|
@@ -5293,9 +5460,10 @@ module Google
|
|
5293
5460
|
|
5294
5461
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
5295
5462
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
5296
|
-
# be according to specifications in https
|
5297
|
-
# firewalls-overview#specifications. A
|
5298
|
-
# specified. Existing tags will be
|
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.
|
5299
5467
|
# Corresponds to the JSON property `resourceManagerTags`
|
5300
5468
|
# @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
|
5301
5469
|
attr_accessor :resource_manager_tags
|
@@ -5597,6 +5765,15 @@ module Google
|
|
5597
5765
|
# @return [Fixnum]
|
5598
5766
|
attr_accessor :pod_pids_limit
|
5599
5767
|
|
5768
|
+
# Optional. Defines whether to enable single process OOM killer. If true, will
|
5769
|
+
# prevent the memory.oom.group flag from being set for container cgroups in
|
5770
|
+
# cgroups v2. This causes processes in the container to be OOM killed
|
5771
|
+
# individually instead of as a group.
|
5772
|
+
# Corresponds to the JSON property `singleProcessOomKill`
|
5773
|
+
# @return [Boolean]
|
5774
|
+
attr_accessor :single_process_oom_kill
|
5775
|
+
alias_method :single_process_oom_kill?, :single_process_oom_kill
|
5776
|
+
|
5600
5777
|
# TopologyManager defines the configuration options for Topology Manager feature.
|
5601
5778
|
# See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
|
5602
5779
|
# Corresponds to the JSON property `topologyManager`
|
@@ -5622,6 +5799,7 @@ module Google
|
|
5622
5799
|
@insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
|
5623
5800
|
@memory_manager = args[:memory_manager] if args.key?(:memory_manager)
|
5624
5801
|
@pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
|
5802
|
+
@single_process_oom_kill = args[:single_process_oom_kill] if args.key?(:single_process_oom_kill)
|
5625
5803
|
@topology_manager = args[:topology_manager] if args.key?(:topology_manager)
|
5626
5804
|
end
|
5627
5805
|
end
|
@@ -5753,6 +5931,14 @@ module Google
|
|
5753
5931
|
# @return [String]
|
5754
5932
|
attr_accessor :pod_range
|
5755
5933
|
|
5934
|
+
# Output only. The subnetwork path for the node pool. Format: projects/`project`/
|
5935
|
+
# regions/`region`/subnetworks/`subnetwork` If the cluster is associated with
|
5936
|
+
# multiple subnetworks, the subnetwork for the node pool is picked based on the
|
5937
|
+
# IP utilization during node pool creation and is immutable.
|
5938
|
+
# Corresponds to the JSON property `subnetwork`
|
5939
|
+
# @return [String]
|
5940
|
+
attr_accessor :subnetwork
|
5941
|
+
|
5756
5942
|
def initialize(**args)
|
5757
5943
|
update!(**args)
|
5758
5944
|
end
|
@@ -5768,6 +5954,7 @@ module Google
|
|
5768
5954
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
5769
5955
|
@pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
|
5770
5956
|
@pod_range = args[:pod_range] if args.key?(:pod_range)
|
5957
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
5771
5958
|
end
|
5772
5959
|
end
|
5773
5960
|
|
@@ -5816,27 +6003,30 @@ module Google
|
|
5816
6003
|
attr_accessor :etag
|
5817
6004
|
|
5818
6005
|
# The initial node count for the pool. You must ensure that your Compute Engine [
|
5819
|
-
# resource quota](https
|
5820
|
-
# this number of instances. You must also have
|
5821
|
-
# quota.
|
6006
|
+
# resource quota](https://`$universe.dns_names.final_documentation_domain`/
|
6007
|
+
# compute/quotas) is sufficient for this number of instances. You must also have
|
6008
|
+
# available firewall and routes quota.
|
5822
6009
|
# Corresponds to the JSON property `initialNodeCount`
|
5823
6010
|
# @return [Fixnum]
|
5824
6011
|
attr_accessor :initial_node_count
|
5825
6012
|
|
5826
|
-
# Output only. The resource URLs of the [managed instance groups](https
|
5827
|
-
#
|
5828
|
-
# associated with this node pool. During
|
5829
|
-
# operation, the URLs contain both blue and
|
6013
|
+
# Output only. The resource URLs of the [managed instance groups](https://`$
|
6014
|
+
# universe.dns_names.final_documentation_domain`/compute/docs/instance-groups/
|
6015
|
+
# creating-groups-of-managed-instances) associated with this node pool. During
|
6016
|
+
# the node pool blue-green upgrade operation, the URLs contain both blue and
|
6017
|
+
# green resources.
|
5830
6018
|
# Corresponds to the JSON property `instanceGroupUrls`
|
5831
6019
|
# @return [Array<String>]
|
5832
6020
|
attr_accessor :instance_group_urls
|
5833
6021
|
|
5834
|
-
# The list of Google Compute Engine [zones](https
|
5835
|
-
# docs/zones#available) in which the
|
5836
|
-
# value is unspecified during node
|
5837
|
-
#
|
5838
|
-
#
|
5839
|
-
#
|
6022
|
+
# The list of Google Compute Engine [zones](https://`$universe.dns_names.
|
6023
|
+
# final_documentation_domain`/compute/docs/zones#available) in which the
|
6024
|
+
# NodePool's nodes should be located. If this value is unspecified during node
|
6025
|
+
# pool creation, the [Cluster.Locations](https://`$universe.dns_names.
|
6026
|
+
# final_documentation_domain`/kubernetes-engine/docs/reference/rest/v1/projects.
|
6027
|
+
# locations.clusters#Cluster.FIELDS.locations) value will be used, instead.
|
6028
|
+
# Warning: changing node pool locations will result in nodes being added and/or
|
6029
|
+
# removed.
|
5840
6030
|
# Corresponds to the JSON property `locations`
|
5841
6031
|
# @return [Array<String>]
|
5842
6032
|
attr_accessor :locations
|
@@ -5935,8 +6125,9 @@ module Google
|
|
5935
6125
|
attr_accessor :upgrade_settings
|
5936
6126
|
|
5937
6127
|
# The version of Kubernetes running on this NodePool's nodes. If unspecified, it
|
5938
|
-
# defaults as described [here](https
|
5939
|
-
# versioning#
|
6128
|
+
# defaults as described [here](https://`$universe.dns_names.
|
6129
|
+
# final_documentation_domain`/kubernetes-engine/versioning#
|
6130
|
+
# specifying_node_version).
|
5940
6131
|
# Corresponds to the JSON property `version`
|
5941
6132
|
# @return [String]
|
5942
6133
|
attr_accessor :version
|
@@ -5996,9 +6187,10 @@ module Google
|
|
5996
6187
|
|
5997
6188
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
5998
6189
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
5999
|
-
# be according to specifications in https
|
6000
|
-
# firewalls-overview#specifications. A
|
6001
|
-
# specified. Existing tags will be
|
6190
|
+
# be according to specifications in https://`$universe.dns_names.
|
6191
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
6192
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
6193
|
+
# replaced with new values.
|
6002
6194
|
# Corresponds to the JSON property `resourceManagerTags`
|
6003
6195
|
# @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
|
6004
6196
|
attr_accessor :resource_manager_tags
|
@@ -6279,10 +6471,11 @@ module Google
|
|
6279
6471
|
# @return [Google::Apis::ContainerV1beta1::Status]
|
6280
6472
|
attr_accessor :error
|
6281
6473
|
|
6282
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
6283
|
-
#
|
6284
|
-
#
|
6285
|
-
# the cluster
|
6474
|
+
# Output only. The name of the Google Compute Engine [zone](https://`$universe.
|
6475
|
+
# dns_names.final_documentation_domain`/compute/docs/regions-zones/regions-zones#
|
6476
|
+
# available) or [region](https://`$universe.dns_names.final_documentation_domain`
|
6477
|
+
# /compute/docs/regions-zones/regions-zones#available) in which the cluster
|
6478
|
+
# resides.
|
6286
6479
|
# Corresponds to the JSON property `location`
|
6287
6480
|
# @return [String]
|
6288
6481
|
attr_accessor :location
|
@@ -6344,9 +6537,9 @@ module Google
|
|
6344
6537
|
# @return [String]
|
6345
6538
|
attr_accessor :target_link
|
6346
6539
|
|
6347
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
6348
|
-
#
|
6349
|
-
# field is deprecated, use location instead.
|
6540
|
+
# Output only. The name of the Google Compute Engine [zone](https://`$universe.
|
6541
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
6542
|
+
# the operation is taking place. This field is deprecated, use location instead.
|
6350
6543
|
# Corresponds to the JSON property `zone`
|
6351
6544
|
# @return [String]
|
6352
6545
|
attr_accessor :zone
|
@@ -6542,8 +6735,8 @@ module Google
|
|
6542
6735
|
# @return [String]
|
6543
6736
|
attr_accessor :policy_name
|
6544
6737
|
|
6545
|
-
# TPU placement topology for pod slice node pool. https
|
6546
|
-
# docs/types-topologies#tpu_topologies
|
6738
|
+
# TPU placement topology for pod slice node pool. https://`$universe.dns_names.
|
6739
|
+
# final_documentation_domain`/tpu/docs/types-topologies#tpu_topologies
|
6547
6740
|
# Corresponds to the JSON property `tpuTopology`
|
6548
6741
|
# @return [String]
|
6549
6742
|
attr_accessor :tpu_topology
|
@@ -7089,9 +7282,9 @@ module Google
|
|
7089
7282
|
end
|
7090
7283
|
end
|
7091
7284
|
|
7092
|
-
# [ReservationAffinity](https
|
7093
|
-
# reserving-zonal-resources) is the configuration of
|
7094
|
-
# instances could take capacity from.
|
7285
|
+
# [ReservationAffinity](https://`$universe.dns_names.final_documentation_domain`/
|
7286
|
+
# compute/docs/instances/reserving-zonal-resources) is the configuration of
|
7287
|
+
# desired reservation which instances could take capacity from.
|
7095
7288
|
class ReservationAffinity
|
7096
7289
|
include Google::Apis::Core::Hashable
|
7097
7290
|
|
@@ -7124,8 +7317,8 @@ module Google
|
|
7124
7317
|
end
|
7125
7318
|
end
|
7126
7319
|
|
7127
|
-
# Collection of [GCP labels](https
|
7128
|
-
# creating-managing-labels).
|
7320
|
+
# Collection of [GCP labels](https://`$universe.dns_names.
|
7321
|
+
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
7129
7322
|
class ResourceLabels
|
7130
7323
|
include Google::Apis::Core::Hashable
|
7131
7324
|
|
@@ -7178,9 +7371,10 @@ module Google
|
|
7178
7371
|
|
7179
7372
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
7180
7373
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
7181
|
-
# be according to specifications in https
|
7182
|
-
# firewalls-overview#specifications. A
|
7183
|
-
# specified. Existing tags will be
|
7374
|
+
# be according to specifications in https://`$universe.dns_names.
|
7375
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
7376
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
7377
|
+
# replaced with new values.
|
7184
7378
|
class ResourceManagerTags
|
7185
7379
|
include Google::Apis::Core::Hashable
|
7186
7380
|
|
@@ -7240,7 +7434,7 @@ module Google
|
|
7240
7434
|
class RollbackNodePoolUpgradeRequest
|
7241
7435
|
include Google::Apis::Core::Hashable
|
7242
7436
|
|
7243
|
-
#
|
7437
|
+
# Deprecated. The name of the cluster to rollback. This field has been
|
7244
7438
|
# deprecated and replaced by the name field.
|
7245
7439
|
# Corresponds to the JSON property `clusterId`
|
7246
7440
|
# @return [String]
|
@@ -7253,15 +7447,16 @@ module Google
|
|
7253
7447
|
# @return [String]
|
7254
7448
|
attr_accessor :name
|
7255
7449
|
|
7256
|
-
#
|
7257
|
-
#
|
7450
|
+
# Deprecated. The name of the node pool to rollback. This field has been
|
7451
|
+
# deprecated and replaced by the name field.
|
7258
7452
|
# Corresponds to the JSON property `nodePoolId`
|
7259
7453
|
# @return [String]
|
7260
7454
|
attr_accessor :node_pool_id
|
7261
7455
|
|
7262
|
-
#
|
7263
|
-
#
|
7264
|
-
# projects). This field has been deprecated and replaced by
|
7456
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7457
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7458
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7459
|
+
# the name field.
|
7265
7460
|
# Corresponds to the JSON property `projectId`
|
7266
7461
|
# @return [String]
|
7267
7462
|
attr_accessor :project_id
|
@@ -7272,9 +7467,10 @@ module Google
|
|
7272
7467
|
attr_accessor :respect_pdb
|
7273
7468
|
alias_method :respect_pdb?, :respect_pdb
|
7274
7469
|
|
7275
|
-
#
|
7276
|
-
#
|
7277
|
-
# This field has been deprecated and replaced by the name
|
7470
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7471
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7472
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7473
|
+
# field.
|
7278
7474
|
# Corresponds to the JSON property `zone`
|
7279
7475
|
# @return [String]
|
7280
7476
|
attr_accessor :zone
|
@@ -7612,8 +7808,8 @@ module Google
|
|
7612
7808
|
# @return [Google::Apis::ContainerV1beta1::AddonsConfig]
|
7613
7809
|
attr_accessor :addons_config
|
7614
7810
|
|
7615
|
-
#
|
7616
|
-
#
|
7811
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
7812
|
+
# and replaced by the name field.
|
7617
7813
|
# Corresponds to the JSON property `clusterId`
|
7618
7814
|
# @return [String]
|
7619
7815
|
attr_accessor :cluster_id
|
@@ -7624,16 +7820,18 @@ module Google
|
|
7624
7820
|
# @return [String]
|
7625
7821
|
attr_accessor :name
|
7626
7822
|
|
7627
|
-
#
|
7628
|
-
#
|
7629
|
-
# projects). This field has been deprecated and replaced by
|
7823
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7824
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7825
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7826
|
+
# the name field.
|
7630
7827
|
# Corresponds to the JSON property `projectId`
|
7631
7828
|
# @return [String]
|
7632
7829
|
attr_accessor :project_id
|
7633
7830
|
|
7634
|
-
#
|
7635
|
-
#
|
7636
|
-
# This field has been deprecated and replaced by the name
|
7831
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7832
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7833
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7834
|
+
# field.
|
7637
7835
|
# Corresponds to the JSON property `zone`
|
7638
7836
|
# @return [String]
|
7639
7837
|
attr_accessor :zone
|
@@ -7658,8 +7856,8 @@ module Google
|
|
7658
7856
|
class SetLabelsRequest
|
7659
7857
|
include Google::Apis::Core::Hashable
|
7660
7858
|
|
7661
|
-
#
|
7662
|
-
#
|
7859
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
7860
|
+
# replaced by the name field.
|
7663
7861
|
# Corresponds to the JSON property `clusterId`
|
7664
7862
|
# @return [String]
|
7665
7863
|
attr_accessor :cluster_id
|
@@ -7679,9 +7877,10 @@ module Google
|
|
7679
7877
|
# @return [String]
|
7680
7878
|
attr_accessor :name
|
7681
7879
|
|
7682
|
-
#
|
7683
|
-
#
|
7684
|
-
# projects). This field has been deprecated and replaced by
|
7880
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7881
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7882
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7883
|
+
# the name field.
|
7685
7884
|
# Corresponds to the JSON property `projectId`
|
7686
7885
|
# @return [String]
|
7687
7886
|
attr_accessor :project_id
|
@@ -7691,9 +7890,10 @@ module Google
|
|
7691
7890
|
# @return [Hash<String,String>]
|
7692
7891
|
attr_accessor :resource_labels
|
7693
7892
|
|
7694
|
-
#
|
7695
|
-
#
|
7696
|
-
# This field has been deprecated and replaced by the name
|
7893
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7894
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7895
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7896
|
+
# field.
|
7697
7897
|
# Corresponds to the JSON property `zone`
|
7698
7898
|
# @return [String]
|
7699
7899
|
attr_accessor :zone
|
@@ -7718,8 +7918,8 @@ module Google
|
|
7718
7918
|
class SetLegacyAbacRequest
|
7719
7919
|
include Google::Apis::Core::Hashable
|
7720
7920
|
|
7721
|
-
#
|
7722
|
-
#
|
7921
|
+
# Deprecated. The name of the cluster to update. This field has been deprecated
|
7922
|
+
# and replaced by the name field.
|
7723
7923
|
# Corresponds to the JSON property `clusterId`
|
7724
7924
|
# @return [String]
|
7725
7925
|
attr_accessor :cluster_id
|
@@ -7736,16 +7936,18 @@ module Google
|
|
7736
7936
|
# @return [String]
|
7737
7937
|
attr_accessor :name
|
7738
7938
|
|
7739
|
-
#
|
7740
|
-
#
|
7741
|
-
# projects). This field has been deprecated and replaced by
|
7939
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7940
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7941
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7942
|
+
# the name field.
|
7742
7943
|
# Corresponds to the JSON property `projectId`
|
7743
7944
|
# @return [String]
|
7744
7945
|
attr_accessor :project_id
|
7745
7946
|
|
7746
|
-
#
|
7747
|
-
#
|
7748
|
-
# This field has been deprecated and replaced by the name
|
7947
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7948
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7949
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7950
|
+
# field.
|
7749
7951
|
# Corresponds to the JSON property `zone`
|
7750
7952
|
# @return [String]
|
7751
7953
|
attr_accessor :zone
|
@@ -7768,18 +7970,18 @@ module Google
|
|
7768
7970
|
class SetLocationsRequest
|
7769
7971
|
include Google::Apis::Core::Hashable
|
7770
7972
|
|
7771
|
-
#
|
7772
|
-
#
|
7973
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
7974
|
+
# and replaced by the name field.
|
7773
7975
|
# Corresponds to the JSON property `clusterId`
|
7774
7976
|
# @return [String]
|
7775
7977
|
attr_accessor :cluster_id
|
7776
7978
|
|
7777
|
-
# Required. The desired list of Google Compute Engine [zones](https
|
7778
|
-
#
|
7779
|
-
# be located. Changing the locations a cluster is in
|
7780
|
-
# either created or removed from the cluster,
|
7781
|
-
# being added or removed. This list must
|
7782
|
-
# zone.
|
7979
|
+
# Required. The desired list of Google Compute Engine [zones](https://`$universe.
|
7980
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7981
|
+
# the cluster's nodes should be located. Changing the locations a cluster is in
|
7982
|
+
# will result in nodes being either created or removed from the cluster,
|
7983
|
+
# depending on whether locations are being added or removed. This list must
|
7984
|
+
# always include the cluster's primary zone.
|
7783
7985
|
# Corresponds to the JSON property `locations`
|
7784
7986
|
# @return [Array<String>]
|
7785
7987
|
attr_accessor :locations
|
@@ -7790,16 +7992,18 @@ module Google
|
|
7790
7992
|
# @return [String]
|
7791
7993
|
attr_accessor :name
|
7792
7994
|
|
7793
|
-
#
|
7794
|
-
#
|
7795
|
-
# projects). This field has been deprecated and replaced by
|
7995
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7996
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7997
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7998
|
+
# the name field.
|
7796
7999
|
# Corresponds to the JSON property `projectId`
|
7797
8000
|
# @return [String]
|
7798
8001
|
attr_accessor :project_id
|
7799
8002
|
|
7800
|
-
#
|
7801
|
-
#
|
7802
|
-
# This field has been deprecated and replaced by the name
|
8003
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8004
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8005
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8006
|
+
# field.
|
7803
8007
|
# Corresponds to the JSON property `zone`
|
7804
8008
|
# @return [String]
|
7805
8009
|
attr_accessor :zone
|
@@ -7822,8 +8026,8 @@ module Google
|
|
7822
8026
|
class SetLoggingServiceRequest
|
7823
8027
|
include Google::Apis::Core::Hashable
|
7824
8028
|
|
7825
|
-
#
|
7826
|
-
#
|
8029
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8030
|
+
# and replaced by the name field.
|
7827
8031
|
# Corresponds to the JSON property `clusterId`
|
7828
8032
|
# @return [String]
|
7829
8033
|
attr_accessor :cluster_id
|
@@ -7845,16 +8049,18 @@ module Google
|
|
7845
8049
|
# @return [String]
|
7846
8050
|
attr_accessor :name
|
7847
8051
|
|
7848
|
-
#
|
7849
|
-
#
|
7850
|
-
# projects). This field has been deprecated and replaced by
|
8052
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8053
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8054
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8055
|
+
# the name field.
|
7851
8056
|
# Corresponds to the JSON property `projectId`
|
7852
8057
|
# @return [String]
|
7853
8058
|
attr_accessor :project_id
|
7854
8059
|
|
7855
|
-
#
|
7856
|
-
#
|
7857
|
-
# This field has been deprecated and replaced by the name
|
8060
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8061
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8062
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8063
|
+
# field.
|
7858
8064
|
# Corresponds to the JSON property `zone`
|
7859
8065
|
# @return [String]
|
7860
8066
|
attr_accessor :zone
|
@@ -7894,13 +8100,15 @@ module Google
|
|
7894
8100
|
attr_accessor :name
|
7895
8101
|
|
7896
8102
|
# Required. The Google Developers Console [project ID or project number](https://
|
7897
|
-
#
|
8103
|
+
# `$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8104
|
+
# creating-managing-projects).
|
7898
8105
|
# Corresponds to the JSON property `projectId`
|
7899
8106
|
# @return [String]
|
7900
8107
|
attr_accessor :project_id
|
7901
8108
|
|
7902
|
-
# Required. The name of the Google Compute Engine [zone](https
|
7903
|
-
#
|
8109
|
+
# Required. The name of the Google Compute Engine [zone](https://`$universe.
|
8110
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8111
|
+
# the cluster resides.
|
7904
8112
|
# Corresponds to the JSON property `zone`
|
7905
8113
|
# @return [String]
|
7906
8114
|
attr_accessor :zone
|
@@ -7928,8 +8136,8 @@ module Google
|
|
7928
8136
|
# @return [String]
|
7929
8137
|
attr_accessor :action
|
7930
8138
|
|
7931
|
-
#
|
7932
|
-
#
|
8139
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8140
|
+
# and replaced by the name field.
|
7933
8141
|
# Corresponds to the JSON property `clusterId`
|
7934
8142
|
# @return [String]
|
7935
8143
|
attr_accessor :cluster_id
|
@@ -7940,9 +8148,10 @@ module Google
|
|
7940
8148
|
# @return [String]
|
7941
8149
|
attr_accessor :name
|
7942
8150
|
|
7943
|
-
#
|
7944
|
-
#
|
7945
|
-
# projects). This field has been deprecated and replaced by
|
8151
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8152
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8153
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8154
|
+
# the name field.
|
7946
8155
|
# Corresponds to the JSON property `projectId`
|
7947
8156
|
# @return [String]
|
7948
8157
|
attr_accessor :project_id
|
@@ -7953,9 +8162,10 @@ module Google
|
|
7953
8162
|
# @return [Google::Apis::ContainerV1beta1::MasterAuth]
|
7954
8163
|
attr_accessor :update
|
7955
8164
|
|
7956
|
-
#
|
7957
|
-
#
|
7958
|
-
# This field has been deprecated and replaced by the name
|
8165
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8166
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8167
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8168
|
+
# field.
|
7959
8169
|
# Corresponds to the JSON property `zone`
|
7960
8170
|
# @return [String]
|
7961
8171
|
attr_accessor :zone
|
@@ -7979,8 +8189,8 @@ module Google
|
|
7979
8189
|
class SetMonitoringServiceRequest
|
7980
8190
|
include Google::Apis::Core::Hashable
|
7981
8191
|
|
7982
|
-
#
|
7983
|
-
#
|
8192
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8193
|
+
# and replaced by the name field.
|
7984
8194
|
# Corresponds to the JSON property `clusterId`
|
7985
8195
|
# @return [String]
|
7986
8196
|
attr_accessor :cluster_id
|
@@ -8002,16 +8212,18 @@ module Google
|
|
8002
8212
|
# @return [String]
|
8003
8213
|
attr_accessor :name
|
8004
8214
|
|
8005
|
-
#
|
8006
|
-
#
|
8007
|
-
# projects). This field has been deprecated and replaced by
|
8215
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8216
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8217
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8218
|
+
# the name field.
|
8008
8219
|
# Corresponds to the JSON property `projectId`
|
8009
8220
|
# @return [String]
|
8010
8221
|
attr_accessor :project_id
|
8011
8222
|
|
8012
|
-
#
|
8013
|
-
#
|
8014
|
-
# This field has been deprecated and replaced by the name
|
8223
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8224
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8225
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8226
|
+
# field.
|
8015
8227
|
# Corresponds to the JSON property `zone`
|
8016
8228
|
# @return [String]
|
8017
8229
|
attr_accessor :zone
|
@@ -8034,8 +8246,8 @@ module Google
|
|
8034
8246
|
class SetNetworkPolicyRequest
|
8035
8247
|
include Google::Apis::Core::Hashable
|
8036
8248
|
|
8037
|
-
#
|
8038
|
-
#
|
8249
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
8250
|
+
# replaced by the name field.
|
8039
8251
|
# Corresponds to the JSON property `clusterId`
|
8040
8252
|
# @return [String]
|
8041
8253
|
attr_accessor :cluster_id
|
@@ -8052,16 +8264,18 @@ module Google
|
|
8052
8264
|
# @return [Google::Apis::ContainerV1beta1::NetworkPolicy]
|
8053
8265
|
attr_accessor :network_policy
|
8054
8266
|
|
8055
|
-
#
|
8056
|
-
#
|
8057
|
-
# projects). This field has been deprecated and replaced by
|
8267
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8268
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8269
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8270
|
+
# the name field.
|
8058
8271
|
# Corresponds to the JSON property `projectId`
|
8059
8272
|
# @return [String]
|
8060
8273
|
attr_accessor :project_id
|
8061
8274
|
|
8062
|
-
#
|
8063
|
-
#
|
8064
|
-
# This field has been deprecated and replaced by the name
|
8275
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8276
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8277
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8278
|
+
# field.
|
8065
8279
|
# Corresponds to the JSON property `zone`
|
8066
8280
|
# @return [String]
|
8067
8281
|
attr_accessor :zone
|
@@ -8090,8 +8304,8 @@ module Google
|
|
8090
8304
|
# @return [Google::Apis::ContainerV1beta1::NodePoolAutoscaling]
|
8091
8305
|
attr_accessor :autoscaling
|
8092
8306
|
|
8093
|
-
#
|
8094
|
-
#
|
8307
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8308
|
+
# and replaced by the name field.
|
8095
8309
|
# Corresponds to the JSON property `clusterId`
|
8096
8310
|
# @return [String]
|
8097
8311
|
attr_accessor :cluster_id
|
@@ -8103,22 +8317,24 @@ module Google
|
|
8103
8317
|
# @return [String]
|
8104
8318
|
attr_accessor :name
|
8105
8319
|
|
8106
|
-
#
|
8107
|
-
#
|
8320
|
+
# Deprecated. The name of the node pool to upgrade. This field has been
|
8321
|
+
# deprecated and replaced by the name field.
|
8108
8322
|
# Corresponds to the JSON property `nodePoolId`
|
8109
8323
|
# @return [String]
|
8110
8324
|
attr_accessor :node_pool_id
|
8111
8325
|
|
8112
|
-
#
|
8113
|
-
#
|
8114
|
-
# projects). This field has been deprecated and replaced by
|
8326
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8327
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8328
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8329
|
+
# the name field.
|
8115
8330
|
# Corresponds to the JSON property `projectId`
|
8116
8331
|
# @return [String]
|
8117
8332
|
attr_accessor :project_id
|
8118
8333
|
|
8119
|
-
#
|
8120
|
-
#
|
8121
|
-
# This field has been deprecated and replaced by the name
|
8334
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8335
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8336
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8337
|
+
# field.
|
8122
8338
|
# Corresponds to the JSON property `zone`
|
8123
8339
|
# @return [String]
|
8124
8340
|
attr_accessor :zone
|
@@ -8143,8 +8359,8 @@ module Google
|
|
8143
8359
|
class SetNodePoolManagementRequest
|
8144
8360
|
include Google::Apis::Core::Hashable
|
8145
8361
|
|
8146
|
-
#
|
8147
|
-
#
|
8362
|
+
# Deprecated. The name of the cluster to update. This field has been deprecated
|
8363
|
+
# and replaced by the name field.
|
8148
8364
|
# Corresponds to the JSON property `clusterId`
|
8149
8365
|
# @return [String]
|
8150
8366
|
attr_accessor :cluster_id
|
@@ -8162,22 +8378,24 @@ module Google
|
|
8162
8378
|
# @return [String]
|
8163
8379
|
attr_accessor :name
|
8164
8380
|
|
8165
|
-
#
|
8381
|
+
# Deprecated. The name of the node pool to update. This field has been
|
8166
8382
|
# deprecated and replaced by the name field.
|
8167
8383
|
# Corresponds to the JSON property `nodePoolId`
|
8168
8384
|
# @return [String]
|
8169
8385
|
attr_accessor :node_pool_id
|
8170
8386
|
|
8171
|
-
#
|
8172
|
-
#
|
8173
|
-
# projects). This field has been deprecated and replaced by
|
8387
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8388
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8389
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8390
|
+
# the name field.
|
8174
8391
|
# Corresponds to the JSON property `projectId`
|
8175
8392
|
# @return [String]
|
8176
8393
|
attr_accessor :project_id
|
8177
8394
|
|
8178
|
-
#
|
8179
|
-
#
|
8180
|
-
# This field has been deprecated and replaced by the name
|
8395
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8396
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8397
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8398
|
+
# field.
|
8181
8399
|
# Corresponds to the JSON property `zone`
|
8182
8400
|
# @return [String]
|
8183
8401
|
attr_accessor :zone
|
@@ -8201,8 +8419,8 @@ module Google
|
|
8201
8419
|
class SetNodePoolSizeRequest
|
8202
8420
|
include Google::Apis::Core::Hashable
|
8203
8421
|
|
8204
|
-
#
|
8205
|
-
#
|
8422
|
+
# Deprecated. The name of the cluster to update. This field has been deprecated
|
8423
|
+
# and replaced by the name field.
|
8206
8424
|
# Corresponds to the JSON property `clusterId`
|
8207
8425
|
# @return [String]
|
8208
8426
|
attr_accessor :cluster_id
|
@@ -8218,22 +8436,24 @@ module Google
|
|
8218
8436
|
# @return [Fixnum]
|
8219
8437
|
attr_accessor :node_count
|
8220
8438
|
|
8221
|
-
#
|
8439
|
+
# Deprecated. The name of the node pool to update. This field has been
|
8222
8440
|
# deprecated and replaced by the name field.
|
8223
8441
|
# Corresponds to the JSON property `nodePoolId`
|
8224
8442
|
# @return [String]
|
8225
8443
|
attr_accessor :node_pool_id
|
8226
8444
|
|
8227
|
-
#
|
8228
|
-
#
|
8229
|
-
# projects). This field has been deprecated and replaced by
|
8445
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8446
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8447
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8448
|
+
# the name field.
|
8230
8449
|
# Corresponds to the JSON property `projectId`
|
8231
8450
|
# @return [String]
|
8232
8451
|
attr_accessor :project_id
|
8233
8452
|
|
8234
|
-
#
|
8235
|
-
#
|
8236
|
-
# This field has been deprecated and replaced by the name
|
8453
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8454
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8455
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8456
|
+
# field.
|
8237
8457
|
# Corresponds to the JSON property `zone`
|
8238
8458
|
# @return [String]
|
8239
8459
|
attr_accessor :zone
|
@@ -8312,6 +8532,13 @@ module Google
|
|
8312
8532
|
class SoleTenantConfig
|
8313
8533
|
include Google::Apis::Core::Hashable
|
8314
8534
|
|
8535
|
+
# Optional. The minimum number of virtual CPUs this instance will consume when
|
8536
|
+
# running on a sole-tenant node. This field can only be set if the node pool is
|
8537
|
+
# created in a shared sole-tenant node group.
|
8538
|
+
# Corresponds to the JSON property `minNodeCpus`
|
8539
|
+
# @return [Fixnum]
|
8540
|
+
attr_accessor :min_node_cpus
|
8541
|
+
|
8315
8542
|
# NodeAffinities used to match to a shared sole tenant node group.
|
8316
8543
|
# Corresponds to the JSON property `nodeAffinities`
|
8317
8544
|
# @return [Array<Google::Apis::ContainerV1beta1::NodeAffinity>]
|
@@ -8323,6 +8550,7 @@ module Google
|
|
8323
8550
|
|
8324
8551
|
# Update properties of this object
|
8325
8552
|
def update!(**args)
|
8553
|
+
@min_node_cpus = args[:min_node_cpus] if args.key?(:min_node_cpus)
|
8326
8554
|
@node_affinities = args[:node_affinities] if args.key?(:node_affinities)
|
8327
8555
|
end
|
8328
8556
|
end
|
@@ -8364,8 +8592,8 @@ module Google
|
|
8364
8592
|
class StartIpRotationRequest
|
8365
8593
|
include Google::Apis::Core::Hashable
|
8366
8594
|
|
8367
|
-
#
|
8368
|
-
#
|
8595
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
8596
|
+
# replaced by the name field.
|
8369
8597
|
# Corresponds to the JSON property `clusterId`
|
8370
8598
|
# @return [String]
|
8371
8599
|
attr_accessor :cluster_id
|
@@ -8376,9 +8604,10 @@ module Google
|
|
8376
8604
|
# @return [String]
|
8377
8605
|
attr_accessor :name
|
8378
8606
|
|
8379
|
-
#
|
8380
|
-
#
|
8381
|
-
# projects). This field has been deprecated and replaced by
|
8607
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8608
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8609
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8610
|
+
# the name field.
|
8382
8611
|
# Corresponds to the JSON property `projectId`
|
8383
8612
|
# @return [String]
|
8384
8613
|
attr_accessor :project_id
|
@@ -8389,9 +8618,10 @@ module Google
|
|
8389
8618
|
attr_accessor :rotate_credentials
|
8390
8619
|
alias_method :rotate_credentials?, :rotate_credentials
|
8391
8620
|
|
8392
|
-
#
|
8393
|
-
#
|
8394
|
-
# This field has been deprecated and replaced by the name
|
8621
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8622
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8623
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8624
|
+
# field.
|
8395
8625
|
# Corresponds to the JSON property `zone`
|
8396
8626
|
# @return [String]
|
8397
8627
|
attr_accessor :zone
|
@@ -8614,8 +8844,8 @@ module Google
|
|
8614
8844
|
class UpdateClusterRequest
|
8615
8845
|
include Google::Apis::Core::Hashable
|
8616
8846
|
|
8617
|
-
#
|
8618
|
-
#
|
8847
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8848
|
+
# and replaced by the name field.
|
8619
8849
|
# Corresponds to the JSON property `clusterId`
|
8620
8850
|
# @return [String]
|
8621
8851
|
attr_accessor :cluster_id
|
@@ -8626,9 +8856,10 @@ module Google
|
|
8626
8856
|
# @return [String]
|
8627
8857
|
attr_accessor :name
|
8628
8858
|
|
8629
|
-
#
|
8630
|
-
#
|
8631
|
-
# projects). This field has been deprecated and replaced by
|
8859
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8860
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8861
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8862
|
+
# the name field.
|
8632
8863
|
# Corresponds to the JSON property `projectId`
|
8633
8864
|
# @return [String]
|
8634
8865
|
attr_accessor :project_id
|
@@ -8639,9 +8870,10 @@ module Google
|
|
8639
8870
|
# @return [Google::Apis::ContainerV1beta1::ClusterUpdate]
|
8640
8871
|
attr_accessor :update
|
8641
8872
|
|
8642
|
-
#
|
8643
|
-
#
|
8644
|
-
# This field has been deprecated and replaced by the name
|
8873
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8874
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8875
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8876
|
+
# field.
|
8645
8877
|
# Corresponds to the JSON property `zone`
|
8646
8878
|
# @return [String]
|
8647
8879
|
attr_accessor :zone
|
@@ -8684,8 +8916,8 @@ module Google
|
|
8684
8916
|
class UpdateMasterRequest
|
8685
8917
|
include Google::Apis::Core::Hashable
|
8686
8918
|
|
8687
|
-
#
|
8688
|
-
#
|
8919
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8920
|
+
# and replaced by the name field.
|
8689
8921
|
# Corresponds to the JSON property `clusterId`
|
8690
8922
|
# @return [String]
|
8691
8923
|
attr_accessor :cluster_id
|
@@ -8707,16 +8939,18 @@ module Google
|
|
8707
8939
|
# @return [String]
|
8708
8940
|
attr_accessor :name
|
8709
8941
|
|
8710
|
-
#
|
8711
|
-
#
|
8712
|
-
# projects). This field has been deprecated and replaced by
|
8942
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8943
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8944
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8945
|
+
# the name field.
|
8713
8946
|
# Corresponds to the JSON property `projectId`
|
8714
8947
|
# @return [String]
|
8715
8948
|
attr_accessor :project_id
|
8716
8949
|
|
8717
|
-
#
|
8718
|
-
#
|
8719
|
-
# This field has been deprecated and replaced by the name
|
8950
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8951
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8952
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8953
|
+
# field.
|
8720
8954
|
# Corresponds to the JSON property `zone`
|
8721
8955
|
# @return [String]
|
8722
8956
|
attr_accessor :zone
|
@@ -8739,14 +8973,15 @@ module Google
|
|
8739
8973
|
class UpdateNodePoolRequest
|
8740
8974
|
include Google::Apis::Core::Hashable
|
8741
8975
|
|
8742
|
-
# A list of hardware accelerators to be attached to each node. See https
|
8743
|
-
#
|
8976
|
+
# A list of hardware accelerators to be attached to each node. See https://`$
|
8977
|
+
# universe.dns_names.final_documentation_domain`/compute/docs/gpus for more
|
8978
|
+
# information about support for GPUs.
|
8744
8979
|
# Corresponds to the JSON property `accelerators`
|
8745
8980
|
# @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
|
8746
8981
|
attr_accessor :accelerators
|
8747
8982
|
|
8748
|
-
#
|
8749
|
-
#
|
8983
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8984
|
+
# and replaced by the name field.
|
8750
8985
|
# Corresponds to the JSON property `clusterId`
|
8751
8986
|
# @return [String]
|
8752
8987
|
attr_accessor :cluster_id
|
@@ -8804,9 +9039,9 @@ module Google
|
|
8804
9039
|
# @return [Google::Apis::ContainerV1beta1::VirtualNic]
|
8805
9040
|
attr_accessor :gvnic
|
8806
9041
|
|
8807
|
-
# Required. The desired image type for the node pool. Please see https
|
8808
|
-
#
|
8809
|
-
# types.
|
9042
|
+
# Required. The desired image type for the node pool. Please see https://`$
|
9043
|
+
# universe.dns_names.final_documentation_domain`/kubernetes-engine/docs/concepts/
|
9044
|
+
# node-images for available image types.
|
8810
9045
|
# Corresponds to the JSON property `imageType`
|
8811
9046
|
# @return [String]
|
8812
9047
|
attr_accessor :image_type
|
@@ -8827,11 +9062,11 @@ module Google
|
|
8827
9062
|
# @return [Google::Apis::ContainerV1beta1::LinuxNodeConfig]
|
8828
9063
|
attr_accessor :linux_node_config
|
8829
9064
|
|
8830
|
-
# The desired list of Google Compute Engine [zones](https
|
8831
|
-
# compute/docs/zones#available) in which the node
|
8832
|
-
# Changing the locations for a node pool will
|
8833
|
-
# created or removed from the node pool, depending
|
8834
|
-
# being added or removed.
|
9065
|
+
# The desired list of Google Compute Engine [zones](https://`$universe.dns_names.
|
9066
|
+
# final_documentation_domain`/compute/docs/zones#available) in which the node
|
9067
|
+
# pool's nodes should be located. Changing the locations for a node pool will
|
9068
|
+
# result in nodes being either created or removed from the node pool, depending
|
9069
|
+
# on whether locations are being added or removed.
|
8835
9070
|
# Corresponds to the JSON property `locations`
|
8836
9071
|
# @return [Array<String>]
|
8837
9072
|
attr_accessor :locations
|
@@ -8865,8 +9100,8 @@ module Google
|
|
8865
9100
|
# @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
|
8866
9101
|
attr_accessor :node_network_config
|
8867
9102
|
|
8868
|
-
#
|
8869
|
-
#
|
9103
|
+
# Deprecated. The name of the node pool to upgrade. This field has been
|
9104
|
+
# deprecated and replaced by the name field.
|
8870
9105
|
# Corresponds to the JSON property `nodePoolId`
|
8871
9106
|
# @return [String]
|
8872
9107
|
attr_accessor :node_pool_id
|
@@ -8882,9 +9117,10 @@ module Google
|
|
8882
9117
|
# @return [String]
|
8883
9118
|
attr_accessor :node_version
|
8884
9119
|
|
8885
|
-
#
|
8886
|
-
#
|
8887
|
-
# projects). This field has been deprecated and replaced by
|
9120
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
9121
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
9122
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
9123
|
+
# the name field.
|
8888
9124
|
# Corresponds to the JSON property `projectId`
|
8889
9125
|
# @return [String]
|
8890
9126
|
attr_accessor :project_id
|
@@ -8894,17 +9130,18 @@ module Google
|
|
8894
9130
|
# @return [Google::Apis::ContainerV1beta1::QueuedProvisioning]
|
8895
9131
|
attr_accessor :queued_provisioning
|
8896
9132
|
|
8897
|
-
# Collection of [GCP labels](https
|
8898
|
-
# creating-managing-labels).
|
9133
|
+
# Collection of [GCP labels](https://`$universe.dns_names.
|
9134
|
+
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
8899
9135
|
# Corresponds to the JSON property `resourceLabels`
|
8900
9136
|
# @return [Google::Apis::ContainerV1beta1::ResourceLabels]
|
8901
9137
|
attr_accessor :resource_labels
|
8902
9138
|
|
8903
9139
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
8904
9140
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
8905
|
-
# be according to specifications in https
|
8906
|
-
# firewalls-overview#specifications. A
|
8907
|
-
# specified. Existing tags will be
|
9141
|
+
# be according to specifications in https://`$universe.dns_names.
|
9142
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
9143
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
9144
|
+
# replaced with new values.
|
8908
9145
|
# Corresponds to the JSON property `resourceManagerTags`
|
8909
9146
|
# @return [Google::Apis::ContainerV1beta1::ResourceManagerTags]
|
8910
9147
|
attr_accessor :resource_manager_tags
|
@@ -8976,9 +9213,10 @@ module Google
|
|
8976
9213
|
# @return [Google::Apis::ContainerV1beta1::WorkloadMetadataConfig]
|
8977
9214
|
attr_accessor :workload_metadata_config
|
8978
9215
|
|
8979
|
-
#
|
8980
|
-
#
|
8981
|
-
# This field has been deprecated and replaced by the name
|
9216
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
9217
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
9218
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
9219
|
+
# field.
|
8982
9220
|
# Corresponds to the JSON property `zone`
|
8983
9221
|
# @return [String]
|
8984
9222
|
attr_accessor :zone
|