Autogenerated update (2019-06-20)

Update:
- androidpublisher_v1_1
- androidpublisher_v2
- androidpublisher_v3
- bigquerydatatransfer_v1
- composer_v1
- composer_v1beta1
- dialogflow_v2
- dialogflow_v2beta1
- healthcare_v1alpha2
- healthcare_v1beta1
- ml_v1
- remotebuildexecution_v1
- remotebuildexecution_v1alpha
- remotebuildexecution_v2
- servicemanagement_v1
This commit is contained in:
Google APIs 2019-06-20 00:37:38 +00:00
parent 471ff6cadf
commit 6e97b84c3f
40 changed files with 2785 additions and 279 deletions

View File

@ -25,7 +25,7 @@ module Google
# @see https://developers.google.com/android-publisher
module AndroidpublisherV1_1
VERSION = 'V1_1'
REVISION = '20190120'
REVISION = '20190618'
# View and manage your Google Play Developer account
AUTH_ANDROIDPUBLISHER = 'https://www.googleapis.com/auth/androidpublisher'

View File

@ -53,6 +53,7 @@ module Google
# The purchase state of the order. Possible values are:
# - Purchased
# - Canceled
# - Pending
# Corresponds to the JSON property `purchaseState`
# @return [Fixnum]
attr_accessor :purchase_state

View File

@ -25,7 +25,7 @@ module Google
# @see https://developers.google.com/android-publisher
module AndroidpublisherV2
VERSION = 'V2'
REVISION = '20190616'
REVISION = '20190618'
# View and manage your Google Play Developer account
AUTH_ANDROIDPUBLISHER = 'https://www.googleapis.com/auth/androidpublisher'

View File

@ -1095,6 +1095,7 @@ module Google
# The purchase state of the order. Possible values are:
# - Purchased
# - Canceled
# - Pending
# Corresponds to the JSON property `purchaseState`
# @return [Fixnum]
attr_accessor :purchase_state

View File

@ -25,7 +25,7 @@ module Google
# @see https://developers.google.com/android-publisher
module AndroidpublisherV3
VERSION = 'V3'
REVISION = '20190616'
REVISION = '20190618'
# View and manage your Google Play Developer account
AUTH_ANDROIDPUBLISHER = 'https://www.googleapis.com/auth/androidpublisher'

View File

@ -1137,6 +1137,7 @@ module Google
# The purchase state of the order. Possible values are:
# - Purchased
# - Canceled
# - Pending
# Corresponds to the JSON property `purchaseState`
# @return [Fixnum]
attr_accessor :purchase_state

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/bigquery/
module BigquerydatatransferV1
VERSION = 'V1'
REVISION = '20190605'
REVISION = '20190615'
# View and manage your data in Google BigQuery
AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery'

View File

@ -213,6 +213,13 @@ module Google
# @return [Array<String>]
attr_accessor :allowed_values
# If true, it should not be used in new transfers, and it should not be
# visible to users.
# Corresponds to the JSON property `deprecated`
# @return [Boolean]
attr_accessor :deprecated
alias_method :deprecated?, :deprecated
# Parameter description.
# Corresponds to the JSON property `description`
# @return [String]
@ -295,6 +302,7 @@ module Google
# Update properties of this object
def update!(**args)
@allowed_values = args[:allowed_values] if args.key?(:allowed_values)
@deprecated = args[:deprecated] if args.key?(:deprecated)
@description = args[:description] if args.key?(:description)
@display_name = args[:display_name] if args.key?(:display_name)
@fields = args[:fields] if args.key?(:fields)
@ -922,8 +930,8 @@ module Google
# @return [Hash<String,Object>]
attr_accessor :params
# For batch transfer runs, specifies the date and time that
# data should be ingested.
# For batch transfer runs, specifies the date and time of the data should be
# ingested.
# Corresponds to the JSON property `runTime`
# @return [String]
attr_accessor :run_time

View File

@ -190,6 +190,7 @@ module Google
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :allowed_values, as: 'allowedValues'
property :deprecated, as: 'deprecated'
property :description, as: 'description'
property :display_name, as: 'displayName'
collection :fields, as: 'fields', class: Google::Apis::BigquerydatatransferV1::DataSourceParameter, decorator: Google::Apis::BigquerydatatransferV1::DataSourceParameter::Representation

View File

@ -371,7 +371,7 @@ module Google
# Optional version info. If users want to find a very recent access token,
# that is, immediately after approving access, users have to set the
# version_info claim in the token request. To obtain the version_info, users
# must use the “none+gsession” response type. which be return a
# must use the "none+gsession" response type. which be return a
# version_info back in the authorization response which be be put in a JWT
# claim in the token request.
# @param [String] fields
@ -546,7 +546,7 @@ module Google
# Optional version info. If users want to find a very recent access token,
# that is, immediately after approving access, users have to set the
# version_info claim in the token request. To obtain the version_info, users
# must use the “none+gsession” response type. which be return a
# must use the "none+gsession" response type. which be return a
# version_info back in the authorization response which be be put in a JWT
# claim in the token request.
# @param [String] fields
@ -839,7 +839,7 @@ module Google
# Optional version info. If users want to find a very recent access token,
# that is, immediately after approving access, users have to set the
# version_info claim in the token request. To obtain the version_info, users
# must use the “none+gsession” response type. which be return a
# must use the "none+gsession" response type. which be return a
# version_info back in the authorization response which be be put in a JWT
# claim in the token request.
# @param [String] fields
@ -1014,7 +1014,7 @@ module Google
# Optional version info. If users want to find a very recent access token,
# that is, immediately after approving access, users have to set the
# version_info claim in the token request. To obtain the version_info, users
# must use the “none+gsession” response type. which be return a
# must use the "none+gsession" response type. which be return a
# version_info back in the authorization response which be be put in a JWT
# claim in the token request.
# @param [String] fields

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/composer/
module ComposerV1
VERSION = 'V1'
REVISION = '20190514'
REVISION = '20190613'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -403,43 +403,10 @@ module Google
# The `Status` type defines a logical error model that is suitable for
# different programming environments, including REST APIs and RPC APIs. It is
# used by [gRPC](https://github.com/grpc). The error model is designed to be:
# - Simple to use and understand for most users
# - Flexible enough to meet unexpected needs
# # Overview
# The `Status` message contains three pieces of data: error code, error
# message, and error details. The error code should be an enum value of
# google.rpc.Code, but it may accept additional error codes if needed. The
# error message should be a developer-facing English message that helps
# developers *understand* and *resolve* the error. If a localized user-facing
# error message is needed, put the localized message in the error details or
# localize it in the client. The optional error details may contain arbitrary
# information about the error. There is a predefined set of error detail types
# in the package `google.rpc` that can be used for common error conditions.
# # Language mapping
# The `Status` message is the logical representation of the error model, but it
# is not necessarily the actual wire format. When the `Status` message is
# exposed in different client libraries and different wire protocols, it can be
# mapped differently. For example, it will likely be mapped to some exceptions
# in Java, but more likely mapped to some error codes in C.
# # Other uses
# The error model and the `Status` message can be used in a variety of
# environments, either with or without APIs, to provide a
# consistent developer experience across different environments.
# Example uses of this error model include:
# - Partial errors. If a service needs to return partial errors to the client,
# it may embed the `Status` in the normal response to indicate the partial
# errors.
# - Workflow errors. A typical workflow has multiple steps. Each step may
# have a `Status` message for error reporting.
# - Batch operations. If a client uses batch request and batch response, the
# `Status` message should be used directly inside batch response, one for
# each error sub-response.
# - Asynchronous operations. If an API call embeds asynchronous operation
# results in its response, the status of those operations should be
# represented directly using the `Status` message.
# - Logging. If some API errors are stored in logs, the message `Status` could
# be used directly after any stripping needed for security/privacy reasons.
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
# three pieces of data: error code, error message, and error details.
# You can find out more about this error model and how to work with it in the
# [API Design Guide](https://cloud.google.com/apis/design/errors).
# Corresponds to the JSON property `error`
# @return [Google::Apis::ComposerV1::Status]
attr_accessor :error
@ -644,43 +611,10 @@ module Google
# The `Status` type defines a logical error model that is suitable for
# different programming environments, including REST APIs and RPC APIs. It is
# used by [gRPC](https://github.com/grpc). The error model is designed to be:
# - Simple to use and understand for most users
# - Flexible enough to meet unexpected needs
# # Overview
# The `Status` message contains three pieces of data: error code, error
# message, and error details. The error code should be an enum value of
# google.rpc.Code, but it may accept additional error codes if needed. The
# error message should be a developer-facing English message that helps
# developers *understand* and *resolve* the error. If a localized user-facing
# error message is needed, put the localized message in the error details or
# localize it in the client. The optional error details may contain arbitrary
# information about the error. There is a predefined set of error detail types
# in the package `google.rpc` that can be used for common error conditions.
# # Language mapping
# The `Status` message is the logical representation of the error model, but it
# is not necessarily the actual wire format. When the `Status` message is
# exposed in different client libraries and different wire protocols, it can be
# mapped differently. For example, it will likely be mapped to some exceptions
# in Java, but more likely mapped to some error codes in C.
# # Other uses
# The error model and the `Status` message can be used in a variety of
# environments, either with or without APIs, to provide a
# consistent developer experience across different environments.
# Example uses of this error model include:
# - Partial errors. If a service needs to return partial errors to the client,
# it may embed the `Status` in the normal response to indicate the partial
# errors.
# - Workflow errors. A typical workflow has multiple steps. Each step may
# have a `Status` message for error reporting.
# - Batch operations. If a client uses batch request and batch response, the
# `Status` message should be used directly inside batch response, one for
# each error sub-response.
# - Asynchronous operations. If an API call embeds asynchronous operation
# results in its response, the status of those operations should be
# represented directly using the `Status` message.
# - Logging. If some API errors are stored in logs, the message `Status` could
# be used directly after any stripping needed for security/privacy reasons.
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
# three pieces of data: error code, error message, and error details.
# You can find out more about this error model and how to work with it in the
# [API Design Guide](https://cloud.google.com/apis/design/errors).
class Status
include Google::Apis::Core::Hashable

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/composer/
module ComposerV1beta1
VERSION = 'V1beta1'
REVISION = '20190514'
REVISION = '20190613'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -493,43 +493,10 @@ module Google
# The `Status` type defines a logical error model that is suitable for
# different programming environments, including REST APIs and RPC APIs. It is
# used by [gRPC](https://github.com/grpc). The error model is designed to be:
# - Simple to use and understand for most users
# - Flexible enough to meet unexpected needs
# # Overview
# The `Status` message contains three pieces of data: error code, error
# message, and error details. The error code should be an enum value of
# google.rpc.Code, but it may accept additional error codes if needed. The
# error message should be a developer-facing English message that helps
# developers *understand* and *resolve* the error. If a localized user-facing
# error message is needed, put the localized message in the error details or
# localize it in the client. The optional error details may contain arbitrary
# information about the error. There is a predefined set of error detail types
# in the package `google.rpc` that can be used for common error conditions.
# # Language mapping
# The `Status` message is the logical representation of the error model, but it
# is not necessarily the actual wire format. When the `Status` message is
# exposed in different client libraries and different wire protocols, it can be
# mapped differently. For example, it will likely be mapped to some exceptions
# in Java, but more likely mapped to some error codes in C.
# # Other uses
# The error model and the `Status` message can be used in a variety of
# environments, either with or without APIs, to provide a
# consistent developer experience across different environments.
# Example uses of this error model include:
# - Partial errors. If a service needs to return partial errors to the client,
# it may embed the `Status` in the normal response to indicate the partial
# errors.
# - Workflow errors. A typical workflow has multiple steps. Each step may
# have a `Status` message for error reporting.
# - Batch operations. If a client uses batch request and batch response, the
# `Status` message should be used directly inside batch response, one for
# each error sub-response.
# - Asynchronous operations. If an API call embeds asynchronous operation
# results in its response, the status of those operations should be
# represented directly using the `Status` message.
# - Logging. If some API errors are stored in logs, the message `Status` could
# be used directly after any stripping needed for security/privacy reasons.
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
# three pieces of data: error code, error message, and error details.
# You can find out more about this error model and how to work with it in the
# [API Design Guide](https://cloud.google.com/apis/design/errors).
# Corresponds to the JSON property `error`
# @return [Google::Apis::ComposerV1beta1::Status]
attr_accessor :error
@ -796,43 +763,10 @@ module Google
# The `Status` type defines a logical error model that is suitable for
# different programming environments, including REST APIs and RPC APIs. It is
# used by [gRPC](https://github.com/grpc). The error model is designed to be:
# - Simple to use and understand for most users
# - Flexible enough to meet unexpected needs
# # Overview
# The `Status` message contains three pieces of data: error code, error
# message, and error details. The error code should be an enum value of
# google.rpc.Code, but it may accept additional error codes if needed. The
# error message should be a developer-facing English message that helps
# developers *understand* and *resolve* the error. If a localized user-facing
# error message is needed, put the localized message in the error details or
# localize it in the client. The optional error details may contain arbitrary
# information about the error. There is a predefined set of error detail types
# in the package `google.rpc` that can be used for common error conditions.
# # Language mapping
# The `Status` message is the logical representation of the error model, but it
# is not necessarily the actual wire format. When the `Status` message is
# exposed in different client libraries and different wire protocols, it can be
# mapped differently. For example, it will likely be mapped to some exceptions
# in Java, but more likely mapped to some error codes in C.
# # Other uses
# The error model and the `Status` message can be used in a variety of
# environments, either with or without APIs, to provide a
# consistent developer experience across different environments.
# Example uses of this error model include:
# - Partial errors. If a service needs to return partial errors to the client,
# it may embed the `Status` in the normal response to indicate the partial
# errors.
# - Workflow errors. A typical workflow has multiple steps. Each step may
# have a `Status` message for error reporting.
# - Batch operations. If a client uses batch request and batch response, the
# `Status` message should be used directly inside batch response, one for
# each error sub-response.
# - Asynchronous operations. If an API call embeds asynchronous operation
# results in its response, the status of those operations should be
# represented directly using the `Status` message.
# - Logging. If some API errors are stored in logs, the message `Status` could
# be used directly after any stripping needed for security/privacy reasons.
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
# three pieces of data: error code, error message, and error details.
# You can find out more about this error model and how to work with it in the
# [API Design Guide](https://cloud.google.com/apis/design/errors).
class Status
include Google::Apis::Core::Hashable

View File

@ -23,10 +23,10 @@ module Google
# Builds conversational interfaces (for example, chatbots, and voice-powered
# apps and devices).
#
# @see https://cloud.google.com/dialogflow-enterprise/
# @see https://cloud.google.com/dialogflow/
module DialogflowV2
VERSION = 'V2'
REVISION = '20190610'
REVISION = '20190616'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -37,8 +37,7 @@ module Google
# Optional. The URI of the agent's avatar.
# Avatars are used throughout the Dialogflow console and in the self-hosted
# [Web
# Demo](https://cloud.google.com/dialogflow-enterprise/docs/integrations/web-
# demo)
# Demo](https://cloud.google.com/dialogflow/docs/integrations/web-demo)
# integration.
# Corresponds to the JSON property `avatarUri`
# @return [String]
@ -57,8 +56,7 @@ module Google
# Required. The default language of the agent as a language tag. See
# [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. This field cannot be
# set by the `Update` method.
# Corresponds to the JSON property `defaultLanguageCode`
@ -144,8 +142,7 @@ module Google
# Optional. The language of entity synonyms defined in `entities`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -177,8 +174,7 @@ module Google
# Optional. The language of entity synonyms defined in `entities`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -248,8 +244,7 @@ module Google
# Optional. The language of entity synonyms defined in `entities`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -293,8 +288,7 @@ module Google
# Optional. The language of entity synonyms defined in `entity_types`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -362,8 +356,7 @@ module Google
# Optional. The language of training phrases, parameters and rich messages
# defined in `intents`. If not specified, the agent's default language is
# used. [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -430,8 +423,7 @@ module Google
# Optional. The collection of parameters associated with this context.
# Refer to [this
# doc](https://cloud.google.com/dialogflow-enterprise/docs/intents-actions-
# parameters)
# doc](https://cloud.google.com/dialogflow/docs/intents-actions-parameters)
# for syntax.
# Corresponds to the JSON property `parameters`
# @return [Hash<String,Object>]
@ -661,8 +653,7 @@ module Google
include Google::Apis::Core::Hashable
# Required. The language of this query. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`
@ -805,8 +796,7 @@ module Google
# Required. The language of the supplied audio. Dialogflow does not do
# translations. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`
@ -1679,7 +1669,7 @@ module Google
attr_accessor :name
# Optional. The collection of prompts that the agent can present to the
# user in order to collect value for the parameter.
# user in order to collect a value for the parameter.
# Corresponds to the JSON property `prompts`
# @return [Array<String>]
attr_accessor :prompts
@ -2156,8 +2146,7 @@ module Google
# The language that was triggered during intent detection.
# See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes.
# Corresponds to the JSON property `languageCode`
# @return [String]
@ -2483,8 +2472,7 @@ module Google
include Google::Apis::Core::Hashable
# Required. The language of this conversational query. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`
@ -2735,8 +2723,7 @@ module Google
# Optional. The collection of parameters associated with this context.
# Refer to [this
# doc](https://cloud.google.com/dialogflow-enterprise/docs/intents-actions-
# parameters)
# doc](https://cloud.google.com/dialogflow/docs/intents-actions-parameters)
# for syntax.
# Corresponds to the JSON property `parameters`
# @return [Hash<String,Object>]
@ -2848,8 +2835,7 @@ module Google
include Google::Apis::Core::Hashable
# Required. The language of this query. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`
@ -3855,7 +3841,7 @@ module Google
attr_accessor :name
# Optional. The collection of prompts that the agent can present to the
# user in order to collect value for the parameter.
# user in order to collect a value for the parameter.
# Corresponds to the JSON property `prompts`
# @return [Array<String>]
attr_accessor :prompts
@ -4184,8 +4170,7 @@ module Google
# The language that was triggered during intent detection.
# See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes.
# Corresponds to the JSON property `languageCode`
# @return [String]

View File

@ -31,7 +31,7 @@ module Google
# Dialogflow = Google::Apis::DialogflowV2 # Alias the module
# service = Dialogflow::DialogflowService.new
#
# @see https://cloud.google.com/dialogflow-enterprise/
# @see https://cloud.google.com/dialogflow/
class DialogflowService < Google::Apis::Core::BaseService
# @return [String]
# API key. Your API key identifies your project and provides you with API access,
@ -415,8 +415,7 @@ module Google
# Optional. The language of entity synonyms defined in `entity_type`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -488,8 +487,7 @@ module Google
# Optional. The language to retrieve entity synonyms for. If not specified,
# the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -528,8 +526,7 @@ module Google
# Optional. The language to list entity synonyms for. If not specified,
# the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [Fixnum] page_size
@ -578,8 +575,7 @@ module Google
# Optional. The language of entity synonyms defined in `entity_type`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] update_mask
@ -803,8 +799,7 @@ module Google
# Optional. The language of training phrases, parameters and rich messages
# defined in `intent`. If not specified, the agent's default language is
# used. [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -880,8 +875,7 @@ module Google
# Optional. The language to retrieve training phrases, parameters and rich
# messages for. If not specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -923,8 +917,7 @@ module Google
# Optional. The language to list training phrases, parameters and rich
# messages for. If not specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [Fixnum] page_size
@ -976,8 +969,7 @@ module Google
# Optional. The language of training phrases, parameters and rich messages
# defined in `intent`. If not specified, the agent's default language is
# used. [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] update_mask

View File

@ -23,10 +23,10 @@ module Google
# Builds conversational interfaces (for example, chatbots, and voice-powered
# apps and devices).
#
# @see https://cloud.google.com/dialogflow-enterprise/
# @see https://cloud.google.com/dialogflow/
module DialogflowV2beta1
VERSION = 'V2beta1'
REVISION = '20190610'
REVISION = '20190616'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -82,8 +82,7 @@ module Google
# Optional. The collection of parameters associated with this context.
# Refer to [this
# doc](https://cloud.google.com/dialogflow-enterprise/docs/intents-actions-
# parameters)
# doc](https://cloud.google.com/dialogflow/docs/intents-actions-parameters)
# for syntax.
# Corresponds to the JSON property `parameters`
# @return [Hash<String,Object>]
@ -195,8 +194,7 @@ module Google
include Google::Apis::Core::Hashable
# Required. The language of this query. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`
@ -1074,7 +1072,7 @@ module Google
attr_accessor :name
# Optional. The collection of prompts that the agent can present to the
# user in order to collect value for the parameter.
# user in order to collect a value for the parameter.
# Corresponds to the JSON property `prompts`
# @return [Array<String>]
attr_accessor :prompts
@ -1301,8 +1299,7 @@ module Google
# The language that was triggered during intent detection.
# See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes.
# Corresponds to the JSON property `languageCode`
# @return [String]
@ -1571,8 +1568,7 @@ module Google
# Optional. The URI of the agent's avatar.
# Avatars are used throughout the Dialogflow console and in the self-hosted
# [Web
# Demo](https://cloud.google.com/dialogflow-enterprise/docs/integrations/web-
# demo)
# Demo](https://cloud.google.com/dialogflow/docs/integrations/web-demo)
# integration.
# Corresponds to the JSON property `avatarUri`
# @return [String]
@ -1591,8 +1587,7 @@ module Google
# Required. The default language of the agent as a language tag. See
# [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. This field cannot be
# set by the `Update` method.
# Corresponds to the JSON property `defaultLanguageCode`
@ -1678,8 +1673,7 @@ module Google
# Optional. The language of entity synonyms defined in `entities`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -1711,8 +1705,7 @@ module Google
# Optional. The language of entity synonyms defined in `entities`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -1782,8 +1775,7 @@ module Google
# Optional. The language of entity synonyms defined in `entities`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -1827,8 +1819,7 @@ module Google
# Optional. The language of entity synonyms defined in `entity_types`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -1896,8 +1887,7 @@ module Google
# Optional. The language of training phrases, parameters and rich messages
# defined in `intents`. If not specified, the agent's default language is
# used. [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# Corresponds to the JSON property `languageCode`
@ -1968,8 +1958,7 @@ module Google
# Optional. The collection of parameters associated with this context.
# Refer to [this
# doc](https://cloud.google.com/dialogflow-enterprise/docs/intents-actions-
# parameters)
# doc](https://cloud.google.com/dialogflow/docs/intents-actions-parameters)
# for syntax.
# Corresponds to the JSON property `parameters`
# @return [Hash<String,Object>]
@ -2284,8 +2273,7 @@ module Google
include Google::Apis::Core::Hashable
# Required. The language of this query. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`
@ -2437,8 +2425,7 @@ module Google
# Required. The language of the supplied audio. Dialogflow does not do
# translations. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`
@ -3457,7 +3444,7 @@ module Google
attr_accessor :name
# Optional. The collection of prompts that the agent can present to the
# user in order to collect value for the parameter.
# user in order to collect a value for the parameter.
# Corresponds to the JSON property `prompts`
# @return [Array<String>]
attr_accessor :prompts
@ -4126,8 +4113,7 @@ module Google
# The language that was triggered during intent detection.
# See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes.
# Corresponds to the JSON property `languageCode`
# @return [String]
@ -4471,8 +4457,7 @@ module Google
include Google::Apis::Core::Hashable
# Required. The language of this conversational query. See [Language
# Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
# for a list of the currently supported language codes. Note that queries in
# the same session do not necessarily need to specify the same language.
# Corresponds to the JSON property `languageCode`

View File

@ -31,7 +31,7 @@ module Google
# Dialogflow = Google::Apis::DialogflowV2beta1 # Alias the module
# service = Dialogflow::DialogflowService.new
#
# @see https://cloud.google.com/dialogflow-enterprise/
# @see https://cloud.google.com/dialogflow/
class DialogflowService < Google::Apis::Core::BaseService
# @return [String]
# API key. Your API key identifies your project and provides you with API access,
@ -415,8 +415,7 @@ module Google
# Optional. The language of entity synonyms defined in `entity_type`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -488,8 +487,7 @@ module Google
# Optional. The language to retrieve entity synonyms for. If not specified,
# the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -528,8 +526,7 @@ module Google
# Optional. The language to list entity synonyms for. If not specified,
# the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [Fixnum] page_size
@ -578,8 +575,7 @@ module Google
# Optional. The language of entity synonyms defined in `entity_type`. If not
# specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] update_mask
@ -766,7 +762,7 @@ module Google
# `projects/<Project ID>/agent/environments/<Environment ID>/users/<User
# ID>/sessions/<Session ID>`. If `Environment ID` is not specified, we assume
# default 'draft' environment. If `User ID` is not specified, we are using
# "-". Its up to the API caller to choose an appropriate `Session ID` and
# "-". It's up to the API caller to choose an appropriate `Session ID` and
# `User Id`. They can be a random numbers or some type of user and session
# identifiers (preferably hashed). The length of the `Session ID` and
# `User ID` must not exceed 36 characters.
@ -1271,8 +1267,7 @@ module Google
# Optional. The language of training phrases, parameters and rich messages
# defined in `intent`. If not specified, the agent's default language is
# used. [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -1348,8 +1343,7 @@ module Google
# Optional. The language to retrieve training phrases, parameters and rich
# messages for. If not specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] fields
@ -1391,8 +1385,7 @@ module Google
# Optional. The language to list training phrases, parameters and rich
# messages for. If not specified, the agent's default language is used.
# [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [Fixnum] page_size
@ -1444,8 +1437,7 @@ module Google
# Optional. The language of training phrases, parameters and rich messages
# defined in `intent`. If not specified, the agent's default language is
# used. [Many
# languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/
# language)
# languages](https://cloud.google.com/dialogflow/docs/reference/language)
# are supported. Note: languages must be enabled in the agent before they can
# be used.
# @param [String] update_mask
@ -1949,7 +1941,7 @@ module Google
# `projects/<Project ID>/agent/environments/<Environment ID>/users/<User
# ID>/sessions/<Session ID>`. If `Environment ID` is not specified, we assume
# default 'draft' environment. If `User ID` is not specified, we are using
# "-". Its up to the API caller to choose an appropriate `Session ID` and
# "-". It's up to the API caller to choose an appropriate `Session ID` and
# `User Id`. They can be a random numbers or some type of user and session
# identifiers (preferably hashed). The length of the `Session ID` and
# `User ID` must not exceed 36 characters.

View File

@ -0,0 +1,44 @@
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'google/apis/firebase_v1beta1/service.rb'
require 'google/apis/firebase_v1beta1/classes.rb'
require 'google/apis/firebase_v1beta1/representations.rb'
module Google
module Apis
# Firebase Management API
#
# The Firebase Management API enables programmatic setup and management of
# Firebase projects, including a project's Firebase resources and Firebase apps.
#
# @see https://firebase.google.com
module FirebaseV1beta1
VERSION = 'V1beta1'
REVISION = '20190618'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
# View your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
# View and administer all your Firebase data and settings
AUTH_FIREBASE = 'https://www.googleapis.com/auth/firebase'
# View all your Firebase data and settings
AUTH_FIREBASE_READONLY = 'https://www.googleapis.com/auth/firebase.readonly'
end
end
end

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,432 @@
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module FirebaseV1beta1
class AddFirebaseRequest
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class AdminSdkConfig
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class AndroidApp
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class AndroidAppConfig
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class DefaultResources
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class Empty
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class FirebaseAppInfo
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class FirebaseProject
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class IosApp
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class IosAppConfig
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ListAndroidAppsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ListAvailableProjectsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ListFirebaseProjectsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ListIosAppsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ListShaCertificatesResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ListWebAppsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class MessageSet
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class Operation
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ProjectInfo
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class SearchFirebaseAppsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class ShaCertificate
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class Status
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class StatusProto
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class TypedMessage
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class WebApp
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class WebAppConfig
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class AddFirebaseRequest
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :location_id, as: 'locationId'
property :region_code, as: 'regionCode'
property :time_zone, as: 'timeZone'
end
end
class AdminSdkConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :database_url, as: 'databaseURL'
property :location_id, as: 'locationId'
property :project_id, as: 'projectId'
property :storage_bucket, as: 'storageBucket'
end
end
class AndroidApp
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :app_id, as: 'appId'
property :display_name, as: 'displayName'
property :name, as: 'name'
property :package_name, as: 'packageName'
property :project_id, as: 'projectId'
end
end
class AndroidAppConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :config_file_contents, :base64 => true, as: 'configFileContents'
property :config_filename, as: 'configFilename'
end
end
class DefaultResources
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :hosting_site, as: 'hostingSite'
property :location_id, as: 'locationId'
property :realtime_database_instance, as: 'realtimeDatabaseInstance'
property :storage_bucket, as: 'storageBucket'
end
end
class Empty
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end
class FirebaseAppInfo
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :app_id, as: 'appId'
property :display_name, as: 'displayName'
property :name, as: 'name'
property :platform, as: 'platform'
end
end
class FirebaseProject
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :display_name, as: 'displayName'
property :name, as: 'name'
property :project_id, as: 'projectId'
property :project_number, :numeric_string => true, as: 'projectNumber'
property :resources, as: 'resources', class: Google::Apis::FirebaseV1beta1::DefaultResources, decorator: Google::Apis::FirebaseV1beta1::DefaultResources::Representation
end
end
class IosApp
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :app_id, as: 'appId'
property :app_store_id, as: 'appStoreId'
property :bundle_id, as: 'bundleId'
property :display_name, as: 'displayName'
property :name, as: 'name'
property :project_id, as: 'projectId'
end
end
class IosAppConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :config_file_contents, :base64 => true, as: 'configFileContents'
property :config_filename, as: 'configFilename'
end
end
class ListAndroidAppsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :apps, as: 'apps', class: Google::Apis::FirebaseV1beta1::AndroidApp, decorator: Google::Apis::FirebaseV1beta1::AndroidApp::Representation
property :next_page_token, as: 'nextPageToken'
end
end
class ListAvailableProjectsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :next_page_token, as: 'nextPageToken'
collection :project_info, as: 'projectInfo', class: Google::Apis::FirebaseV1beta1::ProjectInfo, decorator: Google::Apis::FirebaseV1beta1::ProjectInfo::Representation
end
end
class ListFirebaseProjectsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :next_page_token, as: 'nextPageToken'
collection :results, as: 'results', class: Google::Apis::FirebaseV1beta1::FirebaseProject, decorator: Google::Apis::FirebaseV1beta1::FirebaseProject::Representation
end
end
class ListIosAppsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :apps, as: 'apps', class: Google::Apis::FirebaseV1beta1::IosApp, decorator: Google::Apis::FirebaseV1beta1::IosApp::Representation
property :next_page_token, as: 'nextPageToken'
end
end
class ListShaCertificatesResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :certificates, as: 'certificates', class: Google::Apis::FirebaseV1beta1::ShaCertificate, decorator: Google::Apis::FirebaseV1beta1::ShaCertificate::Representation
end
end
class ListWebAppsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :apps, as: 'apps', class: Google::Apis::FirebaseV1beta1::WebApp, decorator: Google::Apis::FirebaseV1beta1::WebApp::Representation
property :next_page_token, as: 'nextPageToken'
end
end
class MessageSet
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end
class Operation
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :done, as: 'done'
property :error, as: 'error', class: Google::Apis::FirebaseV1beta1::Status, decorator: Google::Apis::FirebaseV1beta1::Status::Representation
hash :metadata, as: 'metadata'
property :name, as: 'name'
hash :response, as: 'response'
end
end
class ProjectInfo
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :display_name, as: 'displayName'
property :location_id, as: 'locationId'
property :project, as: 'project'
end
end
class SearchFirebaseAppsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :apps, as: 'apps', class: Google::Apis::FirebaseV1beta1::FirebaseAppInfo, decorator: Google::Apis::FirebaseV1beta1::FirebaseAppInfo::Representation
property :next_page_token, as: 'nextPageToken'
end
end
class ShaCertificate
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :cert_type, as: 'certType'
property :name, as: 'name'
property :sha_hash, as: 'shaHash'
end
end
class Status
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :code, as: 'code'
collection :details, as: 'details'
property :message, as: 'message'
end
end
class StatusProto
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :canonical_code, as: 'canonicalCode'
property :code, as: 'code'
property :message, as: 'message'
property :message_set, as: 'messageSet', class: Google::Apis::FirebaseV1beta1::MessageSet, decorator: Google::Apis::FirebaseV1beta1::MessageSet::Representation
property :payload, as: 'payload', class: Google::Apis::FirebaseV1beta1::TypedMessage, decorator: Google::Apis::FirebaseV1beta1::TypedMessage::Representation
property :space, as: 'space'
end
end
class TypedMessage
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :message, :base64 => true, as: 'message'
property :type_id, as: 'typeId'
end
end
class WebApp
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :app_id, as: 'appId'
collection :app_urls, as: 'appUrls'
property :display_name, as: 'displayName'
property :name, as: 'name'
property :project_id, as: 'projectId'
end
end
class WebAppConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :api_key, as: 'apiKey'
property :app_id, as: 'appId'
property :auth_domain, as: 'authDomain'
property :database_url, as: 'databaseURL'
property :location_id, as: 'locationId'
property :messaging_sender_id, as: 'messagingSenderId'
property :project_id, as: 'projectId'
property :storage_bucket, as: 'storageBucket'
end
end
end
end
end

File diff suppressed because it is too large Load Diff

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/healthcare
module HealthcareV1alpha2
VERSION = 'V1alpha2'
REVISION = '20190607'
REVISION = '20190615'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -3150,6 +3150,12 @@ module Google
# registry.html).
# Supported search modifiers: `:missing`, `:exact`, `:contains`, `:text`,
# `:in`, `:not-in`, `:above`, `:below`, `:[type]`, `:not`, and `:recurse`.
# Supported search result parameters: `_sort`, `_count`, `_include`,
# `_revinclude`, `_summary=text`, `_summary=data`, and `_elements`.
# The maximum number of search results returned defaults to 100, which can
# be overridden by the `_count` parameter up to a maximum limit of 1000. If
# there are additional results, the returned `Bundle` will contain
# pagination links.
# @param [String] parent
# Name of the FHIR store to retrieve resources from.
# @param [Google::Apis::HealthcareV1alpha2::SearchResourcesRequest] search_resources_request_object

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/healthcare
module HealthcareV1beta1
VERSION = 'V1beta1'
REVISION = '20190607'
REVISION = '20190615'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -2628,6 +2628,12 @@ module Google
# registry.html).
# Supported search modifiers: `:missing`, `:exact`, `:contains`, `:text`,
# `:in`, `:not-in`, `:above`, `:below`, `:[type]`, `:not`, and `:recurse`.
# Supported search result parameters: `_sort`, `_count`, `_include`,
# `_revinclude`, `_summary=text`, `_summary=data`, and `_elements`.
# The maximum number of search results returned defaults to 100, which can
# be overridden by the `_count` parameter up to a maximum limit of 1000. If
# there are additional results, the returned `Bundle` will contain
# pagination links.
# @param [String] parent
# Name of the FHIR store to retrieve resources from.
# @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/ml/
module MlV1
VERSION = 'V1'
REVISION = '20190530'
REVISION = '20190614'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -330,6 +330,11 @@ module Google
# @return [Google::Apis::MlV1::GoogleCloudMlV1BuiltInAlgorithmOutput]
attr_accessor :built_in_algorithm_output
# Output only. End time for the trial.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# An observed value of a metric.
# Corresponds to the JSON property `finalMetric`
# @return [Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutputHyperparameterMetric]
@ -346,6 +351,16 @@ module Google
attr_accessor :is_trial_stopped_early
alias_method :is_trial_stopped_early?, :is_trial_stopped_early
# Output only. Start time for the trial.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# Output only. The detailed state of the trial.
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
# The trial id for these results.
# Corresponds to the JSON property `trialId`
# @return [String]
@ -359,9 +374,12 @@ module Google
def update!(**args)
@all_metrics = args[:all_metrics] if args.key?(:all_metrics)
@built_in_algorithm_output = args[:built_in_algorithm_output] if args.key?(:built_in_algorithm_output)
@end_time = args[:end_time] if args.key?(:end_time)
@final_metric = args[:final_metric] if args.key?(:final_metric)
@hyperparameters = args[:hyperparameters] if args.key?(:hyperparameters)
@is_trial_stopped_early = args[:is_trial_stopped_early] if args.key?(:is_trial_stopped_early)
@start_time = args[:start_time] if args.key?(:start_time)
@state = args[:state] if args.key?(:state)
@trial_id = args[:trial_id] if args.key?(:trial_id)
end
end

View File

@ -348,10 +348,13 @@ module Google
property :built_in_algorithm_output, as: 'builtInAlgorithmOutput', class: Google::Apis::MlV1::GoogleCloudMlV1BuiltInAlgorithmOutput, decorator: Google::Apis::MlV1::GoogleCloudMlV1BuiltInAlgorithmOutput::Representation
property :end_time, as: 'endTime'
property :final_metric, as: 'finalMetric', class: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutputHyperparameterMetric, decorator: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutputHyperparameterMetric::Representation
hash :hyperparameters, as: 'hyperparameters'
property :is_trial_stopped_early, as: 'isTrialStoppedEarly'
property :start_time, as: 'startTime'
property :state, as: 'state'
property :trial_id, as: 'trialId'
end
end

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/remote-build-execution/docs/
module RemotebuildexecutionV1
VERSION = 'V1'
REVISION = '20190612'
REVISION = '20190618'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -1854,7 +1854,6 @@ module Google
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
# Example filter:
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
# This field is currently ignored in all requests.
# Corresponds to the JSON property `filter`
# @return [String]
attr_accessor :filter
@ -1951,7 +1950,7 @@ module Google
# lowercase letters, numeric characters, underscores and dashes.
# International letters are permitted. Keys must start with a letter but
# values are optional.
# This field is currently ignored in all requests.
# There can not be more than 64 labels per resource.
# Corresponds to the JSON property `labels`
# @return [Hash<String,String>]
attr_accessor :labels

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/remote-build-execution/docs/
module RemotebuildexecutionV1alpha
VERSION = 'V1alpha'
REVISION = '20190612'
REVISION = '20190618'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -1835,7 +1835,6 @@ module Google
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
# Example filter:
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
# This field is currently ignored in all requests.
# Corresponds to the JSON property `filter`
# @return [String]
attr_accessor :filter
@ -1932,7 +1931,7 @@ module Google
# lowercase letters, numeric characters, underscores and dashes.
# International letters are permitted. Keys must start with a letter but
# values are optional.
# This field is currently ignored in all requests.
# There can not be more than 64 labels per resource.
# Corresponds to the JSON property `labels`
# @return [Hash<String,String>]
attr_accessor :labels

View File

@ -303,7 +303,6 @@ module Google
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
# Example filter:
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
# This field is currently ignored in all requests.
# @param [String] fields
# Selector specifying which fields to include in a partial response.
# @param [String] quota_user

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/remote-build-execution/docs/
module RemotebuildexecutionV2
VERSION = 'V2'
REVISION = '20190612'
REVISION = '20190618'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -2532,7 +2532,6 @@ module Google
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
# Example filter:
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
# This field is currently ignored in all requests.
# Corresponds to the JSON property `filter`
# @return [String]
attr_accessor :filter
@ -2629,7 +2628,7 @@ module Google
# lowercase letters, numeric characters, underscores and dashes.
# International letters are permitted. Keys must start with a letter but
# values are optional.
# This field is currently ignored in all requests.
# There can not be more than 64 labels per resource.
# Corresponds to the JSON property `labels`
# @return [Hash<String,String>]
attr_accessor :labels

View File

@ -27,7 +27,7 @@ module Google
# @see https://cloud.google.com/service-management/
module ServicemanagementV1
VERSION = 'V1'
REVISION = '20190610'
REVISION = '20190614'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -2627,7 +2627,6 @@ module Google
# Different APIs can support different monitored resource types. APIs generally
# provide a `list` method that returns the monitored resource descriptors used
# by the API.
# Next ID: 10
class MonitoredResourceDescriptor
include Google::Apis::Core::Hashable