Autogenerated update (2018-02-14)
Update: - appengine_v1 - appengine_v1alpha - appengine_v1beta - appengine_v1beta4 - appengine_v1beta5 - dialogflow_v2beta1 - runtimeconfig_v1beta1 - spanner_v1
This commit is contained in:
parent
7d31a91417
commit
359072ad73
|
@ -7986,6 +7986,7 @@
|
|||
"/appengine:v1beta/Network/forwardedPorts/forwarded_port": forwarded_port
|
||||
"/appengine:v1beta/Network/instanceTag": instance_tag
|
||||
"/appengine:v1beta/Network/name": name
|
||||
"/appengine:v1beta/Network/sessionAffinity": session_affinity
|
||||
"/appengine:v1beta/Network/subnetworkName": subnetwork_name
|
||||
"/appengine:v1beta/NetworkUtilization": network_utilization
|
||||
"/appengine:v1beta/NetworkUtilization/targetReceivedBytesPerSecond": target_received_bytes_per_second
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||
module AppengineV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180129'
|
||||
REVISION = '20180209'
|
||||
|
||||
# View and manage your applications deployed on Google App Engine
|
||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||
|
|
|
@ -151,10 +151,10 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :id
|
||||
|
||||
# Location from which this application will be run. Application instances will
|
||||
# run out of data centers in the chosen location, which is also where all of the
|
||||
# application's end user content is stored.Defaults to us-central.Options are:us-
|
||||
# central - Central USeurope-west - Western Europeus-east1 - Eastern US
|
||||
# Location from which this application runs. Application instances run out of
|
||||
# the data centers in the specified location, which is also where all of the
|
||||
# application's end user content is stored.Defaults to us-central1.View the list
|
||||
# of supported locations (https://cloud.google.com/appengine/docs/locations).
|
||||
# Corresponds to the JSON property `locationId`
|
||||
# @return [String]
|
||||
attr_accessor :location_id
|
||||
|
@ -339,7 +339,8 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :max_pending_latency
|
||||
|
||||
# Maximum number of instances that should be started to handle requests.
|
||||
# Maximum number of instances that should be started to handle requests for this
|
||||
# version.
|
||||
# Corresponds to the JSON property `maxTotalInstances`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :max_total_instances
|
||||
|
@ -356,7 +357,7 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :min_pending_latency
|
||||
|
||||
# Minimum number of instances that should be maintained for this version.
|
||||
# Minimum number of running instances that should be maintained for this version.
|
||||
# Corresponds to the JSON property `minTotalInstances`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :min_total_instances
|
||||
|
@ -1485,13 +1486,13 @@ module Google
|
|||
class LocationMetadata
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# App Engine Flexible Environment is available in the given location.@OutputOnly
|
||||
# App Engine flexible environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `flexibleEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :flexible_environment_available
|
||||
alias_method :flexible_environment_available?, :flexible_environment_available
|
||||
|
||||
# App Engine Standard Environment is available in the given location.@OutputOnly
|
||||
# App Engine standard environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `standardEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :standard_environment_available
|
||||
|
@ -1540,8 +1541,8 @@ module Google
|
|||
# @return [Array<String>]
|
||||
attr_accessor :forwarded_ports
|
||||
|
||||
# Tag to apply to the VM instance during creation. for Only applicable in the
|
||||
# App Engine flexible environment.
|
||||
# Tag to apply to the instance during creation. Only applicable in the App
|
||||
# Engine flexible environment.
|
||||
# Corresponds to the JSON property `instanceTag`
|
||||
# @return [String]
|
||||
attr_accessor :instance_tag
|
||||
|
@ -1556,13 +1557,13 @@ module Google
|
|||
# Specify the short name, not the resource path.If a subnetwork name is
|
||||
# specified, a network name will also be required unless it is for the default
|
||||
# network.
|
||||
# If the network the VM instance is being created in is a Legacy network, then
|
||||
# If the network that the instance is being created in is a Legacy network, then
|
||||
# the IP address is allocated from the IPv4Range.
|
||||
# If the network the VM instance is being created in is an auto Subnet Mode
|
||||
# If the network that the instance is being created in is an auto Subnet Mode
|
||||
# Network, then only network name should be specified (not the subnetwork_name)
|
||||
# and the IP address is created from the IPCidrRange of the subnetwork that
|
||||
# exists in that zone for that network.
|
||||
# If the network the VM instance is being created in is a custom Subnet Mode
|
||||
# If the network that the instance is being created in is a custom Subnet Mode
|
||||
# Network, then the subnetwork_name must be specified and the IP address is
|
||||
# created from the IPCidrRange of the subnetwork.If specified, the subnetwork
|
||||
# must exist in the same region as the App Engine flexible environment
|
||||
|
@ -2247,13 +2248,13 @@ module Google
|
|||
class StandardSchedulerSettings
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# Maximum number of instances for an app version. Set to zero to disable
|
||||
# Maximum number of instances to run for this version. Set to zero to disable
|
||||
# max_instances configuration.
|
||||
# Corresponds to the JSON property `maxInstances`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :max_instances
|
||||
|
||||
# Minimum number of instances for an app version. Set to zero to disable
|
||||
# Minimum number of instances to run for this version. Set to zero to disable
|
||||
# min_instances configuration.
|
||||
# Corresponds to the JSON property `minInstances`
|
||||
# @return [Fixnum]
|
||||
|
@ -2766,7 +2767,8 @@ module Google
|
|||
attr_accessor :vm
|
||||
alias_method :vm?, :vm
|
||||
|
||||
# The choice of gce zones to use for this App Engine Flexible version.
|
||||
# The Google Compute Engine zones that are supported by this version in the App
|
||||
# Engine flexible environment.
|
||||
# Corresponds to the JSON property `zones`
|
||||
# @return [Array<String>]
|
||||
attr_accessor :zones
|
||||
|
|
|
@ -54,7 +54,7 @@ module Google
|
|||
# location - The region (https://cloud.google.com/appengine/docs/locations)
|
||||
# where you want the App Engine application located.For more information about
|
||||
# App Engine applications, see Managing Projects, Applications, and Billing (
|
||||
# https://cloud.google.com/appengine/docs/python/console/).
|
||||
# https://cloud.google.com/appengine/docs/standard/python/console/).
|
||||
# @param [Google::Apis::AppengineV1::Application] application_object
|
||||
# @param [String] fields
|
||||
# Selector specifying which fields to include in a partial response.
|
||||
|
@ -1310,19 +1310,19 @@ module Google
|
|||
# automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/
|
||||
# admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
|
||||
# automatic_scaling): For Version resources that use automatic scaling and run
|
||||
# in the App Engine Flexible environment.
|
||||
# in the App Engine flexible environment.
|
||||
# automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/
|
||||
# admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
|
||||
# automatic_scaling): For Version resources that use automatic scaling and run
|
||||
# in the App Engine Flexible environment.
|
||||
# in the App Engine flexible environment.
|
||||
# automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/
|
||||
# docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
|
||||
# automatic_scaling): For Version resources that use automatic scaling and run
|
||||
# in the App Engine Flexible environment.
|
||||
# in the App Engine flexible environment.
|
||||
# automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/
|
||||
# appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.
|
||||
# FIELDS.automatic_scaling): For Version resources that use automatic scaling
|
||||
# and run in the App Engine Flexible environment.
|
||||
# and run in the App Engine flexible environment.
|
||||
# @param [String] apps_id
|
||||
# Part of `name`. Name of the resource to update. Example: apps/myapp/services/
|
||||
# default/versions/1.
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||
module AppengineV1alpha
|
||||
VERSION = 'V1alpha'
|
||||
REVISION = '20171220'
|
||||
REVISION = '20180209'
|
||||
|
||||
# View and manage your applications deployed on Google App Engine
|
||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||
|
|
|
@ -435,13 +435,13 @@ module Google
|
|||
class LocationMetadata
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# App Engine Flexible Environment is available in the given location.@OutputOnly
|
||||
# App Engine flexible environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `flexibleEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :flexible_environment_available
|
||||
alias_method :flexible_environment_available?, :flexible_environment_available
|
||||
|
||||
# App Engine Standard Environment is available in the given location.@OutputOnly
|
||||
# App Engine standard environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `standardEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :standard_environment_available
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||
module AppengineV1beta
|
||||
VERSION = 'V1beta'
|
||||
REVISION = '20180129'
|
||||
REVISION = '20180209'
|
||||
|
||||
# View and manage your applications deployed on Google App Engine
|
||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||
|
|
|
@ -151,10 +151,10 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :id
|
||||
|
||||
# Location from which this application will be run. Application instances will
|
||||
# run out of data centers in the chosen location, which is also where all of the
|
||||
# application's end user content is stored.Defaults to us-central.Options are:us-
|
||||
# central - Central USeurope-west - Western Europeus-east1 - Eastern US
|
||||
# Location from which this application runs. Application instances run out of
|
||||
# the data centers in the specified location, which is also where all of the
|
||||
# application's end user content is stored.Defaults to us-central1.View the list
|
||||
# of supported locations (https://cloud.google.com/appengine/docs/locations).
|
||||
# Corresponds to the JSON property `locationId`
|
||||
# @return [String]
|
||||
attr_accessor :location_id
|
||||
|
@ -350,7 +350,8 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :max_pending_latency
|
||||
|
||||
# Maximum number of instances that should be started to handle requests.
|
||||
# Maximum number of instances that should be started to handle requests for this
|
||||
# version.
|
||||
# Corresponds to the JSON property `maxTotalInstances`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :max_total_instances
|
||||
|
@ -367,7 +368,7 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :min_pending_latency
|
||||
|
||||
# Minimum number of instances that should be maintained for this version.
|
||||
# Minimum number of running instances that should be maintained for this version.
|
||||
# Corresponds to the JSON property `minTotalInstances`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :min_total_instances
|
||||
|
@ -1619,13 +1620,13 @@ module Google
|
|||
class LocationMetadata
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# App Engine Flexible Environment is available in the given location.@OutputOnly
|
||||
# App Engine flexible environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `flexibleEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :flexible_environment_available
|
||||
alias_method :flexible_environment_available?, :flexible_environment_available
|
||||
|
||||
# App Engine Standard Environment is available in the given location.@OutputOnly
|
||||
# App Engine standard environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `standardEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :standard_environment_available
|
||||
|
@ -1702,8 +1703,8 @@ module Google
|
|||
# @return [Array<String>]
|
||||
attr_accessor :forwarded_ports
|
||||
|
||||
# Tag to apply to the VM instance during creation. for Only applicable in the
|
||||
# App Engine flexible environment.
|
||||
# Tag to apply to the instance during creation. Only applicable in the App
|
||||
# Engine flexible environment.
|
||||
# Corresponds to the JSON property `instanceTag`
|
||||
# @return [String]
|
||||
attr_accessor :instance_tag
|
||||
|
@ -1714,17 +1715,23 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :name
|
||||
|
||||
# Enable session affinity.
|
||||
# Corresponds to the JSON property `sessionAffinity`
|
||||
# @return [Boolean]
|
||||
attr_accessor :session_affinity
|
||||
alias_method :session_affinity?, :session_affinity
|
||||
|
||||
# Google Cloud Platform sub-network where the virtual machines are created.
|
||||
# Specify the short name, not the resource path.If a subnetwork name is
|
||||
# specified, a network name will also be required unless it is for the default
|
||||
# network.
|
||||
# If the network the VM instance is being created in is a Legacy network, then
|
||||
# If the network that the instance is being created in is a Legacy network, then
|
||||
# the IP address is allocated from the IPv4Range.
|
||||
# If the network the VM instance is being created in is an auto Subnet Mode
|
||||
# If the network that the instance is being created in is an auto Subnet Mode
|
||||
# Network, then only network name should be specified (not the subnetwork_name)
|
||||
# and the IP address is created from the IPCidrRange of the subnetwork that
|
||||
# exists in that zone for that network.
|
||||
# If the network the VM instance is being created in is a custom Subnet Mode
|
||||
# If the network that the instance is being created in is a custom Subnet Mode
|
||||
# Network, then the subnetwork_name must be specified and the IP address is
|
||||
# created from the IPCidrRange of the subnetwork.If specified, the subnetwork
|
||||
# must exist in the same region as the App Engine flexible environment
|
||||
|
@ -1742,6 +1749,7 @@ module Google
|
|||
@forwarded_ports = args[:forwarded_ports] if args.key?(:forwarded_ports)
|
||||
@instance_tag = args[:instance_tag] if args.key?(:instance_tag)
|
||||
@name = args[:name] if args.key?(:name)
|
||||
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
||||
@subnetwork_name = args[:subnetwork_name] if args.key?(:subnetwork_name)
|
||||
end
|
||||
end
|
||||
|
@ -2433,13 +2441,13 @@ module Google
|
|||
class StandardSchedulerSettings
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# Maximum number of instances for an app version. Set to zero to disable
|
||||
# Maximum number of instances to run for this version. Set to zero to disable
|
||||
# max_instances configuration.
|
||||
# Corresponds to the JSON property `maxInstances`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :max_instances
|
||||
|
||||
# Minimum number of instances for an app version. Set to zero to disable
|
||||
# Minimum number of instances to run for this version. Set to zero to disable
|
||||
# min_instances configuration.
|
||||
# Corresponds to the JSON property `minInstances`
|
||||
# @return [Fixnum]
|
||||
|
@ -2952,7 +2960,8 @@ module Google
|
|||
attr_accessor :vm
|
||||
alias_method :vm?, :vm
|
||||
|
||||
# The choice of gce zones to use for this App Engine Flexible version.
|
||||
# The Google Compute Engine zones that are supported by this version in the App
|
||||
# Engine flexible environment.
|
||||
# Corresponds to the JSON property `zones`
|
||||
# @return [Array<String>]
|
||||
attr_accessor :zones
|
||||
|
|
|
@ -901,6 +901,7 @@ module Google
|
|||
collection :forwarded_ports, as: 'forwardedPorts'
|
||||
property :instance_tag, as: 'instanceTag'
|
||||
property :name, as: 'name'
|
||||
property :session_affinity, as: 'sessionAffinity'
|
||||
property :subnetwork_name, as: 'subnetworkName'
|
||||
end
|
||||
end
|
||||
|
|
|
@ -54,7 +54,7 @@ module Google
|
|||
# location - The region (https://cloud.google.com/appengine/docs/locations)
|
||||
# where you want the App Engine application located.For more information about
|
||||
# App Engine applications, see Managing Projects, Applications, and Billing (
|
||||
# https://cloud.google.com/appengine/docs/python/console/).
|
||||
# https://cloud.google.com/appengine/docs/standard/python/console/).
|
||||
# @param [Google::Apis::AppengineV1beta::Application] application_object
|
||||
# @param [String] fields
|
||||
# Selector specifying which fields to include in a partial response.
|
||||
|
@ -1310,19 +1310,19 @@ module Google
|
|||
# automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/
|
||||
# admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.
|
||||
# automatic_scaling): For Version resources that use automatic scaling and run
|
||||
# in the App Engine Flexible environment.
|
||||
# in the App Engine flexible environment.
|
||||
# automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/
|
||||
# admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.
|
||||
# automatic_scaling): For Version resources that use automatic scaling and run
|
||||
# in the App Engine Flexible environment.
|
||||
# in the App Engine flexible environment.
|
||||
# automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/
|
||||
# docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.
|
||||
# automatic_scaling): For Version resources that use automatic scaling and run
|
||||
# in the App Engine Flexible environment.
|
||||
# in the App Engine flexible environment.
|
||||
# automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/
|
||||
# appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.
|
||||
# FIELDS.automatic_scaling): For Version resources that use automatic scaling
|
||||
# and run in the App Engine Flexible environment.
|
||||
# and run in the App Engine flexible environment.
|
||||
# @param [String] apps_id
|
||||
# Part of `name`. Name of the resource to update. Example: apps/myapp/services/
|
||||
# default/versions/1.
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||
module AppengineV1beta4
|
||||
VERSION = 'V1beta4'
|
||||
REVISION = '20171220'
|
||||
REVISION = '20180209'
|
||||
|
||||
# View and manage your applications deployed on Google App Engine
|
||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||
|
|
|
@ -993,13 +993,13 @@ module Google
|
|||
class LocationMetadata
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# App Engine Flexible Environment is available in the given location.@OutputOnly
|
||||
# App Engine flexible environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `flexibleEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :flexible_environment_available
|
||||
alias_method :flexible_environment_available?, :flexible_environment_available
|
||||
|
||||
# App Engine Standard Environment is available in the given location.@OutputOnly
|
||||
# App Engine standard environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `standardEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :standard_environment_available
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/appengine/docs/admin-api/
|
||||
module AppengineV1beta5
|
||||
VERSION = 'V1beta5'
|
||||
REVISION = '20171220'
|
||||
REVISION = '20180209'
|
||||
|
||||
# View and manage your applications deployed on Google App Engine
|
||||
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
||||
|
|
|
@ -993,13 +993,13 @@ module Google
|
|||
class LocationMetadata
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# App Engine Flexible Environment is available in the given location.@OutputOnly
|
||||
# App Engine flexible environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `flexibleEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :flexible_environment_available
|
||||
alias_method :flexible_environment_available?, :flexible_environment_available
|
||||
|
||||
# App Engine Standard Environment is available in the given location.@OutputOnly
|
||||
# App Engine standard environment is available in the given location.@OutputOnly
|
||||
# Corresponds to the JSON property `standardEnvironmentAvailable`
|
||||
# @return [Boolean]
|
||||
attr_accessor :standard_environment_available
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/dialogflow-enterprise/
|
||||
module DialogflowV2beta1
|
||||
VERSION = 'V2beta1'
|
||||
REVISION = '20180206'
|
||||
REVISION = '20180212'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -1658,8 +1658,6 @@ module Google
|
|||
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeBatch]
|
||||
attr_accessor :entity_type_batch_inline
|
||||
|
||||
# Warning: Importing entity types from a URI is not implemented yet.
|
||||
# This feature is coming soon.
|
||||
# The URI to a Google Cloud Storage file containing entity types to update
|
||||
# or create. The file format can either be a serialized proto (of
|
||||
# EntityBatch type) or a JSON object. Note: The URI must start with
|
||||
|
@ -1723,8 +1721,6 @@ module Google
|
|||
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentBatch]
|
||||
attr_accessor :intent_batch_inline
|
||||
|
||||
# Warning: Importing intents from a URI is not implemented yet.
|
||||
# This feature is coming soon.
|
||||
# The URI to a Google Cloud Storage file containing intents to update or
|
||||
# create. The file format can either be a serialized proto (of IntentBatch
|
||||
# type) or JSON object. Note: The URI must start with "gs://".
|
||||
|
@ -2071,8 +2067,6 @@ module Google
|
|||
class GoogleCloudDialogflowV2beta1ExportAgentRequest
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# Warning: Exporting agents to a URI is not implemented yet.
|
||||
# This feature is coming soon.
|
||||
# Optional. The Google Cloud Storage URI to export the agent to.
|
||||
# Note: The URI must start with
|
||||
# "gs://". If left unspecified, the serialized agent is returned inline.
|
||||
|
@ -2151,8 +2145,6 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :agent_content
|
||||
|
||||
# Warning: Importing agents from a URI is not implemented yet.
|
||||
# This feature is coming soon.
|
||||
# The URI to a Google Cloud Storage file containing the agent to import.
|
||||
# Note: The URI must start with "gs://".
|
||||
# Corresponds to the JSON property `agentUri`
|
||||
|
@ -3539,8 +3531,6 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :agent_content
|
||||
|
||||
# Warning: Restoring agents from a URI is not implemented yet.
|
||||
# This feature is coming soon.
|
||||
# The URI to a Google Cloud Storage file containing the agent to restore.
|
||||
# Note: The URI must start with "gs://".
|
||||
# Corresponds to the JSON property `agentUri`
|
||||
|
|
|
@ -28,7 +28,7 @@ module Google
|
|||
# @see https://cloud.google.com/deployment-manager/runtime-configurator/
|
||||
module RuntimeconfigV1beta1
|
||||
VERSION = 'V1beta1'
|
||||
REVISION = '20180108'
|
||||
REVISION = '20180212'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -634,7 +634,7 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :text
|
||||
|
||||
# [Output Only] The time of the last variable update.
|
||||
# Output only. The time of the last variable update.
|
||||
# Corresponds to the JSON property `updateTime`
|
||||
# @return [String]
|
||||
attr_accessor :update_time
|
||||
|
@ -676,14 +676,14 @@ module Google
|
|||
class Waiter
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# [Output Only] The instant at which this Waiter resource was created. Adding
|
||||
# Output only. The instant at which this Waiter resource was created. Adding
|
||||
# the value of `timeout` to this instant yields the timeout deadline for the
|
||||
# waiter.
|
||||
# Corresponds to the JSON property `createTime`
|
||||
# @return [String]
|
||||
attr_accessor :create_time
|
||||
|
||||
# [Output Only] If the value is `false`, it means the waiter is still waiting
|
||||
# Output only. If the value is `false`, it means the waiter is still waiting
|
||||
# for one of its conditions to be met.
|
||||
# If true, the waiter has finished. If the waiter finished due to a timeout
|
||||
# or failure, `error` will be set.
|
||||
|
|
|
@ -53,8 +53,8 @@ module Google
|
|||
# Creates a new RuntimeConfig resource. The configuration name must be
|
||||
# unique within project.
|
||||
# @param [String] parent
|
||||
# The [project ID](https://support.google.com/cloud/answer/6158840?hl=en&
|
||||
# ref_topic=6158848)
|
||||
# The [project
|
||||
# ID](https://support.google.com/cloud/answer/6158840?hl=en&ref_topic=6158848)
|
||||
# for this request, in the format `projects/[PROJECT_ID]`.
|
||||
# @param [Google::Apis::RuntimeconfigV1beta1::RuntimeConfig] runtime_config_object
|
||||
# @param [String] request_id
|
||||
|
@ -193,8 +193,8 @@ module Google
|
|||
|
||||
# Lists all the RuntimeConfig resources within project.
|
||||
# @param [String] parent
|
||||
# The [project ID](https://support.google.com/cloud/answer/6158840?hl=en&
|
||||
# ref_topic=6158848)
|
||||
# The [project
|
||||
# ID](https://support.google.com/cloud/answer/6158840?hl=en&ref_topic=6158848)
|
||||
# for this request, in the format `projects/[PROJECT_ID]`.
|
||||
# @param [Fixnum] page_size
|
||||
# Specifies the number of results to return per page. If there are fewer
|
||||
|
@ -414,8 +414,8 @@ module Google
|
|||
# a variable with a name that is a prefix of an existing variable name, or a
|
||||
# name that has an existing variable name as a prefix.
|
||||
# To learn more about creating a variable, read the
|
||||
# [Setting and Getting Data](/deployment-manager/runtime-configurator/set-and-
|
||||
# get-variables)
|
||||
# [Setting and Getting
|
||||
# Data](/deployment-manager/runtime-configurator/set-and-get-variables)
|
||||
# documentation.
|
||||
# @param [String] parent
|
||||
# The path to the RutimeConfig resource that this variable should belong to.
|
||||
|
@ -531,13 +531,14 @@ module Google
|
|||
execute_or_queue_command(command, &block)
|
||||
end
|
||||
|
||||
# Lists variables within given a configuration, matching any provided filters.
|
||||
# This only lists variable names, not the values, unless `return_values` is
|
||||
# true, in which case only variables that user has IAM permission to GetVariable
|
||||
# will be returned.
|
||||
# Lists variables within given a configuration, matching any provided
|
||||
# filters. This only lists variable names, not the values, unless
|
||||
# `return_values` is true, in which case only variables that user has IAM
|
||||
# permission to GetVariable will be returned.
|
||||
# @param [String] parent
|
||||
# The path to the RuntimeConfig resource for which you want to list variables.
|
||||
# The configuration must exist beforehand; the path must be in the format:
|
||||
# The path to the RuntimeConfig resource for which you want to list
|
||||
# variables. The configuration must exist beforehand; the path must be in the
|
||||
# format:
|
||||
# `projects/[PROJECT_ID]/configs/[CONFIG_NAME]`
|
||||
# @param [String] filter
|
||||
# Filters variables by matching the specified filter. For example:
|
||||
|
@ -660,12 +661,12 @@ module Google
|
|||
# When there is a change, this method returns the new value or times out.
|
||||
# If a variable is deleted while being watched, the `variableState` state is
|
||||
# set to `DELETED` and the method returns the last known variable `value`.
|
||||
# If you set the deadline for watching to a larger value than internal timeout
|
||||
# (60 seconds), the current variable value is returned and the `variableState`
|
||||
# will be `VARIABLE_STATE_UNSPECIFIED`.
|
||||
# If you set the deadline for watching to a larger value than internal
|
||||
# timeout (60 seconds), the current variable value is returned and the
|
||||
# `variableState` will be `VARIABLE_STATE_UNSPECIFIED`.
|
||||
# To learn more about creating a watcher, read the
|
||||
# [Watching a Variable for Changes](/deployment-manager/runtime-configurator/
|
||||
# watching-a-variable)
|
||||
# [Watching a Variable for
|
||||
# Changes](/deployment-manager/runtime-configurator/watching-a-variable)
|
||||
# documentation.
|
||||
# @param [String] name
|
||||
# The name of the variable to watch, in the format:
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/spanner/
|
||||
module SpannerV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20171026'
|
||||
REVISION = '20180207'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -1604,7 +1604,7 @@ module Google
|
|||
# ]
|
||||
# `
|
||||
# For a description of IAM and its features, see the
|
||||
# [IAM developer's guide](https://cloud.google.com/iam).
|
||||
# [IAM developer's guide](https://cloud.google.com/iam/docs).
|
||||
class Policy
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
|
@ -1628,7 +1628,7 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :etag
|
||||
|
||||
# Version of the `Policy`. The default version is 0.
|
||||
# Deprecated.
|
||||
# Corresponds to the JSON property `version`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :version
|
||||
|
@ -2028,7 +2028,7 @@ module Google
|
|||
# ]
|
||||
# `
|
||||
# For a description of IAM and its features, see the
|
||||
# [IAM developer's guide](https://cloud.google.com/iam).
|
||||
# [IAM developer's guide](https://cloud.google.com/iam/docs).
|
||||
# Corresponds to the JSON property `policy`
|
||||
# @return [Google::Apis::SpannerV1::Policy]
|
||||
attr_accessor :policy
|
||||
|
|
Loading…
Reference in New Issue