2289 lines
139 KiB
Ruby
2289 lines
139 KiB
Ruby
# Copyright 2020 Google LLC
|
|
#
|
|
# 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 RunV1
|
|
# Cloud Run Admin API
|
|
#
|
|
# Deploy and manage user provided container images that scale automatically
|
|
# based on incoming requests. The Cloud Run Admin API v1 follows the Knative
|
|
# Serving API specification, while v2 is aligned with Google Cloud AIP-based API
|
|
# standards, as described in https://google.aip.dev/.
|
|
#
|
|
# @example
|
|
# require 'google/apis/run_v1'
|
|
#
|
|
# Run = Google::Apis::RunV1 # Alias the module
|
|
# service = Run::CloudRunService.new
|
|
#
|
|
# @see https://cloud.google.com/run/
|
|
class CloudRunService < 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://run.googleapis.com/', '',
|
|
client_name: 'google-apis-run_v1',
|
|
client_version: Google::Apis::RunV1::GEM_VERSION)
|
|
@batch_path = 'batch'
|
|
end
|
|
|
|
# List authorized domains.
|
|
# @param [String] parent
|
|
# Name of the parent Project resource. Example: `projects/myproject`.
|
|
# @param [Fixnum] page_size
|
|
# Maximum results to return per page.
|
|
# @param [String] page_token
|
|
# Continuation token for fetching 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::RunV1::ListAuthorizedDomainsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListAuthorizedDomainsResponse]
|
|
#
|
|
# @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_namespace_authorizeddomains(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/domains.cloudrun.com/v1/{+parent}/authorizeddomains', options)
|
|
command.response_representation = Google::Apis::RunV1::ListAuthorizedDomainsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListAuthorizedDomainsResponse
|
|
command.params['parent'] = parent unless parent.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
|
|
|
|
# Get information about a configuration.
|
|
# @param [String] name
|
|
# The name of the configuration to retrieve. For Cloud Run (fully managed),
|
|
# replace `namespace_id` with the project ID or number.
|
|
# @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::RunV1::Configuration] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Configuration]
|
|
#
|
|
# @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_namespace_configuration(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Configuration::Representation
|
|
command.response_class = Google::Apis::RunV1::Configuration
|
|
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
|
|
|
|
# List configurations.
|
|
# @param [String] parent
|
|
# The namespace from which the configurations should be listed. For Cloud Run (
|
|
# fully managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListConfigurationsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListConfigurationsResponse]
|
|
#
|
|
# @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_namespace_configurations(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+parent}/configurations', options)
|
|
command.response_representation = Google::Apis::RunV1::ListConfigurationsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListConfigurationsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Create a new domain mapping.
|
|
# @param [String] parent
|
|
# The namespace in which the domain mapping should be created. For Cloud Run (
|
|
# fully managed), replace `namespace_id` with the project ID or number.
|
|
# @param [Google::Apis::RunV1::DomainMapping] domain_mapping_object
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @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::RunV1::DomainMapping] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::DomainMapping]
|
|
#
|
|
# @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_namespace_domainmapping(parent, domain_mapping_object = nil, dry_run: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'apis/domains.cloudrun.com/v1/{+parent}/domainmappings', options)
|
|
command.request_representation = Google::Apis::RunV1::DomainMapping::Representation
|
|
command.request_object = domain_mapping_object
|
|
command.response_representation = Google::Apis::RunV1::DomainMapping::Representation
|
|
command.response_class = Google::Apis::RunV1::DomainMapping
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Delete a domain mapping.
|
|
# @param [String] name
|
|
# The name of the domain mapping to delete. For Cloud Run (fully managed),
|
|
# replace `namespace_id` with the project ID or number.
|
|
# @param [String] api_version
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @param [String] kind
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
|
# workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_namespace_domainmapping(name, api_version: nil, dry_run: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'apis/domains.cloudrun.com/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a domain mapping.
|
|
# @param [String] name
|
|
# The name of the domain mapping to retrieve. For Cloud Run (fully managed),
|
|
# replace `namespace_id` with the project ID or number.
|
|
# @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::RunV1::DomainMapping] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::DomainMapping]
|
|
#
|
|
# @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_namespace_domainmapping(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/domains.cloudrun.com/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::DomainMapping::Representation
|
|
command.response_class = Google::Apis::RunV1::DomainMapping
|
|
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
|
|
|
|
# List domain mappings.
|
|
# @param [String] parent
|
|
# The namespace from which the domain mappings should be listed. For Cloud Run (
|
|
# fully managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListDomainMappingsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListDomainMappingsResponse]
|
|
#
|
|
# @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_namespace_domainmappings(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/domains.cloudrun.com/v1/{+parent}/domainmappings', options)
|
|
command.response_representation = Google::Apis::RunV1::ListDomainMappingsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListDomainMappingsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Delete an execution.
|
|
# @param [String] name
|
|
# Required. The name of the execution to delete. Replace `namespace_id` with the
|
|
# project ID or number.
|
|
# @param [String] api_version
|
|
# Optional. Cloud Run currently ignores this parameter.
|
|
# @param [String] kind
|
|
# Optional. Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Optional. Specifies the propagation policy of delete. Cloud Run currently
|
|
# ignores this setting, and deletes in the background. Please see kubernetes.io/
|
|
# docs/concepts/workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_namespace_execution(name, api_version: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'apis/run.googleapis.com/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about an execution.
|
|
# @param [String] name
|
|
# Required. The name of the execution to retrieve. Replace `namespace_id` with
|
|
# the project ID or number.
|
|
# @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::RunV1::Execution] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Execution]
|
|
#
|
|
# @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_namespace_execution(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/run.googleapis.com/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Execution::Representation
|
|
command.response_class = Google::Apis::RunV1::Execution
|
|
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
|
|
|
|
# List executions.
|
|
# @param [String] parent
|
|
# Required. The namespace from which the executions should be listed. Replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Optional encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Optional. Allows to filter resources based on a specific value for a field
|
|
# name. Send this in a query string format. i.e. 'metadata.name%3Dlorem'. Not
|
|
# currently used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Optional. Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Optional. Allows to filter resources based on a label. Supported operations
|
|
# are =, !=, exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# Optional. The baseline resource version from which the list or watch operation
|
|
# should start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Optional. Flag that indicates that the client expects to watch this resource
|
|
# as well. Not currently used by Cloud Run.
|
|
# @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::RunV1::ListExecutionsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListExecutionsResponse]
|
|
#
|
|
# @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_namespace_executions(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/run.googleapis.com/v1/{+parent}/executions', options)
|
|
command.response_representation = Google::Apis::RunV1::ListExecutionsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListExecutionsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Create a job.
|
|
# @param [String] parent
|
|
# Required. The namespace in which the job should be created. Replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [Google::Apis::RunV1::Job] job_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::RunV1::Job] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Job]
|
|
#
|
|
# @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_namespace_job(parent, job_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'apis/run.googleapis.com/v1/{+parent}/jobs', options)
|
|
command.request_representation = Google::Apis::RunV1::Job::Representation
|
|
command.request_object = job_object
|
|
command.response_representation = Google::Apis::RunV1::Job::Representation
|
|
command.response_class = Google::Apis::RunV1::Job
|
|
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
|
|
|
|
# Delete a job.
|
|
# @param [String] name
|
|
# Required. The name of the job to delete. Replace `namespace_id` with the
|
|
# project ID or number.
|
|
# @param [String] api_version
|
|
# Optional. Cloud Run currently ignores this parameter.
|
|
# @param [String] kind
|
|
# Optional. Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Optional. Specifies the propagation policy of delete. Cloud Run currently
|
|
# ignores this setting, and deletes in the background. Please see kubernetes.io/
|
|
# docs/concepts/workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_namespace_job(name, api_version: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'apis/run.googleapis.com/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a job.
|
|
# @param [String] name
|
|
# Required. The name of the job to retrieve. Replace `namespace_id` with the
|
|
# project ID or number.
|
|
# @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::RunV1::Job] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Job]
|
|
#
|
|
# @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_namespace_job(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/run.googleapis.com/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Job::Representation
|
|
command.response_class = Google::Apis::RunV1::Job
|
|
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
|
|
|
|
# List jobs.
|
|
# @param [String] parent
|
|
# Required. The namespace from which the jobs should be listed. Replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Optional encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Optional. Allows to filter resources based on a specific value for a field
|
|
# name. Send this in a query string format. i.e. 'metadata.name%3Dlorem'. Not
|
|
# currently used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Optional. Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Optional. Allows to filter resources based on a label. Supported operations
|
|
# are =, !=, exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# Optional. The baseline resource version from which the list or watch operation
|
|
# should start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Optional. Flag that indicates that the client expects to watch this resource
|
|
# as well. Not currently used by Cloud Run.
|
|
# @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::RunV1::ListJobsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListJobsResponse]
|
|
#
|
|
# @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_namespace_jobs(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/run.googleapis.com/v1/{+parent}/jobs', options)
|
|
command.response_representation = Google::Apis::RunV1::ListJobsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListJobsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Replace a job. Only the spec and metadata labels and annotations are
|
|
# modifiable. After the Replace request, Cloud Run will work to make the 'status'
|
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
|
# update from last read for optimistic concurrency control.
|
|
# @param [String] name
|
|
# Required. The name of the service being replaced. Replace `namespace_id` with
|
|
# the project ID or number.
|
|
# @param [Google::Apis::RunV1::Job] job_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::RunV1::Job] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Job]
|
|
#
|
|
# @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 replace_namespace_job_job(name, job_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:put, 'apis/run.googleapis.com/v1/{+name}', options)
|
|
command.request_representation = Google::Apis::RunV1::Job::Representation
|
|
command.request_object = job_object
|
|
command.response_representation = Google::Apis::RunV1::Job::Representation
|
|
command.response_class = Google::Apis::RunV1::Job
|
|
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
|
|
|
|
# Trigger creation of a new execution of this job.
|
|
# @param [String] name
|
|
# Required. The name of the job to run. Replace `namespace_id` with the project
|
|
# ID or number.
|
|
# @param [Google::Apis::RunV1::RunJobRequest] run_job_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::RunV1::Execution] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Execution]
|
|
#
|
|
# @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_job(name, run_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'apis/run.googleapis.com/v1/{+name}:run', options)
|
|
command.request_representation = Google::Apis::RunV1::RunJobRequest::Representation
|
|
command.request_object = run_job_request_object
|
|
command.response_representation = Google::Apis::RunV1::Execution::Representation
|
|
command.response_class = Google::Apis::RunV1::Execution
|
|
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
|
|
|
|
# Delete a revision.
|
|
# @param [String] name
|
|
# The name of the revision to delete. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [String] api_version
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @param [String] kind
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
|
# workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_namespace_revision(name, api_version: nil, dry_run: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'apis/serving.knative.dev/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a revision.
|
|
# @param [String] name
|
|
# The name of the revision to retrieve. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @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::RunV1::Revision] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Revision]
|
|
#
|
|
# @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_namespace_revision(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Revision::Representation
|
|
command.response_class = Google::Apis::RunV1::Revision
|
|
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
|
|
|
|
# List revisions.
|
|
# @param [String] parent
|
|
# The namespace from which the revisions should be listed. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListRevisionsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListRevisionsResponse]
|
|
#
|
|
# @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_namespace_revisions(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+parent}/revisions', options)
|
|
command.response_representation = Google::Apis::RunV1::ListRevisionsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListRevisionsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a route.
|
|
# @param [String] name
|
|
# The name of the route to retrieve. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @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::RunV1::Route] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Route]
|
|
#
|
|
# @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_namespace_route(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Route::Representation
|
|
command.response_class = Google::Apis::RunV1::Route
|
|
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
|
|
|
|
# List routes.
|
|
# @param [String] parent
|
|
# The namespace from which the routes should be listed. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListRoutesResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListRoutesResponse]
|
|
#
|
|
# @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_namespace_routes(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+parent}/routes', options)
|
|
command.response_representation = Google::Apis::RunV1::ListRoutesResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListRoutesResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Create a service.
|
|
# @param [String] parent
|
|
# The namespace in which the service should be created. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [Google::Apis::RunV1::Service] service_object
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @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::RunV1::Service] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Service]
|
|
#
|
|
# @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_namespace_service(parent, service_object = nil, dry_run: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'apis/serving.knative.dev/v1/{+parent}/services', options)
|
|
command.request_representation = Google::Apis::RunV1::Service::Representation
|
|
command.request_object = service_object
|
|
command.response_representation = Google::Apis::RunV1::Service::Representation
|
|
command.response_class = Google::Apis::RunV1::Service
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Delete a service. This will cause the Service to stop serving traffic and will
|
|
# delete the child entities like Routes, Configurations and Revisions.
|
|
# @param [String] name
|
|
# The name of the service to delete. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [String] api_version
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @param [String] kind
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
|
# workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_namespace_service(name, api_version: nil, dry_run: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'apis/serving.knative.dev/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a service.
|
|
# @param [String] name
|
|
# The name of the service to retrieve. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @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::RunV1::Service] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Service]
|
|
#
|
|
# @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_namespace_service(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Service::Representation
|
|
command.response_class = Google::Apis::RunV1::Service
|
|
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
|
|
|
|
# List services.
|
|
# @param [String] parent
|
|
# The namespace from which the services should be listed. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListServicesResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListServicesResponse]
|
|
#
|
|
# @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_namespace_services(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/serving.knative.dev/v1/{+parent}/services', options)
|
|
command.response_representation = Google::Apis::RunV1::ListServicesResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListServicesResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Replace a service. Only the spec and metadata labels and annotations are
|
|
# modifiable. After the Update request, Cloud Run will work to make the 'status'
|
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
|
# update from last read for optimistic concurrency control.
|
|
# @param [String] name
|
|
# The name of the service being replaced. For Cloud Run (fully managed), replace
|
|
# `namespace_id` with the project ID or number.
|
|
# @param [Google::Apis::RunV1::Service] service_object
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @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::RunV1::Service] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Service]
|
|
#
|
|
# @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 replace_namespace_service_service(name, service_object = nil, dry_run: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:put, 'apis/serving.knative.dev/v1/{+name}', options)
|
|
command.request_representation = Google::Apis::RunV1::Service::Representation
|
|
command.request_object = service_object
|
|
command.response_representation = Google::Apis::RunV1::Service::Representation
|
|
command.response_class = Google::Apis::RunV1::Service
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a task.
|
|
# @param [String] name
|
|
# Required. The name of the task to retrieve. Replace `namespace_id` with the
|
|
# project ID or number.
|
|
# @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::RunV1::Task] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Task]
|
|
#
|
|
# @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_namespace_task(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/run.googleapis.com/v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Task::Representation
|
|
command.response_class = Google::Apis::RunV1::Task
|
|
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
|
|
|
|
# List tasks.
|
|
# @param [String] parent
|
|
# Required. The namespace from which the tasks should be listed. Replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Optional encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Optional. Allows to filter resources based on a specific value for a field
|
|
# name. Send this in a query string format. i.e. 'metadata.name%3Dlorem'. Not
|
|
# currently used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Optional. Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Optional. Allows to filter resources based on a label. Supported operations
|
|
# are =, !=, exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# Optional. The baseline resource version from which the list or watch operation
|
|
# should start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Optional. Flag that indicates that the client expects to watch this resource
|
|
# as well. Not currently used by Cloud Run.
|
|
# @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::RunV1::ListTasksResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListTasksResponse]
|
|
#
|
|
# @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_namespace_tasks(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'apis/run.googleapis.com/v1/{+parent}/tasks', options)
|
|
command.response_representation = Google::Apis::RunV1::ListTasksResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListTasksResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# List authorized domains.
|
|
# @param [String] parent
|
|
# Name of the parent Project resource. Example: `projects/myproject`.
|
|
# @param [Fixnum] page_size
|
|
# Maximum results to return per page.
|
|
# @param [String] page_token
|
|
# Continuation token for fetching 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::RunV1::ListAuthorizedDomainsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListAuthorizedDomainsResponse]
|
|
#
|
|
# @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_authorizeddomains(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+parent}/authorizeddomains', options)
|
|
command.response_representation = Google::Apis::RunV1::ListAuthorizedDomainsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListAuthorizedDomainsResponse
|
|
command.params['parent'] = parent unless parent.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
|
|
|
|
# Lists information about the supported locations for this service.
|
|
# @param [String] name
|
|
# The resource that owns the locations collection, if applicable.
|
|
# @param [String] filter
|
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
|
# AIP-160](https://google.aip.dev/160).
|
|
# @param [Fixnum] page_size
|
|
# The maximum number of results to return. If not set, the service selects a
|
|
# default.
|
|
# @param [String] page_token
|
|
# A page token received from the `next_page_token` field in the response. Send
|
|
# that page token to receive the subsequent page.
|
|
# @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::RunV1::ListLocationsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListLocationsResponse]
|
|
#
|
|
# @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_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+name}/locations', options)
|
|
command.response_representation = Google::Apis::RunV1::ListLocationsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListLocationsResponse
|
|
command.params['name'] = name unless name.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
|
|
|
|
# List authorized domains.
|
|
# @param [String] parent
|
|
# Name of the parent Project resource. Example: `projects/myproject`.
|
|
# @param [Fixnum] page_size
|
|
# Maximum results to return per page.
|
|
# @param [String] page_token
|
|
# Continuation token for fetching 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::RunV1::ListAuthorizedDomainsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListAuthorizedDomainsResponse]
|
|
#
|
|
# @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_authorizeddomains(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+parent}/authorizeddomains', options)
|
|
command.response_representation = Google::Apis::RunV1::ListAuthorizedDomainsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListAuthorizedDomainsResponse
|
|
command.params['parent'] = parent unless parent.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
|
|
|
|
# Get information about a configuration.
|
|
# @param [String] name
|
|
# The name of the configuration to retrieve. For Cloud Run (fully managed),
|
|
# replace `namespace_id` with the project ID or number.
|
|
# @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::RunV1::Configuration] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Configuration]
|
|
#
|
|
# @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_configuration(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Configuration::Representation
|
|
command.response_class = Google::Apis::RunV1::Configuration
|
|
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
|
|
|
|
# List configurations.
|
|
# @param [String] parent
|
|
# The namespace from which the configurations should be listed. For Cloud Run (
|
|
# fully managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListConfigurationsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListConfigurationsResponse]
|
|
#
|
|
# @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_configurations(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+parent}/configurations', options)
|
|
command.response_representation = Google::Apis::RunV1::ListConfigurationsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListConfigurationsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Create a new domain mapping.
|
|
# @param [String] parent
|
|
# The namespace in which the domain mapping should be created. For Cloud Run (
|
|
# fully managed), replace `namespace_id` with the project ID or number.
|
|
# @param [Google::Apis::RunV1::DomainMapping] domain_mapping_object
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @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::RunV1::DomainMapping] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::DomainMapping]
|
|
#
|
|
# @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_domainmapping(parent, domain_mapping_object = nil, dry_run: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'v1/{+parent}/domainmappings', options)
|
|
command.request_representation = Google::Apis::RunV1::DomainMapping::Representation
|
|
command.request_object = domain_mapping_object
|
|
command.response_representation = Google::Apis::RunV1::DomainMapping::Representation
|
|
command.response_class = Google::Apis::RunV1::DomainMapping
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Delete a domain mapping.
|
|
# @param [String] name
|
|
# The name of the domain mapping to delete. For Cloud Run (fully managed),
|
|
# replace `namespace_id` with the project ID or number.
|
|
# @param [String] api_version
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @param [String] kind
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
|
# workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_domainmapping(name, api_version: nil, dry_run: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a domain mapping.
|
|
# @param [String] name
|
|
# The name of the domain mapping to retrieve. For Cloud Run (fully managed),
|
|
# replace `namespace_id` with the project ID or number.
|
|
# @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::RunV1::DomainMapping] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::DomainMapping]
|
|
#
|
|
# @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_domainmapping(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::DomainMapping::Representation
|
|
command.response_class = Google::Apis::RunV1::DomainMapping
|
|
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
|
|
|
|
# List domain mappings.
|
|
# @param [String] parent
|
|
# The namespace from which the domain mappings should be listed. For Cloud Run (
|
|
# fully managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListDomainMappingsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListDomainMappingsResponse]
|
|
#
|
|
# @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_domainmappings(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+parent}/domainmappings', options)
|
|
command.response_representation = Google::Apis::RunV1::ListDomainMappingsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListDomainMappingsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get the IAM Access Control policy currently in effect for the given job. This
|
|
# result does not include any inherited policies.
|
|
# @param [String] resource
|
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
# operation documentation for the appropriate value for this field.
|
|
# @param [Fixnum] options_requested_policy_version
|
|
# Optional. The maximum policy version that will be used to format the policy.
|
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
# rejected. Requests for policies with any conditional role bindings must
|
|
# specify version 3. Policies with no conditional role bindings may specify any
|
|
# valid value or leave the field unset. The policy in the response might use the
|
|
# policy version that you specified, or it might use a lower policy version. For
|
|
# example, if you specify version 3, but the policy has no conditional role
|
|
# bindings, the response uses version 1. To learn which resources support
|
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
# google.com/iam/help/conditions/resource-policies).
|
|
# @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::RunV1::Policy] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Policy]
|
|
#
|
|
# @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_job_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
|
|
command.response_representation = Google::Apis::RunV1::Policy::Representation
|
|
command.response_class = Google::Apis::RunV1::Policy
|
|
command.params['resource'] = resource unless resource.nil?
|
|
command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.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 IAM Access control policy for the specified job. Overwrites any
|
|
# existing policy.
|
|
# @param [String] resource
|
|
# REQUIRED: The resource for which the policy is being specified. See the
|
|
# operation documentation for the appropriate value for this field.
|
|
# @param [Google::Apis::RunV1::SetIamPolicyRequest] set_iam_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::RunV1::Policy] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Policy]
|
|
#
|
|
# @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_job_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
|
|
command.request_representation = Google::Apis::RunV1::SetIamPolicyRequest::Representation
|
|
command.request_object = set_iam_policy_request_object
|
|
command.response_representation = Google::Apis::RunV1::Policy::Representation
|
|
command.response_class = Google::Apis::RunV1::Policy
|
|
command.params['resource'] = resource unless resource.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 permissions that a caller has on the specified job. There are no
|
|
# permissions required for making this API call.
|
|
# @param [String] resource
|
|
# REQUIRED: The resource for which the policy detail is being requested. See the
|
|
# operation documentation for the appropriate value for this field.
|
|
# @param [Google::Apis::RunV1::TestIamPermissionsRequest] test_iam_permissions_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::RunV1::TestIamPermissionsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::TestIamPermissionsResponse]
|
|
#
|
|
# @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 test_job_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
|
command.request_representation = Google::Apis::RunV1::TestIamPermissionsRequest::Representation
|
|
command.request_object = test_iam_permissions_request_object
|
|
command.response_representation = Google::Apis::RunV1::TestIamPermissionsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::TestIamPermissionsResponse
|
|
command.params['resource'] = resource unless resource.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Delete a revision.
|
|
# @param [String] name
|
|
# The name of the revision to delete. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [String] api_version
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @param [String] kind
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
|
# workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_revision(name, api_version: nil, dry_run: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a revision.
|
|
# @param [String] name
|
|
# The name of the revision to retrieve. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @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::RunV1::Revision] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Revision]
|
|
#
|
|
# @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_revision(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Revision::Representation
|
|
command.response_class = Google::Apis::RunV1::Revision
|
|
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
|
|
|
|
# List revisions.
|
|
# @param [String] parent
|
|
# The namespace from which the revisions should be listed. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListRevisionsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListRevisionsResponse]
|
|
#
|
|
# @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_revisions(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+parent}/revisions', options)
|
|
command.response_representation = Google::Apis::RunV1::ListRevisionsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListRevisionsResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a route.
|
|
# @param [String] name
|
|
# The name of the route to retrieve. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @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::RunV1::Route] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Route]
|
|
#
|
|
# @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_route(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Route::Representation
|
|
command.response_class = Google::Apis::RunV1::Route
|
|
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
|
|
|
|
# List routes.
|
|
# @param [String] parent
|
|
# The namespace from which the routes should be listed. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListRoutesResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListRoutesResponse]
|
|
#
|
|
# @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_routes(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+parent}/routes', options)
|
|
command.response_representation = Google::Apis::RunV1::ListRoutesResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListRoutesResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Create a service.
|
|
# @param [String] parent
|
|
# The namespace in which the service should be created. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [Google::Apis::RunV1::Service] service_object
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @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::RunV1::Service] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Service]
|
|
#
|
|
# @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_service(parent, service_object = nil, dry_run: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'v1/{+parent}/services', options)
|
|
command.request_representation = Google::Apis::RunV1::Service::Representation
|
|
command.request_object = service_object
|
|
command.response_representation = Google::Apis::RunV1::Service::Representation
|
|
command.response_class = Google::Apis::RunV1::Service
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Delete a service. This will cause the Service to stop serving traffic and will
|
|
# delete the child entities like Routes, Configurations and Revisions.
|
|
# @param [String] name
|
|
# The name of the service to delete. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @param [String] api_version
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @param [String] kind
|
|
# Cloud Run currently ignores this parameter.
|
|
# @param [String] propagation_policy
|
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
|
# workloads/controllers/garbage-collection/ for more information.
|
|
# @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::RunV1::Status] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Status]
|
|
#
|
|
# @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_service(name, api_version: nil, dry_run: nil, kind: nil, propagation_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Status::Representation
|
|
command.response_class = Google::Apis::RunV1::Status
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['apiVersion'] = api_version unless api_version.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.nil?
|
|
command.query['kind'] = kind unless kind.nil?
|
|
command.query['propagationPolicy'] = propagation_policy unless propagation_policy.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Get information about a service.
|
|
# @param [String] name
|
|
# The name of the service to retrieve. For Cloud Run (fully managed), replace `
|
|
# namespace_id` with the project ID or number.
|
|
# @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::RunV1::Service] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Service]
|
|
#
|
|
# @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_service(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
command.response_representation = Google::Apis::RunV1::Service::Representation
|
|
command.response_class = Google::Apis::RunV1::Service
|
|
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
|
|
|
|
# Get the IAM Access Control policy currently in effect for the given Cloud Run
|
|
# service. This result does not include any inherited policies.
|
|
# @param [String] resource
|
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
# operation documentation for the appropriate value for this field.
|
|
# @param [Fixnum] options_requested_policy_version
|
|
# Optional. The maximum policy version that will be used to format the policy.
|
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
# rejected. Requests for policies with any conditional role bindings must
|
|
# specify version 3. Policies with no conditional role bindings may specify any
|
|
# valid value or leave the field unset. The policy in the response might use the
|
|
# policy version that you specified, or it might use a lower policy version. For
|
|
# example, if you specify version 3, but the policy has no conditional role
|
|
# bindings, the response uses version 1. To learn which resources support
|
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
# google.com/iam/help/conditions/resource-policies).
|
|
# @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::RunV1::Policy] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Policy]
|
|
#
|
|
# @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_service_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
|
|
command.response_representation = Google::Apis::RunV1::Policy::Representation
|
|
command.response_class = Google::Apis::RunV1::Policy
|
|
command.params['resource'] = resource unless resource.nil?
|
|
command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# List services.
|
|
# @param [String] parent
|
|
# The namespace from which the services should be listed. For Cloud Run (fully
|
|
# managed), replace `namespace_id` with the project ID or number.
|
|
# @param [String] continue
|
|
# Optional. Encoded string to continue paging.
|
|
# @param [String] field_selector
|
|
# Allows to filter resources based on a specific value for a field name. Send
|
|
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
|
# used by Cloud Run.
|
|
# @param [Boolean] include_uninitialized
|
|
# Not currently used by Cloud Run.
|
|
# @param [String] label_selector
|
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
|
# exists, in, and notIn.
|
|
# @param [Fixnum] limit
|
|
# Optional. The maximum number of records that should be returned.
|
|
# @param [String] resource_version
|
|
# The baseline resource version from which the list or watch operation should
|
|
# start. Not currently used by Cloud Run.
|
|
# @param [Boolean] watch
|
|
# Flag that indicates that the client expects to watch this resource as well.
|
|
# Not currently used by Cloud Run.
|
|
# @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::RunV1::ListServicesResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::ListServicesResponse]
|
|
#
|
|
# @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_services(parent, continue: nil, field_selector: nil, include_uninitialized: nil, label_selector: nil, limit: nil, resource_version: nil, watch: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:get, 'v1/{+parent}/services', options)
|
|
command.response_representation = Google::Apis::RunV1::ListServicesResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::ListServicesResponse
|
|
command.params['parent'] = parent unless parent.nil?
|
|
command.query['continue'] = continue unless continue.nil?
|
|
command.query['fieldSelector'] = field_selector unless field_selector.nil?
|
|
command.query['includeUninitialized'] = include_uninitialized unless include_uninitialized.nil?
|
|
command.query['labelSelector'] = label_selector unless label_selector.nil?
|
|
command.query['limit'] = limit unless limit.nil?
|
|
command.query['resourceVersion'] = resource_version unless resource_version.nil?
|
|
command.query['watch'] = watch unless watch.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
# Replace a service. Only the spec and metadata labels and annotations are
|
|
# modifiable. After the Update request, Cloud Run will work to make the 'status'
|
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
|
# update from last read for optimistic concurrency control.
|
|
# @param [String] name
|
|
# The name of the service being replaced. For Cloud Run (fully managed), replace
|
|
# `namespace_id` with the project ID or number.
|
|
# @param [Google::Apis::RunV1::Service] service_object
|
|
# @param [String] dry_run
|
|
# Indicates that the server should validate the request and populate default
|
|
# values without persisting the request. Supported values: `all`
|
|
# @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::RunV1::Service] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Service]
|
|
#
|
|
# @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 replace_project_location_service_service(name, service_object = nil, dry_run: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:put, 'v1/{+name}', options)
|
|
command.request_representation = Google::Apis::RunV1::Service::Representation
|
|
command.request_object = service_object
|
|
command.response_representation = Google::Apis::RunV1::Service::Representation
|
|
command.response_class = Google::Apis::RunV1::Service
|
|
command.params['name'] = name unless name.nil?
|
|
command.query['dryRun'] = dry_run unless dry_run.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 IAM Access control policy for the specified Service. Overwrites any
|
|
# existing policy.
|
|
# @param [String] resource
|
|
# REQUIRED: The resource for which the policy is being specified. See the
|
|
# operation documentation for the appropriate value for this field.
|
|
# @param [Google::Apis::RunV1::SetIamPolicyRequest] set_iam_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::RunV1::Policy] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::Policy]
|
|
#
|
|
# @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_service_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
|
|
command.request_representation = Google::Apis::RunV1::SetIamPolicyRequest::Representation
|
|
command.request_object = set_iam_policy_request_object
|
|
command.response_representation = Google::Apis::RunV1::Policy::Representation
|
|
command.response_class = Google::Apis::RunV1::Policy
|
|
command.params['resource'] = resource unless resource.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 permissions that a caller has on the specified Project. There are no
|
|
# permissions required for making this API call.
|
|
# @param [String] resource
|
|
# REQUIRED: The resource for which the policy detail is being requested. See the
|
|
# operation documentation for the appropriate value for this field.
|
|
# @param [Google::Apis::RunV1::TestIamPermissionsRequest] test_iam_permissions_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::RunV1::TestIamPermissionsResponse] parsed result object
|
|
# @yieldparam err [StandardError] error object if request failed
|
|
#
|
|
# @return [Google::Apis::RunV1::TestIamPermissionsResponse]
|
|
#
|
|
# @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 test_service_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
|
command.request_representation = Google::Apis::RunV1::TestIamPermissionsRequest::Representation
|
|
command.request_object = test_iam_permissions_request_object
|
|
command.response_representation = Google::Apis::RunV1::TestIamPermissionsResponse::Representation
|
|
command.response_class = Google::Apis::RunV1::TestIamPermissionsResponse
|
|
command.params['resource'] = resource unless resource.nil?
|
|
command.query['fields'] = fields unless fields.nil?
|
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
execute_or_queue_command(command, &block)
|
|
end
|
|
|
|
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
|