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:
Google APIs 2018-02-14 00:35:41 +00:00
parent 7d31a91417
commit 359072ad73
21 changed files with 93 additions and 89 deletions

View File

@ -7986,6 +7986,7 @@
"/appengine:v1beta/Network/forwardedPorts/forwarded_port": forwarded_port "/appengine:v1beta/Network/forwardedPorts/forwarded_port": forwarded_port
"/appengine:v1beta/Network/instanceTag": instance_tag "/appengine:v1beta/Network/instanceTag": instance_tag
"/appengine:v1beta/Network/name": name "/appengine:v1beta/Network/name": name
"/appengine:v1beta/Network/sessionAffinity": session_affinity
"/appengine:v1beta/Network/subnetworkName": subnetwork_name "/appengine:v1beta/Network/subnetworkName": subnetwork_name
"/appengine:v1beta/NetworkUtilization": network_utilization "/appengine:v1beta/NetworkUtilization": network_utilization
"/appengine:v1beta/NetworkUtilization/targetReceivedBytesPerSecond": target_received_bytes_per_second "/appengine:v1beta/NetworkUtilization/targetReceivedBytesPerSecond": target_received_bytes_per_second

View File

@ -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 AppengineV1 module AppengineV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180129' REVISION = '20180209'
# 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'

View File

@ -151,10 +151,10 @@ module Google
# @return [String] # @return [String]
attr_accessor :id attr_accessor :id
# Location from which this application will be run. Application instances will # Location from which this application runs. Application instances run out of
# run out of data centers in the chosen location, which is also where all of the # the data centers in the specified location, which is also where all of the
# application's end user content is stored.Defaults to us-central.Options are:us- # application's end user content is stored.Defaults to us-central1.View the list
# central - Central USeurope-west - Western Europeus-east1 - Eastern US # of supported locations (https://cloud.google.com/appengine/docs/locations).
# Corresponds to the JSON property `locationId` # Corresponds to the JSON property `locationId`
# @return [String] # @return [String]
attr_accessor :location_id attr_accessor :location_id
@ -339,7 +339,8 @@ module Google
# @return [String] # @return [String]
attr_accessor :max_pending_latency 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` # Corresponds to the JSON property `maxTotalInstances`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :max_total_instances attr_accessor :max_total_instances
@ -356,7 +357,7 @@ module Google
# @return [String] # @return [String]
attr_accessor :min_pending_latency 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` # Corresponds to the JSON property `minTotalInstances`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :min_total_instances attr_accessor :min_total_instances
@ -1485,13 +1486,13 @@ module Google
class LocationMetadata class LocationMetadata
include Google::Apis::Core::Hashable 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` # Corresponds to the JSON property `flexibleEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :flexible_environment_available attr_accessor :flexible_environment_available
alias_method :flexible_environment_available?, :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` # Corresponds to the JSON property `standardEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :standard_environment_available attr_accessor :standard_environment_available
@ -1540,8 +1541,8 @@ module Google
# @return [Array<String>] # @return [Array<String>]
attr_accessor :forwarded_ports attr_accessor :forwarded_ports
# Tag to apply to the VM instance during creation. for Only applicable in the # Tag to apply to the instance during creation. Only applicable in the App
# App Engine flexible environment. # Engine flexible environment.
# Corresponds to the JSON property `instanceTag` # Corresponds to the JSON property `instanceTag`
# @return [String] # @return [String]
attr_accessor :instance_tag attr_accessor :instance_tag
@ -1556,13 +1557,13 @@ module Google
# Specify the short name, not the resource path.If a subnetwork name is # 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 # specified, a network name will also be required unless it is for the default
# network. # 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. # 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) # 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 # and the IP address is created from the IPCidrRange of the subnetwork that
# exists in that zone for that network. # 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 # Network, then the subnetwork_name must be specified and the IP address is
# created from the IPCidrRange of the subnetwork.If specified, the subnetwork # created from the IPCidrRange of the subnetwork.If specified, the subnetwork
# must exist in the same region as the App Engine flexible environment # must exist in the same region as the App Engine flexible environment
@ -2247,13 +2248,13 @@ module Google
class StandardSchedulerSettings class StandardSchedulerSettings
include Google::Apis::Core::Hashable 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. # max_instances configuration.
# Corresponds to the JSON property `maxInstances` # Corresponds to the JSON property `maxInstances`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :max_instances 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. # min_instances configuration.
# Corresponds to the JSON property `minInstances` # Corresponds to the JSON property `minInstances`
# @return [Fixnum] # @return [Fixnum]
@ -2766,7 +2767,8 @@ module Google
attr_accessor :vm attr_accessor :vm
alias_method :vm?, :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` # Corresponds to the JSON property `zones`
# @return [Array<String>] # @return [Array<String>]
attr_accessor :zones attr_accessor :zones

View File

@ -54,7 +54,7 @@ module Google
# location - The region (https://cloud.google.com/appengine/docs/locations) # location - The region (https://cloud.google.com/appengine/docs/locations)
# where you want the App Engine application located.For more information about # where you want the App Engine application located.For more information about
# App Engine applications, see Managing Projects, Applications, and Billing ( # 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 [Google::Apis::AppengineV1::Application] application_object
# @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.
@ -1310,19 +1310,19 @@ module Google
# automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/ # automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/
# admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS. # admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
# automatic_scaling): For Version resources that use automatic scaling and run # 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/ # automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/
# admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS. # admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
# automatic_scaling): For Version resources that use automatic scaling and run # 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/ # automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/
# docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS. # docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
# automatic_scaling): For Version resources that use automatic scaling and run # 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/ # automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/
# appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version. # appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.
# FIELDS.automatic_scaling): For Version resources that use automatic scaling # 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 # @param [String] apps_id
# Part of `name`. Name of the resource to update. Example: apps/myapp/services/ # Part of `name`. Name of the resource to update. Example: apps/myapp/services/
# default/versions/1. # default/versions/1.

View File

@ -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 AppengineV1alpha module AppengineV1alpha
VERSION = 'V1alpha' VERSION = 'V1alpha'
REVISION = '20171220' REVISION = '20180209'
# 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'

View File

@ -435,13 +435,13 @@ module Google
class LocationMetadata class LocationMetadata
include Google::Apis::Core::Hashable 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` # Corresponds to the JSON property `flexibleEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :flexible_environment_available attr_accessor :flexible_environment_available
alias_method :flexible_environment_available?, :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` # Corresponds to the JSON property `standardEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :standard_environment_available attr_accessor :standard_environment_available

View File

@ -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 = '20180129' REVISION = '20180209'
# 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'

View File

@ -151,10 +151,10 @@ module Google
# @return [String] # @return [String]
attr_accessor :id attr_accessor :id
# Location from which this application will be run. Application instances will # Location from which this application runs. Application instances run out of
# run out of data centers in the chosen location, which is also where all of the # the data centers in the specified location, which is also where all of the
# application's end user content is stored.Defaults to us-central.Options are:us- # application's end user content is stored.Defaults to us-central1.View the list
# central - Central USeurope-west - Western Europeus-east1 - Eastern US # of supported locations (https://cloud.google.com/appengine/docs/locations).
# Corresponds to the JSON property `locationId` # Corresponds to the JSON property `locationId`
# @return [String] # @return [String]
attr_accessor :location_id attr_accessor :location_id
@ -350,7 +350,8 @@ module Google
# @return [String] # @return [String]
attr_accessor :max_pending_latency 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` # Corresponds to the JSON property `maxTotalInstances`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :max_total_instances attr_accessor :max_total_instances
@ -367,7 +368,7 @@ module Google
# @return [String] # @return [String]
attr_accessor :min_pending_latency 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` # Corresponds to the JSON property `minTotalInstances`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :min_total_instances attr_accessor :min_total_instances
@ -1619,13 +1620,13 @@ module Google
class LocationMetadata class LocationMetadata
include Google::Apis::Core::Hashable 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` # Corresponds to the JSON property `flexibleEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :flexible_environment_available attr_accessor :flexible_environment_available
alias_method :flexible_environment_available?, :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` # Corresponds to the JSON property `standardEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :standard_environment_available attr_accessor :standard_environment_available
@ -1702,8 +1703,8 @@ module Google
# @return [Array<String>] # @return [Array<String>]
attr_accessor :forwarded_ports attr_accessor :forwarded_ports
# Tag to apply to the VM instance during creation. for Only applicable in the # Tag to apply to the instance during creation. Only applicable in the App
# App Engine flexible environment. # Engine flexible environment.
# Corresponds to the JSON property `instanceTag` # Corresponds to the JSON property `instanceTag`
# @return [String] # @return [String]
attr_accessor :instance_tag attr_accessor :instance_tag
@ -1714,17 +1715,23 @@ module Google
# @return [String] # @return [String]
attr_accessor :name 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. # Google Cloud Platform sub-network where the virtual machines are created.
# Specify the short name, not the resource path.If a subnetwork name is # 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 # specified, a network name will also be required unless it is for the default
# network. # 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. # 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) # 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 # and the IP address is created from the IPCidrRange of the subnetwork that
# exists in that zone for that network. # 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 # Network, then the subnetwork_name must be specified and the IP address is
# created from the IPCidrRange of the subnetwork.If specified, the subnetwork # created from the IPCidrRange of the subnetwork.If specified, the subnetwork
# must exist in the same region as the App Engine flexible environment # 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) @forwarded_ports = args[:forwarded_ports] if args.key?(:forwarded_ports)
@instance_tag = args[:instance_tag] if args.key?(:instance_tag) @instance_tag = args[:instance_tag] if args.key?(:instance_tag)
@name = args[:name] if args.key?(:name) @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) @subnetwork_name = args[:subnetwork_name] if args.key?(:subnetwork_name)
end end
end end
@ -2433,13 +2441,13 @@ module Google
class StandardSchedulerSettings class StandardSchedulerSettings
include Google::Apis::Core::Hashable 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. # max_instances configuration.
# Corresponds to the JSON property `maxInstances` # Corresponds to the JSON property `maxInstances`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :max_instances 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. # min_instances configuration.
# Corresponds to the JSON property `minInstances` # Corresponds to the JSON property `minInstances`
# @return [Fixnum] # @return [Fixnum]
@ -2952,7 +2960,8 @@ module Google
attr_accessor :vm attr_accessor :vm
alias_method :vm?, :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` # Corresponds to the JSON property `zones`
# @return [Array<String>] # @return [Array<String>]
attr_accessor :zones attr_accessor :zones

View File

@ -901,6 +901,7 @@ module Google
collection :forwarded_ports, as: 'forwardedPorts' collection :forwarded_ports, as: 'forwardedPorts'
property :instance_tag, as: 'instanceTag' property :instance_tag, as: 'instanceTag'
property :name, as: 'name' property :name, as: 'name'
property :session_affinity, as: 'sessionAffinity'
property :subnetwork_name, as: 'subnetworkName' property :subnetwork_name, as: 'subnetworkName'
end end
end end

View File

@ -54,7 +54,7 @@ module Google
# location - The region (https://cloud.google.com/appengine/docs/locations) # location - The region (https://cloud.google.com/appengine/docs/locations)
# where you want the App Engine application located.For more information about # where you want the App Engine application located.For more information about
# App Engine applications, see Managing Projects, Applications, and Billing ( # 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 [Google::Apis::AppengineV1beta::Application] application_object
# @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.
@ -1310,19 +1310,19 @@ module Google
# automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/ # automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/
# admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS. # admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.
# automatic_scaling): For Version resources that use automatic scaling and run # 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/ # automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/
# admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS. # admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.
# automatic_scaling): For Version resources that use automatic scaling and run # 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/ # automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/
# docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS. # docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.
# automatic_scaling): For Version resources that use automatic scaling and run # 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/ # automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/
# appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version. # appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.
# FIELDS.automatic_scaling): For Version resources that use automatic scaling # 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 # @param [String] apps_id
# Part of `name`. Name of the resource to update. Example: apps/myapp/services/ # Part of `name`. Name of the resource to update. Example: apps/myapp/services/
# default/versions/1. # default/versions/1.

View File

@ -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 = '20171220' REVISION = '20180209'
# 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'

View File

@ -993,13 +993,13 @@ module Google
class LocationMetadata class LocationMetadata
include Google::Apis::Core::Hashable 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` # Corresponds to the JSON property `flexibleEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :flexible_environment_available attr_accessor :flexible_environment_available
alias_method :flexible_environment_available?, :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` # Corresponds to the JSON property `standardEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :standard_environment_available attr_accessor :standard_environment_available

View File

@ -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 = '20171220' REVISION = '20180209'
# 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'

View File

@ -993,13 +993,13 @@ module Google
class LocationMetadata class LocationMetadata
include Google::Apis::Core::Hashable 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` # Corresponds to the JSON property `flexibleEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :flexible_environment_available attr_accessor :flexible_environment_available
alias_method :flexible_environment_available?, :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` # Corresponds to the JSON property `standardEnvironmentAvailable`
# @return [Boolean] # @return [Boolean]
attr_accessor :standard_environment_available attr_accessor :standard_environment_available

View File

@ -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 = '20180206' REVISION = '20180212'
# 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

@ -1658,8 +1658,6 @@ module Google
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeBatch] # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeBatch]
attr_accessor :entity_type_batch_inline 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 # 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 # or create. The file format can either be a serialized proto (of
# EntityBatch type) or a JSON object. Note: The URI must start with # EntityBatch type) or a JSON object. Note: The URI must start with
@ -1723,8 +1721,6 @@ module Google
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentBatch] # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentBatch]
attr_accessor :intent_batch_inline 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 # 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 # create. The file format can either be a serialized proto (of IntentBatch
# type) or JSON object. Note: The URI must start with "gs://". # type) or JSON object. Note: The URI must start with "gs://".
@ -2071,8 +2067,6 @@ module Google
class GoogleCloudDialogflowV2beta1ExportAgentRequest class GoogleCloudDialogflowV2beta1ExportAgentRequest
include Google::Apis::Core::Hashable 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. # Optional. The Google Cloud Storage URI to export the agent to.
# Note: The URI must start with # Note: The URI must start with
# "gs://". If left unspecified, the serialized agent is returned inline. # "gs://". If left unspecified, the serialized agent is returned inline.
@ -2151,8 +2145,6 @@ module Google
# @return [String] # @return [String]
attr_accessor :agent_content 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. # The URI to a Google Cloud Storage file containing the agent to import.
# Note: The URI must start with "gs://". # Note: The URI must start with "gs://".
# Corresponds to the JSON property `agentUri` # Corresponds to the JSON property `agentUri`
@ -3539,8 +3531,6 @@ module Google
# @return [String] # @return [String]
attr_accessor :agent_content 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. # The URI to a Google Cloud Storage file containing the agent to restore.
# Note: The URI must start with "gs://". # Note: The URI must start with "gs://".
# Corresponds to the JSON property `agentUri` # Corresponds to the JSON property `agentUri`

View File

@ -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 = '20180108' REVISION = '20180212'
# 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

@ -634,7 +634,7 @@ module Google
# @return [String] # @return [String]
attr_accessor :text 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` # Corresponds to the JSON property `updateTime`
# @return [String] # @return [String]
attr_accessor :update_time attr_accessor :update_time
@ -676,14 +676,14 @@ module Google
class Waiter class Waiter
include Google::Apis::Core::Hashable 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 # the value of `timeout` to this instant yields the timeout deadline for the
# waiter. # waiter.
# Corresponds to the JSON property `createTime` # Corresponds to the JSON property `createTime`
# @return [String] # @return [String]
attr_accessor :create_time 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. # for one of its conditions to be met.
# If true, the waiter has finished. If the waiter finished due to a timeout # If true, the waiter has finished. If the waiter finished due to a timeout
# or failure, `error` will be set. # or failure, `error` will be set.

View File

@ -53,8 +53,8 @@ module Google
# Creates a new RuntimeConfig resource. The configuration name must be # Creates a new RuntimeConfig resource. The configuration name must be
# unique within project. # unique within project.
# @param [String] parent # @param [String] parent
# The [project ID](https://support.google.com/cloud/answer/6158840?hl=en& # The [project
# ref_topic=6158848) # ID](https://support.google.com/cloud/answer/6158840?hl=en&ref_topic=6158848)
# for this request, in the format `projects/[PROJECT_ID]`. # for this request, in the format `projects/[PROJECT_ID]`.
# @param [Google::Apis::RuntimeconfigV1beta1::RuntimeConfig] runtime_config_object # @param [Google::Apis::RuntimeconfigV1beta1::RuntimeConfig] runtime_config_object
# @param [String] request_id # @param [String] request_id
@ -193,8 +193,8 @@ module Google
# Lists all the RuntimeConfig resources within project. # Lists all the RuntimeConfig resources within project.
# @param [String] parent # @param [String] parent
# The [project ID](https://support.google.com/cloud/answer/6158840?hl=en& # The [project
# ref_topic=6158848) # ID](https://support.google.com/cloud/answer/6158840?hl=en&ref_topic=6158848)
# for this request, in the format `projects/[PROJECT_ID]`. # for this request, in the format `projects/[PROJECT_ID]`.
# @param [Fixnum] page_size # @param [Fixnum] page_size
# Specifies the number of results to return per page. If there are fewer # 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 # 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. # name that has an existing variable name as a prefix.
# To learn more about creating a variable, read the # To learn more about creating a variable, read the
# [Setting and Getting Data](/deployment-manager/runtime-configurator/set-and- # [Setting and Getting
# get-variables) # Data](/deployment-manager/runtime-configurator/set-and-get-variables)
# documentation. # documentation.
# @param [String] parent # @param [String] parent
# The path to the RutimeConfig resource that this variable should belong to. # The path to the RutimeConfig resource that this variable should belong to.
@ -531,13 +531,14 @@ module Google
execute_or_queue_command(command, &block) execute_or_queue_command(command, &block)
end end
# Lists variables within given a configuration, matching any provided filters. # Lists variables within given a configuration, matching any provided
# This only lists variable names, not the values, unless `return_values` is # filters. This only lists variable names, not the values, unless
# true, in which case only variables that user has IAM permission to GetVariable # `return_values` is true, in which case only variables that user has IAM
# will be returned. # permission to GetVariable will be returned.
# @param [String] parent # @param [String] parent
# The path to the RuntimeConfig resource for which you want to list variables. # The path to the RuntimeConfig resource for which you want to list
# The configuration must exist beforehand; the path must be in the format: # variables. The configuration must exist beforehand; the path must be in the
# format:
# `projects/[PROJECT_ID]/configs/[CONFIG_NAME]` # `projects/[PROJECT_ID]/configs/[CONFIG_NAME]`
# @param [String] filter # @param [String] filter
# Filters variables by matching the specified filter. For example: # 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. # 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 # If a variable is deleted while being watched, the `variableState` state is
# set to `DELETED` and the method returns the last known variable `value`. # 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 # If you set the deadline for watching to a larger value than internal
# (60 seconds), the current variable value is returned and the `variableState` # timeout (60 seconds), the current variable value is returned and the
# will be `VARIABLE_STATE_UNSPECIFIED`. # `variableState` will be `VARIABLE_STATE_UNSPECIFIED`.
# To learn more about creating a watcher, read the # To learn more about creating a watcher, read the
# [Watching a Variable for Changes](/deployment-manager/runtime-configurator/ # [Watching a Variable for
# watching-a-variable) # Changes](/deployment-manager/runtime-configurator/watching-a-variable)
# documentation. # documentation.
# @param [String] name # @param [String] name
# The name of the variable to watch, in the format: # The name of the variable to watch, in the format:

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/spanner/ # @see https://cloud.google.com/spanner/
module SpannerV1 module SpannerV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20171026' REVISION = '20180207'
# 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

@ -1604,7 +1604,7 @@ module Google
# ] # ]
# ` # `
# For a description of IAM and its features, see the # 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 class Policy
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
@ -1628,7 +1628,7 @@ module Google
# @return [String] # @return [String]
attr_accessor :etag attr_accessor :etag
# Version of the `Policy`. The default version is 0. # Deprecated.
# Corresponds to the JSON property `version` # Corresponds to the JSON property `version`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :version attr_accessor :version
@ -2028,7 +2028,7 @@ module Google
# ] # ]
# ` # `
# For a description of IAM and its features, see the # 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` # Corresponds to the JSON property `policy`
# @return [Google::Apis::SpannerV1::Policy] # @return [Google::Apis::SpannerV1::Policy]
attr_accessor :policy attr_accessor :policy