google-apis-container_v1beta1 0.43.0 → 0.88.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 +187 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/container_v1beta1/classes.rb +3799 -452
- data/lib/google/apis/container_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/container_v1beta1/representations.rb +1430 -166
- data/lib/google/apis/container_v1beta1/service.rb +575 -330
- data/lib/google/apis/container_v1beta1.rb +1 -1
- metadata +7 -10
@@ -31,8 +31,10 @@ module Google
|
|
31
31
|
# Container = Google::Apis::ContainerV1beta1 # Alias the module
|
32
32
|
# service = Container::ContainerService.new
|
33
33
|
#
|
34
|
-
# @see https://cloud.google.com/
|
34
|
+
# @see https://cloud.google.com/kubernetes-engine/docs/
|
35
35
|
class ContainerService < Google::Apis::Core::BaseService
|
36
|
+
DEFAULT_ENDPOINT_TEMPLATE = "https://container.$UNIVERSE_DOMAIN$/"
|
37
|
+
|
36
38
|
# @return [String]
|
37
39
|
# API key. Your API key identifies your project and provides you with API access,
|
38
40
|
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
@@ -44,7 +46,7 @@ module Google
|
|
44
46
|
attr_accessor :quota_user
|
45
47
|
|
46
48
|
def initialize
|
47
|
-
super(
|
49
|
+
super(DEFAULT_ENDPOINT_TEMPLATE, '',
|
48
50
|
client_name: 'google-apis-container_v1beta1',
|
49
51
|
client_version: Google::Apis::ContainerV1beta1::GEM_VERSION)
|
50
52
|
@batch_path = 'batch'
|
@@ -102,13 +104,14 @@ module Google
|
|
102
104
|
# The name (project and location) of the server config to get, specified in the
|
103
105
|
# format `projects/*/locations/*`.
|
104
106
|
# @param [String] project_id
|
105
|
-
#
|
106
|
-
#
|
107
|
-
# projects). This field has been deprecated and replaced by
|
107
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
108
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
109
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
110
|
+
# the name field.
|
108
111
|
# @param [String] zone
|
109
|
-
#
|
110
|
-
#
|
111
|
-
# field has been deprecated and replaced by the name field.
|
112
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
113
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) to return
|
114
|
+
# operations for. This field has been deprecated and replaced by the name field.
|
112
115
|
# @param [String] fields
|
113
116
|
# Selector specifying which fields to include in a partial response.
|
114
117
|
# @param [String] quota_user
|
@@ -169,6 +172,38 @@ module Google
|
|
169
172
|
execute_or_queue_command(command, &block)
|
170
173
|
end
|
171
174
|
|
175
|
+
# Checks the cluster compatibility with Autopilot mode, and returns a list of
|
176
|
+
# compatibility issues.
|
177
|
+
# @param [String] name
|
178
|
+
# The name (project, location, cluster) of the cluster to retrieve. Specified in
|
179
|
+
# the format `projects/*/locations/*/clusters/*`.
|
180
|
+
# @param [String] fields
|
181
|
+
# Selector specifying which fields to include in a partial response.
|
182
|
+
# @param [String] quota_user
|
183
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
184
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
185
|
+
# @param [Google::Apis::RequestOptions] options
|
186
|
+
# Request-specific options
|
187
|
+
#
|
188
|
+
# @yield [result, err] Result & error if block supplied
|
189
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::CheckAutopilotCompatibilityResponse] parsed result object
|
190
|
+
# @yieldparam err [StandardError] error object if request failed
|
191
|
+
#
|
192
|
+
# @return [Google::Apis::ContainerV1beta1::CheckAutopilotCompatibilityResponse]
|
193
|
+
#
|
194
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
195
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
196
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
197
|
+
def check_project_location_cluster_autopilot_compatibility(name, fields: nil, quota_user: nil, options: nil, &block)
|
198
|
+
command = make_simple_command(:get, 'v1beta1/{+name}:checkAutopilotCompatibility', options)
|
199
|
+
command.response_representation = Google::Apis::ContainerV1beta1::CheckAutopilotCompatibilityResponse::Representation
|
200
|
+
command.response_class = Google::Apis::ContainerV1beta1::CheckAutopilotCompatibilityResponse
|
201
|
+
command.params['name'] = name unless name.nil?
|
202
|
+
command.query['fields'] = fields unless fields.nil?
|
203
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
204
|
+
execute_or_queue_command(command, &block)
|
205
|
+
end
|
206
|
+
|
172
207
|
# Completes master IP rotation.
|
173
208
|
# @param [String] name
|
174
209
|
# The name (project, location, cluster name) of the cluster to complete IP
|
@@ -205,12 +240,12 @@ module Google
|
|
205
240
|
|
206
241
|
# Creates a cluster, consisting of the specified number and type of Google
|
207
242
|
# Compute Engine instances. By default, the cluster is created in the project's [
|
208
|
-
# default network](https
|
209
|
-
# networks). One firewall is added for the
|
210
|
-
# Kubelet creates routes for each node to
|
211
|
-
# communicate with all other instances in
|
212
|
-
# added to the project's global metadata
|
213
|
-
# is using.
|
243
|
+
# default network](https://`$universe.dns_names.final_documentation_domain`/
|
244
|
+
# compute/docs/networks-and-firewalls#networks). One firewall is added for the
|
245
|
+
# cluster. After cluster creation, the Kubelet creates routes for each node to
|
246
|
+
# allow the containers on that node to communicate with all other instances in
|
247
|
+
# the cluster. Finally, an entry is added to the project's global metadata
|
248
|
+
# indicating which CIDR range the cluster is using.
|
214
249
|
# @param [String] parent
|
215
250
|
# The parent (project and location) where the cluster will be created. Specified
|
216
251
|
# in the format `projects/*/locations/*`.
|
@@ -253,16 +288,18 @@ module Google
|
|
253
288
|
# The name (project, location, cluster) of the cluster to delete. Specified in
|
254
289
|
# the format `projects/*/locations/*/clusters/*`.
|
255
290
|
# @param [String] cluster_id
|
256
|
-
#
|
257
|
-
#
|
291
|
+
# Deprecated. The name of the cluster to delete. This field has been deprecated
|
292
|
+
# and replaced by the name field.
|
258
293
|
# @param [String] project_id
|
259
|
-
#
|
260
|
-
#
|
261
|
-
# projects). This field has been deprecated and replaced by
|
294
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
295
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
296
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
297
|
+
# the name field.
|
262
298
|
# @param [String] zone
|
263
|
-
#
|
264
|
-
#
|
265
|
-
# This field has been deprecated and replaced by the name
|
299
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
300
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
301
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
302
|
+
# field.
|
266
303
|
# @param [String] fields
|
267
304
|
# Selector specifying which fields to include in a partial response.
|
268
305
|
# @param [String] quota_user
|
@@ -293,21 +330,58 @@ module Google
|
|
293
330
|
execute_or_queue_command(command, &block)
|
294
331
|
end
|
295
332
|
|
333
|
+
# Fetch upgrade information of a specific cluster.
|
334
|
+
# @param [String] name
|
335
|
+
# Required. The name (project, location, cluster) of the cluster to get.
|
336
|
+
# Specified in the format `projects/*/locations/*/clusters/*` or `projects/*/
|
337
|
+
# zones/*/clusters/*`.
|
338
|
+
# @param [String] version
|
339
|
+
# API request version that initiates this operation.
|
340
|
+
# @param [String] fields
|
341
|
+
# Selector specifying which fields to include in a partial response.
|
342
|
+
# @param [String] quota_user
|
343
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
344
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
345
|
+
# @param [Google::Apis::RequestOptions] options
|
346
|
+
# Request-specific options
|
347
|
+
#
|
348
|
+
# @yield [result, err] Result & error if block supplied
|
349
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::ClusterUpgradeInfo] parsed result object
|
350
|
+
# @yieldparam err [StandardError] error object if request failed
|
351
|
+
#
|
352
|
+
# @return [Google::Apis::ContainerV1beta1::ClusterUpgradeInfo]
|
353
|
+
#
|
354
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
355
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
356
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
357
|
+
def fetch_project_location_cluster_cluster_upgrade_info(name, version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
358
|
+
command = make_simple_command(:get, 'v1beta1/{+name}:fetchClusterUpgradeInfo', options)
|
359
|
+
command.response_representation = Google::Apis::ContainerV1beta1::ClusterUpgradeInfo::Representation
|
360
|
+
command.response_class = Google::Apis::ContainerV1beta1::ClusterUpgradeInfo
|
361
|
+
command.params['name'] = name unless name.nil?
|
362
|
+
command.query['version'] = version unless version.nil?
|
363
|
+
command.query['fields'] = fields unless fields.nil?
|
364
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
365
|
+
execute_or_queue_command(command, &block)
|
366
|
+
end
|
367
|
+
|
296
368
|
# Gets the details for a specific cluster.
|
297
369
|
# @param [String] name
|
298
370
|
# The name (project, location, cluster) of the cluster to retrieve. Specified in
|
299
371
|
# the format `projects/*/locations/*/clusters/*`.
|
300
372
|
# @param [String] cluster_id
|
301
|
-
#
|
373
|
+
# Deprecated. The name of the cluster to retrieve. This field has been
|
302
374
|
# deprecated and replaced by the name field.
|
303
375
|
# @param [String] project_id
|
304
|
-
#
|
305
|
-
#
|
306
|
-
# projects). This field has been deprecated and replaced by
|
376
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
377
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
378
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
379
|
+
# the name field.
|
307
380
|
# @param [String] zone
|
308
|
-
#
|
309
|
-
#
|
310
|
-
# This field has been deprecated and replaced by the name
|
381
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
382
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
383
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
384
|
+
# field.
|
311
385
|
# @param [String] fields
|
312
386
|
# Selector specifying which fields to include in a partial response.
|
313
387
|
# @param [String] quota_user
|
@@ -339,8 +413,6 @@ module Google
|
|
339
413
|
end
|
340
414
|
|
341
415
|
# Gets the public component of the cluster signing keys in JSON Web Key format.
|
342
|
-
# This API is not yet intended for general use, and is not available for all
|
343
|
-
# clusters.
|
344
416
|
# @param [String] parent
|
345
417
|
# The cluster (project, location, cluster name) to get keys for. Specified in
|
346
418
|
# the format `projects/*/locations/*/clusters/*`.
|
@@ -378,14 +450,15 @@ module Google
|
|
378
450
|
# in the format `projects/*/locations/*`. Location "-" matches all zones and all
|
379
451
|
# regions.
|
380
452
|
# @param [String] project_id
|
381
|
-
#
|
382
|
-
#
|
383
|
-
# projects). This field has been deprecated and replaced by
|
453
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
454
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
455
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
456
|
+
# the parent field.
|
384
457
|
# @param [String] zone
|
385
|
-
#
|
386
|
-
#
|
387
|
-
# or "-" for all zones. This field has been deprecated and
|
388
|
-
# parent field.
|
458
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
459
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
460
|
+
# the cluster resides, or "-" for all zones. This field has been deprecated and
|
461
|
+
# replaced by the parent field.
|
389
462
|
# @param [String] fields
|
390
463
|
# Selector specifying which fields to include in a partial response.
|
391
464
|
# @param [String] quota_user
|
@@ -484,8 +557,9 @@ module Google
|
|
484
557
|
end
|
485
558
|
|
486
559
|
# Sets the locations for a specific cluster. Deprecated. Use [projects.locations.
|
487
|
-
# clusters.update](https
|
488
|
-
# rest/v1beta1/projects.locations.clusters/
|
560
|
+
# clusters.update](https://`$universe.dns_names.final_documentation_domain`/
|
561
|
+
# kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/
|
562
|
+
# update) instead.
|
489
563
|
# @param [String] name
|
490
564
|
# The name (project, location, cluster) of the cluster to set locations.
|
491
565
|
# Specified in the format `projects/*/locations/*/clusters/*`.
|
@@ -901,19 +975,21 @@ module Google
|
|
901
975
|
# The name (project, location, cluster, node pool id) of the node pool to delete.
|
902
976
|
# Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.
|
903
977
|
# @param [String] cluster_id
|
904
|
-
#
|
905
|
-
#
|
978
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
979
|
+
# replaced by the name field.
|
906
980
|
# @param [String] node_pool_id
|
907
|
-
#
|
981
|
+
# Deprecated. The name of the node pool to delete. This field has been
|
908
982
|
# deprecated and replaced by the name field.
|
909
983
|
# @param [String] project_id
|
910
|
-
#
|
911
|
-
#
|
912
|
-
# projects). This field has been deprecated and replaced by
|
984
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
985
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
986
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
987
|
+
# the name field.
|
913
988
|
# @param [String] zone
|
914
|
-
#
|
915
|
-
#
|
916
|
-
# This field has been deprecated and replaced by the name
|
989
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
990
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
991
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
992
|
+
# field.
|
917
993
|
# @param [String] fields
|
918
994
|
# Selector specifying which fields to include in a partial response.
|
919
995
|
# @param [String] quota_user
|
@@ -945,24 +1021,61 @@ module Google
|
|
945
1021
|
execute_or_queue_command(command, &block)
|
946
1022
|
end
|
947
1023
|
|
1024
|
+
# Fetch upgrade information of a specific nodepool.
|
1025
|
+
# @param [String] name
|
1026
|
+
# Required. The name (project, location, cluster, nodepool) of the nodepool to
|
1027
|
+
# get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`
|
1028
|
+
# or `projects/*/zones/*/clusters/*/nodePools/*`.
|
1029
|
+
# @param [String] version
|
1030
|
+
# API request version that initiates this operation.
|
1031
|
+
# @param [String] fields
|
1032
|
+
# Selector specifying which fields to include in a partial response.
|
1033
|
+
# @param [String] quota_user
|
1034
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1035
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1036
|
+
# @param [Google::Apis::RequestOptions] options
|
1037
|
+
# Request-specific options
|
1038
|
+
#
|
1039
|
+
# @yield [result, err] Result & error if block supplied
|
1040
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo] parsed result object
|
1041
|
+
# @yieldparam err [StandardError] error object if request failed
|
1042
|
+
#
|
1043
|
+
# @return [Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo]
|
1044
|
+
#
|
1045
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1046
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1047
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1048
|
+
def fetch_project_location_cluster_node_pool_node_pool_upgrade_info(name, version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1049
|
+
command = make_simple_command(:get, 'v1beta1/{+name}:fetchNodePoolUpgradeInfo', options)
|
1050
|
+
command.response_representation = Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo::Representation
|
1051
|
+
command.response_class = Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo
|
1052
|
+
command.params['name'] = name unless name.nil?
|
1053
|
+
command.query['version'] = version unless version.nil?
|
1054
|
+
command.query['fields'] = fields unless fields.nil?
|
1055
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1056
|
+
execute_or_queue_command(command, &block)
|
1057
|
+
end
|
1058
|
+
|
948
1059
|
# Retrieves the requested node pool.
|
949
1060
|
# @param [String] name
|
950
1061
|
# The name (project, location, cluster, node pool id) of the node pool to get.
|
951
1062
|
# Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.
|
952
1063
|
# @param [String] cluster_id
|
953
|
-
#
|
954
|
-
#
|
1064
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
1065
|
+
# replaced by the name field.
|
955
1066
|
# @param [String] node_pool_id
|
956
|
-
#
|
957
|
-
#
|
1067
|
+
# Deprecated. The name of the node pool. This field has been deprecated and
|
1068
|
+
# replaced by the name field.
|
958
1069
|
# @param [String] project_id
|
959
|
-
#
|
960
|
-
#
|
961
|
-
# projects). This field has been deprecated and replaced by
|
1070
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1071
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1072
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1073
|
+
# the name field.
|
962
1074
|
# @param [String] zone
|
963
|
-
#
|
964
|
-
#
|
965
|
-
# This field has been deprecated and replaced by the name
|
1075
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1076
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1077
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1078
|
+
# field.
|
966
1079
|
# @param [String] fields
|
967
1080
|
# Selector specifying which fields to include in a partial response.
|
968
1081
|
# @param [String] quota_user
|
@@ -999,16 +1112,18 @@ module Google
|
|
999
1112
|
# The parent (project, location, cluster name) where the node pools will be
|
1000
1113
|
# listed. Specified in the format `projects/*/locations/*/clusters/*`.
|
1001
1114
|
# @param [String] cluster_id
|
1002
|
-
#
|
1003
|
-
#
|
1115
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
1116
|
+
# replaced by the parent field.
|
1004
1117
|
# @param [String] project_id
|
1005
|
-
#
|
1006
|
-
#
|
1007
|
-
# projects). This field has been deprecated and replaced by
|
1118
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1119
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1120
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1121
|
+
# the parent field.
|
1008
1122
|
# @param [String] zone
|
1009
|
-
#
|
1010
|
-
#
|
1011
|
-
# This field has been deprecated and replaced by the parent
|
1123
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1124
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1125
|
+
# the cluster resides. This field has been deprecated and replaced by the parent
|
1126
|
+
# field.
|
1012
1127
|
# @param [String] fields
|
1013
1128
|
# Selector specifying which fields to include in a partial response.
|
1014
1129
|
# @param [String] quota_user
|
@@ -1217,8 +1332,7 @@ module Google
|
|
1217
1332
|
|
1218
1333
|
# Gets the OIDC discovery document for the cluster. See the [OpenID Connect
|
1219
1334
|
# Discovery 1.0 specification](https://openid.net/specs/openid-connect-discovery-
|
1220
|
-
# 1_0.html) for details.
|
1221
|
-
# not available for all clusters.
|
1335
|
+
# 1_0.html) for details.
|
1222
1336
|
# @param [String] parent
|
1223
1337
|
# The cluster (project, location, cluster name) to get the discovery document
|
1224
1338
|
# for. Specified in the format `projects/*/locations/*/clusters/*`.
|
@@ -1288,16 +1402,18 @@ module Google
|
|
1288
1402
|
# The name (project, location, operation id) of the operation to get. Specified
|
1289
1403
|
# in the format `projects/*/locations/*/operations/*`.
|
1290
1404
|
# @param [String] operation_id
|
1291
|
-
#
|
1292
|
-
#
|
1405
|
+
# Deprecated. The server-assigned `name` of the operation. This field has been
|
1406
|
+
# deprecated and replaced by the name field.
|
1293
1407
|
# @param [String] project_id
|
1294
|
-
#
|
1295
|
-
#
|
1296
|
-
# projects). This field has been deprecated and replaced by
|
1408
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1409
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1410
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1411
|
+
# the name field.
|
1297
1412
|
# @param [String] zone
|
1298
|
-
#
|
1299
|
-
#
|
1300
|
-
# This field has been deprecated and replaced by the name
|
1413
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1414
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1415
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1416
|
+
# field.
|
1301
1417
|
# @param [String] fields
|
1302
1418
|
# Selector specifying which fields to include in a partial response.
|
1303
1419
|
# @param [String] quota_user
|
@@ -1334,14 +1450,15 @@ module Google
|
|
1334
1450
|
# Specified in the format `projects/*/locations/*`. Location "-" matches all
|
1335
1451
|
# zones and all regions.
|
1336
1452
|
# @param [String] project_id
|
1337
|
-
#
|
1338
|
-
#
|
1339
|
-
# projects). This field has been deprecated and replaced by
|
1453
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1454
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1455
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1456
|
+
# the parent field.
|
1340
1457
|
# @param [String] zone
|
1341
|
-
#
|
1342
|
-
#
|
1343
|
-
# for all zones. This field has been deprecated and
|
1344
|
-
# field.
|
1458
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1459
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) to return
|
1460
|
+
# operations for, or `-` for all zones. This field has been deprecated and
|
1461
|
+
# replaced by the parent field.
|
1345
1462
|
# @param [String] fields
|
1346
1463
|
# Selector specifying which fields to include in a partial response.
|
1347
1464
|
# @param [String] quota_user
|
@@ -1373,13 +1490,14 @@ module Google
|
|
1373
1490
|
|
1374
1491
|
# Returns configuration info about the Google Kubernetes Engine service.
|
1375
1492
|
# @param [String] project_id
|
1376
|
-
#
|
1377
|
-
#
|
1378
|
-
# projects). This field has been deprecated and replaced by
|
1493
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1494
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1495
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1496
|
+
# the name field.
|
1379
1497
|
# @param [String] zone
|
1380
|
-
#
|
1381
|
-
#
|
1382
|
-
# field has been deprecated and replaced by the name field.
|
1498
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1499
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) to return
|
1500
|
+
# operations for. This field has been deprecated and replaced by the name field.
|
1383
1501
|
# @param [String] name
|
1384
1502
|
# The name (project and location) of the server config to get, specified in the
|
1385
1503
|
# format `projects/*/locations/*`.
|
@@ -1414,16 +1532,18 @@ module Google
|
|
1414
1532
|
|
1415
1533
|
# Sets the addons for a specific cluster.
|
1416
1534
|
# @param [String] project_id
|
1417
|
-
#
|
1418
|
-
#
|
1419
|
-
# projects). This field has been deprecated and replaced by
|
1535
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1536
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1537
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1538
|
+
# the name field.
|
1420
1539
|
# @param [String] zone
|
1421
|
-
#
|
1422
|
-
#
|
1423
|
-
# This field has been deprecated and replaced by the name
|
1540
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1541
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1542
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1543
|
+
# field.
|
1424
1544
|
# @param [String] cluster_id
|
1425
|
-
#
|
1426
|
-
#
|
1545
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
1546
|
+
# and replaced by the name field.
|
1427
1547
|
# @param [Google::Apis::ContainerV1beta1::SetAddonsConfigRequest] set_addons_config_request_object
|
1428
1548
|
# @param [String] fields
|
1429
1549
|
# Selector specifying which fields to include in a partial response.
|
@@ -1458,16 +1578,18 @@ module Google
|
|
1458
1578
|
|
1459
1579
|
# Completes master IP rotation.
|
1460
1580
|
# @param [String] project_id
|
1461
|
-
#
|
1462
|
-
#
|
1463
|
-
# projects). This field has been deprecated and replaced by
|
1581
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1582
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1583
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1584
|
+
# the name field.
|
1464
1585
|
# @param [String] zone
|
1465
|
-
#
|
1466
|
-
#
|
1467
|
-
# This field has been deprecated and replaced by the name
|
1586
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1587
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1588
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1589
|
+
# field.
|
1468
1590
|
# @param [String] cluster_id
|
1469
|
-
#
|
1470
|
-
#
|
1591
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
1592
|
+
# replaced by the name field.
|
1471
1593
|
# @param [Google::Apis::ContainerV1beta1::CompleteIpRotationRequest] complete_ip_rotation_request_object
|
1472
1594
|
# @param [String] fields
|
1473
1595
|
# Selector specifying which fields to include in a partial response.
|
@@ -1502,20 +1624,22 @@ module Google
|
|
1502
1624
|
|
1503
1625
|
# Creates a cluster, consisting of the specified number and type of Google
|
1504
1626
|
# Compute Engine instances. By default, the cluster is created in the project's [
|
1505
|
-
# default network](https
|
1506
|
-
# networks). One firewall is added for the
|
1507
|
-
# Kubelet creates routes for each node to
|
1508
|
-
# communicate with all other instances in
|
1509
|
-
# added to the project's global metadata
|
1510
|
-
# is using.
|
1627
|
+
# default network](https://`$universe.dns_names.final_documentation_domain`/
|
1628
|
+
# compute/docs/networks-and-firewalls#networks). One firewall is added for the
|
1629
|
+
# cluster. After cluster creation, the Kubelet creates routes for each node to
|
1630
|
+
# allow the containers on that node to communicate with all other instances in
|
1631
|
+
# the cluster. Finally, an entry is added to the project's global metadata
|
1632
|
+
# indicating which CIDR range the cluster is using.
|
1511
1633
|
# @param [String] project_id
|
1512
|
-
#
|
1513
|
-
#
|
1514
|
-
# projects). This field has been deprecated and replaced by
|
1634
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1635
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1636
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1637
|
+
# the parent field.
|
1515
1638
|
# @param [String] zone
|
1516
|
-
#
|
1517
|
-
#
|
1518
|
-
# This field has been deprecated and replaced by the parent
|
1639
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1640
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1641
|
+
# the cluster resides. This field has been deprecated and replaced by the parent
|
1642
|
+
# field.
|
1519
1643
|
# @param [Google::Apis::ContainerV1beta1::CreateClusterRequest] create_cluster_request_object
|
1520
1644
|
# @param [String] fields
|
1521
1645
|
# Selector specifying which fields to include in a partial response.
|
@@ -1553,16 +1677,18 @@ module Google
|
|
1553
1677
|
# cluster, such as load balancer resources, are not deleted if they weren't
|
1554
1678
|
# present when the cluster was initially created.
|
1555
1679
|
# @param [String] project_id
|
1556
|
-
#
|
1557
|
-
#
|
1558
|
-
# projects). This field has been deprecated and replaced by
|
1680
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1681
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1682
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1683
|
+
# the name field.
|
1559
1684
|
# @param [String] zone
|
1560
|
-
#
|
1561
|
-
#
|
1562
|
-
# This field has been deprecated and replaced by the name
|
1685
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1686
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1687
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1688
|
+
# field.
|
1563
1689
|
# @param [String] cluster_id
|
1564
|
-
#
|
1565
|
-
#
|
1690
|
+
# Deprecated. The name of the cluster to delete. This field has been deprecated
|
1691
|
+
# and replaced by the name field.
|
1566
1692
|
# @param [String] name
|
1567
1693
|
# The name (project, location, cluster) of the cluster to delete. Specified in
|
1568
1694
|
# the format `projects/*/locations/*/clusters/*`.
|
@@ -1596,17 +1722,54 @@ module Google
|
|
1596
1722
|
execute_or_queue_command(command, &block)
|
1597
1723
|
end
|
1598
1724
|
|
1725
|
+
# Fetch upgrade information of a specific cluster.
|
1726
|
+
# @param [String] name
|
1727
|
+
# Required. The name (project, location, cluster) of the cluster to get.
|
1728
|
+
# Specified in the format `projects/*/locations/*/clusters/*` or `projects/*/
|
1729
|
+
# zones/*/clusters/*`.
|
1730
|
+
# @param [String] version
|
1731
|
+
# API request version that initiates this operation.
|
1732
|
+
# @param [String] fields
|
1733
|
+
# Selector specifying which fields to include in a partial response.
|
1734
|
+
# @param [String] quota_user
|
1735
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1736
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1737
|
+
# @param [Google::Apis::RequestOptions] options
|
1738
|
+
# Request-specific options
|
1739
|
+
#
|
1740
|
+
# @yield [result, err] Result & error if block supplied
|
1741
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::ClusterUpgradeInfo] parsed result object
|
1742
|
+
# @yieldparam err [StandardError] error object if request failed
|
1743
|
+
#
|
1744
|
+
# @return [Google::Apis::ContainerV1beta1::ClusterUpgradeInfo]
|
1745
|
+
#
|
1746
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1747
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1748
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1749
|
+
def fetch_project_zone_cluster_cluster_upgrade_info(name, version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1750
|
+
command = make_simple_command(:get, 'v1beta1/{+name}:fetchClusterUpgradeInfo', options)
|
1751
|
+
command.response_representation = Google::Apis::ContainerV1beta1::ClusterUpgradeInfo::Representation
|
1752
|
+
command.response_class = Google::Apis::ContainerV1beta1::ClusterUpgradeInfo
|
1753
|
+
command.params['name'] = name unless name.nil?
|
1754
|
+
command.query['version'] = version unless version.nil?
|
1755
|
+
command.query['fields'] = fields unless fields.nil?
|
1756
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1757
|
+
execute_or_queue_command(command, &block)
|
1758
|
+
end
|
1759
|
+
|
1599
1760
|
# Gets the details for a specific cluster.
|
1600
1761
|
# @param [String] project_id
|
1601
|
-
#
|
1602
|
-
#
|
1603
|
-
# projects). This field has been deprecated and replaced by
|
1762
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1763
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1764
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1765
|
+
# the name field.
|
1604
1766
|
# @param [String] zone
|
1605
|
-
#
|
1606
|
-
#
|
1607
|
-
# This field has been deprecated and replaced by the name
|
1767
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1768
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1769
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1770
|
+
# field.
|
1608
1771
|
# @param [String] cluster_id
|
1609
|
-
#
|
1772
|
+
# Deprecated. The name of the cluster to retrieve. This field has been
|
1610
1773
|
# deprecated and replaced by the name field.
|
1611
1774
|
# @param [String] name
|
1612
1775
|
# The name (project, location, cluster) of the cluster to retrieve. Specified in
|
@@ -1643,16 +1806,18 @@ module Google
|
|
1643
1806
|
|
1644
1807
|
# Enables or disables the ABAC authorization mechanism on a cluster.
|
1645
1808
|
# @param [String] project_id
|
1646
|
-
#
|
1647
|
-
#
|
1648
|
-
# projects). This field has been deprecated and replaced by
|
1809
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1810
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1811
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1812
|
+
# the name field.
|
1649
1813
|
# @param [String] zone
|
1650
|
-
#
|
1651
|
-
#
|
1652
|
-
# This field has been deprecated and replaced by the name
|
1814
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1815
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1816
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1817
|
+
# field.
|
1653
1818
|
# @param [String] cluster_id
|
1654
|
-
#
|
1655
|
-
#
|
1819
|
+
# Deprecated. The name of the cluster to update. This field has been deprecated
|
1820
|
+
# and replaced by the name field.
|
1656
1821
|
# @param [Google::Apis::ContainerV1beta1::SetLegacyAbacRequest] set_legacy_abac_request_object
|
1657
1822
|
# @param [String] fields
|
1658
1823
|
# Selector specifying which fields to include in a partial response.
|
@@ -1688,14 +1853,15 @@ module Google
|
|
1688
1853
|
# Lists all clusters owned by a project in either the specified zone or all
|
1689
1854
|
# zones.
|
1690
1855
|
# @param [String] project_id
|
1691
|
-
#
|
1692
|
-
#
|
1693
|
-
# projects). This field has been deprecated and replaced by
|
1856
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1857
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1858
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1859
|
+
# the parent field.
|
1694
1860
|
# @param [String] zone
|
1695
|
-
#
|
1696
|
-
#
|
1697
|
-
# or "-" for all zones. This field has been deprecated and
|
1698
|
-
# parent field.
|
1861
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1862
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1863
|
+
# the cluster resides, or "-" for all zones. This field has been deprecated and
|
1864
|
+
# replaced by the parent field.
|
1699
1865
|
# @param [String] parent
|
1700
1866
|
# The parent (project and location) where the clusters will be listed. Specified
|
1701
1867
|
# in the format `projects/*/locations/*`. Location "-" matches all zones and all
|
@@ -1730,19 +1896,22 @@ module Google
|
|
1730
1896
|
end
|
1731
1897
|
|
1732
1898
|
# Sets the locations for a specific cluster. Deprecated. Use [projects.locations.
|
1733
|
-
# clusters.update](https
|
1734
|
-
# rest/v1beta1/projects.locations.clusters/
|
1899
|
+
# clusters.update](https://`$universe.dns_names.final_documentation_domain`/
|
1900
|
+
# kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/
|
1901
|
+
# update) instead.
|
1735
1902
|
# @param [String] project_id
|
1736
|
-
#
|
1737
|
-
#
|
1738
|
-
# projects). This field has been deprecated and replaced by
|
1903
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1904
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1905
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1906
|
+
# the name field.
|
1739
1907
|
# @param [String] zone
|
1740
|
-
#
|
1741
|
-
#
|
1742
|
-
# This field has been deprecated and replaced by the name
|
1908
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1909
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1910
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1911
|
+
# field.
|
1743
1912
|
# @param [String] cluster_id
|
1744
|
-
#
|
1745
|
-
#
|
1913
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
1914
|
+
# and replaced by the name field.
|
1746
1915
|
# @param [Google::Apis::ContainerV1beta1::SetLocationsRequest] set_locations_request_object
|
1747
1916
|
# @param [String] fields
|
1748
1917
|
# Selector specifying which fields to include in a partial response.
|
@@ -1777,16 +1946,18 @@ module Google
|
|
1777
1946
|
|
1778
1947
|
# Sets the logging service for a specific cluster.
|
1779
1948
|
# @param [String] project_id
|
1780
|
-
#
|
1781
|
-
#
|
1782
|
-
# projects). This field has been deprecated and replaced by
|
1949
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1950
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1951
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1952
|
+
# the name field.
|
1783
1953
|
# @param [String] zone
|
1784
|
-
#
|
1785
|
-
#
|
1786
|
-
# This field has been deprecated and replaced by the name
|
1954
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
1955
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
1956
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
1957
|
+
# field.
|
1787
1958
|
# @param [String] cluster_id
|
1788
|
-
#
|
1789
|
-
#
|
1959
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
1960
|
+
# and replaced by the name field.
|
1790
1961
|
# @param [Google::Apis::ContainerV1beta1::SetLoggingServiceRequest] set_logging_service_request_object
|
1791
1962
|
# @param [String] fields
|
1792
1963
|
# Selector specifying which fields to include in a partial response.
|
@@ -1821,16 +1992,18 @@ module Google
|
|
1821
1992
|
|
1822
1993
|
# Updates the master for a specific cluster.
|
1823
1994
|
# @param [String] project_id
|
1824
|
-
#
|
1825
|
-
#
|
1826
|
-
# projects). This field has been deprecated and replaced by
|
1995
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
1996
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
1997
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
1998
|
+
# the name field.
|
1827
1999
|
# @param [String] zone
|
1828
|
-
#
|
1829
|
-
#
|
1830
|
-
# This field has been deprecated and replaced by the name
|
2000
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2001
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2002
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2003
|
+
# field.
|
1831
2004
|
# @param [String] cluster_id
|
1832
|
-
#
|
1833
|
-
#
|
2005
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
2006
|
+
# and replaced by the name field.
|
1834
2007
|
# @param [Google::Apis::ContainerV1beta1::UpdateMasterRequest] update_master_request_object
|
1835
2008
|
# @param [String] fields
|
1836
2009
|
# Selector specifying which fields to include in a partial response.
|
@@ -1865,16 +2038,18 @@ module Google
|
|
1865
2038
|
|
1866
2039
|
# Sets the monitoring service for a specific cluster.
|
1867
2040
|
# @param [String] project_id
|
1868
|
-
#
|
1869
|
-
#
|
1870
|
-
# projects). This field has been deprecated and replaced by
|
2041
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2042
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2043
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2044
|
+
# the name field.
|
1871
2045
|
# @param [String] zone
|
1872
|
-
#
|
1873
|
-
#
|
1874
|
-
# This field has been deprecated and replaced by the name
|
2046
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2047
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2048
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2049
|
+
# field.
|
1875
2050
|
# @param [String] cluster_id
|
1876
|
-
#
|
1877
|
-
#
|
2051
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
2052
|
+
# and replaced by the name field.
|
1878
2053
|
# @param [Google::Apis::ContainerV1beta1::SetMonitoringServiceRequest] set_monitoring_service_request_object
|
1879
2054
|
# @param [String] fields
|
1880
2055
|
# Selector specifying which fields to include in a partial response.
|
@@ -1909,16 +2084,18 @@ module Google
|
|
1909
2084
|
|
1910
2085
|
# Sets labels on a cluster.
|
1911
2086
|
# @param [String] project_id
|
1912
|
-
#
|
1913
|
-
#
|
1914
|
-
# projects). This field has been deprecated and replaced by
|
2087
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2088
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2089
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2090
|
+
# the name field.
|
1915
2091
|
# @param [String] zone
|
1916
|
-
#
|
1917
|
-
#
|
1918
|
-
# This field has been deprecated and replaced by the name
|
2092
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2093
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2094
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2095
|
+
# field.
|
1919
2096
|
# @param [String] cluster_id
|
1920
|
-
#
|
1921
|
-
#
|
2097
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2098
|
+
# replaced by the name field.
|
1922
2099
|
# @param [Google::Apis::ContainerV1beta1::SetLabelsRequest] set_labels_request_object
|
1923
2100
|
# @param [String] fields
|
1924
2101
|
# Selector specifying which fields to include in a partial response.
|
@@ -1954,10 +2131,12 @@ module Google
|
|
1954
2131
|
# Sets the maintenance policy for a cluster.
|
1955
2132
|
# @param [String] project_id
|
1956
2133
|
# Required. The Google Developers Console [project ID or project number](https://
|
1957
|
-
#
|
2134
|
+
# `$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2135
|
+
# creating-managing-projects).
|
1958
2136
|
# @param [String] zone
|
1959
|
-
# Required. The name of the Google Compute Engine [zone](https
|
1960
|
-
#
|
2137
|
+
# Required. The name of the Google Compute Engine [zone](https://`$universe.
|
2138
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2139
|
+
# the cluster resides.
|
1961
2140
|
# @param [String] cluster_id
|
1962
2141
|
# Required. The name of the cluster to update.
|
1963
2142
|
# @param [Google::Apis::ContainerV1beta1::SetMaintenancePolicyRequest] set_maintenance_policy_request_object
|
@@ -1996,16 +2175,18 @@ module Google
|
|
1996
2175
|
# a specific cluster, either via password generation or explicitly setting the
|
1997
2176
|
# password.
|
1998
2177
|
# @param [String] project_id
|
1999
|
-
#
|
2000
|
-
#
|
2001
|
-
# projects). This field has been deprecated and replaced by
|
2178
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2179
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2180
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2181
|
+
# the name field.
|
2002
2182
|
# @param [String] zone
|
2003
|
-
#
|
2004
|
-
#
|
2005
|
-
# This field has been deprecated and replaced by the name
|
2183
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2184
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2185
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2186
|
+
# field.
|
2006
2187
|
# @param [String] cluster_id
|
2007
|
-
#
|
2008
|
-
#
|
2188
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
2189
|
+
# and replaced by the name field.
|
2009
2190
|
# @param [Google::Apis::ContainerV1beta1::SetMasterAuthRequest] set_master_auth_request_object
|
2010
2191
|
# @param [String] fields
|
2011
2192
|
# Selector specifying which fields to include in a partial response.
|
@@ -2040,16 +2221,18 @@ module Google
|
|
2040
2221
|
|
2041
2222
|
# Enables or disables Network Policy for a cluster.
|
2042
2223
|
# @param [String] project_id
|
2043
|
-
#
|
2044
|
-
#
|
2045
|
-
# projects). This field has been deprecated and replaced by
|
2224
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2225
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2226
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2227
|
+
# the name field.
|
2046
2228
|
# @param [String] zone
|
2047
|
-
#
|
2048
|
-
#
|
2049
|
-
# This field has been deprecated and replaced by the name
|
2229
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2230
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2231
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2232
|
+
# field.
|
2050
2233
|
# @param [String] cluster_id
|
2051
|
-
#
|
2052
|
-
#
|
2234
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2235
|
+
# replaced by the name field.
|
2053
2236
|
# @param [Google::Apis::ContainerV1beta1::SetNetworkPolicyRequest] set_network_policy_request_object
|
2054
2237
|
# @param [String] fields
|
2055
2238
|
# Selector specifying which fields to include in a partial response.
|
@@ -2084,16 +2267,18 @@ module Google
|
|
2084
2267
|
|
2085
2268
|
# Starts master IP rotation.
|
2086
2269
|
# @param [String] project_id
|
2087
|
-
#
|
2088
|
-
#
|
2089
|
-
# projects). This field has been deprecated and replaced by
|
2270
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2271
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2272
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2273
|
+
# the name field.
|
2090
2274
|
# @param [String] zone
|
2091
|
-
#
|
2092
|
-
#
|
2093
|
-
# This field has been deprecated and replaced by the name
|
2275
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2276
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2277
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2278
|
+
# field.
|
2094
2279
|
# @param [String] cluster_id
|
2095
|
-
#
|
2096
|
-
#
|
2280
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2281
|
+
# replaced by the name field.
|
2097
2282
|
# @param [Google::Apis::ContainerV1beta1::StartIpRotationRequest] start_ip_rotation_request_object
|
2098
2283
|
# @param [String] fields
|
2099
2284
|
# Selector specifying which fields to include in a partial response.
|
@@ -2128,16 +2313,18 @@ module Google
|
|
2128
2313
|
|
2129
2314
|
# Updates the settings for a specific cluster.
|
2130
2315
|
# @param [String] project_id
|
2131
|
-
#
|
2132
|
-
#
|
2133
|
-
# projects). This field has been deprecated and replaced by
|
2316
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2317
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2318
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2319
|
+
# the name field.
|
2134
2320
|
# @param [String] zone
|
2135
|
-
#
|
2136
|
-
#
|
2137
|
-
# This field has been deprecated and replaced by the name
|
2321
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2322
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2323
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2324
|
+
# field.
|
2138
2325
|
# @param [String] cluster_id
|
2139
|
-
#
|
2140
|
-
#
|
2326
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
2327
|
+
# and replaced by the name field.
|
2141
2328
|
# @param [Google::Apis::ContainerV1beta1::UpdateClusterRequest] update_cluster_request_object
|
2142
2329
|
# @param [String] fields
|
2143
2330
|
# Selector specifying which fields to include in a partial response.
|
@@ -2172,19 +2359,21 @@ module Google
|
|
2172
2359
|
|
2173
2360
|
# Sets the autoscaling settings of a specific node pool.
|
2174
2361
|
# @param [String] project_id
|
2175
|
-
#
|
2176
|
-
#
|
2177
|
-
# projects). This field has been deprecated and replaced by
|
2362
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2363
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2364
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2365
|
+
# the name field.
|
2178
2366
|
# @param [String] zone
|
2179
|
-
#
|
2180
|
-
#
|
2181
|
-
# This field has been deprecated and replaced by the name
|
2367
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2368
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2369
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2370
|
+
# field.
|
2182
2371
|
# @param [String] cluster_id
|
2183
|
-
#
|
2184
|
-
#
|
2372
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
2373
|
+
# and replaced by the name field.
|
2185
2374
|
# @param [String] node_pool_id
|
2186
|
-
#
|
2187
|
-
#
|
2375
|
+
# Deprecated. The name of the node pool to upgrade. This field has been
|
2376
|
+
# deprecated and replaced by the name field.
|
2188
2377
|
# @param [Google::Apis::ContainerV1beta1::SetNodePoolAutoscalingRequest] set_node_pool_autoscaling_request_object
|
2189
2378
|
# @param [String] fields
|
2190
2379
|
# Selector specifying which fields to include in a partial response.
|
@@ -2220,16 +2409,18 @@ module Google
|
|
2220
2409
|
|
2221
2410
|
# Creates a node pool for a cluster.
|
2222
2411
|
# @param [String] project_id
|
2223
|
-
#
|
2224
|
-
#
|
2225
|
-
# projects). This field has been deprecated and replaced by
|
2412
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2413
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2414
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2415
|
+
# the parent field.
|
2226
2416
|
# @param [String] zone
|
2227
|
-
#
|
2228
|
-
#
|
2229
|
-
# This field has been deprecated and replaced by the parent
|
2417
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2418
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2419
|
+
# the cluster resides. This field has been deprecated and replaced by the parent
|
2420
|
+
# field.
|
2230
2421
|
# @param [String] cluster_id
|
2231
|
-
#
|
2232
|
-
#
|
2422
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2423
|
+
# replaced by the parent field.
|
2233
2424
|
# @param [Google::Apis::ContainerV1beta1::CreateNodePoolRequest] create_node_pool_request_object
|
2234
2425
|
# @param [String] fields
|
2235
2426
|
# Selector specifying which fields to include in a partial response.
|
@@ -2264,18 +2455,20 @@ module Google
|
|
2264
2455
|
|
2265
2456
|
# Deletes a node pool from a cluster.
|
2266
2457
|
# @param [String] project_id
|
2267
|
-
#
|
2268
|
-
#
|
2269
|
-
# projects). This field has been deprecated and replaced by
|
2458
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2459
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2460
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2461
|
+
# the name field.
|
2270
2462
|
# @param [String] zone
|
2271
|
-
#
|
2272
|
-
#
|
2273
|
-
# This field has been deprecated and replaced by the name
|
2463
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2464
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2465
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2466
|
+
# field.
|
2274
2467
|
# @param [String] cluster_id
|
2275
|
-
#
|
2276
|
-
#
|
2468
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2469
|
+
# replaced by the name field.
|
2277
2470
|
# @param [String] node_pool_id
|
2278
|
-
#
|
2471
|
+
# Deprecated. The name of the node pool to delete. This field has been
|
2279
2472
|
# deprecated and replaced by the name field.
|
2280
2473
|
# @param [String] name
|
2281
2474
|
# The name (project, location, cluster, node pool id) of the node pool to delete.
|
@@ -2311,21 +2504,58 @@ module Google
|
|
2311
2504
|
execute_or_queue_command(command, &block)
|
2312
2505
|
end
|
2313
2506
|
|
2507
|
+
# Fetch upgrade information of a specific nodepool.
|
2508
|
+
# @param [String] name
|
2509
|
+
# Required. The name (project, location, cluster, nodepool) of the nodepool to
|
2510
|
+
# get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`
|
2511
|
+
# or `projects/*/zones/*/clusters/*/nodePools/*`.
|
2512
|
+
# @param [String] version
|
2513
|
+
# API request version that initiates this operation.
|
2514
|
+
# @param [String] fields
|
2515
|
+
# Selector specifying which fields to include in a partial response.
|
2516
|
+
# @param [String] quota_user
|
2517
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2518
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2519
|
+
# @param [Google::Apis::RequestOptions] options
|
2520
|
+
# Request-specific options
|
2521
|
+
#
|
2522
|
+
# @yield [result, err] Result & error if block supplied
|
2523
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo] parsed result object
|
2524
|
+
# @yieldparam err [StandardError] error object if request failed
|
2525
|
+
#
|
2526
|
+
# @return [Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo]
|
2527
|
+
#
|
2528
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2529
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2530
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2531
|
+
def fetch_project_zone_cluster_node_pool_node_pool_upgrade_info(name, version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2532
|
+
command = make_simple_command(:get, 'v1beta1/{+name}:fetchNodePoolUpgradeInfo', options)
|
2533
|
+
command.response_representation = Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo::Representation
|
2534
|
+
command.response_class = Google::Apis::ContainerV1beta1::NodePoolUpgradeInfo
|
2535
|
+
command.params['name'] = name unless name.nil?
|
2536
|
+
command.query['version'] = version unless version.nil?
|
2537
|
+
command.query['fields'] = fields unless fields.nil?
|
2538
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2539
|
+
execute_or_queue_command(command, &block)
|
2540
|
+
end
|
2541
|
+
|
2314
2542
|
# Retrieves the requested node pool.
|
2315
2543
|
# @param [String] project_id
|
2316
|
-
#
|
2317
|
-
#
|
2318
|
-
# projects). This field has been deprecated and replaced by
|
2544
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2545
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2546
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2547
|
+
# the name field.
|
2319
2548
|
# @param [String] zone
|
2320
|
-
#
|
2321
|
-
#
|
2322
|
-
# This field has been deprecated and replaced by the name
|
2549
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2550
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2551
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2552
|
+
# field.
|
2323
2553
|
# @param [String] cluster_id
|
2324
|
-
#
|
2325
|
-
#
|
2554
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2555
|
+
# replaced by the name field.
|
2326
2556
|
# @param [String] node_pool_id
|
2327
|
-
#
|
2328
|
-
#
|
2557
|
+
# Deprecated. The name of the node pool. This field has been deprecated and
|
2558
|
+
# replaced by the name field.
|
2329
2559
|
# @param [String] name
|
2330
2560
|
# The name (project, location, cluster, node pool id) of the node pool to get.
|
2331
2561
|
# Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.
|
@@ -2362,16 +2592,18 @@ module Google
|
|
2362
2592
|
|
2363
2593
|
# Lists the node pools for a cluster.
|
2364
2594
|
# @param [String] project_id
|
2365
|
-
#
|
2366
|
-
#
|
2367
|
-
# projects). This field has been deprecated and replaced by
|
2595
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2596
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2597
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2598
|
+
# the parent field.
|
2368
2599
|
# @param [String] zone
|
2369
|
-
#
|
2370
|
-
#
|
2371
|
-
# This field has been deprecated and replaced by the parent
|
2600
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2601
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2602
|
+
# the cluster resides. This field has been deprecated and replaced by the parent
|
2603
|
+
# field.
|
2372
2604
|
# @param [String] cluster_id
|
2373
|
-
#
|
2374
|
-
#
|
2605
|
+
# Deprecated. The name of the cluster. This field has been deprecated and
|
2606
|
+
# replaced by the parent field.
|
2375
2607
|
# @param [String] parent
|
2376
2608
|
# The parent (project, location, cluster name) where the node pools will be
|
2377
2609
|
# listed. Specified in the format `projects/*/locations/*/clusters/*`.
|
@@ -2408,19 +2640,21 @@ module Google
|
|
2408
2640
|
# Rolls back a previously Aborted or Failed NodePool upgrade. This makes no
|
2409
2641
|
# changes if the last upgrade successfully completed.
|
2410
2642
|
# @param [String] project_id
|
2411
|
-
#
|
2412
|
-
#
|
2413
|
-
# projects). This field has been deprecated and replaced by
|
2643
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2644
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2645
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2646
|
+
# the name field.
|
2414
2647
|
# @param [String] zone
|
2415
|
-
#
|
2416
|
-
#
|
2417
|
-
# This field has been deprecated and replaced by the name
|
2648
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2649
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2650
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2651
|
+
# field.
|
2418
2652
|
# @param [String] cluster_id
|
2419
|
-
#
|
2653
|
+
# Deprecated. The name of the cluster to rollback. This field has been
|
2420
2654
|
# deprecated and replaced by the name field.
|
2421
2655
|
# @param [String] node_pool_id
|
2422
|
-
#
|
2423
|
-
#
|
2656
|
+
# Deprecated. The name of the node pool to rollback. This field has been
|
2657
|
+
# deprecated and replaced by the name field.
|
2424
2658
|
# @param [Google::Apis::ContainerV1beta1::RollbackNodePoolUpgradeRequest] rollback_node_pool_upgrade_request_object
|
2425
2659
|
# @param [String] fields
|
2426
2660
|
# Selector specifying which fields to include in a partial response.
|
@@ -2456,18 +2690,20 @@ module Google
|
|
2456
2690
|
|
2457
2691
|
# Sets the NodeManagement options for a node pool.
|
2458
2692
|
# @param [String] project_id
|
2459
|
-
#
|
2460
|
-
#
|
2461
|
-
# projects). This field has been deprecated and replaced by
|
2693
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2694
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2695
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2696
|
+
# the name field.
|
2462
2697
|
# @param [String] zone
|
2463
|
-
#
|
2464
|
-
#
|
2465
|
-
# This field has been deprecated and replaced by the name
|
2698
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2699
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2700
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2701
|
+
# field.
|
2466
2702
|
# @param [String] cluster_id
|
2467
|
-
#
|
2468
|
-
#
|
2703
|
+
# Deprecated. The name of the cluster to update. This field has been deprecated
|
2704
|
+
# and replaced by the name field.
|
2469
2705
|
# @param [String] node_pool_id
|
2470
|
-
#
|
2706
|
+
# Deprecated. The name of the node pool to update. This field has been
|
2471
2707
|
# deprecated and replaced by the name field.
|
2472
2708
|
# @param [Google::Apis::ContainerV1beta1::SetNodePoolManagementRequest] set_node_pool_management_request_object
|
2473
2709
|
# @param [String] fields
|
@@ -2506,18 +2742,20 @@ module Google
|
|
2506
2742
|
# for all replicas, including future replicas created by modifying NodePool.
|
2507
2743
|
# locations.
|
2508
2744
|
# @param [String] project_id
|
2509
|
-
#
|
2510
|
-
#
|
2511
|
-
# projects). This field has been deprecated and replaced by
|
2745
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2746
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2747
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2748
|
+
# the name field.
|
2512
2749
|
# @param [String] zone
|
2513
|
-
#
|
2514
|
-
#
|
2515
|
-
# This field has been deprecated and replaced by the name
|
2750
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2751
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2752
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2753
|
+
# field.
|
2516
2754
|
# @param [String] cluster_id
|
2517
|
-
#
|
2518
|
-
#
|
2755
|
+
# Deprecated. The name of the cluster to update. This field has been deprecated
|
2756
|
+
# and replaced by the name field.
|
2519
2757
|
# @param [String] node_pool_id
|
2520
|
-
#
|
2758
|
+
# Deprecated. The name of the node pool to update. This field has been
|
2521
2759
|
# deprecated and replaced by the name field.
|
2522
2760
|
# @param [Google::Apis::ContainerV1beta1::SetNodePoolSizeRequest] set_node_pool_size_request_object
|
2523
2761
|
# @param [String] fields
|
@@ -2554,19 +2792,21 @@ module Google
|
|
2554
2792
|
|
2555
2793
|
# Updates the version and/or image type of a specific node pool.
|
2556
2794
|
# @param [String] project_id
|
2557
|
-
#
|
2558
|
-
#
|
2559
|
-
# projects). This field has been deprecated and replaced by
|
2795
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2796
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2797
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2798
|
+
# the name field.
|
2560
2799
|
# @param [String] zone
|
2561
|
-
#
|
2562
|
-
#
|
2563
|
-
# This field has been deprecated and replaced by the name
|
2800
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2801
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2802
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2803
|
+
# field.
|
2564
2804
|
# @param [String] cluster_id
|
2565
|
-
#
|
2566
|
-
#
|
2805
|
+
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
2806
|
+
# and replaced by the name field.
|
2567
2807
|
# @param [String] node_pool_id
|
2568
|
-
#
|
2569
|
-
#
|
2808
|
+
# Deprecated. The name of the node pool to upgrade. This field has been
|
2809
|
+
# deprecated and replaced by the name field.
|
2570
2810
|
# @param [Google::Apis::ContainerV1beta1::UpdateNodePoolRequest] update_node_pool_request_object
|
2571
2811
|
# @param [String] fields
|
2572
2812
|
# Selector specifying which fields to include in a partial response.
|
@@ -2602,16 +2842,18 @@ module Google
|
|
2602
2842
|
|
2603
2843
|
# Cancels the specified operation.
|
2604
2844
|
# @param [String] project_id
|
2605
|
-
#
|
2606
|
-
#
|
2607
|
-
# projects). This field has been deprecated and replaced by
|
2845
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2846
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2847
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2848
|
+
# the name field.
|
2608
2849
|
# @param [String] zone
|
2609
|
-
#
|
2610
|
-
#
|
2611
|
-
# This field has been deprecated and replaced by the name
|
2850
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2851
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2852
|
+
# the operation resides. This field has been deprecated and replaced by the name
|
2853
|
+
# field.
|
2612
2854
|
# @param [String] operation_id
|
2613
|
-
#
|
2614
|
-
#
|
2855
|
+
# Deprecated. The server-assigned `name` of the operation. This field has been
|
2856
|
+
# deprecated and replaced by the name field.
|
2615
2857
|
# @param [Google::Apis::ContainerV1beta1::CancelOperationRequest] cancel_operation_request_object
|
2616
2858
|
# @param [String] fields
|
2617
2859
|
# Selector specifying which fields to include in a partial response.
|
@@ -2646,16 +2888,18 @@ module Google
|
|
2646
2888
|
|
2647
2889
|
# Gets the specified operation.
|
2648
2890
|
# @param [String] project_id
|
2649
|
-
#
|
2650
|
-
#
|
2651
|
-
# projects). This field has been deprecated and replaced by
|
2891
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2892
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2893
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2894
|
+
# the name field.
|
2652
2895
|
# @param [String] zone
|
2653
|
-
#
|
2654
|
-
#
|
2655
|
-
# This field has been deprecated and replaced by the name
|
2896
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2897
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) in which
|
2898
|
+
# the cluster resides. This field has been deprecated and replaced by the name
|
2899
|
+
# field.
|
2656
2900
|
# @param [String] operation_id
|
2657
|
-
#
|
2658
|
-
#
|
2901
|
+
# Deprecated. The server-assigned `name` of the operation. This field has been
|
2902
|
+
# deprecated and replaced by the name field.
|
2659
2903
|
# @param [String] name
|
2660
2904
|
# The name (project, location, operation id) of the operation to get. Specified
|
2661
2905
|
# in the format `projects/*/locations/*/operations/*`.
|
@@ -2691,14 +2935,15 @@ module Google
|
|
2691
2935
|
|
2692
2936
|
# Lists all operations in a project in the specified zone or all zones.
|
2693
2937
|
# @param [String] project_id
|
2694
|
-
#
|
2695
|
-
#
|
2696
|
-
# projects). This field has been deprecated and replaced by
|
2938
|
+
# Deprecated. The Google Developers Console [project ID or project number](https:
|
2939
|
+
# //`$universe.dns_names.final_documentation_domain`/resource-manager/docs/
|
2940
|
+
# creating-managing-projects). This field has been deprecated and replaced by
|
2941
|
+
# the parent field.
|
2697
2942
|
# @param [String] zone
|
2698
|
-
#
|
2699
|
-
#
|
2700
|
-
# for all zones. This field has been deprecated and
|
2701
|
-
# field.
|
2943
|
+
# Deprecated. The name of the Google Compute Engine [zone](https://`$universe.
|
2944
|
+
# dns_names.final_documentation_domain`/compute/docs/zones#available) to return
|
2945
|
+
# operations for, or `-` for all zones. This field has been deprecated and
|
2946
|
+
# replaced by the parent field.
|
2702
2947
|
# @param [String] parent
|
2703
2948
|
# The parent (project and location) where the operations will be listed.
|
2704
2949
|
# Specified in the format `projects/*/locations/*`. Location "-" matches all
|