google-apis-container_v1beta1 0.94.0 → 0.96.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/container_v1beta1/classes.rb +858 -362
- data/lib/google/apis/container_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/container_v1beta1/representations.rb +263 -0
- data/lib/google/apis/container_v1beta1/service.rb +279 -287
- metadata +2 -2
|
@@ -105,13 +105,12 @@ module Google
|
|
|
105
105
|
# format `projects/*/locations/*`.
|
|
106
106
|
# @param [String] project_id
|
|
107
107
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
108
|
-
#
|
|
109
|
-
#
|
|
110
|
-
# the name field.
|
|
108
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
109
|
+
# field has been deprecated and replaced by the name field.
|
|
111
110
|
# @param [String] zone
|
|
112
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
113
|
-
#
|
|
114
|
-
#
|
|
111
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
112
|
+
# com/compute/docs/zones#available) to return operations for. This field has
|
|
113
|
+
# been deprecated and replaced by the name field.
|
|
115
114
|
# @param [String] fields
|
|
116
115
|
# Selector specifying which fields to include in a partial response.
|
|
117
116
|
# @param [String] quota_user
|
|
@@ -204,6 +203,41 @@ module Google
|
|
|
204
203
|
execute_or_queue_command(command, &block)
|
|
205
204
|
end
|
|
206
205
|
|
|
206
|
+
# CompleteControlPlaneUpgrade completes the rollback-safe upgrade by performing
|
|
207
|
+
# the step two upgrade for a specific cluster.
|
|
208
|
+
# @param [String] name
|
|
209
|
+
# The name (project, location, cluster) of the cluster to complete upgrade.
|
|
210
|
+
# Specified in the format `projects/*/locations/*/clusters/*`.
|
|
211
|
+
# @param [Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest] complete_control_plane_upgrade_request_object
|
|
212
|
+
# @param [String] fields
|
|
213
|
+
# Selector specifying which fields to include in a partial response.
|
|
214
|
+
# @param [String] quota_user
|
|
215
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
216
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
217
|
+
# @param [Google::Apis::RequestOptions] options
|
|
218
|
+
# Request-specific options
|
|
219
|
+
#
|
|
220
|
+
# @yield [result, err] Result & error if block supplied
|
|
221
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::Operation] parsed result object
|
|
222
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
223
|
+
#
|
|
224
|
+
# @return [Google::Apis::ContainerV1beta1::Operation]
|
|
225
|
+
#
|
|
226
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
227
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
228
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
229
|
+
def complete_project_location_cluster_control_plane_upgrade(name, complete_control_plane_upgrade_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
230
|
+
command = make_simple_command(:post, 'v1beta1/{+name}:completeControlPlaneUpgrade', options)
|
|
231
|
+
command.request_representation = Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest::Representation
|
|
232
|
+
command.request_object = complete_control_plane_upgrade_request_object
|
|
233
|
+
command.response_representation = Google::Apis::ContainerV1beta1::Operation::Representation
|
|
234
|
+
command.response_class = Google::Apis::ContainerV1beta1::Operation
|
|
235
|
+
command.params['name'] = name unless name.nil?
|
|
236
|
+
command.query['fields'] = fields unless fields.nil?
|
|
237
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
238
|
+
execute_or_queue_command(command, &block)
|
|
239
|
+
end
|
|
240
|
+
|
|
207
241
|
# Completes master IP rotation.
|
|
208
242
|
# @param [String] name
|
|
209
243
|
# The name (project, location, cluster name) of the cluster to complete IP
|
|
@@ -240,12 +274,12 @@ module Google
|
|
|
240
274
|
|
|
241
275
|
# Creates a cluster, consisting of the specified number and type of Google
|
|
242
276
|
# Compute Engine instances. By default, the cluster is created in the project's [
|
|
243
|
-
# default network](https
|
|
244
|
-
#
|
|
245
|
-
#
|
|
246
|
-
#
|
|
247
|
-
#
|
|
248
|
-
#
|
|
277
|
+
# default network](https://cloud.google.com/compute/docs/networks-and-firewalls#
|
|
278
|
+
# networks). One firewall is added for the cluster. After cluster creation, the
|
|
279
|
+
# kubelet creates routes for each node to allow the containers on that node to
|
|
280
|
+
# communicate with all other instances in the cluster. Finally, an entry is
|
|
281
|
+
# added to the project's global metadata indicating which CIDR range the cluster
|
|
282
|
+
# is using.
|
|
249
283
|
# @param [String] parent
|
|
250
284
|
# The parent (project and location) where the cluster will be created. Specified
|
|
251
285
|
# in the format `projects/*/locations/*`.
|
|
@@ -292,14 +326,12 @@ module Google
|
|
|
292
326
|
# and replaced by the name field.
|
|
293
327
|
# @param [String] project_id
|
|
294
328
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
295
|
-
#
|
|
296
|
-
#
|
|
297
|
-
# the name field.
|
|
329
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
330
|
+
# field has been deprecated and replaced by the name field.
|
|
298
331
|
# @param [String] zone
|
|
299
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
300
|
-
#
|
|
301
|
-
#
|
|
302
|
-
# field.
|
|
332
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
333
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
334
|
+
# been deprecated and replaced by the name field.
|
|
303
335
|
# @param [String] fields
|
|
304
336
|
# Selector specifying which fields to include in a partial response.
|
|
305
337
|
# @param [String] quota_user
|
|
@@ -374,14 +406,12 @@ module Google
|
|
|
374
406
|
# deprecated and replaced by the name field.
|
|
375
407
|
# @param [String] project_id
|
|
376
408
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
377
|
-
#
|
|
378
|
-
#
|
|
379
|
-
# the name field.
|
|
409
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
410
|
+
# field has been deprecated and replaced by the name field.
|
|
380
411
|
# @param [String] zone
|
|
381
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
382
|
-
#
|
|
383
|
-
#
|
|
384
|
-
# field.
|
|
412
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
413
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
414
|
+
# been deprecated and replaced by the name field.
|
|
385
415
|
# @param [String] fields
|
|
386
416
|
# Selector specifying which fields to include in a partial response.
|
|
387
417
|
# @param [String] quota_user
|
|
@@ -451,14 +481,12 @@ module Google
|
|
|
451
481
|
# regions.
|
|
452
482
|
# @param [String] project_id
|
|
453
483
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
454
|
-
#
|
|
455
|
-
#
|
|
456
|
-
# the parent field.
|
|
484
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
485
|
+
# field has been deprecated and replaced by the parent field.
|
|
457
486
|
# @param [String] zone
|
|
458
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
459
|
-
#
|
|
460
|
-
#
|
|
461
|
-
# replaced by the parent field.
|
|
487
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
488
|
+
# com/compute/docs/zones#available) in which the cluster resides, or "-" for all
|
|
489
|
+
# zones. This field has been deprecated and replaced by the parent field.
|
|
462
490
|
# @param [String] fields
|
|
463
491
|
# Selector specifying which fields to include in a partial response.
|
|
464
492
|
# @param [String] quota_user
|
|
@@ -557,9 +585,8 @@ module Google
|
|
|
557
585
|
end
|
|
558
586
|
|
|
559
587
|
# Sets the locations for a specific cluster. Deprecated. Use [projects.locations.
|
|
560
|
-
# clusters.update](https
|
|
561
|
-
#
|
|
562
|
-
# update) instead.
|
|
588
|
+
# clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/
|
|
589
|
+
# rest/v1beta1/projects.locations.clusters/update) instead.
|
|
563
590
|
# @param [String] name
|
|
564
591
|
# The name (project, location, cluster) of the cluster to set locations.
|
|
565
592
|
# Specified in the format `projects/*/locations/*/clusters/*`.
|
|
@@ -982,14 +1009,12 @@ module Google
|
|
|
982
1009
|
# deprecated and replaced by the name field.
|
|
983
1010
|
# @param [String] project_id
|
|
984
1011
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
985
|
-
#
|
|
986
|
-
#
|
|
987
|
-
# the name field.
|
|
1012
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1013
|
+
# field has been deprecated and replaced by the name field.
|
|
988
1014
|
# @param [String] zone
|
|
989
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
990
|
-
#
|
|
991
|
-
#
|
|
992
|
-
# field.
|
|
1015
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1016
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1017
|
+
# been deprecated and replaced by the name field.
|
|
993
1018
|
# @param [String] fields
|
|
994
1019
|
# Selector specifying which fields to include in a partial response.
|
|
995
1020
|
# @param [String] quota_user
|
|
@@ -1068,14 +1093,12 @@ module Google
|
|
|
1068
1093
|
# replaced by the name field.
|
|
1069
1094
|
# @param [String] project_id
|
|
1070
1095
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1071
|
-
#
|
|
1072
|
-
#
|
|
1073
|
-
# the name field.
|
|
1096
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1097
|
+
# field has been deprecated and replaced by the name field.
|
|
1074
1098
|
# @param [String] zone
|
|
1075
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1076
|
-
#
|
|
1077
|
-
#
|
|
1078
|
-
# field.
|
|
1099
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1100
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1101
|
+
# been deprecated and replaced by the name field.
|
|
1079
1102
|
# @param [String] fields
|
|
1080
1103
|
# Selector specifying which fields to include in a partial response.
|
|
1081
1104
|
# @param [String] quota_user
|
|
@@ -1116,14 +1139,12 @@ module Google
|
|
|
1116
1139
|
# replaced by the parent field.
|
|
1117
1140
|
# @param [String] project_id
|
|
1118
1141
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1119
|
-
#
|
|
1120
|
-
#
|
|
1121
|
-
# the parent field.
|
|
1142
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1143
|
+
# field has been deprecated and replaced by the parent field.
|
|
1122
1144
|
# @param [String] zone
|
|
1123
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1124
|
-
#
|
|
1125
|
-
#
|
|
1126
|
-
# field.
|
|
1145
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1146
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1147
|
+
# been deprecated and replaced by the parent field.
|
|
1127
1148
|
# @param [String] fields
|
|
1128
1149
|
# Selector specifying which fields to include in a partial response.
|
|
1129
1150
|
# @param [String] quota_user
|
|
@@ -1406,14 +1427,12 @@ module Google
|
|
|
1406
1427
|
# deprecated and replaced by the name field.
|
|
1407
1428
|
# @param [String] project_id
|
|
1408
1429
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1409
|
-
#
|
|
1410
|
-
#
|
|
1411
|
-
# the name field.
|
|
1430
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1431
|
+
# field has been deprecated and replaced by the name field.
|
|
1412
1432
|
# @param [String] zone
|
|
1413
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1414
|
-
#
|
|
1415
|
-
#
|
|
1416
|
-
# field.
|
|
1433
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1434
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1435
|
+
# been deprecated and replaced by the name field.
|
|
1417
1436
|
# @param [String] fields
|
|
1418
1437
|
# Selector specifying which fields to include in a partial response.
|
|
1419
1438
|
# @param [String] quota_user
|
|
@@ -1451,14 +1470,12 @@ module Google
|
|
|
1451
1470
|
# zones and all regions.
|
|
1452
1471
|
# @param [String] project_id
|
|
1453
1472
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1454
|
-
#
|
|
1455
|
-
#
|
|
1456
|
-
# the parent field.
|
|
1473
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1474
|
+
# field has been deprecated and replaced by the parent field.
|
|
1457
1475
|
# @param [String] zone
|
|
1458
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1459
|
-
#
|
|
1460
|
-
#
|
|
1461
|
-
# replaced by the parent field.
|
|
1476
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1477
|
+
# com/compute/docs/zones#available) to return operations for, or `-` for all
|
|
1478
|
+
# zones. This field has been deprecated and replaced by the parent field.
|
|
1462
1479
|
# @param [String] fields
|
|
1463
1480
|
# Selector specifying which fields to include in a partial response.
|
|
1464
1481
|
# @param [String] quota_user
|
|
@@ -1491,13 +1508,12 @@ module Google
|
|
|
1491
1508
|
# Returns configuration info about the Google Kubernetes Engine service.
|
|
1492
1509
|
# @param [String] project_id
|
|
1493
1510
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1494
|
-
#
|
|
1495
|
-
#
|
|
1496
|
-
# the name field.
|
|
1511
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1512
|
+
# field has been deprecated and replaced by the name field.
|
|
1497
1513
|
# @param [String] zone
|
|
1498
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1499
|
-
#
|
|
1500
|
-
#
|
|
1514
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1515
|
+
# com/compute/docs/zones#available) to return operations for. This field has
|
|
1516
|
+
# been deprecated and replaced by the name field.
|
|
1501
1517
|
# @param [String] name
|
|
1502
1518
|
# The name (project and location) of the server config to get, specified in the
|
|
1503
1519
|
# format `projects/*/locations/*`.
|
|
@@ -1533,14 +1549,12 @@ module Google
|
|
|
1533
1549
|
# Sets the addons for a specific cluster.
|
|
1534
1550
|
# @param [String] project_id
|
|
1535
1551
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1536
|
-
#
|
|
1537
|
-
#
|
|
1538
|
-
# the name field.
|
|
1552
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1553
|
+
# field has been deprecated and replaced by the name field.
|
|
1539
1554
|
# @param [String] zone
|
|
1540
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1541
|
-
#
|
|
1542
|
-
#
|
|
1543
|
-
# field.
|
|
1555
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1556
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1557
|
+
# been deprecated and replaced by the name field.
|
|
1544
1558
|
# @param [String] cluster_id
|
|
1545
1559
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
1546
1560
|
# and replaced by the name field.
|
|
@@ -1576,17 +1590,50 @@ module Google
|
|
|
1576
1590
|
execute_or_queue_command(command, &block)
|
|
1577
1591
|
end
|
|
1578
1592
|
|
|
1593
|
+
# CompleteControlPlaneUpgrade completes the rollback-safe upgrade by performing
|
|
1594
|
+
# the step two upgrade for a specific cluster.
|
|
1595
|
+
# @param [String] name
|
|
1596
|
+
# The name (project, location, cluster) of the cluster to complete upgrade.
|
|
1597
|
+
# Specified in the format `projects/*/locations/*/clusters/*`.
|
|
1598
|
+
# @param [Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest] complete_control_plane_upgrade_request_object
|
|
1599
|
+
# @param [String] fields
|
|
1600
|
+
# Selector specifying which fields to include in a partial response.
|
|
1601
|
+
# @param [String] quota_user
|
|
1602
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1603
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1604
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1605
|
+
# Request-specific options
|
|
1606
|
+
#
|
|
1607
|
+
# @yield [result, err] Result & error if block supplied
|
|
1608
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::Operation] parsed result object
|
|
1609
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1610
|
+
#
|
|
1611
|
+
# @return [Google::Apis::ContainerV1beta1::Operation]
|
|
1612
|
+
#
|
|
1613
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1614
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1615
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1616
|
+
def complete_project_zone_cluster_control_plane_upgrade(name, complete_control_plane_upgrade_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1617
|
+
command = make_simple_command(:post, 'v1beta1/{+name}:completeControlPlaneUpgrade', options)
|
|
1618
|
+
command.request_representation = Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest::Representation
|
|
1619
|
+
command.request_object = complete_control_plane_upgrade_request_object
|
|
1620
|
+
command.response_representation = Google::Apis::ContainerV1beta1::Operation::Representation
|
|
1621
|
+
command.response_class = Google::Apis::ContainerV1beta1::Operation
|
|
1622
|
+
command.params['name'] = name unless name.nil?
|
|
1623
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1624
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1625
|
+
execute_or_queue_command(command, &block)
|
|
1626
|
+
end
|
|
1627
|
+
|
|
1579
1628
|
# Completes master IP rotation.
|
|
1580
1629
|
# @param [String] project_id
|
|
1581
1630
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1582
|
-
#
|
|
1583
|
-
#
|
|
1584
|
-
# the name field.
|
|
1631
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1632
|
+
# field has been deprecated and replaced by the name field.
|
|
1585
1633
|
# @param [String] zone
|
|
1586
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1587
|
-
#
|
|
1588
|
-
#
|
|
1589
|
-
# field.
|
|
1634
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1635
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1636
|
+
# been deprecated and replaced by the name field.
|
|
1590
1637
|
# @param [String] cluster_id
|
|
1591
1638
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
1592
1639
|
# replaced by the name field.
|
|
@@ -1624,22 +1671,20 @@ module Google
|
|
|
1624
1671
|
|
|
1625
1672
|
# Creates a cluster, consisting of the specified number and type of Google
|
|
1626
1673
|
# Compute Engine instances. By default, the cluster is created in the project's [
|
|
1627
|
-
# default network](https
|
|
1628
|
-
#
|
|
1629
|
-
#
|
|
1630
|
-
#
|
|
1631
|
-
#
|
|
1632
|
-
#
|
|
1674
|
+
# default network](https://cloud.google.com/compute/docs/networks-and-firewalls#
|
|
1675
|
+
# networks). One firewall is added for the cluster. After cluster creation, the
|
|
1676
|
+
# kubelet creates routes for each node to allow the containers on that node to
|
|
1677
|
+
# communicate with all other instances in the cluster. Finally, an entry is
|
|
1678
|
+
# added to the project's global metadata indicating which CIDR range the cluster
|
|
1679
|
+
# is using.
|
|
1633
1680
|
# @param [String] project_id
|
|
1634
1681
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1635
|
-
#
|
|
1636
|
-
#
|
|
1637
|
-
# the parent field.
|
|
1682
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1683
|
+
# field has been deprecated and replaced by the parent field.
|
|
1638
1684
|
# @param [String] zone
|
|
1639
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1640
|
-
#
|
|
1641
|
-
#
|
|
1642
|
-
# field.
|
|
1685
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1686
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1687
|
+
# been deprecated and replaced by the parent field.
|
|
1643
1688
|
# @param [Google::Apis::ContainerV1beta1::CreateClusterRequest] create_cluster_request_object
|
|
1644
1689
|
# @param [String] fields
|
|
1645
1690
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -1678,14 +1723,12 @@ module Google
|
|
|
1678
1723
|
# present when the cluster was initially created.
|
|
1679
1724
|
# @param [String] project_id
|
|
1680
1725
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1681
|
-
#
|
|
1682
|
-
#
|
|
1683
|
-
# the name field.
|
|
1726
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1727
|
+
# field has been deprecated and replaced by the name field.
|
|
1684
1728
|
# @param [String] zone
|
|
1685
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1686
|
-
#
|
|
1687
|
-
#
|
|
1688
|
-
# field.
|
|
1729
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1730
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1731
|
+
# been deprecated and replaced by the name field.
|
|
1689
1732
|
# @param [String] cluster_id
|
|
1690
1733
|
# Deprecated. The name of the cluster to delete. This field has been deprecated
|
|
1691
1734
|
# and replaced by the name field.
|
|
@@ -1760,14 +1803,12 @@ module Google
|
|
|
1760
1803
|
# Gets the details for a specific cluster.
|
|
1761
1804
|
# @param [String] project_id
|
|
1762
1805
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1763
|
-
#
|
|
1764
|
-
#
|
|
1765
|
-
# the name field.
|
|
1806
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1807
|
+
# field has been deprecated and replaced by the name field.
|
|
1766
1808
|
# @param [String] zone
|
|
1767
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1768
|
-
#
|
|
1769
|
-
#
|
|
1770
|
-
# field.
|
|
1809
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1810
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1811
|
+
# been deprecated and replaced by the name field.
|
|
1771
1812
|
# @param [String] cluster_id
|
|
1772
1813
|
# Deprecated. The name of the cluster to retrieve. This field has been
|
|
1773
1814
|
# deprecated and replaced by the name field.
|
|
@@ -1807,14 +1848,12 @@ module Google
|
|
|
1807
1848
|
# Enables or disables the ABAC authorization mechanism on a cluster.
|
|
1808
1849
|
# @param [String] project_id
|
|
1809
1850
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1810
|
-
#
|
|
1811
|
-
#
|
|
1812
|
-
# the name field.
|
|
1851
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1852
|
+
# field has been deprecated and replaced by the name field.
|
|
1813
1853
|
# @param [String] zone
|
|
1814
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1815
|
-
#
|
|
1816
|
-
#
|
|
1817
|
-
# field.
|
|
1854
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1855
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1856
|
+
# been deprecated and replaced by the name field.
|
|
1818
1857
|
# @param [String] cluster_id
|
|
1819
1858
|
# Deprecated. The name of the cluster to update. This field has been deprecated
|
|
1820
1859
|
# and replaced by the name field.
|
|
@@ -1854,14 +1893,12 @@ module Google
|
|
|
1854
1893
|
# zones.
|
|
1855
1894
|
# @param [String] project_id
|
|
1856
1895
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1857
|
-
#
|
|
1858
|
-
#
|
|
1859
|
-
# the parent field.
|
|
1896
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1897
|
+
# field has been deprecated and replaced by the parent field.
|
|
1860
1898
|
# @param [String] zone
|
|
1861
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1862
|
-
#
|
|
1863
|
-
#
|
|
1864
|
-
# replaced by the parent field.
|
|
1899
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1900
|
+
# com/compute/docs/zones#available) in which the cluster resides, or "-" for all
|
|
1901
|
+
# zones. This field has been deprecated and replaced by the parent field.
|
|
1865
1902
|
# @param [String] parent
|
|
1866
1903
|
# The parent (project and location) where the clusters will be listed. Specified
|
|
1867
1904
|
# in the format `projects/*/locations/*`. Location "-" matches all zones and all
|
|
@@ -1896,19 +1933,16 @@ module Google
|
|
|
1896
1933
|
end
|
|
1897
1934
|
|
|
1898
1935
|
# Sets the locations for a specific cluster. Deprecated. Use [projects.locations.
|
|
1899
|
-
# clusters.update](https
|
|
1900
|
-
#
|
|
1901
|
-
# update) instead.
|
|
1936
|
+
# clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/
|
|
1937
|
+
# rest/v1beta1/projects.locations.clusters/update) instead.
|
|
1902
1938
|
# @param [String] project_id
|
|
1903
1939
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1904
|
-
#
|
|
1905
|
-
#
|
|
1906
|
-
# the name field.
|
|
1940
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1941
|
+
# field has been deprecated and replaced by the name field.
|
|
1907
1942
|
# @param [String] zone
|
|
1908
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1909
|
-
#
|
|
1910
|
-
#
|
|
1911
|
-
# field.
|
|
1943
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1944
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1945
|
+
# been deprecated and replaced by the name field.
|
|
1912
1946
|
# @param [String] cluster_id
|
|
1913
1947
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
1914
1948
|
# and replaced by the name field.
|
|
@@ -1947,14 +1981,12 @@ module Google
|
|
|
1947
1981
|
# Sets the logging service for a specific cluster.
|
|
1948
1982
|
# @param [String] project_id
|
|
1949
1983
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1950
|
-
#
|
|
1951
|
-
#
|
|
1952
|
-
# the name field.
|
|
1984
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
1985
|
+
# field has been deprecated and replaced by the name field.
|
|
1953
1986
|
# @param [String] zone
|
|
1954
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
1955
|
-
#
|
|
1956
|
-
#
|
|
1957
|
-
# field.
|
|
1987
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
1988
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
1989
|
+
# been deprecated and replaced by the name field.
|
|
1958
1990
|
# @param [String] cluster_id
|
|
1959
1991
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
1960
1992
|
# and replaced by the name field.
|
|
@@ -1993,14 +2025,12 @@ module Google
|
|
|
1993
2025
|
# Updates the master for a specific cluster.
|
|
1994
2026
|
# @param [String] project_id
|
|
1995
2027
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
1996
|
-
#
|
|
1997
|
-
#
|
|
1998
|
-
# the name field.
|
|
2028
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2029
|
+
# field has been deprecated and replaced by the name field.
|
|
1999
2030
|
# @param [String] zone
|
|
2000
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2001
|
-
#
|
|
2002
|
-
#
|
|
2003
|
-
# field.
|
|
2031
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2032
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2033
|
+
# been deprecated and replaced by the name field.
|
|
2004
2034
|
# @param [String] cluster_id
|
|
2005
2035
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
2006
2036
|
# and replaced by the name field.
|
|
@@ -2039,14 +2069,12 @@ module Google
|
|
|
2039
2069
|
# Sets the monitoring service for a specific cluster.
|
|
2040
2070
|
# @param [String] project_id
|
|
2041
2071
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2042
|
-
#
|
|
2043
|
-
#
|
|
2044
|
-
# the name field.
|
|
2072
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2073
|
+
# field has been deprecated and replaced by the name field.
|
|
2045
2074
|
# @param [String] zone
|
|
2046
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2047
|
-
#
|
|
2048
|
-
#
|
|
2049
|
-
# field.
|
|
2075
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2076
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2077
|
+
# been deprecated and replaced by the name field.
|
|
2050
2078
|
# @param [String] cluster_id
|
|
2051
2079
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
2052
2080
|
# and replaced by the name field.
|
|
@@ -2085,14 +2113,12 @@ module Google
|
|
|
2085
2113
|
# Sets labels on a cluster.
|
|
2086
2114
|
# @param [String] project_id
|
|
2087
2115
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2088
|
-
#
|
|
2089
|
-
#
|
|
2090
|
-
# the name field.
|
|
2116
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2117
|
+
# field has been deprecated and replaced by the name field.
|
|
2091
2118
|
# @param [String] zone
|
|
2092
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2093
|
-
#
|
|
2094
|
-
#
|
|
2095
|
-
# field.
|
|
2119
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2120
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2121
|
+
# been deprecated and replaced by the name field.
|
|
2096
2122
|
# @param [String] cluster_id
|
|
2097
2123
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
2098
2124
|
# replaced by the name field.
|
|
@@ -2131,12 +2157,10 @@ module Google
|
|
|
2131
2157
|
# Sets the maintenance policy for a cluster.
|
|
2132
2158
|
# @param [String] project_id
|
|
2133
2159
|
# Required. The Google Developers Console [project ID or project number](https://
|
|
2134
|
-
#
|
|
2135
|
-
# creating-managing-projects).
|
|
2160
|
+
# cloud.google.com/resource-manager/docs/creating-managing-projects).
|
|
2136
2161
|
# @param [String] zone
|
|
2137
|
-
# Required. The name of the Google Compute Engine [zone](https
|
|
2138
|
-
#
|
|
2139
|
-
# the cluster resides.
|
|
2162
|
+
# Required. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2163
|
+
# com/compute/docs/zones#available) in which the cluster resides.
|
|
2140
2164
|
# @param [String] cluster_id
|
|
2141
2165
|
# Required. The name of the cluster to update.
|
|
2142
2166
|
# @param [Google::Apis::ContainerV1beta1::SetMaintenancePolicyRequest] set_maintenance_policy_request_object
|
|
@@ -2176,14 +2200,12 @@ module Google
|
|
|
2176
2200
|
# password.
|
|
2177
2201
|
# @param [String] project_id
|
|
2178
2202
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2179
|
-
#
|
|
2180
|
-
#
|
|
2181
|
-
# the name field.
|
|
2203
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2204
|
+
# field has been deprecated and replaced by the name field.
|
|
2182
2205
|
# @param [String] zone
|
|
2183
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2184
|
-
#
|
|
2185
|
-
#
|
|
2186
|
-
# field.
|
|
2206
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2207
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2208
|
+
# been deprecated and replaced by the name field.
|
|
2187
2209
|
# @param [String] cluster_id
|
|
2188
2210
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
2189
2211
|
# and replaced by the name field.
|
|
@@ -2222,14 +2244,12 @@ module Google
|
|
|
2222
2244
|
# Enables or disables Network Policy for a cluster.
|
|
2223
2245
|
# @param [String] project_id
|
|
2224
2246
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2225
|
-
#
|
|
2226
|
-
#
|
|
2227
|
-
# 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.
|
|
2228
2249
|
# @param [String] zone
|
|
2229
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2230
|
-
#
|
|
2231
|
-
#
|
|
2232
|
-
# field.
|
|
2250
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2251
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2252
|
+
# been deprecated and replaced by the name field.
|
|
2233
2253
|
# @param [String] cluster_id
|
|
2234
2254
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
2235
2255
|
# replaced by the name field.
|
|
@@ -2268,14 +2288,12 @@ module Google
|
|
|
2268
2288
|
# Starts master IP rotation.
|
|
2269
2289
|
# @param [String] project_id
|
|
2270
2290
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2271
|
-
#
|
|
2272
|
-
#
|
|
2273
|
-
# the name field.
|
|
2291
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2292
|
+
# field has been deprecated and replaced by the name field.
|
|
2274
2293
|
# @param [String] zone
|
|
2275
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2276
|
-
#
|
|
2277
|
-
#
|
|
2278
|
-
# field.
|
|
2294
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2295
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2296
|
+
# been deprecated and replaced by the name field.
|
|
2279
2297
|
# @param [String] cluster_id
|
|
2280
2298
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
2281
2299
|
# replaced by the name field.
|
|
@@ -2314,14 +2332,12 @@ module Google
|
|
|
2314
2332
|
# Updates the settings for a specific cluster.
|
|
2315
2333
|
# @param [String] project_id
|
|
2316
2334
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2317
|
-
#
|
|
2318
|
-
#
|
|
2319
|
-
# the name field.
|
|
2335
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2336
|
+
# field has been deprecated and replaced by the name field.
|
|
2320
2337
|
# @param [String] zone
|
|
2321
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2322
|
-
#
|
|
2323
|
-
#
|
|
2324
|
-
# field.
|
|
2338
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2339
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2340
|
+
# been deprecated and replaced by the name field.
|
|
2325
2341
|
# @param [String] cluster_id
|
|
2326
2342
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
2327
2343
|
# and replaced by the name field.
|
|
@@ -2360,14 +2376,12 @@ module Google
|
|
|
2360
2376
|
# Sets the autoscaling settings of a specific node pool.
|
|
2361
2377
|
# @param [String] project_id
|
|
2362
2378
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2363
|
-
#
|
|
2364
|
-
#
|
|
2365
|
-
# the name field.
|
|
2379
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2380
|
+
# field has been deprecated and replaced by the name field.
|
|
2366
2381
|
# @param [String] zone
|
|
2367
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2368
|
-
#
|
|
2369
|
-
#
|
|
2370
|
-
# field.
|
|
2382
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2383
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2384
|
+
# been deprecated and replaced by the name field.
|
|
2371
2385
|
# @param [String] cluster_id
|
|
2372
2386
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
2373
2387
|
# and replaced by the name field.
|
|
@@ -2410,14 +2424,12 @@ module Google
|
|
|
2410
2424
|
# Creates a node pool for a cluster.
|
|
2411
2425
|
# @param [String] project_id
|
|
2412
2426
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2413
|
-
#
|
|
2414
|
-
#
|
|
2415
|
-
# the parent field.
|
|
2427
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2428
|
+
# field has been deprecated and replaced by the parent field.
|
|
2416
2429
|
# @param [String] zone
|
|
2417
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2418
|
-
#
|
|
2419
|
-
#
|
|
2420
|
-
# field.
|
|
2430
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2431
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2432
|
+
# been deprecated and replaced by the parent field.
|
|
2421
2433
|
# @param [String] cluster_id
|
|
2422
2434
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
2423
2435
|
# replaced by the parent field.
|
|
@@ -2456,14 +2468,12 @@ module Google
|
|
|
2456
2468
|
# Deletes a node pool from a cluster.
|
|
2457
2469
|
# @param [String] project_id
|
|
2458
2470
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2459
|
-
#
|
|
2460
|
-
#
|
|
2461
|
-
# the name field.
|
|
2471
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2472
|
+
# field has been deprecated and replaced by the name field.
|
|
2462
2473
|
# @param [String] zone
|
|
2463
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2464
|
-
#
|
|
2465
|
-
#
|
|
2466
|
-
# field.
|
|
2474
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2475
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2476
|
+
# been deprecated and replaced by the name field.
|
|
2467
2477
|
# @param [String] cluster_id
|
|
2468
2478
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
2469
2479
|
# replaced by the name field.
|
|
@@ -2542,14 +2552,12 @@ module Google
|
|
|
2542
2552
|
# Retrieves the requested node pool.
|
|
2543
2553
|
# @param [String] project_id
|
|
2544
2554
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2545
|
-
#
|
|
2546
|
-
#
|
|
2547
|
-
# the name field.
|
|
2555
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2556
|
+
# field has been deprecated and replaced by the name field.
|
|
2548
2557
|
# @param [String] zone
|
|
2549
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2550
|
-
#
|
|
2551
|
-
#
|
|
2552
|
-
# field.
|
|
2558
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2559
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2560
|
+
# been deprecated and replaced by the name field.
|
|
2553
2561
|
# @param [String] cluster_id
|
|
2554
2562
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
2555
2563
|
# replaced by the name field.
|
|
@@ -2593,14 +2601,12 @@ module Google
|
|
|
2593
2601
|
# Lists the node pools for a cluster.
|
|
2594
2602
|
# @param [String] project_id
|
|
2595
2603
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2596
|
-
#
|
|
2597
|
-
#
|
|
2598
|
-
# the parent field.
|
|
2604
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2605
|
+
# field has been deprecated and replaced by the parent field.
|
|
2599
2606
|
# @param [String] zone
|
|
2600
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2601
|
-
#
|
|
2602
|
-
#
|
|
2603
|
-
# field.
|
|
2607
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2608
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2609
|
+
# been deprecated and replaced by the parent field.
|
|
2604
2610
|
# @param [String] cluster_id
|
|
2605
2611
|
# Deprecated. The name of the cluster. This field has been deprecated and
|
|
2606
2612
|
# replaced by the parent field.
|
|
@@ -2641,14 +2647,12 @@ module Google
|
|
|
2641
2647
|
# changes if the last upgrade successfully completed.
|
|
2642
2648
|
# @param [String] project_id
|
|
2643
2649
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2644
|
-
#
|
|
2645
|
-
#
|
|
2646
|
-
# the name field.
|
|
2650
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2651
|
+
# field has been deprecated and replaced by the name field.
|
|
2647
2652
|
# @param [String] zone
|
|
2648
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2649
|
-
#
|
|
2650
|
-
#
|
|
2651
|
-
# field.
|
|
2653
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2654
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2655
|
+
# been deprecated and replaced by the name field.
|
|
2652
2656
|
# @param [String] cluster_id
|
|
2653
2657
|
# Deprecated. The name of the cluster to rollback. This field has been
|
|
2654
2658
|
# deprecated and replaced by the name field.
|
|
@@ -2691,14 +2695,12 @@ module Google
|
|
|
2691
2695
|
# Sets the NodeManagement options for a node pool.
|
|
2692
2696
|
# @param [String] project_id
|
|
2693
2697
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2694
|
-
#
|
|
2695
|
-
#
|
|
2696
|
-
# the name field.
|
|
2698
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2699
|
+
# field has been deprecated and replaced by the name field.
|
|
2697
2700
|
# @param [String] zone
|
|
2698
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2699
|
-
#
|
|
2700
|
-
#
|
|
2701
|
-
# field.
|
|
2701
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2702
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2703
|
+
# been deprecated and replaced by the name field.
|
|
2702
2704
|
# @param [String] cluster_id
|
|
2703
2705
|
# Deprecated. The name of the cluster to update. This field has been deprecated
|
|
2704
2706
|
# and replaced by the name field.
|
|
@@ -2743,14 +2745,12 @@ module Google
|
|
|
2743
2745
|
# locations.
|
|
2744
2746
|
# @param [String] project_id
|
|
2745
2747
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2746
|
-
#
|
|
2747
|
-
#
|
|
2748
|
-
# the name field.
|
|
2748
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2749
|
+
# field has been deprecated and replaced by the name field.
|
|
2749
2750
|
# @param [String] zone
|
|
2750
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2751
|
-
#
|
|
2752
|
-
#
|
|
2753
|
-
# field.
|
|
2751
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2752
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2753
|
+
# been deprecated and replaced by the name field.
|
|
2754
2754
|
# @param [String] cluster_id
|
|
2755
2755
|
# Deprecated. The name of the cluster to update. This field has been deprecated
|
|
2756
2756
|
# and replaced by the name field.
|
|
@@ -2793,14 +2793,12 @@ module Google
|
|
|
2793
2793
|
# Updates the version and/or image type of a specific node pool.
|
|
2794
2794
|
# @param [String] project_id
|
|
2795
2795
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2796
|
-
#
|
|
2797
|
-
#
|
|
2798
|
-
# the name field.
|
|
2796
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2797
|
+
# field has been deprecated and replaced by the name field.
|
|
2799
2798
|
# @param [String] zone
|
|
2800
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2801
|
-
#
|
|
2802
|
-
#
|
|
2803
|
-
# field.
|
|
2799
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2800
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2801
|
+
# been deprecated and replaced by the name field.
|
|
2804
2802
|
# @param [String] cluster_id
|
|
2805
2803
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
|
2806
2804
|
# and replaced by the name field.
|
|
@@ -2843,14 +2841,12 @@ module Google
|
|
|
2843
2841
|
# Cancels the specified operation.
|
|
2844
2842
|
# @param [String] project_id
|
|
2845
2843
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2846
|
-
#
|
|
2847
|
-
#
|
|
2848
|
-
# the name field.
|
|
2844
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2845
|
+
# field has been deprecated and replaced by the name field.
|
|
2849
2846
|
# @param [String] zone
|
|
2850
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2851
|
-
#
|
|
2852
|
-
#
|
|
2853
|
-
# field.
|
|
2847
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2848
|
+
# com/compute/docs/zones#available) in which the operation resides. This field
|
|
2849
|
+
# has been deprecated and replaced by the name field.
|
|
2854
2850
|
# @param [String] operation_id
|
|
2855
2851
|
# Deprecated. The server-assigned `name` of the operation. This field has been
|
|
2856
2852
|
# deprecated and replaced by the name field.
|
|
@@ -2889,14 +2885,12 @@ module Google
|
|
|
2889
2885
|
# Gets the specified operation.
|
|
2890
2886
|
# @param [String] project_id
|
|
2891
2887
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2892
|
-
#
|
|
2893
|
-
#
|
|
2894
|
-
# the name field.
|
|
2888
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2889
|
+
# field has been deprecated and replaced by the name field.
|
|
2895
2890
|
# @param [String] zone
|
|
2896
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2897
|
-
#
|
|
2898
|
-
#
|
|
2899
|
-
# field.
|
|
2891
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2892
|
+
# com/compute/docs/zones#available) in which the cluster resides. This field has
|
|
2893
|
+
# been deprecated and replaced by the name field.
|
|
2900
2894
|
# @param [String] operation_id
|
|
2901
2895
|
# Deprecated. The server-assigned `name` of the operation. This field has been
|
|
2902
2896
|
# deprecated and replaced by the name field.
|
|
@@ -2936,14 +2930,12 @@ module Google
|
|
|
2936
2930
|
# Lists all operations in a project in the specified zone or all zones.
|
|
2937
2931
|
# @param [String] project_id
|
|
2938
2932
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
|
2939
|
-
#
|
|
2940
|
-
#
|
|
2941
|
-
# the parent field.
|
|
2933
|
+
# //cloud.google.com/resource-manager/docs/creating-managing-projects). This
|
|
2934
|
+
# field has been deprecated and replaced by the parent field.
|
|
2942
2935
|
# @param [String] zone
|
|
2943
|
-
# Deprecated. The name of the Google Compute Engine [zone](https
|
|
2944
|
-
#
|
|
2945
|
-
#
|
|
2946
|
-
# replaced by the parent field.
|
|
2936
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.
|
|
2937
|
+
# com/compute/docs/zones#available) to return operations for, or `-` for all
|
|
2938
|
+
# zones. This field has been deprecated and replaced by the parent field.
|
|
2947
2939
|
# @param [String] parent
|
|
2948
2940
|
# The parent (project and location) where the operations will be listed.
|
|
2949
2941
|
# Specified in the format `projects/*/locations/*`. Location "-" matches all
|