google-apis-container_v1 0.27.0 → 0.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 200cd643fc9cf9d00aa6a46ecac59f1d9376c6f6fc55d0a4d83b7a74c26785fd
4
- data.tar.gz: 5153624c297e568442ef60117e440302372de8d333851bcb74b64f9dd9a7fc36
3
+ metadata.gz: 1a5a145f98fa36c9468f84d86d782b104501378fc8cb7aa5a0e34e617061fd28
4
+ data.tar.gz: a12bc9b3af9cdccffd8629c81f7c267d66d1abc427d7e34fa24b94993d441615
5
5
  SHA512:
6
- metadata.gz: 7aa311ab6881ea7304c76ad089452ad80dde543d271b8fc5d9bf19dd0a7142a39cd82934f2c8d4b9c723fbee73efe03a9b5650112aa64f8903be134388081bce
7
- data.tar.gz: 2395e82d7fdcee84447a869f50508eb52cd485427a51846fadce39bee4a49e642078bf32f370f0f65ebd1f5bcfaec8ca3189982325ba9a0edea7ae3987cb791c
6
+ metadata.gz: da8702aad31aa584c1eaccc31ec18f22eeea98afeb07b9dd28e6fa062b81e5a055dd9e687dda87fb35d33854be52c7c605a75f0b711fc6f9e649306917ae03ab
7
+ data.tar.gz: 5f8ba1111197e9c13479044ecbca679a54b44b152906dcfb1c4c1583e106a3dcbc9c7ba0220e567d9eae8d917e43981b45cc5500dd94d287771c5057059cc551
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.30.0 (2022-05-10)
4
+
5
+ * Regenerated from discovery document revision 20220420
6
+
7
+ ### v0.29.0 (2022-05-03)
8
+
9
+ * Regenerated from discovery document revision 20220419
10
+
11
+ ### v0.28.0 (2022-04-26)
12
+
13
+ * Regenerated from discovery document revision 20220330
14
+
3
15
  ### v0.27.0 (2022-04-14)
4
16
 
5
17
  * Regenerated from discovery document revision 20220328
@@ -358,6 +358,12 @@ module Google
358
358
  attr_accessor :enabled
359
359
  alias_method :enabled?, :enabled
360
360
 
361
+ # Mode of operation for binauthz policy evaluation. Currently the only options
362
+ # are equivalent to enable/disable. If unspecified, defaults to DISABLED.
363
+ # Corresponds to the JSON property `evaluationMode`
364
+ # @return [String]
365
+ attr_accessor :evaluation_mode
366
+
361
367
  def initialize(**args)
362
368
  update!(**args)
363
369
  end
@@ -365,6 +371,7 @@ module Google
365
371
  # Update properties of this object
366
372
  def update!(**args)
367
373
  @enabled = args[:enabled] if args.key?(:enabled)
374
+ @evaluation_mode = args[:evaluation_mode] if args.key?(:evaluation_mode)
368
375
  end
369
376
  end
370
377
 
@@ -385,8 +392,8 @@ module Google
385
392
  attr_accessor :operation_id
386
393
 
387
394
  # Deprecated. The Google Developers Console [project ID or project number](https:
388
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
389
- # replaced by the name field.
395
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
396
+ # field has been deprecated and replaced by the name field.
390
397
  # Corresponds to the JSON property `projectId`
391
398
  # @return [String]
392
399
  attr_accessor :project_id
@@ -1287,8 +1294,8 @@ module Google
1287
1294
  attr_accessor :name
1288
1295
 
1289
1296
  # Deprecated. The Google Developers Console [project ID or project number](https:
1290
- # //developers.google.com/console/help/new/#projectnumber). This field has been
1291
- # deprecated and replaced by the name field.
1297
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1298
+ # field has been deprecated and replaced by the name field.
1292
1299
  # Corresponds to the JSON property `projectId`
1293
1300
  # @return [String]
1294
1301
  attr_accessor :project_id
@@ -1391,8 +1398,8 @@ module Google
1391
1398
  attr_accessor :parent
1392
1399
 
1393
1400
  # Deprecated. The Google Developers Console [project ID or project number](https:
1394
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1395
- # replaced by the parent field.
1401
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1402
+ # field has been deprecated and replaced by the parent field.
1396
1403
  # Corresponds to the JSON property `projectId`
1397
1404
  # @return [String]
1398
1405
  attr_accessor :project_id
@@ -1444,8 +1451,8 @@ module Google
1444
1451
  attr_accessor :parent
1445
1452
 
1446
1453
  # Deprecated. The Google Developers Console [project ID or project number](https:
1447
- # //developers.google.com/console/help/new/#projectnumber). This field has been
1448
- # deprecated and replaced by the parent field.
1454
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1455
+ # field has been deprecated and replaced by the parent field.
1449
1456
  # Corresponds to the JSON property `projectId`
1450
1457
  # @return [String]
1451
1458
  attr_accessor :project_id
@@ -2408,6 +2415,27 @@ module Google
2408
2415
  end
2409
2416
  end
2410
2417
 
2418
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2419
+ # Service for Prometheus.
2420
+ class ManagedPrometheusConfig
2421
+ include Google::Apis::Core::Hashable
2422
+
2423
+ # Enable Managed Collection.
2424
+ # Corresponds to the JSON property `enabled`
2425
+ # @return [Boolean]
2426
+ attr_accessor :enabled
2427
+ alias_method :enabled?, :enabled
2428
+
2429
+ def initialize(**args)
2430
+ update!(**args)
2431
+ end
2432
+
2433
+ # Update properties of this object
2434
+ def update!(**args)
2435
+ @enabled = args[:enabled] if args.key?(:enabled)
2436
+ end
2437
+ end
2438
+
2411
2439
  # The authentication information for accessing the master endpoint.
2412
2440
  # Authentication can be done using HTTP basic auth or using client certificates.
2413
2441
  class MasterAuth
@@ -2612,6 +2640,12 @@ module Google
2612
2640
  # @return [Google::Apis::ContainerV1::MonitoringComponentConfig]
2613
2641
  attr_accessor :component_config
2614
2642
 
2643
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2644
+ # Service for Prometheus.
2645
+ # Corresponds to the JSON property `managedPrometheusConfig`
2646
+ # @return [Google::Apis::ContainerV1::ManagedPrometheusConfig]
2647
+ attr_accessor :managed_prometheus_config
2648
+
2615
2649
  def initialize(**args)
2616
2650
  update!(**args)
2617
2651
  end
@@ -2619,6 +2653,7 @@ module Google
2619
2653
  # Update properties of this object
2620
2654
  def update!(**args)
2621
2655
  @component_config = args[:component_config] if args.key?(:component_config)
2656
+ @managed_prometheus_config = args[:managed_prometheus_config] if args.key?(:managed_prometheus_config)
2622
2657
  end
2623
2658
  end
2624
2659
 
@@ -2699,6 +2734,25 @@ module Google
2699
2734
  end
2700
2735
  end
2701
2736
 
2737
+ # Configuration of all network bandwidth tiers
2738
+ class NetworkPerformanceConfig
2739
+ include Google::Apis::Core::Hashable
2740
+
2741
+ # Specifies the total network bandwidth tier for the NodePool.
2742
+ # Corresponds to the JSON property `totalEgressBandwidthTier`
2743
+ # @return [String]
2744
+ attr_accessor :total_egress_bandwidth_tier
2745
+
2746
+ def initialize(**args)
2747
+ update!(**args)
2748
+ end
2749
+
2750
+ # Update properties of this object
2751
+ def update!(**args)
2752
+ @total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier)
2753
+ end
2754
+ end
2755
+
2702
2756
  # Configuration options for the NetworkPolicy feature. https://kubernetes.io/
2703
2757
  # docs/concepts/services-networking/networkpolicies/
2704
2758
  class NetworkPolicy
@@ -3152,6 +3206,11 @@ module Google
3152
3206
  attr_accessor :create_pod_range
3153
3207
  alias_method :create_pod_range?, :create_pod_range
3154
3208
 
3209
+ # Configuration of all network bandwidth tiers
3210
+ # Corresponds to the JSON property `networkPerformanceConfig`
3211
+ # @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
3212
+ attr_accessor :network_performance_config
3213
+
3155
3214
  # The IP address range for pod IPs in this node pool. Only applicable if `
3156
3215
  # create_pod_range` is true. Set to blank to have a range chosen with the
3157
3216
  # default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
@@ -3179,6 +3238,7 @@ module Google
3179
3238
  # Update properties of this object
3180
3239
  def update!(**args)
3181
3240
  @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
3241
+ @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
3182
3242
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
3183
3243
  @pod_range = args[:pod_range] if args.key?(:pod_range)
3184
3244
  end
@@ -3976,8 +4036,8 @@ module Google
3976
4036
  attr_accessor :node_pool_id
3977
4037
 
3978
4038
  # Deprecated. The Google Developers Console [project ID or project number](https:
3979
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
3980
- # replaced by the name field.
4039
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4040
+ # field has been deprecated and replaced by the name field.
3981
4041
  # Corresponds to the JSON property `projectId`
3982
4042
  # @return [String]
3983
4043
  attr_accessor :project_id
@@ -4197,8 +4257,8 @@ module Google
4197
4257
  attr_accessor :name
4198
4258
 
4199
4259
  # Deprecated. The Google Developers Console [project ID or project number](https:
4200
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4201
- # replaced by the name field.
4260
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4261
+ # field has been deprecated and replaced by the name field.
4202
4262
  # Corresponds to the JSON property `projectId`
4203
4263
  # @return [String]
4204
4264
  attr_accessor :project_id
@@ -4252,8 +4312,8 @@ module Google
4252
4312
  attr_accessor :name
4253
4313
 
4254
4314
  # Deprecated. The Google Developers Console [project ID or project number](https:
4255
- # //developers.google.com/console/help/new/#projectnumber). This field has been
4256
- # deprecated and replaced by the name field.
4315
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4316
+ # field has been deprecated and replaced by the name field.
4257
4317
  # Corresponds to the JSON property `projectId`
4258
4318
  # @return [String]
4259
4319
  attr_accessor :project_id
@@ -4309,8 +4369,8 @@ module Google
4309
4369
  attr_accessor :name
4310
4370
 
4311
4371
  # Deprecated. The Google Developers Console [project ID or project number](https:
4312
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4313
- # replaced by the name field.
4372
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4373
+ # field has been deprecated and replaced by the name field.
4314
4374
  # Corresponds to the JSON property `projectId`
4315
4375
  # @return [String]
4316
4376
  attr_accessor :project_id
@@ -4363,8 +4423,8 @@ module Google
4363
4423
  attr_accessor :name
4364
4424
 
4365
4425
  # Deprecated. The Google Developers Console [project ID or project number](https:
4366
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4367
- # replaced by the name field.
4426
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4427
+ # field has been deprecated and replaced by the name field.
4368
4428
  # Corresponds to the JSON property `projectId`
4369
4429
  # @return [String]
4370
4430
  attr_accessor :project_id
@@ -4418,8 +4478,8 @@ module Google
4418
4478
  attr_accessor :name
4419
4479
 
4420
4480
  # Deprecated. The Google Developers Console [project ID or project number](https:
4421
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4422
- # replaced by the name field.
4481
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4482
+ # field has been deprecated and replaced by the name field.
4423
4483
  # Corresponds to the JSON property `projectId`
4424
4484
  # @return [String]
4425
4485
  attr_accessor :project_id
@@ -4466,7 +4526,7 @@ module Google
4466
4526
  attr_accessor :name
4467
4527
 
4468
4528
  # Required. The Google Developers Console [project ID or project number](https://
4469
- # support.google.com/cloud/answer/6158840).
4529
+ # cloud.google.com/resource-manager/docs/creating-managing-projects).
4470
4530
  # Corresponds to the JSON property `projectId`
4471
4531
  # @return [String]
4472
4532
  attr_accessor :project_id
@@ -4513,8 +4573,8 @@ module Google
4513
4573
  attr_accessor :name
4514
4574
 
4515
4575
  # Deprecated. The Google Developers Console [project ID or project number](https:
4516
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4517
- # replaced by the name field.
4576
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4577
+ # field has been deprecated and replaced by the name field.
4518
4578
  # Corresponds to the JSON property `projectId`
4519
4579
  # @return [String]
4520
4580
  attr_accessor :project_id
@@ -4575,8 +4635,8 @@ module Google
4575
4635
  attr_accessor :name
4576
4636
 
4577
4637
  # Deprecated. The Google Developers Console [project ID or project number](https:
4578
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4579
- # replaced by the name field.
4638
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4639
+ # field has been deprecated and replaced by the name field.
4580
4640
  # Corresponds to the JSON property `projectId`
4581
4641
  # @return [String]
4582
4642
  attr_accessor :project_id
@@ -4625,8 +4685,8 @@ module Google
4625
4685
  attr_accessor :network_policy
4626
4686
 
4627
4687
  # Deprecated. The Google Developers Console [project ID or project number](https:
4628
- # //developers.google.com/console/help/new/#projectnumber). This field has been
4629
- # deprecated and replaced by the name field.
4688
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4689
+ # field has been deprecated and replaced by the name field.
4630
4690
  # Corresponds to the JSON property `projectId`
4631
4691
  # @return [String]
4632
4692
  attr_accessor :project_id
@@ -4682,8 +4742,8 @@ module Google
4682
4742
  attr_accessor :node_pool_id
4683
4743
 
4684
4744
  # Deprecated. The Google Developers Console [project ID or project number](https:
4685
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4686
- # replaced by the name field.
4745
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4746
+ # field has been deprecated and replaced by the name field.
4687
4747
  # Corresponds to the JSON property `projectId`
4688
4748
  # @return [String]
4689
4749
  attr_accessor :project_id
@@ -4741,8 +4801,8 @@ module Google
4741
4801
  attr_accessor :node_pool_id
4742
4802
 
4743
4803
  # Deprecated. The Google Developers Console [project ID or project number](https:
4744
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4745
- # replaced by the name field.
4804
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4805
+ # field has been deprecated and replaced by the name field.
4746
4806
  # Corresponds to the JSON property `projectId`
4747
4807
  # @return [String]
4748
4808
  attr_accessor :project_id
@@ -4797,8 +4857,8 @@ module Google
4797
4857
  attr_accessor :node_pool_id
4798
4858
 
4799
4859
  # Deprecated. The Google Developers Console [project ID or project number](https:
4800
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
4801
- # replaced by the name field.
4860
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4861
+ # field has been deprecated and replaced by the name field.
4802
4862
  # Corresponds to the JSON property `projectId`
4803
4863
  # @return [String]
4804
4864
  attr_accessor :project_id
@@ -4897,8 +4957,8 @@ module Google
4897
4957
  attr_accessor :name
4898
4958
 
4899
4959
  # Deprecated. The Google Developers Console [project ID or project number](https:
4900
- # //developers.google.com/console/help/new/#projectnumber). This field has been
4901
- # deprecated and replaced by the name field.
4960
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
4961
+ # field has been deprecated and replaced by the name field.
4902
4962
  # Corresponds to the JSON property `projectId`
4903
4963
  # @return [String]
4904
4964
  attr_accessor :project_id
@@ -5051,8 +5111,8 @@ module Google
5051
5111
  attr_accessor :name
5052
5112
 
5053
5113
  # Deprecated. The Google Developers Console [project ID or project number](https:
5054
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
5055
- # replaced by the name field.
5114
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
5115
+ # field has been deprecated and replaced by the name field.
5056
5116
  # Corresponds to the JSON property `projectId`
5057
5117
  # @return [String]
5058
5118
  attr_accessor :project_id
@@ -5112,8 +5172,8 @@ module Google
5112
5172
  attr_accessor :name
5113
5173
 
5114
5174
  # Deprecated. The Google Developers Console [project ID or project number](https:
5115
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
5116
- # replaced by the name field.
5175
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
5176
+ # field has been deprecated and replaced by the name field.
5117
5177
  # Corresponds to the JSON property `projectId`
5118
5178
  # @return [String]
5119
5179
  attr_accessor :project_id
@@ -5214,8 +5274,8 @@ module Google
5214
5274
  attr_accessor :node_version
5215
5275
 
5216
5276
  # Deprecated. The Google Developers Console [project ID or project number](https:
5217
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
5218
- # replaced by the name field.
5277
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
5278
+ # field has been deprecated and replaced by the name field.
5219
5279
  # Corresponds to the JSON property `projectId`
5220
5280
  # @return [String]
5221
5281
  attr_accessor :project_id
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1
18
18
  # Version of the google-apis-container_v1 gem
19
- GEM_VERSION = "0.27.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220328"
25
+ REVISION = "20220420"
26
26
  end
27
27
  end
28
28
  end
@@ -346,6 +346,12 @@ module Google
346
346
  include Google::Apis::Core::JsonObjectSupport
347
347
  end
348
348
 
349
+ class ManagedPrometheusConfig
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
349
355
  class MasterAuth
350
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
357
 
@@ -394,6 +400,12 @@ module Google
394
400
  include Google::Apis::Core::JsonObjectSupport
395
401
  end
396
402
 
403
+ class NetworkPerformanceConfig
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
397
409
  class NetworkPolicy
398
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
411
 
@@ -859,6 +871,7 @@ module Google
859
871
  # @private
860
872
  class Representation < Google::Apis::Core::JsonRepresentation
861
873
  property :enabled, as: 'enabled'
874
+ property :evaluation_mode, as: 'evaluationMode'
862
875
  end
863
876
  end
864
877
 
@@ -1400,6 +1413,13 @@ module Google
1400
1413
  end
1401
1414
  end
1402
1415
 
1416
+ class ManagedPrometheusConfig
1417
+ # @private
1418
+ class Representation < Google::Apis::Core::JsonRepresentation
1419
+ property :enabled, as: 'enabled'
1420
+ end
1421
+ end
1422
+
1403
1423
  class MasterAuth
1404
1424
  # @private
1405
1425
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1458,6 +1478,8 @@ module Google
1458
1478
  class Representation < Google::Apis::Core::JsonRepresentation
1459
1479
  property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1::MonitoringComponentConfig::Representation
1460
1480
 
1481
+ property :managed_prometheus_config, as: 'managedPrometheusConfig', class: Google::Apis::ContainerV1::ManagedPrometheusConfig, decorator: Google::Apis::ContainerV1::ManagedPrometheusConfig::Representation
1482
+
1461
1483
  end
1462
1484
  end
1463
1485
 
@@ -1479,6 +1501,13 @@ module Google
1479
1501
  end
1480
1502
  end
1481
1503
 
1504
+ class NetworkPerformanceConfig
1505
+ # @private
1506
+ class Representation < Google::Apis::Core::JsonRepresentation
1507
+ property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
1508
+ end
1509
+ end
1510
+
1482
1511
  class NetworkPolicy
1483
1512
  # @private
1484
1513
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1583,6 +1612,8 @@ module Google
1583
1612
  # @private
1584
1613
  class Representation < Google::Apis::Core::JsonRepresentation
1585
1614
  property :create_pod_range, as: 'createPodRange'
1615
+ property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
1616
+
1586
1617
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
1587
1618
  property :pod_range, as: 'podRange'
1588
1619
  end
@@ -103,8 +103,8 @@ module Google
103
103
  # format `projects/*/locations/*`.
104
104
  # @param [String] project_id
105
105
  # Deprecated. The Google Developers Console [project ID or project number](https:
106
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
107
- # replaced by the name field.
106
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
107
+ # field has been deprecated and replaced by the name field.
108
108
  # @param [String] zone
109
109
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
110
110
  # com/compute/docs/zones#available) to return operations for. This field has
@@ -226,8 +226,8 @@ module Google
226
226
  # and replaced by the name field.
227
227
  # @param [String] project_id
228
228
  # Deprecated. The Google Developers Console [project ID or project number](https:
229
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
230
- # replaced by the name field.
229
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
230
+ # field has been deprecated and replaced by the name field.
231
231
  # @param [String] zone
232
232
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
233
233
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -271,8 +271,8 @@ module Google
271
271
  # deprecated and replaced by the name field.
272
272
  # @param [String] project_id
273
273
  # Deprecated. The Google Developers Console [project ID or project number](https:
274
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
275
- # replaced by the name field.
274
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
275
+ # field has been deprecated and replaced by the name field.
276
276
  # @param [String] zone
277
277
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
278
278
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -348,8 +348,8 @@ module Google
348
348
  # regions.
349
349
  # @param [String] project_id
350
350
  # Deprecated. The Google Developers Console [project ID or project number](https:
351
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
352
- # replaced by the parent field.
351
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
352
+ # field has been deprecated and replaced by the parent field.
353
353
  # @param [String] zone
354
354
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
355
355
  # com/compute/docs/zones#available) in which the cluster resides, or "-" for all
@@ -841,8 +841,8 @@ module Google
841
841
  # deprecated and replaced by the name field.
842
842
  # @param [String] project_id
843
843
  # Deprecated. The Google Developers Console [project ID or project number](https:
844
- # //developers.google.com/console/help/new/#projectnumber). This field has been
845
- # deprecated and replaced by the name field.
844
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
845
+ # field has been deprecated and replaced by the name field.
846
846
  # @param [String] zone
847
847
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
848
848
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -890,8 +890,8 @@ module Google
890
890
  # replaced by the name field.
891
891
  # @param [String] project_id
892
892
  # Deprecated. The Google Developers Console [project ID or project number](https:
893
- # //developers.google.com/console/help/new/#projectnumber). This field has been
894
- # deprecated and replaced by the name field.
893
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
894
+ # field has been deprecated and replaced by the name field.
895
895
  # @param [String] zone
896
896
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
897
897
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -936,8 +936,8 @@ module Google
936
936
  # replaced by the parent field.
937
937
  # @param [String] project_id
938
938
  # Deprecated. The Google Developers Console [project ID or project number](https:
939
- # //developers.google.com/console/help/new/#projectnumber). This field has been
940
- # deprecated and replaced by the parent field.
939
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
940
+ # field has been deprecated and replaced by the parent field.
941
941
  # @param [String] zone
942
942
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
943
943
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1224,8 +1224,8 @@ module Google
1224
1224
  # deprecated and replaced by the name field.
1225
1225
  # @param [String] project_id
1226
1226
  # Deprecated. The Google Developers Console [project ID or project number](https:
1227
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1228
- # replaced by the name field.
1227
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1228
+ # field has been deprecated and replaced by the name field.
1229
1229
  # @param [String] zone
1230
1230
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1231
1231
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1267,8 +1267,8 @@ module Google
1267
1267
  # zones and all regions.
1268
1268
  # @param [String] project_id
1269
1269
  # Deprecated. The Google Developers Console [project ID or project number](https:
1270
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1271
- # replaced by the parent field.
1270
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1271
+ # field has been deprecated and replaced by the parent field.
1272
1272
  # @param [String] zone
1273
1273
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1274
1274
  # com/compute/docs/zones#available) to return operations for, or `-` for all
@@ -1305,8 +1305,8 @@ module Google
1305
1305
  # Returns configuration info about the Google Kubernetes Engine service.
1306
1306
  # @param [String] project_id
1307
1307
  # Deprecated. The Google Developers Console [project ID or project number](https:
1308
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1309
- # replaced by the name field.
1308
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1309
+ # field has been deprecated and replaced by the name field.
1310
1310
  # @param [String] zone
1311
1311
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1312
1312
  # com/compute/docs/zones#available) to return operations for. This field has
@@ -1346,8 +1346,8 @@ module Google
1346
1346
  # Sets the addons for a specific cluster.
1347
1347
  # @param [String] project_id
1348
1348
  # Deprecated. The Google Developers Console [project ID or project number](https:
1349
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1350
- # replaced by the name field.
1349
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1350
+ # field has been deprecated and replaced by the name field.
1351
1351
  # @param [String] zone
1352
1352
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1353
1353
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1390,8 +1390,8 @@ module Google
1390
1390
  # Completes master IP rotation.
1391
1391
  # @param [String] project_id
1392
1392
  # Deprecated. The Google Developers Console [project ID or project number](https:
1393
- # //developers.google.com/console/help/new/#projectnumber). This field has been
1394
- # deprecated and replaced by the name field.
1393
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1394
+ # field has been deprecated and replaced by the name field.
1395
1395
  # @param [String] zone
1396
1396
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1397
1397
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1441,8 +1441,8 @@ module Google
1441
1441
  # is using.
1442
1442
  # @param [String] project_id
1443
1443
  # Deprecated. The Google Developers Console [project ID or project number](https:
1444
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1445
- # replaced by the parent field.
1444
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1445
+ # field has been deprecated and replaced by the parent field.
1446
1446
  # @param [String] zone
1447
1447
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1448
1448
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1485,8 +1485,8 @@ module Google
1485
1485
  # present when the cluster was initially created.
1486
1486
  # @param [String] project_id
1487
1487
  # Deprecated. The Google Developers Console [project ID or project number](https:
1488
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1489
- # replaced by the name field.
1488
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1489
+ # field has been deprecated and replaced by the name field.
1490
1490
  # @param [String] zone
1491
1491
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1492
1492
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1530,8 +1530,8 @@ module Google
1530
1530
  # Gets the details of a specific cluster.
1531
1531
  # @param [String] project_id
1532
1532
  # Deprecated. The Google Developers Console [project ID or project number](https:
1533
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1534
- # replaced by the name field.
1533
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1534
+ # field has been deprecated and replaced by the name field.
1535
1535
  # @param [String] zone
1536
1536
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1537
1537
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1575,8 +1575,8 @@ module Google
1575
1575
  # Enables or disables the ABAC authorization mechanism on a cluster.
1576
1576
  # @param [String] project_id
1577
1577
  # Deprecated. The Google Developers Console [project ID or project number](https:
1578
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1579
- # replaced by the name field.
1578
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1579
+ # field has been deprecated and replaced by the name field.
1580
1580
  # @param [String] zone
1581
1581
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1582
1582
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1620,8 +1620,8 @@ module Google
1620
1620
  # zones.
1621
1621
  # @param [String] project_id
1622
1622
  # Deprecated. The Google Developers Console [project ID or project number](https:
1623
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1624
- # replaced by the parent field.
1623
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1624
+ # field has been deprecated and replaced by the parent field.
1625
1625
  # @param [String] zone
1626
1626
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1627
1627
  # com/compute/docs/zones#available) in which the cluster resides, or "-" for all
@@ -1664,8 +1664,8 @@ module Google
1664
1664
  # rest/v1/projects.locations.clusters/update) instead.
1665
1665
  # @param [String] project_id
1666
1666
  # Deprecated. The Google Developers Console [project ID or project number](https:
1667
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1668
- # replaced by the name field.
1667
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1668
+ # field has been deprecated and replaced by the name field.
1669
1669
  # @param [String] zone
1670
1670
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1671
1671
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1708,8 +1708,8 @@ module Google
1708
1708
  # Sets the logging service for a specific cluster.
1709
1709
  # @param [String] project_id
1710
1710
  # Deprecated. The Google Developers Console [project ID or project number](https:
1711
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1712
- # replaced by the name field.
1711
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1712
+ # field has been deprecated and replaced by the name field.
1713
1713
  # @param [String] zone
1714
1714
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1715
1715
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1752,8 +1752,8 @@ module Google
1752
1752
  # Updates the master for a specific cluster.
1753
1753
  # @param [String] project_id
1754
1754
  # Deprecated. The Google Developers Console [project ID or project number](https:
1755
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1756
- # replaced by the name field.
1755
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1756
+ # field has been deprecated and replaced by the name field.
1757
1757
  # @param [String] zone
1758
1758
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1759
1759
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1796,8 +1796,8 @@ module Google
1796
1796
  # Sets the monitoring service for a specific cluster.
1797
1797
  # @param [String] project_id
1798
1798
  # Deprecated. The Google Developers Console [project ID or project number](https:
1799
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1800
- # replaced by the name field.
1799
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1800
+ # field has been deprecated and replaced by the name field.
1801
1801
  # @param [String] zone
1802
1802
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1803
1803
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1840,8 +1840,8 @@ module Google
1840
1840
  # Sets labels on a cluster.
1841
1841
  # @param [String] project_id
1842
1842
  # Deprecated. The Google Developers Console [project ID or project number](https:
1843
- # //developers.google.com/console/help/new/#projectnumber). This field has been
1844
- # deprecated and replaced by the name field.
1843
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1844
+ # field has been deprecated and replaced by the name field.
1845
1845
  # @param [String] zone
1846
1846
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1847
1847
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1884,7 +1884,7 @@ module Google
1884
1884
  # Sets the maintenance policy for a cluster.
1885
1885
  # @param [String] project_id
1886
1886
  # Required. The Google Developers Console [project ID or project number](https://
1887
- # support.google.com/cloud/answer/6158840).
1887
+ # cloud.google.com/resource-manager/docs/creating-managing-projects).
1888
1888
  # @param [String] zone
1889
1889
  # Required. The name of the Google Compute Engine [zone](https://cloud.google.
1890
1890
  # com/compute/docs/zones#available) in which the cluster resides.
@@ -1927,8 +1927,8 @@ module Google
1927
1927
  # password.
1928
1928
  # @param [String] project_id
1929
1929
  # Deprecated. The Google Developers Console [project ID or project number](https:
1930
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
1931
- # replaced by the name field.
1930
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1931
+ # field has been deprecated and replaced by the name field.
1932
1932
  # @param [String] zone
1933
1933
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1934
1934
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -1971,8 +1971,8 @@ module Google
1971
1971
  # Enables or disables Network Policy for a cluster.
1972
1972
  # @param [String] project_id
1973
1973
  # Deprecated. The Google Developers Console [project ID or project number](https:
1974
- # //developers.google.com/console/help/new/#projectnumber). This field has been
1975
- # deprecated and replaced by the name field.
1974
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
1975
+ # field has been deprecated and replaced by the name field.
1976
1976
  # @param [String] zone
1977
1977
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
1978
1978
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2015,8 +2015,8 @@ module Google
2015
2015
  # Starts master IP rotation.
2016
2016
  # @param [String] project_id
2017
2017
  # Deprecated. The Google Developers Console [project ID or project number](https:
2018
- # //developers.google.com/console/help/new/#projectnumber). This field has been
2019
- # deprecated and replaced by the name field.
2018
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2019
+ # field has been deprecated and replaced by the name field.
2020
2020
  # @param [String] zone
2021
2021
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2022
2022
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2059,8 +2059,8 @@ module Google
2059
2059
  # Updates the settings of a specific cluster.
2060
2060
  # @param [String] project_id
2061
2061
  # Deprecated. The Google Developers Console [project ID or project number](https:
2062
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2063
- # replaced by the name field.
2062
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2063
+ # field has been deprecated and replaced by the name field.
2064
2064
  # @param [String] zone
2065
2065
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2066
2066
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2103,8 +2103,8 @@ module Google
2103
2103
  # Sets the autoscaling settings for the specified node pool.
2104
2104
  # @param [String] project_id
2105
2105
  # Deprecated. The Google Developers Console [project ID or project number](https:
2106
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2107
- # replaced by the name field.
2106
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2107
+ # field has been deprecated and replaced by the name field.
2108
2108
  # @param [String] zone
2109
2109
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2110
2110
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2151,8 +2151,8 @@ module Google
2151
2151
  # Creates a node pool for a cluster.
2152
2152
  # @param [String] project_id
2153
2153
  # Deprecated. The Google Developers Console [project ID or project number](https:
2154
- # //developers.google.com/console/help/new/#projectnumber). This field has been
2155
- # deprecated and replaced by the parent field.
2154
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2155
+ # field has been deprecated and replaced by the parent field.
2156
2156
  # @param [String] zone
2157
2157
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2158
2158
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2195,8 +2195,8 @@ module Google
2195
2195
  # Deletes a node pool from a cluster.
2196
2196
  # @param [String] project_id
2197
2197
  # Deprecated. The Google Developers Console [project ID or project number](https:
2198
- # //developers.google.com/console/help/new/#projectnumber). This field has been
2199
- # deprecated and replaced by the name field.
2198
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2199
+ # field has been deprecated and replaced by the name field.
2200
2200
  # @param [String] zone
2201
2201
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2202
2202
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2244,8 +2244,8 @@ module Google
2244
2244
  # Retrieves the requested node pool.
2245
2245
  # @param [String] project_id
2246
2246
  # Deprecated. The Google Developers Console [project ID or project number](https:
2247
- # //developers.google.com/console/help/new/#projectnumber). This field has been
2248
- # deprecated and replaced by the name field.
2247
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2248
+ # field has been deprecated and replaced by the name field.
2249
2249
  # @param [String] zone
2250
2250
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2251
2251
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2293,8 +2293,8 @@ module Google
2293
2293
  # Lists the node pools for a cluster.
2294
2294
  # @param [String] project_id
2295
2295
  # Deprecated. The Google Developers Console [project ID or project number](https:
2296
- # //developers.google.com/console/help/new/#projectnumber). This field has been
2297
- # deprecated and replaced by the parent field.
2296
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2297
+ # field has been deprecated and replaced by the parent field.
2298
2298
  # @param [String] zone
2299
2299
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2300
2300
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2339,8 +2339,8 @@ module Google
2339
2339
  # changes if the last upgrade successfully completed.
2340
2340
  # @param [String] project_id
2341
2341
  # Deprecated. The Google Developers Console [project ID or project number](https:
2342
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2343
- # replaced by the name field.
2342
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2343
+ # field has been deprecated and replaced by the name field.
2344
2344
  # @param [String] zone
2345
2345
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2346
2346
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2387,8 +2387,8 @@ module Google
2387
2387
  # Sets the NodeManagement options for a node pool.
2388
2388
  # @param [String] project_id
2389
2389
  # Deprecated. The Google Developers Console [project ID or project number](https:
2390
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2391
- # replaced by the name field.
2390
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2391
+ # field has been deprecated and replaced by the name field.
2392
2392
  # @param [String] zone
2393
2393
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2394
2394
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2436,8 +2436,8 @@ module Google
2436
2436
  # replicas, including future replicas created by modifying NodePool.locations.
2437
2437
  # @param [String] project_id
2438
2438
  # Deprecated. The Google Developers Console [project ID or project number](https:
2439
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2440
- # replaced by the name field.
2439
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2440
+ # field has been deprecated and replaced by the name field.
2441
2441
  # @param [String] zone
2442
2442
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2443
2443
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2484,8 +2484,8 @@ module Google
2484
2484
  # Updates the version and/or image type for the specified node pool.
2485
2485
  # @param [String] project_id
2486
2486
  # Deprecated. The Google Developers Console [project ID or project number](https:
2487
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2488
- # replaced by the name field.
2487
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2488
+ # field has been deprecated and replaced by the name field.
2489
2489
  # @param [String] zone
2490
2490
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2491
2491
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2532,8 +2532,8 @@ module Google
2532
2532
  # Cancels the specified operation.
2533
2533
  # @param [String] project_id
2534
2534
  # Deprecated. The Google Developers Console [project ID or project number](https:
2535
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2536
- # replaced by the name field.
2535
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2536
+ # field has been deprecated and replaced by the name field.
2537
2537
  # @param [String] zone
2538
2538
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2539
2539
  # com/compute/docs/zones#available) in which the operation resides. This field
@@ -2576,8 +2576,8 @@ module Google
2576
2576
  # Gets the specified operation.
2577
2577
  # @param [String] project_id
2578
2578
  # Deprecated. The Google Developers Console [project ID or project number](https:
2579
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2580
- # replaced by the name field.
2579
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2580
+ # field has been deprecated and replaced by the name field.
2581
2581
  # @param [String] zone
2582
2582
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2583
2583
  # com/compute/docs/zones#available) in which the cluster resides. This field has
@@ -2621,8 +2621,8 @@ module Google
2621
2621
  # Lists all operations in a project in a specific zone or all zones.
2622
2622
  # @param [String] project_id
2623
2623
  # Deprecated. The Google Developers Console [project ID or project number](https:
2624
- # //support.google.com/cloud/answer/6158840). This field has been deprecated and
2625
- # replaced by the parent field.
2624
+ # //cloud.google.com/resource-manager/docs/creating-managing-projects). This
2625
+ # field has been deprecated and replaced by the parent field.
2626
2626
  # @param [String] zone
2627
2627
  # Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
2628
2628
  # com/compute/docs/zones#available) to return operations for, or `-` for all
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-18 00:00:00.000000000 Z
11
+ date: 2022-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
63
63
  post_install_message:
64
64
  rdoc_options: []