| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  | # Copyright 2015 Google Inc. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  | # you may not use this file except in compliance with the License. | 
					
						
							|  |  |  | # You may obtain a copy of the License at | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | #      http://www.apache.org/licenses/LICENSE-2.0 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  | # distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  | # See the License for the specific language governing permissions and | 
					
						
							|  |  |  | # limitations under the License. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require 'google/apis/core/base_service' | 
					
						
							|  |  |  | require 'google/apis/core/json_representation' | 
					
						
							|  |  |  | require 'google/apis/core/hashable' | 
					
						
							|  |  |  | require 'google/apis/errors' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module Google | 
					
						
							|  |  |  |   module Apis | 
					
						
							|  |  |  |     module ContainerV1 | 
					
						
							| 
									
										
										
										
											2018-04-15 00:36:03 +00:00
										 |  |  |       # Kubernetes Engine API | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |       # | 
					
						
							| 
									
										
										
										
											2018-11-30 00:36:50 +00:00
										 |  |  |       # Builds and manages container-based applications, powered by the open source | 
					
						
							|  |  |  |       #  Kubernetes technology. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |       # | 
					
						
							|  |  |  |       # @example | 
					
						
							|  |  |  |       #    require 'google/apis/container_v1' | 
					
						
							|  |  |  |       # | 
					
						
							|  |  |  |       #    Container = Google::Apis::ContainerV1 # Alias the module | 
					
						
							|  |  |  |       #    service = Container::ContainerService.new | 
					
						
							|  |  |  |       # | 
					
						
							|  |  |  |       # @see https://cloud.google.com/container-engine/ | 
					
						
							|  |  |  |       class ContainerService < Google::Apis::Core::BaseService | 
					
						
							|  |  |  |         # @return [String] | 
					
						
							|  |  |  |         #  API key. Your API key identifies your project and provides you with API access, | 
					
						
							|  |  |  |         #  quota, and reports. Required unless you provide an OAuth 2.0 token. | 
					
						
							|  |  |  |         attr_accessor :key | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # @return [String] | 
					
						
							|  |  |  |         #  Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #  arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         attr_accessor :quota_user | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def initialize | 
					
						
							|  |  |  |           super('https://container.googleapis.com/', '') | 
					
						
							| 
									
										
										
										
											2017-04-03 20:18:48 +00:00
										 |  |  |           @batch_path = 'batch' | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Lists subnetworks that are usable for creating clusters in a project. | 
					
						
							|  |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The parent project where subnetworks are usable. Specified in the format ` | 
					
						
							|  |  |  |         #   projects/*`. | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # @param [String] filter | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Filtering currently only supports equality on the networkProjectId and must be | 
					
						
							|  |  |  |         #   in the form: "networkProjectId=[PROJECTID]", where `networkProjectId` is the | 
					
						
							|  |  |  |         #   project which owns the listed subnetworks. This defaults to the parent project | 
					
						
							|  |  |  |         #   ID. | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # @param [Fixnum] page_size | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The max number of results per page that should be returned. If the number of | 
					
						
							|  |  |  |         #   available results is larger than `page_size`, a `next_page_token` is returned | 
					
						
							|  |  |  |         #   which can be used to get the next page of results in subsequent requests. | 
					
						
							|  |  |  |         #   Acceptable values are 0 to 500, inclusive. (Default: 500) | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # @param [String] page_token | 
					
						
							|  |  |  |         #   Specifies a page token to use. Set this to the nextPageToken returned by | 
					
						
							|  |  |  |         #   previous list requests to get the next page of results. | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ListUsableSubnetworksResponse] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::ListUsableSubnetworksResponse] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def list_project_aggregated_usable_subnetworks(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+parent}/aggregated/usableSubnetworks', options) | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ListUsableSubnetworksResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ListUsableSubnetworksResponse | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['filter'] = filter unless filter.nil? | 
					
						
							|  |  |  |           command.query['pageSize'] = page_size unless page_size.nil? | 
					
						
							|  |  |  |           command.query['pageToken'] = page_token unless page_token.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Returns configuration info about the Google Kubernetes Engine service. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project and location) of the server config to get, specified in the | 
					
						
							|  |  |  |         #   format `projects/*/locations/*`. | 
					
						
							| 
									
										
										
										
											2015-12-03 01:10:07 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) to return operations for. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ServerConfig] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::ServerConfig] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def get_project_location_server_config(name, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+name}/serverConfig', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ServerConfig::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ServerConfig | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Completes master IP rotation. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster id) of the cluster to complete IP | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   rotation. Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CompleteIpRotationRequest] complete_ip_rotation_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def complete_project_location_cluster_ip_rotation(name, complete_ip_rotation_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:completeIpRotation', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CompleteIpRotationRequest::Representation | 
					
						
							|  |  |  |           command.request_object = complete_ip_rotation_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Creates a cluster, consisting of the specified number and type of Google | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Compute Engine instances. By default, the cluster is created in the project's [ | 
					
						
							|  |  |  |         # default network](https://cloud.google.com/compute/docs/networks-and-firewalls# | 
					
						
							|  |  |  |         # networks). One firewall is added for the cluster. After cluster creation, the | 
					
						
							|  |  |  |         # Kubelet creates routes for each node to allow the containers on that node to | 
					
						
							|  |  |  |         # communicate with all other instances in the cluster. Finally, an entry is | 
					
						
							|  |  |  |         # added to the project's global metadata indicating which CIDR range the cluster | 
					
						
							|  |  |  |         # is using. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The parent (project and location) where the cluster will be created. Specified | 
					
						
							|  |  |  |         #   in the format `projects/*/locations/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CreateClusterRequest] create_cluster_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def create_project_location_cluster(parent, create_cluster_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+parent}/clusters', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CreateClusterRequest::Representation | 
					
						
							|  |  |  |           command.request_object = create_cluster_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Deletes the cluster, including the Kubernetes endpoint and all worker nodes. | 
					
						
							|  |  |  |         # Firewalls and routes that were configured during cluster creation are also | 
					
						
							|  |  |  |         # deleted. Other Google Compute Engine resources that might be in use by the | 
					
						
							|  |  |  |         # cluster, such as load balancer resources, are not deleted if they weren't | 
					
						
							|  |  |  |         # present when the cluster was initially created. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to delete. Specified in | 
					
						
							|  |  |  |         #   the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to delete. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def delete_project_location_cluster(name, cluster_id: nil, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:delete, 'v1/{+name}', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Gets the details of a specific cluster. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to retrieve. Specified in | 
					
						
							|  |  |  |         #   the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to retrieve. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Cluster] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Cluster] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def get_project_location_cluster(name, cluster_id: nil, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+name}', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Cluster::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Cluster | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Gets the public component of the cluster signing keys in JSON Web Key format. | 
					
						
							| 
									
										
										
										
											2019-01-11 00:36:34 +00:00
										 |  |  |         # This API is not yet intended for general use, and is not available for all | 
					
						
							|  |  |  |         # clusters. | 
					
						
							|  |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The cluster (project, location, cluster id) to get keys for. Specified in the | 
					
						
							|  |  |  |         #   format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2019-01-11 00:36:34 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::GetJsonWebKeysResponse] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::GetJsonWebKeysResponse] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def get_project_location_cluster_jwks(parent, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+parent}/jwks', options) | 
					
						
							| 
									
										
										
										
											2019-01-11 00:36:34 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::GetJsonWebKeysResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::GetJsonWebKeysResponse | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # Lists all clusters owned by a project in either the specified zone or all | 
					
						
							|  |  |  |         # zones. | 
					
						
							|  |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The parent (project and location) where the clusters will be listed. Specified | 
					
						
							|  |  |  |         #   in the format `projects/*/locations/*`. Location "-" matches all zones and all | 
					
						
							|  |  |  |         #   regions. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							|  |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides, or "-" for all | 
					
						
							|  |  |  |         #   zones. This field has been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ListClustersResponse] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::ListClustersResponse] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def list_project_location_clusters(parent, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+parent}/clusters', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ListClustersResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ListClustersResponse | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the addons for a specific cluster. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to set addons. Specified | 
					
						
							|  |  |  |         #   in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetAddonsConfigRequest] set_addons_config_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_cluster_addons_config(name, set_addons_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setAddons', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetAddonsConfigRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_addons_config_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Enables or disables the ABAC authorization mechanism on a cluster. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster id) of the cluster to set legacy abac. | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLegacyAbacRequest] set_legacy_abac_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_cluster_legacy_abac(name, set_legacy_abac_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setLegacyAbac', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLegacyAbacRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_legacy_abac_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Sets the locations for a specific cluster. Deprecated. Use [projects.locations. | 
					
						
							|  |  |  |         # clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/ | 
					
						
							|  |  |  |         # rest/v1/projects.locations.clusters/update) instead. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster) of the cluster to set locations. | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLocationsRequest] set_locations_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_cluster_locations(name, set_locations_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setLocations', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLocationsRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_locations_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the logging service for a specific cluster. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to set logging. Specified | 
					
						
							|  |  |  |         #   in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLoggingServiceRequest] set_logging_service_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_cluster_logging_service(name, set_logging_service_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setLogging', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLoggingServiceRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_logging_service_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Sets the maintenance policy for a cluster. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster id) of the cluster to set maintenance | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   policy. Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetMaintenancePolicyRequest] set_maintenance_policy_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_location_cluster_maintenance_policy(name, set_maintenance_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setMaintenancePolicy', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetMaintenancePolicyRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_maintenance_policy_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Sets master auth materials. Currently supports changing the admin password or | 
					
						
							|  |  |  |         # a specific cluster, either via password generation or explicitly setting the | 
					
						
							|  |  |  |         # password. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to set auth. Specified in | 
					
						
							|  |  |  |         #   the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetMasterAuthRequest] set_master_auth_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_location_cluster_master_auth(name, set_master_auth_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setMasterAuth', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetMasterAuthRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_master_auth_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the monitoring service for a specific cluster. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster) of the cluster to set monitoring. | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetMonitoringServiceRequest] set_monitoring_service_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_cluster_monitoring_service(name, set_monitoring_service_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setMonitoring', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetMonitoringServiceRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_monitoring_service_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Enables or disables Network Policy for a cluster. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster id) of the cluster to set networking | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   policy. Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNetworkPolicyRequest] set_network_policy_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_location_cluster_network_policy(name, set_network_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setNetworkPolicy', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNetworkPolicyRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_network_policy_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Sets labels on a cluster. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster id) of the cluster to set labels. | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLabelsRequest] set_labels_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_location_cluster_resource_labels(name, set_labels_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setResourceLabels', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLabelsRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_labels_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Starts master IP rotation. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster id) of the cluster to start IP rotation. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::StartIpRotationRequest] start_ip_rotation_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def start_project_location_cluster_ip_rotation(name, start_ip_rotation_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:startIpRotation', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::StartIpRotationRequest::Representation | 
					
						
							|  |  |  |           command.request_object = start_ip_rotation_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Updates the settings of a specific cluster. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to update. Specified in | 
					
						
							|  |  |  |         #   the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::UpdateClusterRequest] update_cluster_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def update_project_location_cluster(name, update_cluster_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:put, 'v1/{+name}', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::UpdateClusterRequest::Representation | 
					
						
							|  |  |  |           command.request_object = update_cluster_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Updates the master for a specific cluster. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to update. Specified in | 
					
						
							|  |  |  |         #   the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::UpdateMasterRequest] update_master_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def update_cluster_master(name, update_master_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:updateMaster', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::UpdateMasterRequest::Representation | 
					
						
							|  |  |  |           command.request_object = update_master_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Creates a node pool for a cluster. | 
					
						
							|  |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The parent (project, location, cluster id) where the node pool will be created. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CreateNodePoolRequest] create_node_pool_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def create_project_location_cluster_node_pool(parent, create_node_pool_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+parent}/nodePools', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CreateNodePoolRequest::Representation | 
					
						
							|  |  |  |           command.request_object = create_node_pool_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Deletes a node pool from a cluster. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster, node pool id) of the node pool to delete. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool to delete. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def delete_project_location_cluster_node_pool(name, cluster_id: nil, node_pool_id: nil, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:delete, 'v1/{+name}', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Retrieves the requested node pool. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster, node pool id) of the node pool to get. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::NodePool] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::NodePool] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def get_project_location_cluster_node_pool(name, cluster_id: nil, node_pool_id: nil, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+name}', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::NodePool::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::NodePool | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Lists the node pools for a cluster. | 
					
						
							|  |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The parent (project, location, cluster id) where the node pools will be listed. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ListNodePoolsResponse] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::ListNodePoolsResponse] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def list_project_location_cluster_node_pools(parent, cluster_id: nil, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+parent}/nodePools', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ListNodePoolsResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ListNodePoolsResponse | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Rolls back a previously Aborted or Failed NodePool upgrade. This makes no | 
					
						
							|  |  |  |         # changes if the last upgrade successfully completed. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster, node pool id) of the node poll to | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   rollback upgrade. Specified in the format `projects/*/locations/*/clusters/*/ | 
					
						
							|  |  |  |         #   nodePools/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::RollbackNodePoolUpgradeRequest] rollback_node_pool_upgrade_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def rollback_project_location_cluster_node_pool(name, rollback_node_pool_upgrade_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:rollback', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::RollbackNodePoolUpgradeRequest::Representation | 
					
						
							|  |  |  |           command.request_object = rollback_node_pool_upgrade_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Sets the autoscaling settings for the specified node pool. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster, node pool) of the node pool to set | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   autoscaler settings. Specified in the format `projects/*/locations/*/clusters/* | 
					
						
							|  |  |  |         #   /nodePools/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNodePoolAutoscalingRequest] set_node_pool_autoscaling_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_location_cluster_node_pool_autoscaling(name, set_node_pool_autoscaling_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setAutoscaling', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNodePoolAutoscalingRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_node_pool_autoscaling_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Sets the NodeManagement options for a node pool. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster, node pool id) of the node pool to set | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   management properties. Specified in the format `projects/*/locations/*/ | 
					
						
							|  |  |  |         #   clusters/*/nodePools/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNodePoolManagementRequest] set_node_pool_management_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_location_cluster_node_pool_management(name, set_node_pool_management_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setManagement', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNodePoolManagementRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_node_pool_management_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the size for a specific node pool. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, cluster, node pool id) of the node pool to set | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   size. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNodePoolSizeRequest] set_node_pool_size_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_location_cluster_node_pool_size(name, set_node_pool_size_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:setSize', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNodePoolSizeRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_node_pool_size_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Updates the version and/or image type for the specified node pool. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster, node pool) of the node pool to update. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::UpdateNodePoolRequest] update_node_pool_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def update_project_location_cluster_node_pool(name, update_node_pool_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:put, 'v1/{+name}', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::UpdateNodePoolRequest::Representation | 
					
						
							|  |  |  |           command.request_object = update_node_pool_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Gets the OIDC discovery document for the cluster. See the [OpenID Connect | 
					
						
							|  |  |  |         # Discovery 1.0 specification](https://openid.net/specs/openid-connect-discovery- | 
					
						
							|  |  |  |         # 1_0.html) for details. This API is not yet intended for general use, and is | 
					
						
							|  |  |  |         # not available for all clusters. | 
					
						
							| 
									
										
										
										
											2019-01-11 00:36:34 +00:00
										 |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The cluster (project, location, cluster id) to get the discovery document for. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2019-01-11 00:36:34 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::GetOpenIdConfigResponse] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::GetOpenIdConfigResponse] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def get_project_location_cluster_well_known_openid_configuration(parent, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+parent}/.well-known/openid-configuration', options) | 
					
						
							| 
									
										
										
										
											2019-01-11 00:36:34 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::GetOpenIdConfigResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::GetOpenIdConfigResponse | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # Cancels the specified operation. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							|  |  |  |         #   The name (project, location, operation id) of the operation to cancel. | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   Specified in the format `projects/*/locations/*/operations/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CancelOperationRequest] cancel_operation_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Empty] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Empty] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def cancel_project_location_operation(name, cancel_operation_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/{+name}:cancel', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CancelOperationRequest::Representation | 
					
						
							|  |  |  |           command.request_object = cancel_operation_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Empty::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Empty | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Gets the specified operation. | 
					
						
							|  |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, operation id) of the operation to get. Specified | 
					
						
							|  |  |  |         #   in the format `projects/*/locations/*/operations/*`. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] operation_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The server-assigned `name` of the operation. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def get_project_location_operation(name, operation_id: nil, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+name}', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['name'] = name unless name.nil? | 
					
						
							|  |  |  |           command.query['operationId'] = operation_id unless operation_id.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Lists all operations in a project in a specific zone or all zones. | 
					
						
							|  |  |  |         # @param [String] parent | 
					
						
							|  |  |  |         #   The parent (project and location) where the operations will be listed. | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Specified in the format `projects/*/locations/*`. Location "-" matches all | 
					
						
							|  |  |  |         #   zones and all regions. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							|  |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) to return operations for, or `-` for all | 
					
						
							|  |  |  |         #   zones. This field has been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ListOperationsResponse] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::ListOperationsResponse] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def list_project_location_operations(parent, project_id: nil, zone: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/{+parent}/operations', options) | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ListOperationsResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ListOperationsResponse | 
					
						
							|  |  |  |           command.params['parent'] = parent unless parent.nil? | 
					
						
							|  |  |  |           command.query['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.query['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Returns configuration info about the Google Kubernetes Engine service. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2015-12-03 01:10:07 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) to return operations for. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project and location) of the server config to get, specified in the | 
					
						
							|  |  |  |         #   format `projects/*/locations/*`. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2015-12-03 01:10:07 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ServerConfig] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::ServerConfig] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def get_project_zone_serverconfig(project_id, zone, name: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/projects/{projectId}/zones/{zone}/serverconfig', options) | 
					
						
							| 
									
										
										
										
											2015-12-03 01:10:07 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ServerConfig::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ServerConfig | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['name'] = name unless name.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2015-12-03 01:10:07 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the addons for a specific cluster. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetAddonsConfigRequest] set_addons_config_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def addons_project_zone_cluster(project_id, zone, cluster_id, set_addons_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/addons', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetAddonsConfigRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_addons_config_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Completes master IP rotation. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CompleteIpRotationRequest] complete_ip_rotation_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def complete_cluster_ip_rotation(project_id, zone, cluster_id, complete_ip_rotation_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:completeIpRotation', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CompleteIpRotationRequest::Representation | 
					
						
							|  |  |  |           command.request_object = complete_ip_rotation_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Creates a cluster, consisting of the specified number and type of Google | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Compute Engine instances. By default, the cluster is created in the project's [ | 
					
						
							|  |  |  |         # default network](https://cloud.google.com/compute/docs/networks-and-firewalls# | 
					
						
							|  |  |  |         # networks). One firewall is added for the cluster. After cluster creation, the | 
					
						
							|  |  |  |         # Kubelet creates routes for each node to allow the containers on that node to | 
					
						
							|  |  |  |         # communicate with all other instances in the cluster. Finally, an entry is | 
					
						
							|  |  |  |         # added to the project's global metadata indicating which CIDR range the cluster | 
					
						
							|  |  |  |         # is using. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CreateClusterRequest] create_cluster_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def create_cluster(project_id, zone, create_cluster_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CreateClusterRequest::Representation | 
					
						
							|  |  |  |           command.request_object = create_cluster_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Deletes the cluster, including the Kubernetes endpoint and all worker nodes. | 
					
						
							|  |  |  |         # Firewalls and routes that were configured during cluster creation are also | 
					
						
							|  |  |  |         # deleted. Other Google Compute Engine resources that might be in use by the | 
					
						
							|  |  |  |         # cluster, such as load balancer resources, are not deleted if they weren't | 
					
						
							|  |  |  |         # present when the cluster was initially created. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to delete. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to delete. Specified in | 
					
						
							|  |  |  |         #   the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def delete_zone_cluster(project_id, zone, cluster_id, name: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:delete, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}', options) | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['name'] = name unless name.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Gets the details of a specific cluster. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to retrieve. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster) of the cluster to retrieve. Specified in | 
					
						
							|  |  |  |         #   the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Cluster] parsed result object | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Cluster] | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def get_zone_cluster(project_id, zone, cluster_id, name: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Cluster::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Cluster | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['name'] = name unless name.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Enables or disables the ABAC authorization mechanism on a cluster. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to update. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLegacyAbacRequest] set_legacy_abac_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def legacy_project_zone_cluster_abac(project_id, zone, cluster_id, set_legacy_abac_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/legacyAbac', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLegacyAbacRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_legacy_abac_request_object | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Lists all clusters owned by a project in either the specified zone or all | 
					
						
							|  |  |  |         # zones. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							|  |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides, or "-" for all | 
					
						
							|  |  |  |         #   zones. This field has been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The parent (project and location) where the clusters will be listed. Specified | 
					
						
							|  |  |  |         #   in the format `projects/*/locations/*`. Location "-" matches all zones and all | 
					
						
							|  |  |  |         #   regions. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ListClustersResponse] parsed result object | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::ListClustersResponse] | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def list_zone_clusters(project_id, zone, parent: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/projects/{projectId}/zones/{zone}/clusters', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ListClustersResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ListClustersResponse | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['parent'] = parent unless parent.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Sets the locations for a specific cluster. Deprecated. Use [projects.locations. | 
					
						
							|  |  |  |         # clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/ | 
					
						
							|  |  |  |         # rest/v1/projects.locations.clusters/update) instead. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLocationsRequest] set_locations_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def locations_project_zone_cluster(project_id, zone, cluster_id, set_locations_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/locations', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLocationsRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_locations_request_object | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the logging service for a specific cluster. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLoggingServiceRequest] set_logging_service_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def logging_project_zone_cluster(project_id, zone, cluster_id, set_logging_service_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/logging', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLoggingServiceRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_logging_service_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Updates the master for a specific cluster. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::UpdateMasterRequest] update_master_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def master_project_zone_cluster(project_id, zone, cluster_id, update_master_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/master', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::UpdateMasterRequest::Representation | 
					
						
							|  |  |  |           command.request_object = update_master_request_object | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the monitoring service for a specific cluster. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetMonitoringServiceRequest] set_monitoring_service_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def monitoring_project_zone_cluster(project_id, zone, cluster_id, set_monitoring_service_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/monitoring', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetMonitoringServiceRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_monitoring_service_request_object | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Sets labels on a cluster. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetLabelsRequest] set_labels_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def resource_project_zone_cluster_labels(project_id, zone, cluster_id, set_labels_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/resourceLabels', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetLabelsRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_labels_request_object | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							| 
									
										
										
										
											2017-09-20 00:35:54 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Sets the maintenance policy for a cluster. | 
					
						
							|  |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Required. The Google Developers Console [project ID or project number](https:// | 
					
						
							|  |  |  |         #   support.google.com/cloud/answer/6158840). | 
					
						
							| 
									
										
										
										
											2017-09-20 00:35:54 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Required. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. | 
					
						
							| 
									
										
										
										
											2017-09-20 00:35:54 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2019-12-05 00:37:31 +00:00
										 |  |  |         #   Required. The name of the cluster to update. | 
					
						
							| 
									
										
										
										
											2017-09-20 00:35:54 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetMaintenancePolicyRequest] set_maintenance_policy_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_cluster_maintenance_policy(project_id, zone, cluster_id, set_maintenance_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMaintenancePolicy', options) | 
					
						
							| 
									
										
										
										
											2017-09-20 00:35:54 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetMaintenancePolicyRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_maintenance_policy_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							| 
									
										
										
										
											2016-05-16 16:49:15 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Sets master auth materials. Currently supports changing the admin password or | 
					
						
							|  |  |  |         # a specific cluster, either via password generation or explicitly setting the | 
					
						
							|  |  |  |         # password. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetMasterAuthRequest] set_master_auth_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def set_cluster_master_auth(project_id, zone, cluster_id, set_master_auth_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMasterAuth', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetMasterAuthRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_master_auth_request_object | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Enables or disables Network Policy for a cluster. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNetworkPolicyRequest] set_network_policy_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def set_cluster_network_policy(project_id, zone, cluster_id, set_network_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setNetworkPolicy', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNetworkPolicyRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_network_policy_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Starts master IP rotation. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::StartIpRotationRequest] start_ip_rotation_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def start_cluster_ip_rotation(project_id, zone, cluster_id, start_ip_rotation_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:startIpRotation', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::StartIpRotationRequest::Representation | 
					
						
							|  |  |  |           command.request_object = start_ip_rotation_request_object | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Updates the settings of a specific cluster. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::UpdateClusterRequest] update_cluster_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def update_cluster(project_id, zone, cluster_id, update_cluster_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:put, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::UpdateClusterRequest::Representation | 
					
						
							|  |  |  |           command.request_object = update_cluster_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Sets the autoscaling settings for the specified node pool. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool to upgrade. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNodePoolAutoscalingRequest] set_node_pool_autoscaling_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def autoscaling_project_zone_cluster_node_pool(project_id, zone, cluster_id, node_pool_id, set_node_pool_autoscaling_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/autoscaling', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNodePoolAutoscalingRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_node_pool_autoscaling_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.params['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # Creates a node pool for a cluster. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CreateNodePoolRequest] create_node_pool_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         def create_node_pool(project_id, zone, cluster_id, create_node_pool_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools', options) | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CreateNodePoolRequest::Representation | 
					
						
							|  |  |  |           command.request_object = create_node_pool_request_object | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Deletes a node pool from a cluster. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool to delete. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster, node pool id) of the node pool to delete. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def delete_project_zone_cluster_node_pool(project_id, zone, cluster_id, node_pool_id, name: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:delete, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}', options) | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.params['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['name'] = name unless name.nil? | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Retrieves the requested node pool. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, cluster, node pool id) of the node pool to get. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::NodePool] parsed result object | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::NodePool] | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def get_project_zone_cluster_node_pool(project_id, zone, cluster_id, node_pool_id, name: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}', options) | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::NodePool::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::NodePool | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.params['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['name'] = name unless name.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Lists the node pools for a cluster. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //developers.google.com/console/help/new/#projectnumber). This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2017-05-04 19:35:56 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster. This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] parent | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The parent (project, location, cluster id) where the node pools will be listed. | 
					
						
							|  |  |  |         #   Specified in the format `projects/*/locations/*/clusters/*`. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ListNodePoolsResponse] parsed result object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::ListNodePoolsResponse] | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def list_project_zone_cluster_node_pools(project_id, zone, cluster_id, parent: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ListNodePoolsResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ListNodePoolsResponse | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['parent'] = parent unless parent.nil? | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # Rolls back a previously Aborted or Failed NodePool upgrade. This makes no | 
					
						
							|  |  |  |         # changes if the last upgrade successfully completed. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to rollback. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool to rollback. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::RollbackNodePoolUpgradeRequest] rollback_node_pool_upgrade_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def rollback_node_pool_upgrade(project_id, zone, cluster_id, node_pool_id, rollback_node_pool_upgrade_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}:rollback', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::RollbackNodePoolUpgradeRequest::Representation | 
					
						
							|  |  |  |           command.request_object = rollback_node_pool_upgrade_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.params['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # Sets the NodeManagement options for a node pool. | 
					
						
							|  |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to update. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool to update. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNodePoolManagementRequest] set_node_pool_management_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_zone_cluster_node_pool_management(project_id, zone, cluster_id, node_pool_id, set_node_pool_management_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setManagement', options) | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNodePoolManagementRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_node_pool_management_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.params['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2018-05-17 00:36:16 +00:00
										 |  |  |         # Sets the size for a specific node pool. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to update. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool to update. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::SetNodePoolSizeRequest] set_node_pool_size_request_object | 
					
						
							|  |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							|  |  |  |         def set_project_zone_cluster_node_pool_size(project_id, zone, cluster_id, node_pool_id, set_node_pool_size_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setSize', options) | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::SetNodePoolSizeRequest::Representation | 
					
						
							|  |  |  |           command.request_object = set_node_pool_size_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							|  |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.params['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							|  |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2019-04-25 00:37:02 +00:00
										 |  |  |         # Updates the version and/or image type for the specified node pool. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [String] cluster_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the cluster to upgrade. This field has been deprecated | 
					
						
							|  |  |  |         #   and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [String] node_pool_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the node pool to upgrade. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::UpdateNodePoolRequest] update_node_pool_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def update_node_pool(project_id, zone, cluster_id, node_pool_id, update_node_pool_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/update', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::UpdateNodePoolRequest::Representation | 
					
						
							|  |  |  |           command.request_object = update_node_pool_request_object | 
					
						
							| 
									
										
										
										
											2017-07-12 20:10:42 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.params['clusterId'] = cluster_id unless cluster_id.nil? | 
					
						
							|  |  |  |           command.params['nodePoolId'] = node_pool_id unless node_pool_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Cancels the specified operation. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the operation resides. This field | 
					
						
							|  |  |  |         #   has been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [String] operation_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The server-assigned `name` of the operation. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [Google::Apis::ContainerV1::CancelOperationRequest] cancel_operation_request_object | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Empty] parsed result object | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Empty] | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         def cancel_operation(project_id, zone, operation_id, cancel_operation_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:post, 'v1/projects/{projectId}/zones/{zone}/operations/{operationId}:cancel', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.request_representation = Google::Apis::ContainerV1::CancelOperationRequest::Representation | 
					
						
							|  |  |  |           command.request_object = cancel_operation_request_object | 
					
						
							|  |  |  |           command.response_representation = Google::Apis::ContainerV1::Empty::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Empty | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.params['operationId'] = operation_id unless operation_id.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |          | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # Gets the specified operation. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							|  |  |  |         #   replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) in which the cluster resides. This field has | 
					
						
							|  |  |  |         #   been deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |         # @param [String] operation_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The server-assigned `name` of the operation. This field has been | 
					
						
							|  |  |  |         #   deprecated and replaced by the name field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] name | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   The name (project, location, operation id) of the operation to get. Specified | 
					
						
							|  |  |  |         #   in the format `projects/*/locations/*/operations/*`. | 
					
						
							| 
									
										
										
										
											2017-06-14 17:02:03 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @yieldparam result [Google::Apis::ContainerV1::Operation] parsed result object | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @return [Google::Apis::ContainerV1::Operation] | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def get_zone_operation(project_id, zone, operation_id, name: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/projects/{projectId}/zones/{zone}/operations/{operationId}', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::Operation::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::Operation | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2017-05-26 16:44:32 +00:00
										 |  |  |           command.params['operationId'] = operation_id unless operation_id.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['name'] = name unless name.nil? | 
					
						
							| 
									
										
										
										
											2017-06-02 06:11:31 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							| 
									
										
										
										
											2017-01-28 03:38:40 +00:00
										 |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |          | 
					
						
							|  |  |  |         # Lists all operations in a project in a specific zone or all zones. | 
					
						
							|  |  |  |         # @param [String] project_id | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Deprecated. The Google Developers Console [project ID or project number](https: | 
					
						
							|  |  |  |         #   //support.google.com/cloud/answer/6158840). This field has been deprecated and | 
					
						
							| 
									
										
										
										
											2020-05-07 20:07:42 +00:00
										 |  |  |         #   replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         # @param [String] zone | 
					
						
							|  |  |  |         #   Deprecated. The name of the Google Compute Engine [zone](https://cloud.google. | 
					
						
							|  |  |  |         #   com/compute/docs/zones#available) to return operations for, or `-` for all | 
					
						
							|  |  |  |         #   zones. This field has been deprecated and replaced by the parent field. | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         # @param [String] parent | 
					
						
							|  |  |  |         #   The parent (project and location) where the operations will be listed. | 
					
						
							| 
									
										
										
										
											2020-08-16 00:38:18 +00:00
										 |  |  |         #   Specified in the format `projects/*/locations/*`. Location "-" matches all | 
					
						
							|  |  |  |         #   zones and all regions. | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |         # @param [String] fields | 
					
						
							|  |  |  |         #   Selector specifying which fields to include in a partial response. | 
					
						
							|  |  |  |         # @param [String] quota_user | 
					
						
							|  |  |  |         #   Available to use for quota purposes for server-side applications. Can be any | 
					
						
							|  |  |  |         #   arbitrary string assigned to a user, but should not exceed 40 characters. | 
					
						
							|  |  |  |         # @param [Google::Apis::RequestOptions] options | 
					
						
							|  |  |  |         #   Request-specific options | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @yield [result, err] Result & error if block supplied | 
					
						
							|  |  |  |         # @yieldparam result [Google::Apis::ContainerV1::ListOperationsResponse] parsed result object | 
					
						
							|  |  |  |         # @yieldparam err [StandardError] error object if request failed | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @return [Google::Apis::ContainerV1::ListOperationsResponse] | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried | 
					
						
							|  |  |  |         # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification | 
					
						
							|  |  |  |         # @raise [Google::Apis::AuthorizationError] Authorization is required | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |         def list_zone_operations(project_id, zone, parent: nil, fields: nil, quota_user: nil, options: nil, &block) | 
					
						
							| 
									
										
										
										
											2019-05-10 00:37:26 +00:00
										 |  |  |           command = make_simple_command(:get, 'v1/projects/{projectId}/zones/{zone}/operations', options) | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.response_representation = Google::Apis::ContainerV1::ListOperationsResponse::Representation | 
					
						
							|  |  |  |           command.response_class = Google::Apis::ContainerV1::ListOperationsResponse | 
					
						
							|  |  |  |           command.params['projectId'] = project_id unless project_id.nil? | 
					
						
							|  |  |  |           command.params['zone'] = zone unless zone.nil? | 
					
						
							| 
									
										
										
										
											2018-03-24 00:35:25 +00:00
										 |  |  |           command.query['parent'] = parent unless parent.nil? | 
					
						
							| 
									
										
										
										
											2017-08-25 19:54:22 +00:00
										 |  |  |           command.query['fields'] = fields unless fields.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |           execute_or_queue_command(command, &block) | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2015-07-20 21:49:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         protected | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def apply_command_defaults(command) | 
					
						
							|  |  |  |           command.query['key'] = key unless key.nil? | 
					
						
							|  |  |  |           command.query['quotaUser'] = quota_user unless quota_user.nil? | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |