Autogenerated update (2018-07-12)
Update: - appengine_v1beta - appengine_v1beta4 - appengine_v1beta5 - cloudresourcemanager_v1 - cloudresourcemanager_v1beta1 - cloudresourcemanager_v2 - cloudresourcemanager_v2beta1 - dialogflow_v2beta1 - iam_v1 - pubsub_v1 - pubsub_v1beta2 - runtimeconfig_v1beta1
This commit is contained in:
parent
b1880f786a
commit
975c2c1f2c
|
@ -8501,6 +8501,7 @@
|
||||||
"/appengine:v1beta/Empty": empty
|
"/appengine:v1beta/Empty": empty
|
||||||
"/appengine:v1beta/EndpointsApiService": endpoints_api_service
|
"/appengine:v1beta/EndpointsApiService": endpoints_api_service
|
||||||
"/appengine:v1beta/EndpointsApiService/configId": config_id
|
"/appengine:v1beta/EndpointsApiService/configId": config_id
|
||||||
|
"/appengine:v1beta/EndpointsApiService/disableTraceSampling": disable_trace_sampling
|
||||||
"/appengine:v1beta/EndpointsApiService/name": name
|
"/appengine:v1beta/EndpointsApiService/name": name
|
||||||
"/appengine:v1beta/EndpointsApiService/rolloutStrategy": rollout_strategy
|
"/appengine:v1beta/EndpointsApiService/rolloutStrategy": rollout_strategy
|
||||||
"/appengine:v1beta/Entrypoint": entrypoint
|
"/appengine:v1beta/Entrypoint": entrypoint
|
||||||
|
@ -9013,6 +9014,7 @@
|
||||||
"/appengine:v1beta4/DiskUtilization/targetWriteOpsPerSec": target_write_ops_per_sec
|
"/appengine:v1beta4/DiskUtilization/targetWriteOpsPerSec": target_write_ops_per_sec
|
||||||
"/appengine:v1beta4/EndpointsApiService": endpoints_api_service
|
"/appengine:v1beta4/EndpointsApiService": endpoints_api_service
|
||||||
"/appengine:v1beta4/EndpointsApiService/configId": config_id
|
"/appengine:v1beta4/EndpointsApiService/configId": config_id
|
||||||
|
"/appengine:v1beta4/EndpointsApiService/disableTraceSampling": disable_trace_sampling
|
||||||
"/appengine:v1beta4/EndpointsApiService/name": name
|
"/appengine:v1beta4/EndpointsApiService/name": name
|
||||||
"/appengine:v1beta4/EndpointsApiService/rolloutStrategy": rollout_strategy
|
"/appengine:v1beta4/EndpointsApiService/rolloutStrategy": rollout_strategy
|
||||||
"/appengine:v1beta4/ErrorHandler": error_handler
|
"/appengine:v1beta4/ErrorHandler": error_handler
|
||||||
|
@ -9401,6 +9403,7 @@
|
||||||
"/appengine:v1beta5/DiskUtilization/targetWriteOpsPerSec": target_write_ops_per_sec
|
"/appengine:v1beta5/DiskUtilization/targetWriteOpsPerSec": target_write_ops_per_sec
|
||||||
"/appengine:v1beta5/EndpointsApiService": endpoints_api_service
|
"/appengine:v1beta5/EndpointsApiService": endpoints_api_service
|
||||||
"/appengine:v1beta5/EndpointsApiService/configId": config_id
|
"/appengine:v1beta5/EndpointsApiService/configId": config_id
|
||||||
|
"/appengine:v1beta5/EndpointsApiService/disableTraceSampling": disable_trace_sampling
|
||||||
"/appengine:v1beta5/EndpointsApiService/name": name
|
"/appengine:v1beta5/EndpointsApiService/name": name
|
||||||
"/appengine:v1beta5/EndpointsApiService/rolloutStrategy": rollout_strategy
|
"/appengine:v1beta5/EndpointsApiService/rolloutStrategy": rollout_strategy
|
||||||
"/appengine:v1beta5/ErrorHandler": error_handler
|
"/appengine:v1beta5/ErrorHandler": error_handler
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||||
module AppengineV1beta
|
module AppengineV1beta
|
||||||
VERSION = 'V1beta'
|
VERSION = 'V1beta'
|
||||||
REVISION = '20180623'
|
REVISION = '20180707'
|
||||||
|
|
||||||
# View and manage your applications deployed on Google App Engine
|
# View and manage your applications deployed on Google App Engine
|
||||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||||
|
|
|
@ -909,6 +909,12 @@ module Google
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :config_id
|
attr_accessor :config_id
|
||||||
|
|
||||||
|
# Enable or disable trace sampling. By default, this is set to false for enabled.
|
||||||
|
# Corresponds to the JSON property `disableTraceSampling`
|
||||||
|
# @return [Boolean]
|
||||||
|
attr_accessor :disable_trace_sampling
|
||||||
|
alias_method :disable_trace_sampling?, :disable_trace_sampling
|
||||||
|
|
||||||
# Endpoints service name which is the name of the "service" resource in the
|
# Endpoints service name which is the name of the "service" resource in the
|
||||||
# Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
|
# Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
|
||||||
# Corresponds to the JSON property `name`
|
# Corresponds to the JSON property `name`
|
||||||
|
@ -928,6 +934,7 @@ module Google
|
||||||
# Update properties of this object
|
# Update properties of this object
|
||||||
def update!(**args)
|
def update!(**args)
|
||||||
@config_id = args[:config_id] if args.key?(:config_id)
|
@config_id = args[:config_id] if args.key?(:config_id)
|
||||||
|
@disable_trace_sampling = args[:disable_trace_sampling] if args.key?(:disable_trace_sampling)
|
||||||
@name = args[:name] if args.key?(:name)
|
@name = args[:name] if args.key?(:name)
|
||||||
@rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
|
@rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
|
||||||
end
|
end
|
||||||
|
|
|
@ -700,6 +700,7 @@ module Google
|
||||||
# @private
|
# @private
|
||||||
class Representation < Google::Apis::Core::JsonRepresentation
|
class Representation < Google::Apis::Core::JsonRepresentation
|
||||||
property :config_id, as: 'configId'
|
property :config_id, as: 'configId'
|
||||||
|
property :disable_trace_sampling, as: 'disableTraceSampling'
|
||||||
property :name, as: 'name'
|
property :name, as: 'name'
|
||||||
property :rollout_strategy, as: 'rolloutStrategy'
|
property :rollout_strategy, as: 'rolloutStrategy'
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||||
module AppengineV1beta4
|
module AppengineV1beta4
|
||||||
VERSION = 'V1beta4'
|
VERSION = 'V1beta4'
|
||||||
REVISION = '20180607'
|
REVISION = '20180707'
|
||||||
|
|
||||||
# View and manage your applications deployed on Google App Engine
|
# View and manage your applications deployed on Google App Engine
|
||||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||||
|
|
|
@ -518,6 +518,12 @@ module Google
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :config_id
|
attr_accessor :config_id
|
||||||
|
|
||||||
|
# Enable or disable trace sampling. By default, this is set to false for enabled.
|
||||||
|
# Corresponds to the JSON property `disableTraceSampling`
|
||||||
|
# @return [Boolean]
|
||||||
|
attr_accessor :disable_trace_sampling
|
||||||
|
alias_method :disable_trace_sampling?, :disable_trace_sampling
|
||||||
|
|
||||||
# Endpoints service name which is the name of the "service" resource in the
|
# Endpoints service name which is the name of the "service" resource in the
|
||||||
# Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
|
# Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
|
||||||
# Corresponds to the JSON property `name`
|
# Corresponds to the JSON property `name`
|
||||||
|
@ -537,6 +543,7 @@ module Google
|
||||||
# Update properties of this object
|
# Update properties of this object
|
||||||
def update!(**args)
|
def update!(**args)
|
||||||
@config_id = args[:config_id] if args.key?(:config_id)
|
@config_id = args[:config_id] if args.key?(:config_id)
|
||||||
|
@disable_trace_sampling = args[:disable_trace_sampling] if args.key?(:disable_trace_sampling)
|
||||||
@name = args[:name] if args.key?(:name)
|
@name = args[:name] if args.key?(:name)
|
||||||
@rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
|
@rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
|
||||||
end
|
end
|
||||||
|
|
|
@ -451,6 +451,7 @@ module Google
|
||||||
# @private
|
# @private
|
||||||
class Representation < Google::Apis::Core::JsonRepresentation
|
class Representation < Google::Apis::Core::JsonRepresentation
|
||||||
property :config_id, as: 'configId'
|
property :config_id, as: 'configId'
|
||||||
|
property :disable_trace_sampling, as: 'disableTraceSampling'
|
||||||
property :name, as: 'name'
|
property :name, as: 'name'
|
||||||
property :rollout_strategy, as: 'rolloutStrategy'
|
property :rollout_strategy, as: 'rolloutStrategy'
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||||
module AppengineV1beta5
|
module AppengineV1beta5
|
||||||
VERSION = 'V1beta5'
|
VERSION = 'V1beta5'
|
||||||
REVISION = '20180607'
|
REVISION = '20180707'
|
||||||
|
|
||||||
# View and manage your applications deployed on Google App Engine
|
# View and manage your applications deployed on Google App Engine
|
||||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||||
|
|
|
@ -518,6 +518,12 @@ module Google
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :config_id
|
attr_accessor :config_id
|
||||||
|
|
||||||
|
# Enable or disable trace sampling. By default, this is set to false for enabled.
|
||||||
|
# Corresponds to the JSON property `disableTraceSampling`
|
||||||
|
# @return [Boolean]
|
||||||
|
attr_accessor :disable_trace_sampling
|
||||||
|
alias_method :disable_trace_sampling?, :disable_trace_sampling
|
||||||
|
|
||||||
# Endpoints service name which is the name of the "service" resource in the
|
# Endpoints service name which is the name of the "service" resource in the
|
||||||
# Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
|
# Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
|
||||||
# Corresponds to the JSON property `name`
|
# Corresponds to the JSON property `name`
|
||||||
|
@ -537,6 +543,7 @@ module Google
|
||||||
# Update properties of this object
|
# Update properties of this object
|
||||||
def update!(**args)
|
def update!(**args)
|
||||||
@config_id = args[:config_id] if args.key?(:config_id)
|
@config_id = args[:config_id] if args.key?(:config_id)
|
||||||
|
@disable_trace_sampling = args[:disable_trace_sampling] if args.key?(:disable_trace_sampling)
|
||||||
@name = args[:name] if args.key?(:name)
|
@name = args[:name] if args.key?(:name)
|
||||||
@rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
|
@rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
|
||||||
end
|
end
|
||||||
|
|
|
@ -445,6 +445,7 @@ module Google
|
||||||
# @private
|
# @private
|
||||||
class Representation < Google::Apis::Core::JsonRepresentation
|
class Representation < Google::Apis::Core::JsonRepresentation
|
||||||
property :config_id, as: 'configId'
|
property :config_id, as: 'configId'
|
||||||
|
property :disable_trace_sampling, as: 'disableTraceSampling'
|
||||||
property :name, as: 'name'
|
property :name, as: 'name'
|
||||||
property :rollout_strategy, as: 'rolloutStrategy'
|
property :rollout_strategy, as: 'rolloutStrategy'
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/resource-manager
|
# @see https://cloud.google.com/resource-manager
|
||||||
module CloudresourcemanagerV1
|
module CloudresourcemanagerV1
|
||||||
VERSION = 'V1'
|
VERSION = 'V1'
|
||||||
REVISION = '20180606'
|
REVISION = '20180709'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -184,7 +184,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/resource-manager
|
# @see https://cloud.google.com/resource-manager
|
||||||
module CloudresourcemanagerV1beta1
|
module CloudresourcemanagerV1beta1
|
||||||
VERSION = 'V1beta1'
|
VERSION = 'V1beta1'
|
||||||
REVISION = '20180606'
|
REVISION = '20180709'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -184,7 +184,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/resource-manager
|
# @see https://cloud.google.com/resource-manager
|
||||||
module CloudresourcemanagerV2
|
module CloudresourcemanagerV2
|
||||||
VERSION = 'V2'
|
VERSION = 'V2'
|
||||||
REVISION = '20180618'
|
REVISION = '20180709'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -162,7 +162,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/resource-manager
|
# @see https://cloud.google.com/resource-manager
|
||||||
module CloudresourcemanagerV2beta1
|
module CloudresourcemanagerV2beta1
|
||||||
VERSION = 'V2beta1'
|
VERSION = 'V2beta1'
|
||||||
REVISION = '20180618'
|
REVISION = '20180709'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -162,7 +162,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
||||||
# @see https://cloud.google.com/dialogflow-enterprise/
|
# @see https://cloud.google.com/dialogflow-enterprise/
|
||||||
module DialogflowV2beta1
|
module DialogflowV2beta1
|
||||||
VERSION = 'V2beta1'
|
VERSION = 'V2beta1'
|
||||||
REVISION = '20180702'
|
REVISION = '20180710'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -1181,6 +1181,17 @@ module Google
|
||||||
|
|
||||||
# Optional. This field is set to the value of `QueryParameters.payload` field
|
# Optional. This field is set to the value of `QueryParameters.payload` field
|
||||||
# passed in the request.
|
# passed in the request.
|
||||||
|
# This field is used for the telephony gateway. It should have a
|
||||||
|
# structure similar to this JSON message:
|
||||||
|
# <pre>`
|
||||||
|
# "telephony": `
|
||||||
|
# "caller_id": "+18558363987"
|
||||||
|
# `</pre>
|
||||||
|
# Note: The caller ID field (`caller_id`) will be in
|
||||||
|
# [E.164 format](https://en.wikipedia.org/wiki/E.164) and is not supported
|
||||||
|
# for standard tier agents. When the telephony gateway is used with a
|
||||||
|
# standard tier agent the `caller_id` field above will have a value of
|
||||||
|
# `REDACTED_IN_STANDARD_TIER_AGENT`.
|
||||||
# Corresponds to the JSON property `payload`
|
# Corresponds to the JSON property `payload`
|
||||||
# @return [Hash<String,Object>]
|
# @return [Hash<String,Object>]
|
||||||
attr_accessor :payload
|
attr_accessor :payload
|
||||||
|
@ -3340,6 +3351,17 @@ module Google
|
||||||
|
|
||||||
# Optional. This field is set to the value of `QueryParameters.payload` field
|
# Optional. This field is set to the value of `QueryParameters.payload` field
|
||||||
# passed in the request.
|
# passed in the request.
|
||||||
|
# This field is used for the telephony gateway. It should have a
|
||||||
|
# structure similar to this JSON message:
|
||||||
|
# <pre>`
|
||||||
|
# "telephony": `
|
||||||
|
# "caller_id": "+18558363987"
|
||||||
|
# `</pre>
|
||||||
|
# Note: The caller ID field (`caller_id`) will be in
|
||||||
|
# [E.164 format](https://en.wikipedia.org/wiki/E.164) and is not supported
|
||||||
|
# for standard tier agents. When the telephony gateway is used with a
|
||||||
|
# standard tier agent the `caller_id` field above will have a value of
|
||||||
|
# `REDACTED_IN_STANDARD_TIER_AGENT`.
|
||||||
# Corresponds to the JSON property `payload`
|
# Corresponds to the JSON property `payload`
|
||||||
# @return [Hash<String,Object>]
|
# @return [Hash<String,Object>]
|
||||||
attr_accessor :payload
|
attr_accessor :payload
|
||||||
|
|
|
@ -27,7 +27,7 @@ module Google
|
||||||
# @see https://cloud.google.com/iam/
|
# @see https://cloud.google.com/iam/
|
||||||
module IamV1
|
module IamV1
|
||||||
VERSION = 'V1'
|
VERSION = 'V1'
|
||||||
REVISION = '20180607'
|
REVISION = '20180705'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -203,7 +203,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
||||||
# @see https://cloud.google.com/pubsub/docs
|
# @see https://cloud.google.com/pubsub/docs
|
||||||
module PubsubV1
|
module PubsubV1
|
||||||
VERSION = 'V1'
|
VERSION = 'V1'
|
||||||
REVISION = '20180626'
|
REVISION = '20180702'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -66,7 +66,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
@ -90,7 +89,7 @@ module Google
|
||||||
class CreateSnapshotRequest
|
class CreateSnapshotRequest
|
||||||
include Google::Apis::Core::Hashable
|
include Google::Apis::Core::Hashable
|
||||||
|
|
||||||
# User labels.
|
# See <a href="/pubsub/docs/labels"> Creating and managing labels</a>.
|
||||||
# Corresponds to the JSON property `labels`
|
# Corresponds to the JSON property `labels`
|
||||||
# @return [Hash<String,String>]
|
# @return [Hash<String,String>]
|
||||||
attr_accessor :labels
|
attr_accessor :labels
|
||||||
|
@ -738,7 +737,7 @@ module Google
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :expire_time
|
attr_accessor :expire_time
|
||||||
|
|
||||||
# User labels.
|
# See <a href="/pubsub/docs/labels"> Creating and managing labels</a>.
|
||||||
# Corresponds to the JSON property `labels`
|
# Corresponds to the JSON property `labels`
|
||||||
# @return [Hash<String,String>]
|
# @return [Hash<String,String>]
|
||||||
attr_accessor :labels
|
attr_accessor :labels
|
||||||
|
@ -791,7 +790,7 @@ module Google
|
||||||
# @return [Fixnum]
|
# @return [Fixnum]
|
||||||
attr_accessor :ack_deadline_seconds
|
attr_accessor :ack_deadline_seconds
|
||||||
|
|
||||||
# User labels.
|
# See <a href="/pubsub/docs/labels"> Creating and managing labels</a>.
|
||||||
# Corresponds to the JSON property `labels`
|
# Corresponds to the JSON property `labels`
|
||||||
# @return [Hash<String,String>]
|
# @return [Hash<String,String>]
|
||||||
attr_accessor :labels
|
attr_accessor :labels
|
||||||
|
@ -906,7 +905,7 @@ module Google
|
||||||
class Topic
|
class Topic
|
||||||
include Google::Apis::Core::Hashable
|
include Google::Apis::Core::Hashable
|
||||||
|
|
||||||
# User labels.
|
# See <a href="/pubsub/docs/labels"> Creating and managing labels</a>.
|
||||||
# Corresponds to the JSON property `labels`
|
# Corresponds to the JSON property `labels`
|
||||||
# @return [Hash<String,String>]
|
# @return [Hash<String,String>]
|
||||||
attr_accessor :labels
|
attr_accessor :labels
|
||||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
||||||
# @see https://cloud.google.com/pubsub/docs
|
# @see https://cloud.google.com/pubsub/docs
|
||||||
module PubsubV1beta2
|
module PubsubV1beta2
|
||||||
VERSION = 'V1beta2'
|
VERSION = 'V1beta2'
|
||||||
REVISION = '20180604'
|
REVISION = '20180702'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -66,7 +66,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
|
|
@ -28,7 +28,7 @@ module Google
|
||||||
# @see https://cloud.google.com/deployment-manager/runtime-configurator/
|
# @see https://cloud.google.com/deployment-manager/runtime-configurator/
|
||||||
module RuntimeconfigV1beta1
|
module RuntimeconfigV1beta1
|
||||||
VERSION = 'V1beta1'
|
VERSION = 'V1beta1'
|
||||||
REVISION = '20180604'
|
REVISION = '20180710'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|
|
@ -46,7 +46,6 @@ module Google
|
||||||
|
|
||||||
# Role that is assigned to `members`.
|
# Role that is assigned to `members`.
|
||||||
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
||||||
# Required
|
|
||||||
# Corresponds to the JSON property `role`
|
# Corresponds to the JSON property `role`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :role
|
attr_accessor :role
|
||||||
|
|
Loading…
Reference in New Issue