Autogenerated update (2019-07-09)

Update:
- androiddeviceprovisioning_v1
- cloudbilling_v1
- cloudiot_v1
- run_v1alpha1
- securitycenter_v1
- securitycenter_v1beta1
- tagmanager_v1
- tagmanager_v2
This commit is contained in:
Google APIs 2019-07-09 00:38:00 +00:00
parent fd2898bfa0
commit d828b4ba95
24 changed files with 421 additions and 49 deletions

View File

@ -26,7 +26,7 @@ module Google
# @see https://developers.google.com/zero-touch/ # @see https://developers.google.com/zero-touch/
module AndroiddeviceprovisioningV1 module AndroiddeviceprovisioningV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20190531' REVISION = '20190704'
end end
end end
end end

View File

@ -113,7 +113,7 @@ module Google
class Company class Company
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# Input only. Optional. Email address of customer's users in the admin role. # Optional. Input only. Email address of customer's users in the admin role.
# Each email address must be associated with a Google Account. # Each email address must be associated with a Google Account.
# Corresponds to the JSON property `adminEmails` # Corresponds to the JSON property `adminEmails`
# @return [Array<String>] # @return [Array<String>]

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/billing/ # @see https://cloud.google.com/billing/
module CloudbillingV1 module CloudbillingV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20190413' REVISION = '20190702'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -155,6 +155,14 @@ module Google
# @return [Array<String>] # @return [Array<String>]
attr_accessor :exempted_members attr_accessor :exempted_members
# Specifies whether principals can be exempted for the same LogType in
# lower-level resource policies. If true, any lower-level exemptions will
# be ignored.
# Corresponds to the JSON property `ignoreChildExemptions`
# @return [Boolean]
attr_accessor :ignore_child_exemptions
alias_method :ignore_child_exemptions?, :ignore_child_exemptions
# The log type that this config enables. # The log type that this config enables.
# Corresponds to the JSON property `logType` # Corresponds to the JSON property `logType`
# @return [String] # @return [String]
@ -167,6 +175,7 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@exempted_members = args[:exempted_members] if args.key?(:exempted_members) @exempted_members = args[:exempted_members] if args.key?(:exempted_members)
@ignore_child_exemptions = args[:ignore_child_exemptions] if args.key?(:ignore_child_exemptions)
@log_type = args[:log_type] if args.key?(:log_type) @log_type = args[:log_type] if args.key?(:log_type)
end end
end end

View File

@ -176,6 +176,7 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
collection :exempted_members, as: 'exemptedMembers' collection :exempted_members, as: 'exemptedMembers'
property :ignore_child_exemptions, as: 'ignoreChildExemptions'
property :log_type, as: 'logType' property :log_type, as: 'logType'
end end
end end

View File

@ -127,6 +127,11 @@ module Google
# @param [String] resource # @param [String] resource
# REQUIRED: The resource for which the policy is being requested. # REQUIRED: The resource for which the policy is being requested.
# See the operation documentation for the appropriate value for this field. # See the operation documentation for the appropriate value for this field.
# @param [Fixnum] options_requested_policy_version
# Optional. The policy format version to be returned.
# Acceptable values are 0 and 1.
# If the value is 0, or the field is omitted, policy format version 1 will be
# returned.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -144,11 +149,12 @@ module Google
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried # @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::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required # @raise [Google::Apis::AuthorizationError] Authorization is required
def get_billing_account_iam_policy(resource, fields: nil, quota_user: nil, options: nil, &block) def get_billing_account_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 = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
command.response_representation = Google::Apis::CloudbillingV1::Policy::Representation command.response_representation = Google::Apis::CloudbillingV1::Policy::Representation
command.response_class = Google::Apis::CloudbillingV1::Policy command.response_class = Google::Apis::CloudbillingV1::Policy
command.params['resource'] = resource unless resource.nil? 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['fields'] = fields unless fields.nil?
command.query['quotaUser'] = quota_user unless quota_user.nil? command.query['quotaUser'] = quota_user unless quota_user.nil?
execute_or_queue_command(command, &block) execute_or_queue_command(command, &block)

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/iot # @see https://cloud.google.com/iot
module CloudiotV1 module CloudiotV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20190605' REVISION = '20190702'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -591,12 +591,40 @@ module Google
class GetIamPolicyRequest class GetIamPolicyRequest
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# Encapsulates settings provided to GetIamPolicy.
# Corresponds to the JSON property `options`
# @return [Google::Apis::CloudiotV1::GetPolicyOptions]
attr_accessor :options
def initialize(**args) def initialize(**args)
update!(**args) update!(**args)
end end
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@options = args[:options] if args.key?(:options)
end
end
# Encapsulates settings provided to GetIamPolicy.
class GetPolicyOptions
include Google::Apis::Core::Hashable
# Optional. The policy format version to be returned.
# Acceptable values are 0 and 1.
# If the value is 0, or the field is omitted, policy format version 1 will be
# returned.
# Corresponds to the JSON property `requestedPolicyVersion`
# @return [Fixnum]
attr_accessor :requested_policy_version
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@requested_policy_version = args[:requested_policy_version] if args.key?(:requested_policy_version)
end end
end end

View File

@ -100,6 +100,12 @@ module Google
include Google::Apis::Core::JsonObjectSupport include Google::Apis::Core::JsonObjectSupport
end end
class GetPolicyOptions
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class HttpConfig class HttpConfig
class Representation < Google::Apis::Core::JsonRepresentation; end class Representation < Google::Apis::Core::JsonRepresentation; end
@ -361,6 +367,15 @@ module Google
class GetIamPolicyRequest class GetIamPolicyRequest
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
property :options, as: 'options', class: Google::Apis::CloudiotV1::GetPolicyOptions, decorator: Google::Apis::CloudiotV1::GetPolicyOptions::Representation
end
end
class GetPolicyOptions
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :requested_policy_version, as: 'requestedPolicyVersion'
end end
end end

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/run/ # @see https://cloud.google.com/run/
module RunV1alpha1 module RunV1alpha1
VERSION = 'V1alpha1' VERSION = 'V1alpha1'
REVISION = '20190620' REVISION = '20190701'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -356,7 +356,7 @@ module Google
class Configuration class Configuration
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -831,7 +831,7 @@ module Google
class DomainMapping class DomainMapping
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "domains.cloudrun.com/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1098,7 +1098,7 @@ module Google
class EventType class EventType
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "eventing.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1531,7 +1531,7 @@ module Google
class ListConfigurationsResponse class ListConfigurationsResponse
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1576,7 +1576,7 @@ module Google
class ListDomainMappingsResponse class ListDomainMappingsResponse
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "domains.cloudrun.com/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1615,7 +1615,7 @@ module Google
class ListEventTypesResponse class ListEventTypesResponse
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "eventing.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1736,7 +1736,7 @@ module Google
class ListRevisionsResponse class ListRevisionsResponse
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1781,7 +1781,7 @@ module Google
class ListRoutesResponse class ListRoutesResponse
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1826,7 +1826,7 @@ module Google
class ListServicesResponse class ListServicesResponse
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -1871,7 +1871,7 @@ module Google
class ListTriggersResponse class ListTriggersResponse
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "eventing.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -2603,7 +2603,7 @@ module Google
class Revision class Revision
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -2899,7 +2899,7 @@ module Google
class Route class Route
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -3326,7 +3326,7 @@ module Google
class Service class Service
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "serving.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version
@ -3473,10 +3473,7 @@ module Google
attr_accessor :template attr_accessor :template
# Traffic specifies how to distribute traffic over a collection of Knative # Traffic specifies how to distribute traffic over a collection of Knative
# Revisions and Configurations. This will replace existing service specs # Revisions and Configurations.
# (ServiceSpecRunLatest, ServiceSpecPinnedType, ServiceSpecReleaseType, and
# ServiceSpecManualType).
# Not currently supported by Cloud Run.
# Corresponds to the JSON property `traffic` # Corresponds to the JSON property `traffic`
# @return [Array<Google::Apis::RunV1alpha1::TrafficTarget>] # @return [Array<Google::Apis::RunV1alpha1::TrafficTarget>]
attr_accessor :traffic attr_accessor :traffic
@ -3935,7 +3932,7 @@ module Google
class Trigger class Trigger
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The API version for this call such as "v1alpha1". # The API version for this call such as "eventing.knative.dev/v1alpha1".
# Corresponds to the JSON property `apiVersion` # Corresponds to the JSON property `apiVersion`
# @return [String] # @return [String]
attr_accessor :api_version attr_accessor :api_version

View File

@ -1839,6 +1839,11 @@ module Google
# @param [String] resource # @param [String] resource
# REQUIRED: The resource for which the policy is being requested. # REQUIRED: The resource for which the policy is being requested.
# See the operation documentation for the appropriate value for this field. # See the operation documentation for the appropriate value for this field.
# @param [Fixnum] options_requested_policy_version
# Optional. The policy format version to be returned.
# Acceptable values are 0 and 1.
# If the value is 0, or the field is omitted, policy format version 1 will be
# returned.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1856,11 +1861,12 @@ module Google
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried # @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::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required # @raise [Google::Apis::AuthorizationError] Authorization is required
def get_project_location_service_iam_policy(resource, fields: nil, quota_user: nil, options: nil, &block) 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, 'v1alpha1/{+resource}:getIamPolicy', options) command = make_simple_command(:get, 'v1alpha1/{+resource}:getIamPolicy', options)
command.response_representation = Google::Apis::RunV1alpha1::Policy::Representation command.response_representation = Google::Apis::RunV1alpha1::Policy::Representation
command.response_class = Google::Apis::RunV1alpha1::Policy command.response_class = Google::Apis::RunV1alpha1::Policy
command.params['resource'] = resource unless resource.nil? 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['fields'] = fields unless fields.nil?
command.query['quotaUser'] = quota_user unless quota_user.nil? command.query['quotaUser'] = quota_user unless quota_user.nil?
execute_or_queue_command(command, &block) execute_or_queue_command(command, &block)

View File

@ -0,0 +1,35 @@
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'google/apis/run_v1beta1/service.rb'
require 'google/apis/run_v1beta1/classes.rb'
require 'google/apis/run_v1beta1/representations.rb'
module Google
module Apis
# Cloud Run API
#
# Deploy and manage user provided container images that scale automatically
# based on HTTP traffic.
#
# @see https://cloud.google.com/run/
module RunV1beta1
VERSION = 'V1beta1'
REVISION = '20190701'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
end
end
end

View File

@ -0,0 +1,98 @@
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
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 RunV1beta1
# The response message for Locations.ListLocations.
class ListLocationsResponse
include Google::Apis::Core::Hashable
# A list of locations that matches the specified filter in the request.
# Corresponds to the JSON property `locations`
# @return [Array<Google::Apis::RunV1beta1::Location>]
attr_accessor :locations
# The standard List next-page token.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@locations = args[:locations] if args.key?(:locations)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# A resource that represents Google Cloud Platform location.
class Location
include Google::Apis::Core::Hashable
# The friendly name for this location, typically a nearby city name.
# For example, "Tokyo".
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Cross-service attributes for the location. For example
# `"cloud.googleapis.com/region": "us-east1"`
# Corresponds to the JSON property `labels`
# @return [Hash<String,String>]
attr_accessor :labels
# The canonical id for this location. For example: `"us-east1"`.
# Corresponds to the JSON property `locationId`
# @return [String]
attr_accessor :location_id
# Service-specific metadata. For example the available capacity at the given
# location.
# Corresponds to the JSON property `metadata`
# @return [Hash<String,Object>]
attr_accessor :metadata
# Resource name for the location, which may vary between implementations.
# For example: `"projects/example-project/locations/us-east1"`
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@display_name = args[:display_name] if args.key?(:display_name)
@labels = args[:labels] if args.key?(:labels)
@location_id = args[:location_id] if args.key?(:location_id)
@metadata = args[:metadata] if args.key?(:metadata)
@name = args[:name] if args.key?(:name)
end
end
end
end
end

View File

@ -0,0 +1,58 @@
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
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 RunV1beta1
class ListLocationsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class Location
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ListLocationsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :locations, as: 'locations', class: Google::Apis::RunV1beta1::Location, decorator: Google::Apis::RunV1beta1::Location::Representation
property :next_page_token, as: 'nextPageToken'
end
end
class Location
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :display_name, as: 'displayName'
hash :labels, as: 'labels'
property :location_id, as: 'locationId'
hash :metadata, as: 'metadata'
property :name, as: 'name'
end
end
end
end
end

View File

@ -0,0 +1,99 @@
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module RunV1beta1
# Cloud Run API
#
# Deploy and manage user provided container images that scale automatically
# based on HTTP traffic.
#
# @example
# require 'google/apis/run_v1beta1'
#
# Run = Google::Apis::RunV1beta1 # 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/', '')
@batch_path = 'batch'
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
# The standard list filter.
# @param [Fixnum] page_size
# The standard list page size.
# @param [String] page_token
# The standard list page token.
# @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::RunV1beta1::ListLocationsResponse] parsed result object
# @yieldparam err [StandardError] error object if request failed
#
# @return [Google::Apis::RunV1beta1::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, 'v1beta1/{+name}/locations', options)
command.response_representation = Google::Apis::RunV1beta1::ListLocationsResponse::Representation
command.response_class = Google::Apis::RunV1beta1::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
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

View File

@ -26,7 +26,7 @@ module Google
# @see https://console.cloud.google.com/apis/api/securitycenter.googleapis.com/overview # @see https://console.cloud.google.com/apis/api/securitycenter.googleapis.com/overview
module SecuritycenterV1 module SecuritycenterV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20190628' REVISION = '20190704'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -134,7 +134,7 @@ module Google
# ` # `
# "log_type": "DATA_READ", # "log_type": "DATA_READ",
# "exempted_members": [ # "exempted_members": [
# "user:foo@gmail.com" # "user:jose@example.com"
# ] # ]
# `, # `,
# ` # `
@ -146,7 +146,7 @@ module Google
# ] # ]
# `, # `,
# ` # `
# "service": "fooservice.googleapis.com" # "service": "sampleservice.googleapis.com"
# "audit_log_configs": [ # "audit_log_configs": [
# ` # `
# "log_type": "DATA_READ", # "log_type": "DATA_READ",
@ -154,16 +154,16 @@ module Google
# ` # `
# "log_type": "DATA_WRITE", # "log_type": "DATA_WRITE",
# "exempted_members": [ # "exempted_members": [
# "user:bar@gmail.com" # "user:aliya@example.com"
# ] # ]
# ` # `
# ] # ]
# ` # `
# ] # ]
# ` # `
# For fooservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ # For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ
# logging. It also exempts foo@gmail.com from DATA_READ logging, and # logging. It also exempts jose@example.com from DATA_READ logging, and
# bar@gmail.com from DATA_WRITE logging. # aliya@example.com from DATA_WRITE logging.
class AuditConfig class AuditConfig
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
@ -197,7 +197,7 @@ module Google
# ` # `
# "log_type": "DATA_READ", # "log_type": "DATA_READ",
# "exempted_members": [ # "exempted_members": [
# "user:foo@gmail.com" # "user:jose@example.com"
# ] # ]
# `, # `,
# ` # `
@ -206,7 +206,7 @@ module Google
# ] # ]
# ` # `
# This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting # This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting
# foo@gmail.com from DATA_READ logging. # jose@example.com from DATA_READ logging.
class AuditLogConfig class AuditLogConfig
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
@ -217,6 +217,14 @@ module Google
# @return [Array<String>] # @return [Array<String>]
attr_accessor :exempted_members attr_accessor :exempted_members
# Specifies whether principals can be exempted for the same LogType in
# lower-level resource policies. If true, any lower-level exemptions will
# be ignored.
# Corresponds to the JSON property `ignoreChildExemptions`
# @return [Boolean]
attr_accessor :ignore_child_exemptions
alias_method :ignore_child_exemptions?, :ignore_child_exemptions
# The log type that this config enables. # The log type that this config enables.
# Corresponds to the JSON property `logType` # Corresponds to the JSON property `logType`
# @return [String] # @return [String]
@ -229,6 +237,7 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@exempted_members = args[:exempted_members] if args.key?(:exempted_members) @exempted_members = args[:exempted_members] if args.key?(:exempted_members)
@ignore_child_exemptions = args[:ignore_child_exemptions] if args.key?(:ignore_child_exemptions)
@log_type = args[:log_type] if args.key?(:log_type) @log_type = args[:log_type] if args.key?(:log_type)
end end
end end
@ -252,7 +261,7 @@ module Google
# * `allAuthenticatedUsers`: A special identifier that represents anyone # * `allAuthenticatedUsers`: A special identifier that represents anyone
# who is authenticated with a Google account or a service account. # who is authenticated with a Google account or a service account.
# * `user:`emailid``: An email address that represents a specific Google # * `user:`emailid``: An email address that represents a specific Google
# account. For example, `alice@gmail.com` . # account. For example, `alice@example.com` .
# * `serviceAccount:`emailid``: An email address that represents a service # * `serviceAccount:`emailid``: An email address that represents a service
# account. For example, `my-other-app@appspot.gserviceaccount.com`. # account. For example, `my-other-app@appspot.gserviceaccount.com`.
# * `group:`emailid``: An email address that represents a Google group. # * `group:`emailid``: An email address that represents a Google group.
@ -1240,7 +1249,7 @@ module Google
# systems are expected to put that etag in the request to `setIamPolicy` to # systems are expected to put that etag in the request to `setIamPolicy` to
# ensure that their change will be applied to the same version of the policy. # ensure that their change will be applied to the same version of the policy.
# If no `etag` is provided in the call to `setIamPolicy`, then the existing # If no `etag` is provided in the call to `setIamPolicy`, then the existing
# policy is overwritten blindly. # policy is overwritten.
# Corresponds to the JSON property `etag` # Corresponds to the JSON property `etag`
# NOTE: Values are automatically base64 encoded/decoded in the client library. # NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String] # @return [String]

View File

@ -275,6 +275,7 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
collection :exempted_members, as: 'exemptedMembers' collection :exempted_members, as: 'exemptedMembers'
property :ignore_child_exemptions, as: 'ignoreChildExemptions'
property :log_type, as: 'logType' property :log_type, as: 'logType'
end end
end end

View File

@ -26,7 +26,7 @@ module Google
# @see https://console.cloud.google.com/apis/api/securitycenter.googleapis.com/overview # @see https://console.cloud.google.com/apis/api/securitycenter.googleapis.com/overview
module SecuritycenterV1beta1 module SecuritycenterV1beta1
VERSION = 'V1beta1' VERSION = 'V1beta1'
REVISION = '20190628' REVISION = '20190704'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -126,7 +126,7 @@ module Google
# ` # `
# "log_type": "DATA_READ", # "log_type": "DATA_READ",
# "exempted_members": [ # "exempted_members": [
# "user:foo@gmail.com" # "user:jose@example.com"
# ] # ]
# `, # `,
# ` # `
@ -138,7 +138,7 @@ module Google
# ] # ]
# `, # `,
# ` # `
# "service": "fooservice.googleapis.com" # "service": "sampleservice.googleapis.com"
# "audit_log_configs": [ # "audit_log_configs": [
# ` # `
# "log_type": "DATA_READ", # "log_type": "DATA_READ",
@ -146,16 +146,16 @@ module Google
# ` # `
# "log_type": "DATA_WRITE", # "log_type": "DATA_WRITE",
# "exempted_members": [ # "exempted_members": [
# "user:bar@gmail.com" # "user:aliya@example.com"
# ] # ]
# ` # `
# ] # ]
# ` # `
# ] # ]
# ` # `
# For fooservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ # For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ
# logging. It also exempts foo@gmail.com from DATA_READ logging, and # logging. It also exempts jose@example.com from DATA_READ logging, and
# bar@gmail.com from DATA_WRITE logging. # aliya@example.com from DATA_WRITE logging.
class AuditConfig class AuditConfig
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
@ -189,7 +189,7 @@ module Google
# ` # `
# "log_type": "DATA_READ", # "log_type": "DATA_READ",
# "exempted_members": [ # "exempted_members": [
# "user:foo@gmail.com" # "user:jose@example.com"
# ] # ]
# `, # `,
# ` # `
@ -198,7 +198,7 @@ module Google
# ] # ]
# ` # `
# This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting # This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting
# foo@gmail.com from DATA_READ logging. # jose@example.com from DATA_READ logging.
class AuditLogConfig class AuditLogConfig
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
@ -209,6 +209,14 @@ module Google
# @return [Array<String>] # @return [Array<String>]
attr_accessor :exempted_members attr_accessor :exempted_members
# Specifies whether principals can be exempted for the same LogType in
# lower-level resource policies. If true, any lower-level exemptions will
# be ignored.
# Corresponds to the JSON property `ignoreChildExemptions`
# @return [Boolean]
attr_accessor :ignore_child_exemptions
alias_method :ignore_child_exemptions?, :ignore_child_exemptions
# The log type that this config enables. # The log type that this config enables.
# Corresponds to the JSON property `logType` # Corresponds to the JSON property `logType`
# @return [String] # @return [String]
@ -221,6 +229,7 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@exempted_members = args[:exempted_members] if args.key?(:exempted_members) @exempted_members = args[:exempted_members] if args.key?(:exempted_members)
@ignore_child_exemptions = args[:ignore_child_exemptions] if args.key?(:ignore_child_exemptions)
@log_type = args[:log_type] if args.key?(:log_type) @log_type = args[:log_type] if args.key?(:log_type)
end end
end end
@ -244,7 +253,7 @@ module Google
# * `allAuthenticatedUsers`: A special identifier that represents anyone # * `allAuthenticatedUsers`: A special identifier that represents anyone
# who is authenticated with a Google account or a service account. # who is authenticated with a Google account or a service account.
# * `user:`emailid``: An email address that represents a specific Google # * `user:`emailid``: An email address that represents a specific Google
# account. For example, `alice@gmail.com` . # account. For example, `alice@example.com` .
# * `serviceAccount:`emailid``: An email address that represents a service # * `serviceAccount:`emailid``: An email address that represents a service
# account. For example, `my-other-app@appspot.gserviceaccount.com`. # account. For example, `my-other-app@appspot.gserviceaccount.com`.
# * `group:`emailid``: An email address that represents a Google group. # * `group:`emailid``: An email address that represents a Google group.
@ -1127,7 +1136,7 @@ module Google
# systems are expected to put that etag in the request to `setIamPolicy` to # systems are expected to put that etag in the request to `setIamPolicy` to
# ensure that their change will be applied to the same version of the policy. # ensure that their change will be applied to the same version of the policy.
# If no `etag` is provided in the call to `setIamPolicy`, then the existing # If no `etag` is provided in the call to `setIamPolicy`, then the existing
# policy is overwritten blindly. # policy is overwritten.
# Corresponds to the JSON property `etag` # Corresponds to the JSON property `etag`
# NOTE: Values are automatically base64 encoded/decoded in the client library. # NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String] # @return [String]

View File

@ -267,6 +267,7 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
collection :exempted_members, as: 'exemptedMembers' collection :exempted_members, as: 'exemptedMembers'
property :ignore_child_exemptions, as: 'ignoreChildExemptions'
property :log_type, as: 'logType' property :log_type, as: 'logType'
end end
end end

View File

@ -26,7 +26,7 @@ module Google
# @see https://developers.google.com/tag-manager # @see https://developers.google.com/tag-manager
module TagmanagerV1 module TagmanagerV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20190617' REVISION = '20190629'
# Delete your Google Tag Manager containers # Delete your Google Tag Manager containers
AUTH_TAGMANAGER_DELETE_CONTAINERS = 'https://www.googleapis.com/auth/tagmanager.delete.containers' AUTH_TAGMANAGER_DELETE_CONTAINERS = 'https://www.googleapis.com/auth/tagmanager.delete.containers'

View File

@ -26,7 +26,7 @@ module Google
# @see https://developers.google.com/tag-manager # @see https://developers.google.com/tag-manager
module TagmanagerV2 module TagmanagerV2
VERSION = 'V2' VERSION = 'V2'
REVISION = '20190617' REVISION = '20190629'
# Delete your Google Tag Manager containers # Delete your Google Tag Manager containers
AUTH_TAGMANAGER_DELETE_CONTAINERS = 'https://www.googleapis.com/auth/tagmanager.delete.containers' AUTH_TAGMANAGER_DELETE_CONTAINERS = 'https://www.googleapis.com/auth/tagmanager.delete.containers'