Skip to content

Commit

Permalink
Autogenerated update (2018-10-12)
Browse files Browse the repository at this point in the history
Update:
- content_v2
- dialogflow_v2
- dialogflow_v2beta1
- monitoring_v3
- tpu_v1
- tpu_v1alpha1
  • Loading branch information
googleapis-publisher committed Oct 12, 2018
1 parent 325d59f commit a28eebf
Show file tree
Hide file tree
Showing 19 changed files with 3,612 additions and 139 deletions.
267 changes: 267 additions & 0 deletions api_names_out.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion generated/google/apis/content_v2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module Apis
# @see https://developers.google.com/shopping-content
module ContentV2
VERSION = 'V2'
REVISION = '20181002'
REVISION = '20181009'

# Manage your product listings and accounts for Google Shopping
AUTH_CONTENT = 'https://www.googleapis.com/auth/content'
Expand Down
6 changes: 6 additions & 0 deletions generated/google/apis/content_v2/classes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,11 @@ class AccountStatusAccountLevelIssue
# @return [String]
attr_accessor :detail

# The URL of a web page to help resolving this issue.
# Corresponds to the JSON property `documentation`
# @return [String]
attr_accessor :documentation

# Issue identifier.
# Corresponds to the JSON property `id`
# @return [String]
Expand All @@ -408,6 +413,7 @@ def update!(**args)
@country = args[:country] if args.key?(:country)
@destination = args[:destination] if args.key?(:destination)
@detail = args[:detail] if args.key?(:detail)
@documentation = args[:documentation] if args.key?(:documentation)
@id = args[:id] if args.key?(:id)
@severity = args[:severity] if args.key?(:severity)
@title = args[:title] if args.key?(:title)
Expand Down
1 change: 1 addition & 0 deletions generated/google/apis/content_v2/representations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1705,6 +1705,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :country, as: 'country'
property :destination, as: 'destination'
property :detail, as: 'detail'
property :documentation, as: 'documentation'
property :id, as: 'id'
property :severity, as: 'severity'
property :title, as: 'title'
Expand Down
2 changes: 1 addition & 1 deletion generated/google/apis/dialogflow_v2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module Apis
# @see https://cloud.google.com/dialogflow-enterprise/
module DialogflowV2
VERSION = 'V2'
REVISION = '20180920'
REVISION = '20181009'

# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
Expand Down
14 changes: 8 additions & 6 deletions generated/google/apis/dialogflow_v2/classes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ class GoogleCloudDialogflowV2Context

# Optional. The number of conversational query requests after which the
# context expires. If set to `0` (the default) the context expires
# immediately. Contexts expire automatically after 10 minutes even if there
# immediately. Contexts expire automatically after 20 minutes even if there
# are no matching queries.
# Corresponds to the JSON property `lifespanCount`
# @return [Fixnum]
Expand Down Expand Up @@ -535,7 +535,7 @@ class GoogleCloudDialogflowV2EntityType
# @return [String]
attr_accessor :auto_expansion_mode

# Required. The name of the entity.
# Required. The name of the entity type.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
Expand Down Expand Up @@ -1981,9 +1981,9 @@ class GoogleCloudDialogflowV2QueryParameters
attr_accessor :reset_contexts
alias_method :reset_contexts?, :reset_contexts

# Optional. The collection of session entity types to replace or extend
# developer entities with for this query only. The entity synonyms apply
# to all languages.
# Optional. Additional session entity types to replace or extend developer
# entity types with. The entity synonyms apply to all languages and persist
# for the session of this query.
# Corresponds to the JSON property `sessionEntityTypes`
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SessionEntityType>]
attr_accessor :session_entity_types
Expand Down Expand Up @@ -2229,6 +2229,8 @@ class GoogleCloudDialogflowV2SessionEntityType
# Required. The unique identifier of this session entity type. Format:
# `projects/<Project ID>/agent/sessions/<Session ID>/entityTypes/<Entity Type
# Display Name>`.
# `<Entity Type Display Name>` must be the display name of an existing entity
# type in the same agent that will be overridden or supplemented.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
Expand Down Expand Up @@ -2497,7 +2499,7 @@ class GoogleCloudDialogflowV2beta1EntityType
# @return [String]
attr_accessor :auto_expansion_mode

# Required. The name of the entity.
# Required. The name of the entity type.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
Expand Down
5 changes: 5 additions & 0 deletions generated/google/apis/dialogflow_v2/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1010,6 +1010,7 @@ def detect_project_agent_session_intent(session, google_cloud_dialogflow_v2_dete
end

# Creates a context.
# If the specified context already exists, overrides the context.
# @param [String] parent
# Required. The session to create a context for.
# Format: `projects/<Project ID>/agent/sessions/<Session ID>`.
Expand Down Expand Up @@ -1181,6 +1182,8 @@ def patch_project_agent_session_context(name, google_cloud_dialogflow_v2_context
end

# Creates a session entity type.
# If the specified session entity type already exists, overrides the session
# entity type.
# @param [String] parent
# Required. The session to create a session entity type for.
# Format: `projects/<Project ID>/agent/sessions/<Session ID>`.
Expand Down Expand Up @@ -1321,6 +1324,8 @@ def list_project_agent_session_entity_types(parent, page_size: nil, page_token:
# Required. The unique identifier of this session entity type. Format:
# `projects/<Project ID>/agent/sessions/<Session ID>/entityTypes/<Entity Type
# Display Name>`.
# `<Entity Type Display Name>` must be the display name of an existing entity
# type in the same agent that will be overridden or supplemented.
# @param [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SessionEntityType] google_cloud_dialogflow_v2_session_entity_type_object
# @param [String] update_mask
# Optional. The mask to control which fields get updated.
Expand Down
2 changes: 1 addition & 1 deletion generated/google/apis/dialogflow_v2beta1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module Apis
# @see https://cloud.google.com/dialogflow-enterprise/
module DialogflowV2beta1
VERSION = 'V2beta1'
REVISION = '20180920'
REVISION = '20181009'

# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
Expand Down
Loading

0 comments on commit a28eebf

Please sign in to comment.