google-apis-container_v1 0.96.0 → 0.98.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 +9 -0
- data/lib/google/apis/container_v1/classes.rb +544 -272
- data/lib/google/apis/container_v1/gem_version.rb +3 -3
- data/lib/google/apis/container_v1/representations.rb +100 -0
- data/lib/google/apis/container_v1/service.rb +287 -209
- 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
|
@@ -70,6 +70,35 @@ module Google
|
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|
73
|
+
# AdditionalIPRangesConfig is the configuration for individual additional
|
74
|
+
# subnetwork attached to the cluster
|
75
|
+
class AdditionalIpRangesConfig
|
76
|
+
include Google::Apis::Core::Hashable
|
77
|
+
|
78
|
+
# List of secondary ranges names within this subnetwork that can be used for pod
|
79
|
+
# IPs. Example1: gke-pod-range1 Example2: gke-pod-range1,gke-pod-range2
|
80
|
+
# Corresponds to the JSON property `podIpv4RangeNames`
|
81
|
+
# @return [Array<String>]
|
82
|
+
attr_accessor :pod_ipv4_range_names
|
83
|
+
|
84
|
+
# Name of the subnetwork. This can be the full path of the subnetwork or just
|
85
|
+
# the name. Example1: my-subnet Example2: projects/gke-project/regions/us-
|
86
|
+
# central1/subnetworks/my-subnet
|
87
|
+
# Corresponds to the JSON property `subnetwork`
|
88
|
+
# @return [String]
|
89
|
+
attr_accessor :subnetwork
|
90
|
+
|
91
|
+
def initialize(**args)
|
92
|
+
update!(**args)
|
93
|
+
end
|
94
|
+
|
95
|
+
# Update properties of this object
|
96
|
+
def update!(**args)
|
97
|
+
@pod_ipv4_range_names = args[:pod_ipv4_range_names] if args.key?(:pod_ipv4_range_names)
|
98
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
73
102
|
# AdditionalNodeNetworkConfig is the configuration for additional node networks
|
74
103
|
# within the NodeNetworkConfig message
|
75
104
|
class AdditionalNodeNetworkConfig
|
@@ -202,6 +231,11 @@ module Google
|
|
202
231
|
# @return [Google::Apis::ContainerV1::GkeBackupAgentConfig]
|
203
232
|
attr_accessor :gke_backup_agent_config
|
204
233
|
|
234
|
+
# Configuration for the High Scale Checkpointing.
|
235
|
+
# Corresponds to the JSON property `highScaleCheckpointingConfig`
|
236
|
+
# @return [Google::Apis::ContainerV1::HighScaleCheckpointingConfig]
|
237
|
+
attr_accessor :high_scale_checkpointing_config
|
238
|
+
|
205
239
|
# Configuration options for the horizontal pod autoscaling feature, which
|
206
240
|
# increases or decreases the number of replica pods a replication controller has
|
207
241
|
# based on the resource usage of the existing pods.
|
@@ -255,6 +289,7 @@ module Google
|
|
255
289
|
@gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
|
256
290
|
@gcs_fuse_csi_driver_config = args[:gcs_fuse_csi_driver_config] if args.key?(:gcs_fuse_csi_driver_config)
|
257
291
|
@gke_backup_agent_config = args[:gke_backup_agent_config] if args.key?(:gke_backup_agent_config)
|
292
|
+
@high_scale_checkpointing_config = args[:high_scale_checkpointing_config] if args.key?(:high_scale_checkpointing_config)
|
258
293
|
@horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
|
259
294
|
@http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
|
260
295
|
@kubernetes_dashboard = args[:kubernetes_dashboard] if args.key?(:kubernetes_dashboard)
|
@@ -309,6 +344,12 @@ module Google
|
|
309
344
|
attr_accessor :enable_nested_virtualization
|
310
345
|
alias_method :enable_nested_virtualization?, :enable_nested_virtualization
|
311
346
|
|
347
|
+
# Type of Performance Monitoring Unit (PMU) requested on node pool instances. If
|
348
|
+
# unset, PMU will not be available to the node.
|
349
|
+
# Corresponds to the JSON property `performanceMonitoringUnit`
|
350
|
+
# @return [String]
|
351
|
+
attr_accessor :performance_monitoring_unit
|
352
|
+
|
312
353
|
# The number of threads per physical core. To disable simultaneous
|
313
354
|
# multithreading (SMT) set this to 1. If unset, the maximum number of threads
|
314
355
|
# supported per core by the underlying processor is assumed.
|
@@ -323,10 +364,31 @@ module Google
|
|
323
364
|
# Update properties of this object
|
324
365
|
def update!(**args)
|
325
366
|
@enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
|
367
|
+
@performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
|
326
368
|
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
327
369
|
end
|
328
370
|
end
|
329
371
|
|
372
|
+
# AnonymousAuthenticationConfig defines the settings needed to limit endpoints
|
373
|
+
# that allow anonymous authentication.
|
374
|
+
class AnonymousAuthenticationConfig
|
375
|
+
include Google::Apis::Core::Hashable
|
376
|
+
|
377
|
+
# Defines the mode of limiting anonymous access in the cluster.
|
378
|
+
# Corresponds to the JSON property `mode`
|
379
|
+
# @return [String]
|
380
|
+
attr_accessor :mode
|
381
|
+
|
382
|
+
def initialize(**args)
|
383
|
+
update!(**args)
|
384
|
+
end
|
385
|
+
|
386
|
+
# Update properties of this object
|
387
|
+
def update!(**args)
|
388
|
+
@mode = args[:mode] if args.key?(:mode)
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
330
392
|
# Configuration for returning group information from authenticators.
|
331
393
|
class AuthenticatorGroupsConfig
|
332
394
|
include Google::Apis::Core::Hashable
|
@@ -355,6 +417,19 @@ module Google
|
|
355
417
|
end
|
356
418
|
end
|
357
419
|
|
420
|
+
# AutoIpamConfig contains all information related to Auto IPAM
|
421
|
+
class AutoIpamConfig
|
422
|
+
include Google::Apis::Core::Hashable
|
423
|
+
|
424
|
+
def initialize(**args)
|
425
|
+
update!(**args)
|
426
|
+
end
|
427
|
+
|
428
|
+
# Update properties of this object
|
429
|
+
def update!(**args)
|
430
|
+
end
|
431
|
+
end
|
432
|
+
|
358
433
|
# AutoMonitoringConfig defines the configuration for GKE Workload Auto-
|
359
434
|
# Monitoring.
|
360
435
|
class AutoMonitoringConfig
|
@@ -509,7 +584,8 @@ module Google
|
|
509
584
|
# each node in the node pool. This should be of the form projects/[
|
510
585
|
# KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
|
511
586
|
# . For more information about protecting resources with Cloud KMS Keys please
|
512
|
-
# see: https
|
587
|
+
# see: https://`$universe.dns_names.final_documentation_domain`/compute/docs/
|
588
|
+
# disks/customer-managed-encryption
|
513
589
|
# Corresponds to the JSON property `bootDiskKmsKey`
|
514
590
|
# @return [String]
|
515
591
|
attr_accessor :boot_disk_kms_key
|
@@ -526,8 +602,9 @@ module Google
|
|
526
602
|
# @return [String]
|
527
603
|
attr_accessor :disk_type
|
528
604
|
|
529
|
-
# The image type to use for NAP created node. Please see https
|
530
|
-
#
|
605
|
+
# The image type to use for NAP created node. Please see https://`$universe.
|
606
|
+
# dns_names.final_documentation_domain`/kubernetes-engine/docs/concepts/node-
|
607
|
+
# images for available image types.
|
531
608
|
# Corresponds to the JSON property `imageType`
|
532
609
|
# @return [String]
|
533
610
|
attr_accessor :image_type
|
@@ -548,11 +625,11 @@ module Google
|
|
548
625
|
# instance may be scheduled on the specified or newer CPU platform. Applicable
|
549
626
|
# values are the friendly names of CPU platforms, such as minCpuPlatform: Intel
|
550
627
|
# Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
|
551
|
-
# to specify min CPU platform](https
|
552
|
-
# specify-min-cpu-platform).
|
553
|
-
# be specified using `cloud.
|
554
|
-
# selector on the pod. To unset the
|
555
|
-
# field value.
|
628
|
+
# to specify min CPU platform](https://`$universe.dns_names.
|
629
|
+
# final_documentation_domain`/compute/docs/instances/specify-min-cpu-platform).
|
630
|
+
# This field is deprecated, min_cpu_platform should be specified using `cloud.
|
631
|
+
# google.com/requested-min-cpu-platform` label selector on the pod. To unset the
|
632
|
+
# min cpu platform field pass "automatic" as field value.
|
556
633
|
# Corresponds to the JSON property `minCpuPlatform`
|
557
634
|
# @return [String]
|
558
635
|
attr_accessor :min_cpu_platform
|
@@ -794,15 +871,17 @@ module Google
|
|
794
871
|
attr_accessor :operation_id
|
795
872
|
|
796
873
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
797
|
-
#
|
798
|
-
# field has been deprecated and replaced by
|
874
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
875
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
876
|
+
# the name field.
|
799
877
|
# Corresponds to the JSON property `projectId`
|
800
878
|
# @return [String]
|
801
879
|
attr_accessor :project_id
|
802
880
|
|
803
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
804
|
-
#
|
805
|
-
# has been deprecated and replaced by the name
|
881
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
882
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
883
|
+
# the operation resides. This field has been deprecated and replaced by the name
|
884
|
+
# field.
|
806
885
|
# Corresponds to the JSON property `zone`
|
807
886
|
# @return [String]
|
808
887
|
attr_accessor :zone
|
@@ -832,7 +911,8 @@ module Google
|
|
832
911
|
attr_accessor :fqdns
|
833
912
|
|
834
913
|
# GCPSecretManagerCertificateConfig configures a secret from [Google Secret
|
835
|
-
# Manager](https
|
914
|
+
# Manager](https://`$universe.dns_names.final_documentation_domain`/secret-
|
915
|
+
# manager).
|
836
916
|
# Corresponds to the JSON property `gcpSecretManagerCertificateConfig`
|
837
917
|
# @return [Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig]
|
838
918
|
attr_accessor :gcp_secret_manager_certificate_config
|
@@ -961,6 +1041,12 @@ module Google
|
|
961
1041
|
# @return [Array<String>]
|
962
1042
|
attr_accessor :alpha_cluster_feature_gates
|
963
1043
|
|
1044
|
+
# AnonymousAuthenticationConfig defines the settings needed to limit endpoints
|
1045
|
+
# that allow anonymous authentication.
|
1046
|
+
# Corresponds to the JSON property `anonymousAuthenticationConfig`
|
1047
|
+
# @return [Google::Apis::ContainerV1::AnonymousAuthenticationConfig]
|
1048
|
+
attr_accessor :anonymous_authentication_config
|
1049
|
+
|
964
1050
|
# Configuration for returning group information from authenticators.
|
965
1051
|
# Corresponds to the JSON property `authenticatorGroupsConfig`
|
966
1052
|
# @return [Google::Apis::ContainerV1::AuthenticatorGroupsConfig]
|
@@ -1035,11 +1121,12 @@ module Google
|
|
1035
1121
|
# @return [Fixnum]
|
1036
1122
|
attr_accessor :current_node_count
|
1037
1123
|
|
1038
|
-
# Output only. Deprecated, use [NodePools.version](https
|
1039
|
-
# kubernetes-engine/docs/reference/rest/v1/projects.
|
1040
|
-
# instead. The current version of the node
|
1041
|
-
# currently at multiple versions because they'
|
1042
|
-
# upgraded, this reflects the minimum version of all
|
1124
|
+
# Output only. Deprecated, use [NodePools.version](https://`$universe.dns_names.
|
1125
|
+
# final_documentation_domain`/kubernetes-engine/docs/reference/rest/v1/projects.
|
1126
|
+
# locations.clusters.nodePools) instead. The current version of the node
|
1127
|
+
# software components. If they are currently at multiple versions because they'
|
1128
|
+
# re in the process of being upgraded, this reflects the minimum version of all
|
1129
|
+
# nodes.
|
1043
1130
|
# Corresponds to the JSON property `currentNodeVersion`
|
1044
1131
|
# @return [String]
|
1045
1132
|
attr_accessor :current_node_version
|
@@ -1113,6 +1200,11 @@ module Google
|
|
1113
1200
|
# @return [Google::Apis::ContainerV1::Fleet]
|
1114
1201
|
attr_accessor :fleet
|
1115
1202
|
|
1203
|
+
# GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.
|
1204
|
+
# Corresponds to the JSON property `gkeAutoUpgradeConfig`
|
1205
|
+
# @return [Google::Apis::ContainerV1::GkeAutoUpgradeConfig]
|
1206
|
+
attr_accessor :gke_auto_upgrade_config
|
1207
|
+
|
1116
1208
|
# Output only. Unique id for the cluster.
|
1117
1209
|
# Corresponds to the JSON property `id`
|
1118
1210
|
# @return [String]
|
@@ -1138,13 +1230,14 @@ module Google
|
|
1138
1230
|
attr_accessor :initial_cluster_version
|
1139
1231
|
|
1140
1232
|
# The number of nodes to create in this cluster. You must ensure that your
|
1141
|
-
# Compute Engine [resource quota](https
|
1142
|
-
# sufficient for this number of
|
1143
|
-
#
|
1144
|
-
#
|
1145
|
-
#
|
1146
|
-
#
|
1147
|
-
# node_pool.
|
1233
|
+
# Compute Engine [resource quota](https://`$universe.dns_names.
|
1234
|
+
# final_documentation_domain`/compute/quotas) is sufficient for this number of
|
1235
|
+
# instances. You must also have available firewall and routes quota. For
|
1236
|
+
# requests, this field should only be used in lieu of a "node_pool" object,
|
1237
|
+
# since this configuration (along with the "node_config") will be used to create
|
1238
|
+
# a "NodePool" object with an auto-generated name. Do not use this and a
|
1239
|
+
# node_pool at the same time. This field is deprecated, use node_pool.
|
1240
|
+
# initial_node_count instead.
|
1148
1241
|
# Corresponds to the JSON property `initialNodeCount`
|
1149
1242
|
# @return [Fixnum]
|
1150
1243
|
attr_accessor :initial_node_count
|
@@ -1169,23 +1262,26 @@ module Google
|
|
1169
1262
|
# @return [Google::Apis::ContainerV1::LegacyAbac]
|
1170
1263
|
attr_accessor :legacy_abac
|
1171
1264
|
|
1172
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
1173
|
-
#
|
1174
|
-
#
|
1175
|
-
# the cluster
|
1265
|
+
# Output only. The name of the Google Compute Engine [zone](https://`$universe.
|
1266
|
+
# dns_names.final_documentation_domain`/compute/docs/regions-zones/regions-zones#
|
1267
|
+
# available) or [region](https://`$universe.dns_names.final_documentation_domain`
|
1268
|
+
# /compute/docs/regions-zones/regions-zones#available) in which the cluster
|
1269
|
+
# resides.
|
1176
1270
|
# Corresponds to the JSON property `location`
|
1177
1271
|
# @return [String]
|
1178
1272
|
attr_accessor :location
|
1179
1273
|
|
1180
|
-
# The list of Google Compute Engine [zones](https
|
1181
|
-
# docs/zones#available) in which the cluster'
|
1182
|
-
# field provides a default value if [NodePool.
|
1183
|
-
#
|
1184
|
-
# nodePools#NodePool.
|
1185
|
-
#
|
1186
|
-
# Locations](https
|
1187
|
-
#
|
1188
|
-
#
|
1274
|
+
# The list of Google Compute Engine [zones](https://`$universe.dns_names.
|
1275
|
+
# final_documentation_domain`/compute/docs/zones#available) in which the cluster'
|
1276
|
+
# s nodes should be located. This field provides a default value if [NodePool.
|
1277
|
+
# Locations](https://`$universe.dns_names.final_documentation_domain`/kubernetes-
|
1278
|
+
# engine/docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.
|
1279
|
+
# FIELDS.locations) are not specified during node pool creation. Warning:
|
1280
|
+
# changing cluster locations will update the [NodePool.Locations](https://`$
|
1281
|
+
# universe.dns_names.final_documentation_domain`/kubernetes-engine/docs/
|
1282
|
+
# reference/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.
|
1283
|
+
# locations) of all node pools and will result in nodes being added and/or
|
1284
|
+
# removed.
|
1189
1285
|
# Corresponds to the JSON property `locations`
|
1190
1286
|
# @return [Array<String>]
|
1191
1287
|
attr_accessor :locations
|
@@ -1254,9 +1350,10 @@ module Google
|
|
1254
1350
|
# @return [String]
|
1255
1351
|
attr_accessor :name
|
1256
1352
|
|
1257
|
-
# The name of the Google Compute Engine [network](https
|
1258
|
-
# compute/docs/networks-and-firewalls#networks) to
|
1259
|
-
# connected. If left unspecified, the `default` network
|
1353
|
+
# The name of the Google Compute Engine [network](https://`$universe.dns_names.
|
1354
|
+
# final_documentation_domain`/compute/docs/networks-and-firewalls#networks) to
|
1355
|
+
# which the cluster is connected. If left unspecified, the `default` network
|
1356
|
+
# will be used.
|
1260
1357
|
# Corresponds to the JSON property `network`
|
1261
1358
|
# @return [String]
|
1262
1359
|
attr_accessor :network
|
@@ -1403,8 +1500,9 @@ module Google
|
|
1403
1500
|
# @return [String]
|
1404
1501
|
attr_accessor :status_message
|
1405
1502
|
|
1406
|
-
# The name of the Google Compute Engine [subnetwork](https
|
1407
|
-
# compute/docs/subnetworks) to which the
|
1503
|
+
# The name of the Google Compute Engine [subnetwork](https://`$universe.
|
1504
|
+
# dns_names.final_documentation_domain`/compute/docs/subnetworks) to which the
|
1505
|
+
# cluster is connected.
|
1408
1506
|
# Corresponds to the JSON property `subnetwork`
|
1409
1507
|
# @return [String]
|
1410
1508
|
attr_accessor :subnetwork
|
@@ -1435,9 +1533,9 @@ module Google
|
|
1435
1533
|
# @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
|
1436
1534
|
attr_accessor :workload_identity_config
|
1437
1535
|
|
1438
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
1439
|
-
#
|
1440
|
-
# deprecated, use location instead.
|
1536
|
+
# Output only. The name of the Google Compute Engine [zone](https://`$universe.
|
1537
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1538
|
+
# the cluster resides. This field is deprecated, use location instead.
|
1441
1539
|
# Corresponds to the JSON property `zone`
|
1442
1540
|
# @return [String]
|
1443
1541
|
attr_accessor :zone
|
@@ -1450,6 +1548,7 @@ module Google
|
|
1450
1548
|
def update!(**args)
|
1451
1549
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
1452
1550
|
@alpha_cluster_feature_gates = args[:alpha_cluster_feature_gates] if args.key?(:alpha_cluster_feature_gates)
|
1551
|
+
@anonymous_authentication_config = args[:anonymous_authentication_config] if args.key?(:anonymous_authentication_config)
|
1453
1552
|
@authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
|
1454
1553
|
@autopilot = args[:autopilot] if args.key?(:autopilot)
|
1455
1554
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
@@ -1475,6 +1574,7 @@ module Google
|
|
1475
1574
|
@etag = args[:etag] if args.key?(:etag)
|
1476
1575
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1477
1576
|
@fleet = args[:fleet] if args.key?(:fleet)
|
1577
|
+
@gke_auto_upgrade_config = args[:gke_auto_upgrade_config] if args.key?(:gke_auto_upgrade_config)
|
1478
1578
|
@id = args[:id] if args.key?(:id)
|
1479
1579
|
@identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
|
1480
1580
|
@initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
|
@@ -1534,8 +1634,9 @@ module Google
|
|
1534
1634
|
class ClusterAutoscaling
|
1535
1635
|
include Google::Apis::Core::Hashable
|
1536
1636
|
|
1537
|
-
# The list of Google Compute Engine [zones](https
|
1538
|
-
# docs/zones#available) in which the
|
1637
|
+
# The list of Google Compute Engine [zones](https://`$universe.dns_names.
|
1638
|
+
# final_documentation_domain`/compute/docs/zones#available) in which the
|
1639
|
+
# NodePool's nodes can be created by NAP.
|
1539
1640
|
# Corresponds to the JSON property `autoprovisioningLocations`
|
1540
1641
|
# @return [Array<String>]
|
1541
1642
|
attr_accessor :autoprovisioning_locations
|
@@ -1607,17 +1708,34 @@ module Google
|
|
1607
1708
|
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
1608
1709
|
attr_accessor :additional_pod_ranges_config
|
1609
1710
|
|
1711
|
+
# DesiredAdditionalIPRangesConfig is a wrapper used for cluster update operation
|
1712
|
+
# and contains multiple AdditionalIPRangesConfigs.
|
1713
|
+
# Corresponds to the JSON property `desiredAdditionalIpRangesConfig`
|
1714
|
+
# @return [Google::Apis::ContainerV1::DesiredAdditionalIpRangesConfig]
|
1715
|
+
attr_accessor :desired_additional_ip_ranges_config
|
1716
|
+
|
1610
1717
|
# Configuration for the addons that can be automatically spun up in the cluster,
|
1611
1718
|
# enabling additional functionality.
|
1612
1719
|
# Corresponds to the JSON property `desiredAddonsConfig`
|
1613
1720
|
# @return [Google::Apis::ContainerV1::AddonsConfig]
|
1614
1721
|
attr_accessor :desired_addons_config
|
1615
1722
|
|
1723
|
+
# AnonymousAuthenticationConfig defines the settings needed to limit endpoints
|
1724
|
+
# that allow anonymous authentication.
|
1725
|
+
# Corresponds to the JSON property `desiredAnonymousAuthenticationConfig`
|
1726
|
+
# @return [Google::Apis::ContainerV1::AnonymousAuthenticationConfig]
|
1727
|
+
attr_accessor :desired_anonymous_authentication_config
|
1728
|
+
|
1616
1729
|
# Configuration for returning group information from authenticators.
|
1617
1730
|
# Corresponds to the JSON property `desiredAuthenticatorGroupsConfig`
|
1618
1731
|
# @return [Google::Apis::ContainerV1::AuthenticatorGroupsConfig]
|
1619
1732
|
attr_accessor :desired_authenticator_groups_config
|
1620
1733
|
|
1734
|
+
# AutoIpamConfig contains all information related to Auto IPAM
|
1735
|
+
# Corresponds to the JSON property `desiredAutoIpamConfig`
|
1736
|
+
# @return [Google::Apis::ContainerV1::AutoIpamConfig]
|
1737
|
+
attr_accessor :desired_auto_ipam_config
|
1738
|
+
|
1621
1739
|
# WorkloadPolicyConfig is the configuration related to GCW workload policy
|
1622
1740
|
# Corresponds to the JSON property `desiredAutopilotWorkloadPolicyConfig`
|
1623
1741
|
# @return [Google::Apis::ContainerV1::WorkloadPolicyConfig]
|
@@ -1773,11 +1891,11 @@ module Google
|
|
1773
1891
|
# @return [Google::Apis::ContainerV1::IlbSubsettingConfig]
|
1774
1892
|
attr_accessor :desired_l4ilb_subsetting_config
|
1775
1893
|
|
1776
|
-
# The desired list of Google Compute Engine [zones](https
|
1777
|
-
# compute/docs/zones#available) in which the cluster'
|
1778
|
-
# This list must always include the cluster's primary
|
1779
|
-
# cluster locations will update the locations of all
|
1780
|
-
# in nodes being added and/or removed.
|
1894
|
+
# The desired list of Google Compute Engine [zones](https://`$universe.dns_names.
|
1895
|
+
# final_documentation_domain`/compute/docs/zones#available) in which the cluster'
|
1896
|
+
# s nodes should be located. This list must always include the cluster's primary
|
1897
|
+
# zone. Warning: changing cluster locations will update the locations of all
|
1898
|
+
# node pools and will result in nodes being added and/or removed.
|
1781
1899
|
# Corresponds to the JSON property `desiredLocations`
|
1782
1900
|
# @return [Array<String>]
|
1783
1901
|
attr_accessor :desired_locations
|
@@ -1866,9 +1984,10 @@ module Google
|
|
1866
1984
|
|
1867
1985
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
1868
1986
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
1869
|
-
# be according to specifications in https
|
1870
|
-
# firewalls-overview#specifications. A
|
1871
|
-
# specified. Existing tags will be
|
1987
|
+
# be according to specifications in https://`$universe.dns_names.
|
1988
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
1989
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
1990
|
+
# replaced with new values.
|
1872
1991
|
# Corresponds to the JSON property `desiredNodePoolAutoConfigResourceManagerTags`
|
1873
1992
|
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
1874
1993
|
attr_accessor :desired_node_pool_auto_config_resource_manager_tags
|
@@ -1977,6 +2096,12 @@ module Google
|
|
1977
2096
|
# @return [String]
|
1978
2097
|
attr_accessor :desired_stack_type
|
1979
2098
|
|
2099
|
+
# UserManagedKeysConfig holds the resource address to Keys which are used for
|
2100
|
+
# signing certs and token that are used for communication within cluster.
|
2101
|
+
# Corresponds to the JSON property `desiredUserManagedKeysConfig`
|
2102
|
+
# @return [Google::Apis::ContainerV1::UserManagedKeysConfig]
|
2103
|
+
attr_accessor :desired_user_managed_keys_config
|
2104
|
+
|
1980
2105
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
1981
2106
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
1982
2107
|
# controlled by it.
|
@@ -2001,6 +2126,11 @@ module Google
|
|
2001
2126
|
# @return [String]
|
2002
2127
|
attr_accessor :etag
|
2003
2128
|
|
2129
|
+
# GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.
|
2130
|
+
# Corresponds to the JSON property `gkeAutoUpgradeConfig`
|
2131
|
+
# @return [Google::Apis::ContainerV1::GkeAutoUpgradeConfig]
|
2132
|
+
attr_accessor :gke_auto_upgrade_config
|
2133
|
+
|
2004
2134
|
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
2005
2135
|
# ranges supporting the ClusterUpdate message.
|
2006
2136
|
# Corresponds to the JSON property `removedAdditionalPodRangesConfig`
|
@@ -2020,8 +2150,11 @@ module Google
|
|
2020
2150
|
# Update properties of this object
|
2021
2151
|
def update!(**args)
|
2022
2152
|
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
2153
|
+
@desired_additional_ip_ranges_config = args[:desired_additional_ip_ranges_config] if args.key?(:desired_additional_ip_ranges_config)
|
2023
2154
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
2155
|
+
@desired_anonymous_authentication_config = args[:desired_anonymous_authentication_config] if args.key?(:desired_anonymous_authentication_config)
|
2024
2156
|
@desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
|
2157
|
+
@desired_auto_ipam_config = args[:desired_auto_ipam_config] if args.key?(:desired_auto_ipam_config)
|
2025
2158
|
@desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
|
2026
2159
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
2027
2160
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
@@ -2080,10 +2213,12 @@ module Google
|
|
2080
2213
|
@desired_service_external_ips_config = args[:desired_service_external_ips_config] if args.key?(:desired_service_external_ips_config)
|
2081
2214
|
@desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
|
2082
2215
|
@desired_stack_type = args[:desired_stack_type] if args.key?(:desired_stack_type)
|
2216
|
+
@desired_user_managed_keys_config = args[:desired_user_managed_keys_config] if args.key?(:desired_user_managed_keys_config)
|
2083
2217
|
@desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
|
2084
2218
|
@desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
|
2085
2219
|
@enable_k8s_beta_apis = args[:enable_k8s_beta_apis] if args.key?(:enable_k8s_beta_apis)
|
2086
2220
|
@etag = args[:etag] if args.key?(:etag)
|
2221
|
+
@gke_auto_upgrade_config = args[:gke_auto_upgrade_config] if args.key?(:gke_auto_upgrade_config)
|
2087
2222
|
@removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
|
2088
2223
|
@user_managed_keys_config = args[:user_managed_keys_config] if args.key?(:user_managed_keys_config)
|
2089
2224
|
end
|
@@ -2161,15 +2296,17 @@ module Google
|
|
2161
2296
|
attr_accessor :name
|
2162
2297
|
|
2163
2298
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2164
|
-
#
|
2165
|
-
# field has been deprecated and replaced by
|
2299
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2300
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2301
|
+
# the name field.
|
2166
2302
|
# Corresponds to the JSON property `projectId`
|
2167
2303
|
# @return [String]
|
2168
2304
|
attr_accessor :project_id
|
2169
2305
|
|
2170
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
2171
|
-
#
|
2172
|
-
# been deprecated and replaced by the name
|
2306
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2307
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2308
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2309
|
+
# field.
|
2173
2310
|
# Corresponds to the JSON property `zone`
|
2174
2311
|
# @return [String]
|
2175
2312
|
attr_accessor :zone
|
@@ -2395,15 +2532,17 @@ module Google
|
|
2395
2532
|
attr_accessor :parent
|
2396
2533
|
|
2397
2534
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2398
|
-
#
|
2399
|
-
# field has been deprecated and replaced by
|
2535
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2536
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2537
|
+
# the parent field.
|
2400
2538
|
# Corresponds to the JSON property `projectId`
|
2401
2539
|
# @return [String]
|
2402
2540
|
attr_accessor :project_id
|
2403
2541
|
|
2404
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
2405
|
-
#
|
2406
|
-
# been deprecated and replaced by the parent
|
2542
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2543
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2544
|
+
# the cluster resides. This field has been deprecated and replaced by the parent
|
2545
|
+
# field.
|
2407
2546
|
# Corresponds to the JSON property `zone`
|
2408
2547
|
# @return [String]
|
2409
2548
|
attr_accessor :zone
|
@@ -2448,15 +2587,17 @@ module Google
|
|
2448
2587
|
attr_accessor :parent
|
2449
2588
|
|
2450
2589
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2451
|
-
#
|
2452
|
-
# field has been deprecated and replaced by
|
2590
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2591
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2592
|
+
# the parent field.
|
2453
2593
|
# Corresponds to the JSON property `projectId`
|
2454
2594
|
# @return [String]
|
2455
2595
|
attr_accessor :project_id
|
2456
2596
|
|
2457
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
2458
|
-
#
|
2459
|
-
# been deprecated and replaced by the parent
|
2597
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2598
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2599
|
+
# the cluster resides. This field has been deprecated and replaced by the parent
|
2600
|
+
# field.
|
2460
2601
|
# Corresponds to the JSON property `zone`
|
2461
2602
|
# @return [String]
|
2462
2603
|
attr_accessor :zone
|
@@ -2637,6 +2778,27 @@ module Google
|
|
2637
2778
|
end
|
2638
2779
|
end
|
2639
2780
|
|
2781
|
+
# DesiredAdditionalIPRangesConfig is a wrapper used for cluster update operation
|
2782
|
+
# and contains multiple AdditionalIPRangesConfigs.
|
2783
|
+
class DesiredAdditionalIpRangesConfig
|
2784
|
+
include Google::Apis::Core::Hashable
|
2785
|
+
|
2786
|
+
# List of additional IP ranges configs where each AdditionalIPRangesConfig
|
2787
|
+
# corresponds to one subnetwork's IP ranges
|
2788
|
+
# Corresponds to the JSON property `additionalIpRangesConfigs`
|
2789
|
+
# @return [Array<Google::Apis::ContainerV1::AdditionalIpRangesConfig>]
|
2790
|
+
attr_accessor :additional_ip_ranges_configs
|
2791
|
+
|
2792
|
+
def initialize(**args)
|
2793
|
+
update!(**args)
|
2794
|
+
end
|
2795
|
+
|
2796
|
+
# Update properties of this object
|
2797
|
+
def update!(**args)
|
2798
|
+
@additional_ip_ranges_configs = args[:additional_ip_ranges_configs] if args.key?(:additional_ip_ranges_configs)
|
2799
|
+
end
|
2800
|
+
end
|
2801
|
+
|
2640
2802
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
2641
2803
|
class DesiredEnterpriseConfig
|
2642
2804
|
include Google::Apis::Core::Hashable
|
@@ -2732,13 +2894,15 @@ module Google
|
|
2732
2894
|
# used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
|
2733
2895
|
# zero (or unset) means to disable using local SSDs as ephemeral storage. The
|
2734
2896
|
# limit for this value is dependent upon the maximum number of disk available on
|
2735
|
-
# a machine per zone. See: https
|
2736
|
-
# for more information.
|
2737
|
-
#
|
2738
|
-
#
|
2739
|
-
#
|
2740
|
-
# local ssds), 0
|
2741
|
-
#
|
2897
|
+
# a machine per zone. See: https://`$universe.dns_names.
|
2898
|
+
# final_documentation_domain`/compute/docs/disks/local-ssd for more information.
|
2899
|
+
# 2. For Gen3 machines which dictate a specific number of local ssds, zero (or
|
2900
|
+
# unset) means to use the default number of local ssds that goes with that
|
2901
|
+
# machine type. For example, for a c3-standard-8-lssd machine, 2 local ssds
|
2902
|
+
# would be provisioned. For c3-standard-8 (which doesn't support local ssds), 0
|
2903
|
+
# will be provisioned. See https://`$universe.dns_names.
|
2904
|
+
# final_documentation_domain`/compute/docs/disks/local-ssd#
|
2905
|
+
# choose_number_local_ssds for more info.
|
2742
2906
|
# Corresponds to the JSON property `localSsdCount`
|
2743
2907
|
# @return [Fixnum]
|
2744
2908
|
attr_accessor :local_ssd_count
|
@@ -2833,7 +2997,8 @@ module Google
|
|
2833
2997
|
end
|
2834
2998
|
|
2835
2999
|
# GCPSecretManagerCertificateConfig configures a secret from [Google Secret
|
2836
|
-
# Manager](https
|
3000
|
+
# Manager](https://`$universe.dns_names.final_documentation_domain`/secret-
|
3001
|
+
# manager).
|
2837
3002
|
class GcpSecretManagerCertificateConfig
|
2838
3003
|
include Google::Apis::Core::Hashable
|
2839
3004
|
|
@@ -3086,6 +3251,25 @@ module Google
|
|
3086
3251
|
end
|
3087
3252
|
end
|
3088
3253
|
|
3254
|
+
# GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.
|
3255
|
+
class GkeAutoUpgradeConfig
|
3256
|
+
include Google::Apis::Core::Hashable
|
3257
|
+
|
3258
|
+
# PatchMode specifies how auto upgrade patch builds should be selected.
|
3259
|
+
# Corresponds to the JSON property `patchMode`
|
3260
|
+
# @return [String]
|
3261
|
+
attr_accessor :patch_mode
|
3262
|
+
|
3263
|
+
def initialize(**args)
|
3264
|
+
update!(**args)
|
3265
|
+
end
|
3266
|
+
|
3267
|
+
# Update properties of this object
|
3268
|
+
def update!(**args)
|
3269
|
+
@patch_mode = args[:patch_mode] if args.key?(:patch_mode)
|
3270
|
+
end
|
3271
|
+
end
|
3272
|
+
|
3089
3273
|
# Configuration for the Backup for GKE Agent.
|
3090
3274
|
class GkeBackupAgentConfig
|
3091
3275
|
include Google::Apis::Core::Hashable
|
@@ -3106,6 +3290,26 @@ module Google
|
|
3106
3290
|
end
|
3107
3291
|
end
|
3108
3292
|
|
3293
|
+
# Configuration for the High Scale Checkpointing.
|
3294
|
+
class HighScaleCheckpointingConfig
|
3295
|
+
include Google::Apis::Core::Hashable
|
3296
|
+
|
3297
|
+
# Whether the High Scale Checkpointing is enabled for this cluster.
|
3298
|
+
# Corresponds to the JSON property `enabled`
|
3299
|
+
# @return [Boolean]
|
3300
|
+
attr_accessor :enabled
|
3301
|
+
alias_method :enabled?, :enabled
|
3302
|
+
|
3303
|
+
def initialize(**args)
|
3304
|
+
update!(**args)
|
3305
|
+
end
|
3306
|
+
|
3307
|
+
# Update properties of this object
|
3308
|
+
def update!(**args)
|
3309
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3310
|
+
end
|
3311
|
+
end
|
3312
|
+
|
3109
3313
|
# Configuration options for the horizontal pod autoscaling feature, which
|
3110
3314
|
# increases or decreases the number of replica pods a replication controller has
|
3111
3315
|
# based on the resource usage of the existing pods.
|
@@ -3232,12 +3436,25 @@ module Google
|
|
3232
3436
|
class IpAllocationPolicy
|
3233
3437
|
include Google::Apis::Core::Hashable
|
3234
3438
|
|
3439
|
+
# Output only. The additional IP ranges that are added to the cluster. These IP
|
3440
|
+
# ranges can be used by new node pools to allocate node and pod IPs
|
3441
|
+
# automatically. Each AdditionalIPRangesConfig corresponds to a single
|
3442
|
+
# subnetwork. Once a range is removed it will not show up in IPAllocationPolicy.
|
3443
|
+
# Corresponds to the JSON property `additionalIpRangesConfigs`
|
3444
|
+
# @return [Array<Google::Apis::ContainerV1::AdditionalIpRangesConfig>]
|
3445
|
+
attr_accessor :additional_ip_ranges_configs
|
3446
|
+
|
3235
3447
|
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
3236
3448
|
# ranges supporting the ClusterUpdate message.
|
3237
3449
|
# Corresponds to the JSON property `additionalPodRangesConfig`
|
3238
3450
|
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
3239
3451
|
attr_accessor :additional_pod_ranges_config
|
3240
3452
|
|
3453
|
+
# AutoIpamConfig contains all information related to Auto IPAM
|
3454
|
+
# Corresponds to the JSON property `autoIpamConfig`
|
3455
|
+
# @return [Google::Apis::ContainerV1::AutoIpamConfig]
|
3456
|
+
attr_accessor :auto_ipam_config
|
3457
|
+
|
3241
3458
|
# This field is deprecated, use cluster_ipv4_cidr_block.
|
3242
3459
|
# Corresponds to the JSON property `clusterIpv4Cidr`
|
3243
3460
|
# @return [String]
|
@@ -3386,7 +3603,9 @@ module Google
|
|
3386
3603
|
|
3387
3604
|
# Update properties of this object
|
3388
3605
|
def update!(**args)
|
3606
|
+
@additional_ip_ranges_configs = args[:additional_ip_ranges_configs] if args.key?(:additional_ip_ranges_configs)
|
3389
3607
|
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
3608
|
+
@auto_ipam_config = args[:auto_ipam_config] if args.key?(:auto_ipam_config)
|
3390
3609
|
@cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
|
3391
3610
|
@cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
|
3392
3611
|
@cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
|
@@ -3795,17 +4014,18 @@ module Google
|
|
3795
4014
|
include Google::Apis::Core::Hashable
|
3796
4015
|
|
3797
4016
|
# Number of local NVMe SSDs to use. The limit for this value is dependent upon
|
3798
|
-
# the maximum number of disk available on a machine per zone. See: https
|
3799
|
-
#
|
3800
|
-
#
|
3801
|
-
#
|
3802
|
-
# means to disable using local SSDs as
|
3803
|
-
# which dictate a specific number of
|
3804
|
-
# the default number of local ssds that
|
3805
|
-
# for a c3-standard-8-lssd machine, 2
|
3806
|
-
# standard-8 (which doesn't support
|
3807
|
-
# https
|
3808
|
-
#
|
4017
|
+
# the maximum number of disk available on a machine per zone. See: https://`$
|
4018
|
+
# universe.dns_names.final_documentation_domain`/compute/docs/disks/local-ssd
|
4019
|
+
# for more information. A zero (or unset) value has different meanings depending
|
4020
|
+
# on machine type being used: 1. For pre-Gen3 machines, which support flexible
|
4021
|
+
# numbers of local ssds, zero (or unset) means to disable using local SSDs as
|
4022
|
+
# ephemeral storage. 2. For Gen3 machines which dictate a specific number of
|
4023
|
+
# local ssds, zero (or unset) means to use the default number of local ssds that
|
4024
|
+
# goes with that machine type. For example, for a c3-standard-8-lssd machine, 2
|
4025
|
+
# local ssds would be provisioned. For c3-standard-8 (which doesn't support
|
4026
|
+
# local ssds), 0 will be provisioned. See https://`$universe.dns_names.
|
4027
|
+
# final_documentation_domain`/compute/docs/disks/local-ssd#
|
4028
|
+
# choose_number_local_ssds for more info.
|
3809
4029
|
# Corresponds to the JSON property `localSsdCount`
|
3810
4030
|
# @return [Fixnum]
|
3811
4031
|
attr_accessor :local_ssd_count
|
@@ -4018,8 +4238,9 @@ module Google
|
|
4018
4238
|
# strong password. If a password is provided for cluster creation, username must
|
4019
4239
|
# be non-empty. Warning: basic authentication is deprecated, and will be removed
|
4020
4240
|
# in GKE control plane versions 1.19 and newer. For a list of recommended
|
4021
|
-
# authentication methods, see: https
|
4022
|
-
# how-to/api-server-
|
4241
|
+
# authentication methods, see: https://`$universe.dns_names.
|
4242
|
+
# final_documentation_domain`/kubernetes-engine/docs/how-to/api-server-
|
4243
|
+
# authentication
|
4023
4244
|
# Corresponds to the JSON property `password`
|
4024
4245
|
# @return [String]
|
4025
4246
|
attr_accessor :password
|
@@ -4029,8 +4250,8 @@ module Google
|
|
4029
4250
|
# username unspecified (or setting it to the empty string). Warning: basic
|
4030
4251
|
# authentication is deprecated, and will be removed in GKE control plane
|
4031
4252
|
# versions 1.19 and newer. For a list of recommended authentication methods, see:
|
4032
|
-
# https
|
4033
|
-
# authentication
|
4253
|
+
# https://`$universe.dns_names.final_documentation_domain`/kubernetes-engine/
|
4254
|
+
# docs/how-to/api-server-authentication
|
4034
4255
|
# Corresponds to the JSON property `username`
|
4035
4256
|
# @return [String]
|
4036
4257
|
attr_accessor :username
|
@@ -4328,9 +4549,10 @@ module Google
|
|
4328
4549
|
# @return [String]
|
4329
4550
|
attr_accessor :in_transit_encryption_config
|
4330
4551
|
|
4331
|
-
# Output only. The relative name of the Google Compute Engine [network](https
|
4332
|
-
#
|
4333
|
-
# cluster is connected. Example: projects/my-
|
4552
|
+
# Output only. The relative name of the Google Compute Engine [network](https://`
|
4553
|
+
# $universe.dns_names.final_documentation_domain`/compute/docs/networks-and-
|
4554
|
+
# firewalls#networks) to which the cluster is connected. Example: projects/my-
|
4555
|
+
# project/global/networks/my-network
|
4334
4556
|
# Corresponds to the JSON property `network`
|
4335
4557
|
# @return [String]
|
4336
4558
|
attr_accessor :network
|
@@ -4352,8 +4574,9 @@ module Google
|
|
4352
4574
|
attr_accessor :service_external_ips_config
|
4353
4575
|
|
4354
4576
|
# Output only. The relative name of the Google Compute Engine [subnetwork](https:
|
4355
|
-
#
|
4356
|
-
# Example: projects/my-project/regions/us-central1/
|
4577
|
+
# //`$universe.dns_names.final_documentation_domain`/compute/docs/vpc) to which
|
4578
|
+
# the cluster is connected. Example: projects/my-project/regions/us-central1/
|
4579
|
+
# subnetworks/my-subnet
|
4357
4580
|
# Corresponds to the JSON property `subnetwork`
|
4358
4581
|
# @return [String]
|
4359
4582
|
attr_accessor :subnetwork
|
@@ -4473,8 +4696,9 @@ module Google
|
|
4473
4696
|
end
|
4474
4697
|
|
4475
4698
|
# Specifies the NodeAffinity key, values, and affinity operator according to [
|
4476
|
-
# shared sole tenant node group affinities](https
|
4477
|
-
# docs/nodes/sole-tenant-nodes#
|
4699
|
+
# shared sole tenant node group affinities](https://`$universe.dns_names.
|
4700
|
+
# final_documentation_domain`/compute/docs/nodes/sole-tenant-nodes#
|
4701
|
+
# node_affinity_and_anti-affinity).
|
4478
4702
|
class NodeAffinity
|
4479
4703
|
include Google::Apis::Core::Hashable
|
4480
4704
|
|
@@ -4511,8 +4735,9 @@ module Google
|
|
4511
4735
|
class NodeConfig
|
4512
4736
|
include Google::Apis::Core::Hashable
|
4513
4737
|
|
4514
|
-
# A list of hardware accelerators to be attached to each node. See https
|
4515
|
-
#
|
4738
|
+
# A list of hardware accelerators to be attached to each node. See https://`$
|
4739
|
+
# universe.dns_names.final_documentation_domain`/compute/docs/gpus for more
|
4740
|
+
# information about support for GPUs.
|
4516
4741
|
# Corresponds to the JSON property `accelerators`
|
4517
4742
|
# @return [Array<Google::Apis::ContainerV1::AcceleratorConfig>]
|
4518
4743
|
attr_accessor :accelerators
|
@@ -4526,7 +4751,8 @@ module Google
|
|
4526
4751
|
# each node in the node pool. This should be of the form projects/[
|
4527
4752
|
# KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
|
4528
4753
|
# . For more information about protecting resources with Cloud KMS Keys please
|
4529
|
-
# see: https
|
4754
|
+
# see: https://`$universe.dns_names.final_documentation_domain`/compute/docs/
|
4755
|
+
# disks/customer-managed-encryption
|
4530
4756
|
# Corresponds to the JSON property `bootDiskKmsKey`
|
4531
4757
|
# @return [String]
|
4532
4758
|
attr_accessor :boot_disk_kms_key
|
@@ -4597,8 +4823,9 @@ module Google
|
|
4597
4823
|
attr_accessor :gvnic
|
4598
4824
|
|
4599
4825
|
# The image type to use for this node. Note that for a given image type, the
|
4600
|
-
# latest version of it will be used. Please see https
|
4601
|
-
# kubernetes-engine/docs/concepts/node-images for
|
4826
|
+
# latest version of it will be used. Please see https://`$universe.dns_names.
|
4827
|
+
# final_documentation_domain`/kubernetes-engine/docs/concepts/node-images for
|
4828
|
+
# available image types.
|
4602
4829
|
# Corresponds to the JSON property `imageType`
|
4603
4830
|
# @return [String]
|
4604
4831
|
attr_accessor :image_type
|
@@ -4632,8 +4859,8 @@ module Google
|
|
4632
4859
|
|
4633
4860
|
# The number of local SSD disks to be attached to the node. The limit for this
|
4634
4861
|
# value is dependent upon the maximum number of disks available on a machine per
|
4635
|
-
# zone. See: https
|
4636
|
-
# information.
|
4862
|
+
# zone. See: https://`$universe.dns_names.final_documentation_domain`/compute/
|
4863
|
+
# docs/disks/local-ssd for more information.
|
4637
4864
|
# Corresponds to the JSON property `localSsdCount`
|
4638
4865
|
# @return [Fixnum]
|
4639
4866
|
attr_accessor :local_ssd_count
|
@@ -4649,9 +4876,9 @@ module Google
|
|
4649
4876
|
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
4650
4877
|
attr_accessor :logging_config
|
4651
4878
|
|
4652
|
-
# The name of a Google Compute Engine [machine type](https
|
4653
|
-
# compute/docs/machine-types) If
|
4654
|
-
# medium`.
|
4879
|
+
# The name of a Google Compute Engine [machine type](https://`$universe.
|
4880
|
+
# dns_names.final_documentation_domain`/compute/docs/machine-types) If
|
4881
|
+
# unspecified, the default machine type is `e2-medium`.
|
4655
4882
|
# Corresponds to the JSON property `machineType`
|
4656
4883
|
# @return [String]
|
4657
4884
|
attr_accessor :machine_type
|
@@ -4684,15 +4911,16 @@ module Google
|
|
4684
4911
|
# scheduled on the specified or newer CPU platform. Applicable values are the
|
4685
4912
|
# friendly names of CPU platforms, such as `minCpuPlatform: "Intel Haswell"` or `
|
4686
4913
|
# minCpuPlatform: "Intel Sandy Bridge"`. For more information, read [how to
|
4687
|
-
# specify min CPU platform](https
|
4688
|
-
# specify-min-cpu-platform)
|
4914
|
+
# specify min CPU platform](https://`$universe.dns_names.
|
4915
|
+
# final_documentation_domain`/compute/docs/instances/specify-min-cpu-platform)
|
4689
4916
|
# Corresponds to the JSON property `minCpuPlatform`
|
4690
4917
|
# @return [String]
|
4691
4918
|
attr_accessor :min_cpu_platform
|
4692
4919
|
|
4693
4920
|
# Setting this field will assign instances of this pool to run on the specified
|
4694
4921
|
# node group. This is useful for running workloads on [sole tenant nodes](https:/
|
4695
|
-
#
|
4922
|
+
# /`$universe.dns_names.final_documentation_domain`/compute/docs/nodes/sole-
|
4923
|
+
# tenant-nodes).
|
4696
4924
|
# Corresponds to the JSON property `nodeGroup`
|
4697
4925
|
# @return [String]
|
4698
4926
|
attr_accessor :node_group
|
@@ -4702,25 +4930,25 @@ module Google
|
|
4702
4930
|
# required, and by default are not included: * `https://www.googleapis.com/auth/
|
4703
4931
|
# compute` is required for mounting persistent storage on your nodes. * `https://
|
4704
4932
|
# www.googleapis.com/auth/devstorage.read_only` is required for communicating
|
4705
|
-
# with **gcr.io** (the [Google Container Registry](https
|
4706
|
-
# container-registry/)). If unspecified, no scopes
|
4707
|
-
# Logging or Cloud Monitoring are enabled, in which case
|
4708
|
-
# will be added.
|
4933
|
+
# with **gcr.io** (the [Google Container Registry](https://`$universe.dns_names.
|
4934
|
+
# final_documentation_domain`/container-registry/)). If unspecified, no scopes
|
4935
|
+
# are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case
|
4936
|
+
# their required scopes will be added.
|
4709
4937
|
# Corresponds to the JSON property `oauthScopes`
|
4710
4938
|
# @return [Array<String>]
|
4711
4939
|
attr_accessor :oauth_scopes
|
4712
4940
|
|
4713
|
-
# Whether the nodes are created as preemptible VM instances. See: https
|
4714
|
-
#
|
4715
|
-
# preemptible VM instances.
|
4941
|
+
# Whether the nodes are created as preemptible VM instances. See: https://`$
|
4942
|
+
# universe.dns_names.final_documentation_domain`/compute/docs/instances/
|
4943
|
+
# preemptible for more information about preemptible VM instances.
|
4716
4944
|
# Corresponds to the JSON property `preemptible`
|
4717
4945
|
# @return [Boolean]
|
4718
4946
|
attr_accessor :preemptible
|
4719
4947
|
alias_method :preemptible?, :preemptible
|
4720
4948
|
|
4721
|
-
# [ReservationAffinity](https
|
4722
|
-
# reserving-zonal-resources) is the configuration of
|
4723
|
-
# instances could take capacity from.
|
4949
|
+
# [ReservationAffinity](https://`$universe.dns_names.final_documentation_domain`/
|
4950
|
+
# compute/docs/instances/reserving-zonal-resources) is the configuration of
|
4951
|
+
# desired reservation which instances could take capacity from.
|
4724
4952
|
# Corresponds to the JSON property `reservationAffinity`
|
4725
4953
|
# @return [Google::Apis::ContainerV1::ReservationAffinity]
|
4726
4954
|
attr_accessor :reservation_affinity
|
@@ -4733,9 +4961,10 @@ module Google
|
|
4733
4961
|
|
4734
4962
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
4735
4963
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
4736
|
-
# be according to specifications in https
|
4737
|
-
# firewalls-overview#specifications. A
|
4738
|
-
# specified. Existing tags will be
|
4964
|
+
# be according to specifications in https://`$universe.dns_names.
|
4965
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
4966
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
4967
|
+
# replaced with new values.
|
4739
4968
|
# Corresponds to the JSON property `resourceManagerTags`
|
4740
4969
|
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
4741
4970
|
attr_accessor :resource_manager_tags
|
@@ -5253,27 +5482,30 @@ module Google
|
|
5253
5482
|
attr_accessor :etag
|
5254
5483
|
|
5255
5484
|
# The initial node count for the pool. You must ensure that your Compute Engine [
|
5256
|
-
# resource quota](https
|
5257
|
-
# this number of instances. You must also have
|
5258
|
-
# quota.
|
5485
|
+
# resource quota](https://`$universe.dns_names.final_documentation_domain`/
|
5486
|
+
# compute/quotas) is sufficient for this number of instances. You must also have
|
5487
|
+
# available firewall and routes quota.
|
5259
5488
|
# Corresponds to the JSON property `initialNodeCount`
|
5260
5489
|
# @return [Fixnum]
|
5261
5490
|
attr_accessor :initial_node_count
|
5262
5491
|
|
5263
|
-
# Output only. The resource URLs of the [managed instance groups](https
|
5264
|
-
#
|
5265
|
-
# associated with this node pool. During
|
5266
|
-
# operation, the URLs contain both blue and
|
5492
|
+
# Output only. The resource URLs of the [managed instance groups](https://`$
|
5493
|
+
# universe.dns_names.final_documentation_domain`/compute/docs/instance-groups/
|
5494
|
+
# creating-groups-of-managed-instances) associated with this node pool. During
|
5495
|
+
# the node pool blue-green upgrade operation, the URLs contain both blue and
|
5496
|
+
# green resources.
|
5267
5497
|
# Corresponds to the JSON property `instanceGroupUrls`
|
5268
5498
|
# @return [Array<String>]
|
5269
5499
|
attr_accessor :instance_group_urls
|
5270
5500
|
|
5271
|
-
# The list of Google Compute Engine [zones](https
|
5272
|
-
# docs/zones#available) in which the
|
5273
|
-
# value is unspecified during node
|
5274
|
-
#
|
5275
|
-
#
|
5276
|
-
#
|
5501
|
+
# The list of Google Compute Engine [zones](https://`$universe.dns_names.
|
5502
|
+
# final_documentation_domain`/compute/docs/zones#available) in which the
|
5503
|
+
# NodePool's nodes should be located. If this value is unspecified during node
|
5504
|
+
# pool creation, the [Cluster.Locations](https://`$universe.dns_names.
|
5505
|
+
# final_documentation_domain`/kubernetes-engine/docs/reference/rest/v1/projects.
|
5506
|
+
# locations.clusters#Cluster.FIELDS.locations) value will be used, instead.
|
5507
|
+
# Warning: changing node pool locations will result in nodes being added and/or
|
5508
|
+
# removed.
|
5277
5509
|
# Corresponds to the JSON property `locations`
|
5278
5510
|
# @return [Array<String>]
|
5279
5511
|
attr_accessor :locations
|
@@ -5372,8 +5604,9 @@ module Google
|
|
5372
5604
|
attr_accessor :upgrade_settings
|
5373
5605
|
|
5374
5606
|
# The version of Kubernetes running on this NodePool's nodes. If unspecified, it
|
5375
|
-
# defaults as described [here](https
|
5376
|
-
# versioning#
|
5607
|
+
# defaults as described [here](https://`$universe.dns_names.
|
5608
|
+
# final_documentation_domain`/kubernetes-engine/versioning#
|
5609
|
+
# specifying_node_version).
|
5377
5610
|
# Corresponds to the JSON property `version`
|
5378
5611
|
# @return [String]
|
5379
5612
|
attr_accessor :version
|
@@ -5432,9 +5665,10 @@ module Google
|
|
5432
5665
|
|
5433
5666
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
5434
5667
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
5435
|
-
# be according to specifications in https
|
5436
|
-
# firewalls-overview#specifications. A
|
5437
|
-
# specified. Existing tags will be
|
5668
|
+
# be according to specifications in https://`$universe.dns_names.
|
5669
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
5670
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
5671
|
+
# replaced with new values.
|
5438
5672
|
# Corresponds to the JSON property `resourceManagerTags`
|
5439
5673
|
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
5440
5674
|
attr_accessor :resource_manager_tags
|
@@ -5715,10 +5949,11 @@ module Google
|
|
5715
5949
|
# @return [Google::Apis::ContainerV1::Status]
|
5716
5950
|
attr_accessor :error
|
5717
5951
|
|
5718
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
5719
|
-
#
|
5720
|
-
#
|
5721
|
-
# the cluster
|
5952
|
+
# Output only. The name of the Google Compute Engine [zone](https://`$universe.
|
5953
|
+
# dns_names.final_documentation_domain`/compute/docs/regions-zones/regions-zones#
|
5954
|
+
# available) or [region](https://`$universe.dns_names.final_documentation_domain`
|
5955
|
+
# /compute/docs/regions-zones/regions-zones#available) in which the cluster
|
5956
|
+
# resides.
|
5722
5957
|
# Corresponds to the JSON property `location`
|
5723
5958
|
# @return [String]
|
5724
5959
|
attr_accessor :location
|
@@ -5780,9 +6015,9 @@ module Google
|
|
5780
6015
|
# @return [String]
|
5781
6016
|
attr_accessor :target_link
|
5782
6017
|
|
5783
|
-
# Output only. The name of the Google Compute Engine [zone](https
|
5784
|
-
#
|
5785
|
-
# field is deprecated, use location instead.
|
6018
|
+
# Output only. The name of the Google Compute Engine [zone](https://`$universe.
|
6019
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
6020
|
+
# the operation is taking place. This field is deprecated, use location instead.
|
5786
6021
|
# Corresponds to the JSON property `zone`
|
5787
6022
|
# @return [String]
|
5788
6023
|
attr_accessor :zone
|
@@ -5941,8 +6176,8 @@ module Google
|
|
5941
6176
|
# @return [String]
|
5942
6177
|
attr_accessor :policy_name
|
5943
6178
|
|
5944
|
-
# Optional. TPU placement topology for pod slice node pool. https
|
5945
|
-
#
|
6179
|
+
# Optional. TPU placement topology for pod slice node pool. https://`$universe.
|
6180
|
+
# dns_names.final_documentation_domain`/tpu/docs/types-topologies#tpu_topologies
|
5946
6181
|
# Corresponds to the JSON property `tpuTopology`
|
5947
6182
|
# @return [String]
|
5948
6183
|
attr_accessor :tpu_topology
|
@@ -6413,9 +6648,9 @@ module Google
|
|
6413
6648
|
end
|
6414
6649
|
end
|
6415
6650
|
|
6416
|
-
# [ReservationAffinity](https
|
6417
|
-
# reserving-zonal-resources) is the configuration of
|
6418
|
-
# instances could take capacity from.
|
6651
|
+
# [ReservationAffinity](https://`$universe.dns_names.final_documentation_domain`/
|
6652
|
+
# compute/docs/instances/reserving-zonal-resources) is the configuration of
|
6653
|
+
# desired reservation which instances could take capacity from.
|
6419
6654
|
class ReservationAffinity
|
6420
6655
|
include Google::Apis::Core::Hashable
|
6421
6656
|
|
@@ -6448,8 +6683,8 @@ module Google
|
|
6448
6683
|
end
|
6449
6684
|
end
|
6450
6685
|
|
6451
|
-
# Collection of [GCP labels](https
|
6452
|
-
# creating-managing-labels).
|
6686
|
+
# Collection of [GCP labels](https://`$universe.dns_names.
|
6687
|
+
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
6453
6688
|
class ResourceLabels
|
6454
6689
|
include Google::Apis::Core::Hashable
|
6455
6690
|
|
@@ -6502,9 +6737,10 @@ module Google
|
|
6502
6737
|
|
6503
6738
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
6504
6739
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
6505
|
-
# be according to specifications in https
|
6506
|
-
# firewalls-overview#specifications. A
|
6507
|
-
# specified. Existing tags will be
|
6740
|
+
# be according to specifications in https://`$universe.dns_names.
|
6741
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
6742
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
6743
|
+
# replaced with new values.
|
6508
6744
|
class ResourceManagerTags
|
6509
6745
|
include Google::Apis::Core::Hashable
|
6510
6746
|
|
@@ -6584,8 +6820,9 @@ module Google
|
|
6584
6820
|
attr_accessor :node_pool_id
|
6585
6821
|
|
6586
6822
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
6587
|
-
#
|
6588
|
-
# field has been deprecated and replaced by
|
6823
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
6824
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
6825
|
+
# the name field.
|
6589
6826
|
# Corresponds to the JSON property `projectId`
|
6590
6827
|
# @return [String]
|
6591
6828
|
attr_accessor :project_id
|
@@ -6596,9 +6833,10 @@ module Google
|
|
6596
6833
|
attr_accessor :respect_pdb
|
6597
6834
|
alias_method :respect_pdb?, :respect_pdb
|
6598
6835
|
|
6599
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
6600
|
-
#
|
6601
|
-
# been deprecated and replaced by the name
|
6836
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
6837
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
6838
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
6839
|
+
# field.
|
6602
6840
|
# Corresponds to the JSON property `zone`
|
6603
6841
|
# @return [String]
|
6604
6842
|
attr_accessor :zone
|
@@ -6904,15 +7142,17 @@ module Google
|
|
6904
7142
|
attr_accessor :name
|
6905
7143
|
|
6906
7144
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
6907
|
-
#
|
6908
|
-
# field has been deprecated and replaced by
|
7145
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7146
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7147
|
+
# the name field.
|
6909
7148
|
# Corresponds to the JSON property `projectId`
|
6910
7149
|
# @return [String]
|
6911
7150
|
attr_accessor :project_id
|
6912
7151
|
|
6913
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
6914
|
-
#
|
6915
|
-
# been deprecated and replaced by the name
|
7152
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7153
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7154
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7155
|
+
# field.
|
6916
7156
|
# Corresponds to the JSON property `zone`
|
6917
7157
|
# @return [String]
|
6918
7158
|
attr_accessor :zone
|
@@ -6959,8 +7199,9 @@ module Google
|
|
6959
7199
|
attr_accessor :name
|
6960
7200
|
|
6961
7201
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
6962
|
-
#
|
6963
|
-
# field has been deprecated and replaced by
|
7202
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7203
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7204
|
+
# the name field.
|
6964
7205
|
# Corresponds to the JSON property `projectId`
|
6965
7206
|
# @return [String]
|
6966
7207
|
attr_accessor :project_id
|
@@ -6970,9 +7211,10 @@ module Google
|
|
6970
7211
|
# @return [Hash<String,String>]
|
6971
7212
|
attr_accessor :resource_labels
|
6972
7213
|
|
6973
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
6974
|
-
#
|
6975
|
-
# been deprecated and replaced by the name
|
7214
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7215
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7216
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7217
|
+
# field.
|
6976
7218
|
# Corresponds to the JSON property `zone`
|
6977
7219
|
# @return [String]
|
6978
7220
|
attr_accessor :zone
|
@@ -7016,15 +7258,17 @@ module Google
|
|
7016
7258
|
attr_accessor :name
|
7017
7259
|
|
7018
7260
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7019
|
-
#
|
7020
|
-
# field has been deprecated and replaced by
|
7261
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7262
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7263
|
+
# the name field.
|
7021
7264
|
# Corresponds to the JSON property `projectId`
|
7022
7265
|
# @return [String]
|
7023
7266
|
attr_accessor :project_id
|
7024
7267
|
|
7025
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7026
|
-
#
|
7027
|
-
# been deprecated and replaced by the name
|
7268
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7269
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7270
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7271
|
+
# field.
|
7028
7272
|
# Corresponds to the JSON property `zone`
|
7029
7273
|
# @return [String]
|
7030
7274
|
attr_accessor :zone
|
@@ -7053,12 +7297,12 @@ module Google
|
|
7053
7297
|
# @return [String]
|
7054
7298
|
attr_accessor :cluster_id
|
7055
7299
|
|
7056
|
-
# Required. The desired list of Google Compute Engine [zones](https
|
7057
|
-
#
|
7058
|
-
# be located. Changing the locations a cluster is in
|
7059
|
-
# either created or removed from the cluster,
|
7060
|
-
# being added or removed. This list must
|
7061
|
-
# zone.
|
7300
|
+
# Required. The desired list of Google Compute Engine [zones](https://`$universe.
|
7301
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7302
|
+
# the cluster's nodes should be located. Changing the locations a cluster is in
|
7303
|
+
# will result in nodes being either created or removed from the cluster,
|
7304
|
+
# depending on whether locations are being added or removed. This list must
|
7305
|
+
# always include the cluster's primary zone.
|
7062
7306
|
# Corresponds to the JSON property `locations`
|
7063
7307
|
# @return [Array<String>]
|
7064
7308
|
attr_accessor :locations
|
@@ -7070,15 +7314,17 @@ module Google
|
|
7070
7314
|
attr_accessor :name
|
7071
7315
|
|
7072
7316
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7073
|
-
#
|
7074
|
-
# field has been deprecated and replaced by
|
7317
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7318
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7319
|
+
# the name field.
|
7075
7320
|
# Corresponds to the JSON property `projectId`
|
7076
7321
|
# @return [String]
|
7077
7322
|
attr_accessor :project_id
|
7078
7323
|
|
7079
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7080
|
-
#
|
7081
|
-
# been deprecated and replaced by the name
|
7324
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7325
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7326
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7327
|
+
# field.
|
7082
7328
|
# Corresponds to the JSON property `zone`
|
7083
7329
|
# @return [String]
|
7084
7330
|
attr_accessor :zone
|
@@ -7125,15 +7371,17 @@ module Google
|
|
7125
7371
|
attr_accessor :name
|
7126
7372
|
|
7127
7373
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7128
|
-
#
|
7129
|
-
# field has been deprecated and replaced by
|
7374
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7375
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7376
|
+
# the name field.
|
7130
7377
|
# Corresponds to the JSON property `projectId`
|
7131
7378
|
# @return [String]
|
7132
7379
|
attr_accessor :project_id
|
7133
7380
|
|
7134
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7135
|
-
#
|
7136
|
-
# been deprecated and replaced by the name
|
7381
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7382
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7383
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7384
|
+
# field.
|
7137
7385
|
# Corresponds to the JSON property `zone`
|
7138
7386
|
# @return [String]
|
7139
7387
|
attr_accessor :zone
|
@@ -7173,13 +7421,15 @@ module Google
|
|
7173
7421
|
attr_accessor :name
|
7174
7422
|
|
7175
7423
|
# Required. The Google Developers Console [project ID or project number](https://
|
7176
|
-
#
|
7424
|
+
# `$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7425
|
+
# creating-managing-projects).
|
7177
7426
|
# Corresponds to the JSON property `projectId`
|
7178
7427
|
# @return [String]
|
7179
7428
|
attr_accessor :project_id
|
7180
7429
|
|
7181
|
-
# Required. The name of the Google Compute Engine [zone](https
|
7182
|
-
#
|
7430
|
+
# Required. The name of the Google Compute Engine [zone](https://`$universe.
|
7431
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7432
|
+
# the cluster resides.
|
7183
7433
|
# Corresponds to the JSON property `zone`
|
7184
7434
|
# @return [String]
|
7185
7435
|
attr_accessor :zone
|
@@ -7220,8 +7470,9 @@ module Google
|
|
7220
7470
|
attr_accessor :name
|
7221
7471
|
|
7222
7472
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7223
|
-
#
|
7224
|
-
# field has been deprecated and replaced by
|
7473
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7474
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7475
|
+
# the name field.
|
7225
7476
|
# Corresponds to the JSON property `projectId`
|
7226
7477
|
# @return [String]
|
7227
7478
|
attr_accessor :project_id
|
@@ -7232,9 +7483,10 @@ module Google
|
|
7232
7483
|
# @return [Google::Apis::ContainerV1::MasterAuth]
|
7233
7484
|
attr_accessor :update
|
7234
7485
|
|
7235
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7236
|
-
#
|
7237
|
-
# been deprecated and replaced by the name
|
7486
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7487
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7488
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7489
|
+
# field.
|
7238
7490
|
# Corresponds to the JSON property `zone`
|
7239
7491
|
# @return [String]
|
7240
7492
|
attr_accessor :zone
|
@@ -7282,15 +7534,17 @@ module Google
|
|
7282
7534
|
attr_accessor :name
|
7283
7535
|
|
7284
7536
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7285
|
-
#
|
7286
|
-
# field has been deprecated and replaced by
|
7537
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7538
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7539
|
+
# the name field.
|
7287
7540
|
# Corresponds to the JSON property `projectId`
|
7288
7541
|
# @return [String]
|
7289
7542
|
attr_accessor :project_id
|
7290
7543
|
|
7291
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7292
|
-
#
|
7293
|
-
# been deprecated and replaced by the name
|
7544
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7545
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7546
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7547
|
+
# field.
|
7294
7548
|
# Corresponds to the JSON property `zone`
|
7295
7549
|
# @return [String]
|
7296
7550
|
attr_accessor :zone
|
@@ -7332,15 +7586,17 @@ module Google
|
|
7332
7586
|
attr_accessor :network_policy
|
7333
7587
|
|
7334
7588
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7335
|
-
#
|
7336
|
-
# field has been deprecated and replaced by
|
7589
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7590
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7591
|
+
# the name field.
|
7337
7592
|
# Corresponds to the JSON property `projectId`
|
7338
7593
|
# @return [String]
|
7339
7594
|
attr_accessor :project_id
|
7340
7595
|
|
7341
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7342
|
-
#
|
7343
|
-
# been deprecated and replaced by the name
|
7596
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7597
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7598
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7599
|
+
# field.
|
7344
7600
|
# Corresponds to the JSON property `zone`
|
7345
7601
|
# @return [String]
|
7346
7602
|
attr_accessor :zone
|
@@ -7389,15 +7645,17 @@ module Google
|
|
7389
7645
|
attr_accessor :node_pool_id
|
7390
7646
|
|
7391
7647
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7392
|
-
#
|
7393
|
-
# field has been deprecated and replaced by
|
7648
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7649
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7650
|
+
# the name field.
|
7394
7651
|
# Corresponds to the JSON property `projectId`
|
7395
7652
|
# @return [String]
|
7396
7653
|
attr_accessor :project_id
|
7397
7654
|
|
7398
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7399
|
-
#
|
7400
|
-
# been deprecated and replaced by the name
|
7655
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7656
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7657
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7658
|
+
# field.
|
7401
7659
|
# Corresponds to the JSON property `zone`
|
7402
7660
|
# @return [String]
|
7403
7661
|
attr_accessor :zone
|
@@ -7448,15 +7706,17 @@ module Google
|
|
7448
7706
|
attr_accessor :node_pool_id
|
7449
7707
|
|
7450
7708
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7451
|
-
#
|
7452
|
-
# field has been deprecated and replaced by
|
7709
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7710
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7711
|
+
# the name field.
|
7453
7712
|
# Corresponds to the JSON property `projectId`
|
7454
7713
|
# @return [String]
|
7455
7714
|
attr_accessor :project_id
|
7456
7715
|
|
7457
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7458
|
-
#
|
7459
|
-
# been deprecated and replaced by the name
|
7716
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7717
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7718
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7719
|
+
# field.
|
7460
7720
|
# Corresponds to the JSON property `zone`
|
7461
7721
|
# @return [String]
|
7462
7722
|
attr_accessor :zone
|
@@ -7504,15 +7764,17 @@ module Google
|
|
7504
7764
|
attr_accessor :node_pool_id
|
7505
7765
|
|
7506
7766
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7507
|
-
#
|
7508
|
-
# field has been deprecated and replaced by
|
7767
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7768
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7769
|
+
# the name field.
|
7509
7770
|
# Corresponds to the JSON property `projectId`
|
7510
7771
|
# @return [String]
|
7511
7772
|
attr_accessor :project_id
|
7512
7773
|
|
7513
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7514
|
-
#
|
7515
|
-
# been deprecated and replaced by the name
|
7774
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7775
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7776
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7777
|
+
# field.
|
7516
7778
|
# Corresponds to the JSON property `zone`
|
7517
7779
|
# @return [String]
|
7518
7780
|
attr_accessor :zone
|
@@ -7656,8 +7918,9 @@ module Google
|
|
7656
7918
|
attr_accessor :name
|
7657
7919
|
|
7658
7920
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7659
|
-
#
|
7660
|
-
# field has been deprecated and replaced by
|
7921
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
7922
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
7923
|
+
# the name field.
|
7661
7924
|
# Corresponds to the JSON property `projectId`
|
7662
7925
|
# @return [String]
|
7663
7926
|
attr_accessor :project_id
|
@@ -7668,9 +7931,10 @@ module Google
|
|
7668
7931
|
attr_accessor :rotate_credentials
|
7669
7932
|
alias_method :rotate_credentials?, :rotate_credentials
|
7670
7933
|
|
7671
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7672
|
-
#
|
7673
|
-
# been deprecated and replaced by the name
|
7934
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
7935
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
7936
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
7937
|
+
# field.
|
7674
7938
|
# Corresponds to the JSON property `zone`
|
7675
7939
|
# @return [String]
|
7676
7940
|
attr_accessor :zone
|
@@ -7872,8 +8136,9 @@ module Google
|
|
7872
8136
|
attr_accessor :name
|
7873
8137
|
|
7874
8138
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7875
|
-
#
|
7876
|
-
# field has been deprecated and replaced by
|
8139
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8140
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8141
|
+
# the name field.
|
7877
8142
|
# Corresponds to the JSON property `projectId`
|
7878
8143
|
# @return [String]
|
7879
8144
|
attr_accessor :project_id
|
@@ -7884,9 +8149,10 @@ module Google
|
|
7884
8149
|
# @return [Google::Apis::ContainerV1::ClusterUpdate]
|
7885
8150
|
attr_accessor :update
|
7886
8151
|
|
7887
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7888
|
-
#
|
7889
|
-
# been deprecated and replaced by the name
|
8152
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8153
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8154
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8155
|
+
# field.
|
7890
8156
|
# Corresponds to the JSON property `zone`
|
7891
8157
|
# @return [String]
|
7892
8158
|
attr_accessor :zone
|
@@ -7953,15 +8219,17 @@ module Google
|
|
7953
8219
|
attr_accessor :name
|
7954
8220
|
|
7955
8221
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
7956
|
-
#
|
7957
|
-
# field has been deprecated and replaced by
|
8222
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8223
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8224
|
+
# the name field.
|
7958
8225
|
# Corresponds to the JSON property `projectId`
|
7959
8226
|
# @return [String]
|
7960
8227
|
attr_accessor :project_id
|
7961
8228
|
|
7962
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
7963
|
-
#
|
7964
|
-
# been deprecated and replaced by the name
|
8229
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8230
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8231
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8232
|
+
# field.
|
7965
8233
|
# Corresponds to the JSON property `zone`
|
7966
8234
|
# @return [String]
|
7967
8235
|
attr_accessor :zone
|
@@ -7984,8 +8252,9 @@ module Google
|
|
7984
8252
|
class UpdateNodePoolRequest
|
7985
8253
|
include Google::Apis::Core::Hashable
|
7986
8254
|
|
7987
|
-
# A list of hardware accelerators to be attached to each node. See https
|
7988
|
-
#
|
8255
|
+
# A list of hardware accelerators to be attached to each node. See https://`$
|
8256
|
+
# universe.dns_names.final_documentation_domain`/compute/docs/gpus for more
|
8257
|
+
# information about support for GPUs.
|
7989
8258
|
# Corresponds to the JSON property `accelerators`
|
7990
8259
|
# @return [Array<Google::Apis::ContainerV1::AcceleratorConfig>]
|
7991
8260
|
attr_accessor :accelerators
|
@@ -8050,9 +8319,9 @@ module Google
|
|
8050
8319
|
# @return [Google::Apis::ContainerV1::VirtualNic]
|
8051
8320
|
attr_accessor :gvnic
|
8052
8321
|
|
8053
|
-
# Required. The desired image type for the node pool. Please see https
|
8054
|
-
#
|
8055
|
-
# types.
|
8322
|
+
# Required. The desired image type for the node pool. Please see https://`$
|
8323
|
+
# universe.dns_names.final_documentation_domain`/kubernetes-engine/docs/concepts/
|
8324
|
+
# node-images for available image types.
|
8056
8325
|
# Corresponds to the JSON property `imageType`
|
8057
8326
|
# @return [String]
|
8058
8327
|
attr_accessor :image_type
|
@@ -8073,11 +8342,11 @@ module Google
|
|
8073
8342
|
# @return [Google::Apis::ContainerV1::LinuxNodeConfig]
|
8074
8343
|
attr_accessor :linux_node_config
|
8075
8344
|
|
8076
|
-
# The desired list of Google Compute Engine [zones](https
|
8077
|
-
# compute/docs/zones#available) in which the node
|
8078
|
-
# Changing the locations for a node pool will
|
8079
|
-
# created or removed from the node pool, depending
|
8080
|
-
# being added or removed.
|
8345
|
+
# The desired list of Google Compute Engine [zones](https://`$universe.dns_names.
|
8346
|
+
# final_documentation_domain`/compute/docs/zones#available) in which the node
|
8347
|
+
# pool's nodes should be located. Changing the locations for a node pool will
|
8348
|
+
# result in nodes being either created or removed from the node pool, depending
|
8349
|
+
# on whether locations are being added or removed.
|
8081
8350
|
# Corresponds to the JSON property `locations`
|
8082
8351
|
# @return [Array<String>]
|
8083
8352
|
attr_accessor :locations
|
@@ -8087,10 +8356,10 @@ module Google
|
|
8087
8356
|
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
8088
8357
|
attr_accessor :logging_config
|
8089
8358
|
|
8090
|
-
# Optional. The desired [Google Compute Engine machine type](https
|
8091
|
-
#
|
8092
|
-
# an upgrade operation that migrates the nodes in the
|
8093
|
-
# machine type.
|
8359
|
+
# Optional. The desired [Google Compute Engine machine type](https://`$universe.
|
8360
|
+
# dns_names.final_documentation_domain`/compute/docs/machine-types) for nodes in
|
8361
|
+
# the node pool. Initiates an upgrade operation that migrates the nodes in the
|
8362
|
+
# node pool to the specified machine type.
|
8094
8363
|
# Corresponds to the JSON property `machineType`
|
8095
8364
|
# @return [String]
|
8096
8365
|
attr_accessor :machine_type
|
@@ -8130,8 +8399,9 @@ module Google
|
|
8130
8399
|
attr_accessor :node_version
|
8131
8400
|
|
8132
8401
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
8133
|
-
#
|
8134
|
-
# field has been deprecated and replaced by
|
8402
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
8403
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
8404
|
+
# the name field.
|
8135
8405
|
# Corresponds to the JSON property `projectId`
|
8136
8406
|
# @return [String]
|
8137
8407
|
attr_accessor :project_id
|
@@ -8141,17 +8411,18 @@ module Google
|
|
8141
8411
|
# @return [Google::Apis::ContainerV1::QueuedProvisioning]
|
8142
8412
|
attr_accessor :queued_provisioning
|
8143
8413
|
|
8144
|
-
# Collection of [GCP labels](https
|
8145
|
-
# creating-managing-labels).
|
8414
|
+
# Collection of [GCP labels](https://`$universe.dns_names.
|
8415
|
+
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
8146
8416
|
# Corresponds to the JSON property `resourceLabels`
|
8147
8417
|
# @return [Google::Apis::ContainerV1::ResourceLabels]
|
8148
8418
|
attr_accessor :resource_labels
|
8149
8419
|
|
8150
8420
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
8151
8421
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
8152
|
-
# be according to specifications in https
|
8153
|
-
# firewalls-overview#specifications. A
|
8154
|
-
# specified. Existing tags will be
|
8422
|
+
# be according to specifications in https://`$universe.dns_names.
|
8423
|
+
# final_documentation_domain`/vpc/docs/tags-firewalls-overview#specifications. A
|
8424
|
+
# maximum of 5 tag key-value pairs can be specified. Existing tags will be
|
8425
|
+
# replaced with new values.
|
8155
8426
|
# Corresponds to the JSON property `resourceManagerTags`
|
8156
8427
|
# @return [Google::Apis::ContainerV1::ResourceManagerTags]
|
8157
8428
|
attr_accessor :resource_manager_tags
|
@@ -8222,9 +8493,10 @@ module Google
|
|
8222
8493
|
# @return [Google::Apis::ContainerV1::WorkloadMetadataConfig]
|
8223
8494
|
attr_accessor :workload_metadata_config
|
8224
8495
|
|
8225
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
8226
|
-
#
|
8227
|
-
# been deprecated and replaced by the name
|
8496
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
8497
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
8498
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
8499
|
+
# field.
|
8228
8500
|
# Corresponds to the JSON property `zone`
|
8229
8501
|
# @return [String]
|
8230
8502
|
attr_accessor :zone
|