2016-01-29 22:32:46 +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 CloudbuildV1
|
2018-08-22 21:14:52 +00:00
|
|
|
# Cloud Build API
|
2016-01-29 22:32:46 +00:00
|
|
|
#
|
2018-08-22 21:14:52 +00:00
|
|
|
# Creates and manages builds on Google Cloud Platform.
|
2016-01-29 22:32:46 +00:00
|
|
|
#
|
|
|
|
# @example
|
|
|
|
# require 'google/apis/cloudbuild_v1'
|
|
|
|
#
|
|
|
|
# Cloudbuild = Google::Apis::CloudbuildV1 # Alias the module
|
2016-02-25 23:16:53 +00:00
|
|
|
# service = Cloudbuild::CloudBuildService.new
|
2016-01-29 22:32:46 +00:00
|
|
|
#
|
2018-08-22 21:14:52 +00:00
|
|
|
# @see https://cloud.google.com/cloud-build/docs/
|
2016-02-25 23:16:53 +00:00
|
|
|
class CloudBuildService < Google::Apis::Core::BaseService
|
2017-05-04 19:35:56 +00:00
|
|
|
# @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
|
|
|
|
|
2017-06-02 06:11:31 +00:00
|
|
|
# @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
|
|
|
|
|
2016-01-29 22:32:46 +00:00
|
|
|
def initialize
|
|
|
|
super('https://cloudbuild.googleapis.com/', '')
|
2017-04-03 20:18:48 +00:00
|
|
|
@batch_path = 'batch'
|
2016-01-29 22:32:46 +00:00
|
|
|
end
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Starts asynchronous cancellation on a long-running operation. The server makes
|
|
|
|
# a best effort to cancel the operation, but success is not guaranteed. If the
|
|
|
|
# server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
|
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
|
|
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
|
|
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
|
|
|
# an operation with an Operation.error value with a google.rpc.Status.code of 1,
|
2017-08-25 19:54:22 +00:00
|
|
|
# corresponding to `Code.CANCELLED`.
|
|
|
|
# @param [String] name
|
|
|
|
# The name of the operation resource to be cancelled.
|
|
|
|
# @param [Google::Apis::CloudbuildV1::CancelOperationRequest] cancel_operation_request_object
|
2017-07-12 20:10:42 +00:00
|
|
|
# @param [String] fields
|
|
|
|
# Selector specifying which fields to include in a partial response.
|
2016-08-17 17:19:48 +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-03-10 21:11:09 +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::CloudbuildV1::Empty] parsed result object
|
2017-03-10 21:11:09 +00:00
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
2017-08-25 19:54:22 +00:00
|
|
|
# @return [Google::Apis::CloudbuildV1::Empty]
|
2017-03-10 21:11:09 +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(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)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::CancelOperationRequest::Representation
|
|
|
|
command.request_object = cancel_operation_request_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Empty::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Empty
|
|
|
|
command.params['name'] = name unless name.nil?
|
2017-05-04 19:35:56 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2017-03-10 21:11:09 +00:00
|
|
|
execute_or_queue_command(command, &block)
|
|
|
|
end
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Gets the latest state of a long-running operation. Clients can use this method
|
|
|
|
# to poll the operation result at intervals as recommended by the API service.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [String] name
|
|
|
|
# The name of the operation resource.
|
|
|
|
# @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::CloudbuildV1::Operation] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::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_operation(name, fields: nil, quota_user: nil, options: nil, &block)
|
2019-05-10 00:37:26 +00:00
|
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Operation::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::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-03-02 00:35:48 +00:00
|
|
|
# Cancels a build in progress.
|
2017-07-12 20:10:42 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project.
|
2017-07-12 20:10:42 +00:00
|
|
|
# @param [String] id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the build.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [Google::Apis::CloudbuildV1::CancelBuildRequest] cancel_build_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::CloudbuildV1::Build] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::Build]
|
|
|
|
#
|
|
|
|
# @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_build(project_id, id, cancel_build_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}/builds/{id}:cancel', options)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::CancelBuildRequest::Representation
|
|
|
|
command.request_object = cancel_build_request_object
|
2017-07-12 20:10:42 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Build::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Build
|
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
|
|
|
command.params['id'] = id unless id.nil?
|
2017-05-04 19:35:56 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2017-03-27 22:14:47 +00:00
|
|
|
execute_or_queue_command(command, &block)
|
|
|
|
end
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Starts a build with the specified configuration. This method returns a long-
|
|
|
|
# running `Operation`, which includes the build ID. Pass the build ID to `
|
|
|
|
# GetBuild` to determine the build status (such as `SUCCESS` or `FAILURE`).
|
2017-03-31 19:53:27 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project.
|
2017-05-26 16:44:32 +00:00
|
|
|
# @param [Google::Apis::CloudbuildV1::Build] build_object
|
2020-09-14 23:21:28 +00:00
|
|
|
# @param [String] parent
|
|
|
|
# The parent resource where this build will be created. Format: `projects/`
|
|
|
|
# project`/locations/`location``
|
2017-07-12 20:10:42 +00:00
|
|
|
# @param [String] fields
|
|
|
|
# Selector specifying which fields to include in a partial response.
|
2017-03-27 22:14:47 +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::CloudbuildV1::Operation] parsed result object
|
2017-03-27 22:14:47 +00:00
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
2017-05-26 16:44:32 +00:00
|
|
|
# @return [Google::Apis::CloudbuildV1::Operation]
|
2017-03-27 22:14:47 +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
|
2020-09-14 23:21:28 +00:00
|
|
|
def create_project_build(project_id, build_object = nil, parent: 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}/builds', options)
|
2017-05-26 16:44:32 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::Build::Representation
|
|
|
|
command.request_object = build_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Operation::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Operation
|
2017-03-31 19:53:27 +00:00
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
2020-09-14 23:21:28 +00:00
|
|
|
command.query['parent'] = parent unless parent.nil?
|
2017-05-04 19:35:56 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2016-08-17 17:19:48 +00:00
|
|
|
execute_or_queue_command(command, &block)
|
|
|
|
end
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Returns information about a previously requested build. The `Build` that is
|
|
|
|
# returned includes its status (such as `SUCCESS`, `FAILURE`, or `WORKING`), and
|
|
|
|
# timing information.
|
2016-08-17 17:19:48 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [String] id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the build.
|
2020-09-14 23:21:28 +00:00
|
|
|
# @param [String] name
|
|
|
|
# The name of the `Build` to retrieve. Format: `projects/`project`/locations/`
|
|
|
|
# location`/builds/`build``
|
2017-07-12 20:10:42 +00:00
|
|
|
# @param [String] fields
|
|
|
|
# Selector specifying which fields to include in a partial response.
|
2016-08-17 17:19:48 +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::CloudbuildV1::Build] parsed result object
|
2016-08-17 17:19:48 +00:00
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
2017-08-25 19:54:22 +00:00
|
|
|
# @return [Google::Apis::CloudbuildV1::Build]
|
2016-08-17 17:19:48 +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
|
2020-09-14 23:21:28 +00:00
|
|
|
def get_project_build(project_id, 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}/builds/{id}', options)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Build::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Build
|
2016-08-17 17:19:48 +00:00
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
2017-08-25 19:54:22 +00:00
|
|
|
command.params['id'] = id unless id.nil?
|
2020-09-14 23:21:28 +00:00
|
|
|
command.query['name'] = name unless name.nil?
|
2017-05-04 19:35:56 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2016-08-17 17:19:48 +00:00
|
|
|
execute_or_queue_command(command, &block)
|
|
|
|
end
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Lists previously requested builds. Previously requested builds may still be in-
|
|
|
|
# progress, or may have finished successfully or unsuccessfully.
|
2017-06-02 06:11:31 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [String] filter
|
|
|
|
# The raw filter text to constrain the results.
|
|
|
|
# @param [Fixnum] page_size
|
|
|
|
# Number of results to return in the list.
|
|
|
|
# @param [String] page_token
|
2020-10-20 16:43:46 +00:00
|
|
|
# The page token for the next page of Builds. If unspecified, the first page of
|
|
|
|
# results is returned. If the token is rejected for any reason, INVALID_ARGUMENT
|
|
|
|
# will be thrown. In this case, the token should be discarded, and pagination
|
|
|
|
# should be restarted from the first page of results. See https://google.aip.dev/
|
|
|
|
# 158 for more.
|
2020-09-14 23:21:28 +00:00
|
|
|
# @param [String] parent
|
|
|
|
# The parent of the collection of `Builds`. Format: `projects/`project`/
|
|
|
|
# locations/location`
|
2017-07-12 20:10:42 +00:00
|
|
|
# @param [String] fields
|
|
|
|
# Selector specifying which fields to include in a partial response.
|
2017-06-02 06:11:31 +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::CloudbuildV1::ListBuildsResponse] parsed result object
|
2017-06-02 06:11:31 +00:00
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
2017-08-25 19:54:22 +00:00
|
|
|
# @return [Google::Apis::CloudbuildV1::ListBuildsResponse]
|
2017-06-02 06:11:31 +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
|
2020-09-14 23:21:28 +00:00
|
|
|
def list_project_builds(project_id, filter: nil, page_size: nil, page_token: nil, 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}/builds', options)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::ListBuildsResponse::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::ListBuildsResponse
|
2017-06-02 06:11:31 +00:00
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
2017-08-25 19:54:22 +00:00
|
|
|
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?
|
2020-09-14 23:21:28 +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-07-12 20:10:42 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2017-06-02 06:11:31 +00:00
|
|
|
execute_or_queue_command(command, &block)
|
|
|
|
end
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Creates a new build based on the specified build. This method creates a new
|
|
|
|
# build using the original build request, which may or may not result in an
|
|
|
|
# identical build. For triggered builds: * Triggered builds resolve to a precise
|
|
|
|
# revision; therefore a retry of a triggered build will result in a build that
|
|
|
|
# uses the same revision. For non-triggered builds that specify `RepoSource`: *
|
|
|
|
# If the original build built from the tip of a branch, the retried build will
|
|
|
|
# build from the tip of that branch, which may not be the same revision as the
|
|
|
|
# original build. * If the original build specified a commit sha or revision ID,
|
|
|
|
# the retried build will use the identical source. For builds that specify `
|
|
|
|
# StorageSource`: * If the original build pulled source from Google Cloud
|
|
|
|
# Storage without specifying the generation of the object, the new build will
|
|
|
|
# use the current object, which may be different from the original build source.
|
2017-10-27 00:36:25 +00:00
|
|
|
# * If the original build pulled source from Cloud Storage and specified the
|
2020-08-07 00:38:13 +00:00
|
|
|
# generation of the object, the new build will attempt to use the same object,
|
|
|
|
# which may or may not be available depending on the bucket's lifecycle
|
|
|
|
# management settings.
|
2017-10-26 00:35:44 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project.
|
2017-10-26 00:35:44 +00:00
|
|
|
# @param [String] id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. Build ID of the original build.
|
2017-10-26 00:35:44 +00:00
|
|
|
# @param [Google::Apis::CloudbuildV1::RetryBuildRequest] retry_build_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::CloudbuildV1::Operation] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::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 retry_build(project_id, id, retry_build_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}/builds/{id}:retry', options)
|
2017-10-26 00:35:44 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::RetryBuildRequest::Representation
|
|
|
|
command.request_object = retry_build_request_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Operation::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Operation
|
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
|
|
|
command.params['id'] = id unless 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
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Cancels a build in progress.
|
|
|
|
# @param [String] name
|
feat: Automated regeneration of cloudbuild v1 client (#1615)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-12-03 01:51:37,474 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-cloudbuild-v1
nothing to commit, working tree clean
2020-12-03 01:51:37,502 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth cloudbuild v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth cloudbuild v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=cloudbuild.v1 --names-out=/workspace/api_names_out.yaml
Loading cloudbuild, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/cloudbuild.v1.json
W, [2020-12-03T09:51:58.223720 #240] WARN -- : Found reserved property 'hash'
W, [2020-12-03T09:51:58.223788 #240] WARN -- : Changed to 'hash_prop'
conflict google/apis/cloudbuild_v1.rb
<s/cloudbuild_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/cloudbuild_v1.rb
conflict google/apis/cloudbuild_v1/service.rb
force google/apis/cloudbuild_v1/service.rb
conflict google/apis/cloudbuild_v1/classes.rb
force google/apis/cloudbuild_v1/classes.rb
identical google/apis/cloudbuild_v1/representations.rb
identical /workspace/api_names_out.yaml
2020-12-03 01:52:01,683 synthtool [DEBUG] > Wrote metadata to generated/google/apis/cloudbuild_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/cloudbuild_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/7b006b37-fae5-4e1c-9d57-231db3ac031c/targets
- [ ] To automatically regenerate this PR, check this box.
2020-12-03 10:04:03 +00:00
|
|
|
# The name of the `Build` to cancel. Format: `projects/`project`/locations/`
|
2020-09-14 23:21:28 +00:00
|
|
|
# location`/builds/`build``
|
|
|
|
# @param [Google::Apis::CloudbuildV1::CancelBuildRequest] cancel_build_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::CloudbuildV1::Build] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::Build]
|
|
|
|
#
|
|
|
|
# @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_build(name, cancel_build_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
|
|
command = make_simple_command(:post, 'v1/{+name}:cancel', options)
|
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::CancelBuildRequest::Representation
|
|
|
|
command.request_object = cancel_build_request_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Build::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Build
|
|
|
|
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
|
|
|
|
|
|
|
|
# Starts a build with the specified configuration. This method returns a long-
|
|
|
|
# running `Operation`, which includes the build ID. Pass the build ID to `
|
|
|
|
# GetBuild` to determine the build status (such as `SUCCESS` or `FAILURE`).
|
|
|
|
# @param [String] parent
|
|
|
|
# The parent resource where this build will be created. Format: `projects/`
|
|
|
|
# project`/locations/`location``
|
2020-09-23 00:39:06 +00:00
|
|
|
# @param [Google::Apis::CloudbuildV1::Build] build_object
|
|
|
|
# @param [String] project_id
|
|
|
|
# Required. ID of the project.
|
2020-09-14 23:21:28 +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::CloudbuildV1::Operation] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::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
|
2020-09-23 00:39:06 +00:00
|
|
|
def create_build(parent, build_object = nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2020-09-14 23:21:28 +00:00
|
|
|
command = make_simple_command(:post, 'v1/{+parent}/builds', options)
|
2020-09-23 00:39:06 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::Build::Representation
|
|
|
|
command.request_object = build_object
|
2020-09-14 23:21:28 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Operation::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Operation
|
|
|
|
command.params['parent'] = parent unless parent.nil?
|
2020-09-23 00:39:06 +00:00
|
|
|
command.query['projectId'] = project_id unless project_id.nil?
|
2020-09-14 23:21:28 +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
|
|
|
|
|
|
|
|
# Returns information about a previously requested build. The `Build` that is
|
|
|
|
# returned includes its status (such as `SUCCESS`, `FAILURE`, or `WORKING`), and
|
|
|
|
# timing information.
|
|
|
|
# @param [String] name
|
|
|
|
# The name of the `Build` to retrieve. Format: `projects/`project`/locations/`
|
|
|
|
# location`/builds/`build``
|
|
|
|
# @param [String] id
|
|
|
|
# Required. ID of the build.
|
|
|
|
# @param [String] project_id
|
|
|
|
# Required. ID of the project.
|
|
|
|
# @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::CloudbuildV1::Build] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::Build]
|
|
|
|
#
|
|
|
|
# @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_build(name, id: nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Build::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Build
|
|
|
|
command.params['name'] = name unless name.nil?
|
|
|
|
command.query['id'] = id unless id.nil?
|
|
|
|
command.query['projectId'] = project_id unless project_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
|
|
|
|
|
|
|
|
# Lists previously requested builds. Previously requested builds may still be in-
|
|
|
|
# progress, or may have finished successfully or unsuccessfully.
|
|
|
|
# @param [String] parent
|
|
|
|
# The parent of the collection of `Builds`. Format: `projects/`project`/
|
|
|
|
# locations/location`
|
|
|
|
# @param [String] filter
|
|
|
|
# The raw filter text to constrain the results.
|
|
|
|
# @param [Fixnum] page_size
|
|
|
|
# Number of results to return in the list.
|
|
|
|
# @param [String] page_token
|
2020-10-20 16:43:46 +00:00
|
|
|
# The page token for the next page of Builds. If unspecified, the first page of
|
|
|
|
# results is returned. If the token is rejected for any reason, INVALID_ARGUMENT
|
|
|
|
# will be thrown. In this case, the token should be discarded, and pagination
|
|
|
|
# should be restarted from the first page of results. See https://google.aip.dev/
|
|
|
|
# 158 for more.
|
2020-09-14 23:21:28 +00:00
|
|
|
# @param [String] project_id
|
|
|
|
# Required. ID of the project.
|
|
|
|
# @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::CloudbuildV1::ListBuildsResponse] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::ListBuildsResponse]
|
|
|
|
#
|
|
|
|
# @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_builds(parent, filter: nil, page_size: nil, page_token: nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
|
|
command = make_simple_command(:get, 'v1/{+parent}/builds', options)
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::ListBuildsResponse::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::ListBuildsResponse
|
|
|
|
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['projectId'] = project_id unless project_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
|
|
|
|
|
|
|
|
# Creates a new build based on the specified build. This method creates a new
|
|
|
|
# build using the original build request, which may or may not result in an
|
|
|
|
# identical build. For triggered builds: * Triggered builds resolve to a precise
|
|
|
|
# revision; therefore a retry of a triggered build will result in a build that
|
|
|
|
# uses the same revision. For non-triggered builds that specify `RepoSource`: *
|
|
|
|
# If the original build built from the tip of a branch, the retried build will
|
|
|
|
# build from the tip of that branch, which may not be the same revision as the
|
|
|
|
# original build. * If the original build specified a commit sha or revision ID,
|
|
|
|
# the retried build will use the identical source. For builds that specify `
|
|
|
|
# StorageSource`: * If the original build pulled source from Google Cloud
|
|
|
|
# Storage without specifying the generation of the object, the new build will
|
|
|
|
# use the current object, which may be different from the original build source.
|
|
|
|
# * If the original build pulled source from Cloud Storage and specified the
|
|
|
|
# generation of the object, the new build will attempt to use the same object,
|
|
|
|
# which may or may not be available depending on the bucket's lifecycle
|
|
|
|
# management settings.
|
|
|
|
# @param [String] name
|
|
|
|
# The name of the `Build` to retry. Format: `projects/`project`/locations/`
|
|
|
|
# location`/builds/`build``
|
|
|
|
# @param [Google::Apis::CloudbuildV1::RetryBuildRequest] retry_build_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::CloudbuildV1::Operation] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::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 retry_project_location_build(name, retry_build_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
|
|
command = make_simple_command(:post, 'v1/{+name}:retry', options)
|
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::RetryBuildRequest::Representation
|
|
|
|
command.request_object = retry_build_request_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Operation::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::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-07 00:38:13 +00:00
|
|
|
# Starts asynchronous cancellation on a long-running operation. The server makes
|
|
|
|
# a best effort to cancel the operation, but success is not guaranteed. If the
|
|
|
|
# server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
|
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
|
|
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
|
|
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
|
|
|
# an operation with an Operation.error value with a google.rpc.Status.code of 1,
|
2020-05-22 00:37:47 +00:00
|
|
|
# corresponding to `Code.CANCELLED`.
|
|
|
|
# @param [String] name
|
|
|
|
# The name of the operation resource to be cancelled.
|
|
|
|
# @param [Google::Apis::CloudbuildV1::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::CloudbuildV1::Empty] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::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)
|
|
|
|
command = make_simple_command(:post, 'v1/{+name}:cancel', options)
|
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::CancelOperationRequest::Representation
|
|
|
|
command.request_object = cancel_operation_request_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Empty::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::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
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Gets the latest state of a long-running operation. Clients can use this method
|
|
|
|
# to poll the operation result at intervals as recommended by the API service.
|
2020-05-22 00:37:47 +00:00
|
|
|
# @param [String] name
|
|
|
|
# The name of the operation resource.
|
|
|
|
# @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::CloudbuildV1::Operation] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::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, fields: nil, quota_user: nil, options: nil, &block)
|
|
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Operation::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::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-07 00:38:13 +00:00
|
|
|
# Creates a new `BuildTrigger`. This API is experimental.
|
2016-08-17 17:19:48 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project for which to configure automatic builds.
|
2017-07-12 20:10:42 +00:00
|
|
|
# @param [Google::Apis::CloudbuildV1::BuildTrigger] build_trigger_object
|
|
|
|
# @param [String] fields
|
|
|
|
# Selector specifying which fields to include in a partial response.
|
2016-08-17 17:19:48 +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::CloudbuildV1::BuildTrigger] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::BuildTrigger]
|
|
|
|
#
|
|
|
|
# @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_project_trigger(project_id, build_trigger_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}/triggers', options)
|
2017-07-12 20:10:42 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::BuildTrigger::Representation
|
|
|
|
command.request_object = build_trigger_object
|
2016-08-17 17:19:48 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::BuildTrigger::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::BuildTrigger
|
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
2017-03-27 22:14:47 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +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-07 00:38:13 +00:00
|
|
|
# Deletes a `BuildTrigger` by its project ID and trigger ID. This API is
|
|
|
|
# experimental.
|
2017-05-04 19:35:56 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project that owns the trigger.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [String] trigger_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the `BuildTrigger` to delete.
|
2017-07-12 20:10:42 +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-08-25 19:54:22 +00:00
|
|
|
# @yieldparam result [Google::Apis::CloudbuildV1::Empty] 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::CloudbuildV1::Empty]
|
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 delete_project_trigger(project_id, trigger_id, fields: nil, quota_user: nil, options: nil, &block)
|
2019-05-10 00:37:26 +00:00
|
|
|
command = make_simple_command(:delete, 'v1/projects/{projectId}/triggers/{triggerId}', options)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Empty::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Empty
|
2017-05-04 19:35:56 +00:00
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
2017-08-25 19:54:22 +00:00
|
|
|
command.params['triggerId'] = trigger_id unless trigger_id.nil?
|
2017-05-04 19:35:56 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2016-08-17 17:19:48 +00:00
|
|
|
execute_or_queue_command(command, &block)
|
|
|
|
end
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Returns information about a `BuildTrigger`. This API is experimental.
|
2016-01-29 22:32:46 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project that owns the trigger.
|
2017-05-26 16:44:32 +00:00
|
|
|
# @param [String] trigger_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. Identifier (`id` or `name`) of the `BuildTrigger` to get.
|
2017-05-04 19:35:56 +00:00
|
|
|
# @param [String] fields
|
|
|
|
# Selector specifying which fields to include in a partial response.
|
2016-01-29 22:32:46 +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::CloudbuildV1::BuildTrigger] parsed result object
|
2016-01-29 22:32:46 +00:00
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
2017-05-26 16:44:32 +00:00
|
|
|
# @return [Google::Apis::CloudbuildV1::BuildTrigger]
|
2016-01-29 22:32:46 +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-07-12 20:10:42 +00:00
|
|
|
def get_project_trigger(project_id, trigger_id, fields: nil, quota_user: nil, options: nil, &block)
|
2019-05-10 00:37:26 +00:00
|
|
|
command = make_simple_command(:get, 'v1/projects/{projectId}/triggers/{triggerId}', options)
|
2017-05-26 16:44:32 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::BuildTrigger::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::BuildTrigger
|
2016-01-29 22:32:46 +00:00
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
2017-07-12 20:10:42 +00:00
|
|
|
command.params['triggerId'] = trigger_id unless trigger_id.nil?
|
2017-05-04 19:35:56 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2016-01-29 22:32:46 +00:00
|
|
|
execute_or_queue_command(command, &block)
|
|
|
|
end
|
2017-06-14 17:02:03 +00:00
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Lists existing `BuildTrigger`s. This API is experimental.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project for which to list BuildTriggers.
|
2019-03-28 00:37:19 +00:00
|
|
|
# @param [Fixnum] page_size
|
|
|
|
# Number of results to return in the list.
|
|
|
|
# @param [String] page_token
|
|
|
|
# Token to provide to skip to a particular spot in the list.
|
2017-07-12 20:10:42 +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.
|
|
|
|
# @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::CloudbuildV1::ListBuildTriggersResponse] parsed result object
|
2017-06-14 17:02:03 +00:00
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
2017-08-25 19:54:22 +00:00
|
|
|
# @return [Google::Apis::CloudbuildV1::ListBuildTriggersResponse]
|
2017-06-14 17:02:03 +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
|
2019-03-28 00:37:19 +00:00
|
|
|
def list_project_triggers(project_id, 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/projects/{projectId}/triggers', options)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::ListBuildTriggersResponse::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::ListBuildTriggersResponse
|
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
2019-03-28 00:37:19 +00:00
|
|
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
|
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2017-06-14 17:02:03 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +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
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Updates a `BuildTrigger` by its project ID and trigger ID. This API is
|
|
|
|
# experimental.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project that owns the trigger.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [String] trigger_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the `BuildTrigger` to update.
|
2017-08-25 19:54:22 +00:00
|
|
|
# @param [Google::Apis::CloudbuildV1::BuildTrigger] build_trigger_object
|
2017-07-12 20:10:42 +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.
|
|
|
|
# @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::CloudbuildV1::BuildTrigger] parsed result object
|
2017-06-14 17:02:03 +00:00
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
2017-08-25 19:54:22 +00:00
|
|
|
# @return [Google::Apis::CloudbuildV1::BuildTrigger]
|
2017-06-14 17:02:03 +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 patch_project_trigger(project_id, trigger_id, build_trigger_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2019-05-10 00:37:26 +00:00
|
|
|
command = make_simple_command(:patch, 'v1/projects/{projectId}/triggers/{triggerId}', options)
|
2017-08-25 19:54:22 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::BuildTrigger::Representation
|
|
|
|
command.request_object = build_trigger_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::BuildTrigger::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::BuildTrigger
|
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
|
|
|
command.params['triggerId'] = trigger_id unless trigger_id.nil?
|
2017-06-14 17:02:03 +00:00
|
|
|
command.query['fields'] = fields unless fields.nil?
|
2017-07-12 20:10:42 +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-10-26 00:35:44 +00:00
|
|
|
|
2018-03-02 00:35:48 +00:00
|
|
|
# Runs a `BuildTrigger` at a particular source revision.
|
2017-10-26 00:35:44 +00:00
|
|
|
# @param [String] project_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the project.
|
2017-10-26 00:35:44 +00:00
|
|
|
# @param [String] trigger_id
|
2019-11-13 00:37:45 +00:00
|
|
|
# Required. ID of the trigger.
|
2017-10-26 00:35:44 +00:00
|
|
|
# @param [Google::Apis::CloudbuildV1::RepoSource] repo_source_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::CloudbuildV1::Operation] parsed result object
|
|
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
|
|
#
|
|
|
|
# @return [Google::Apis::CloudbuildV1::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 run_project_trigger(project_id, trigger_id, repo_source_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}/triggers/{triggerId}:run', options)
|
2017-10-26 00:35:44 +00:00
|
|
|
command.request_representation = Google::Apis::CloudbuildV1::RepoSource::Representation
|
|
|
|
command.request_object = repo_source_object
|
|
|
|
command.response_representation = Google::Apis::CloudbuildV1::Operation::Representation
|
|
|
|
command.response_class = Google::Apis::CloudbuildV1::Operation
|
|
|
|
command.params['projectId'] = project_id unless project_id.nil?
|
|
|
|
command.params['triggerId'] = trigger_id unless trigger_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
|
2016-01-29 22:32:46 +00:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def apply_command_defaults(command)
|
2017-05-04 19:35:56 +00:00
|
|
|
command.query['key'] = key unless key.nil?
|
2017-06-02 06:11:31 +00:00
|
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2016-01-29 22:32:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|