Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2BatchUpdateIntentsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2BatchUpdateIntentsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb
Overview
The request message for Intents.BatchUpdateIntents.
Instance Attribute Summary collapse
-
#intent_batch_inline ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentBatch
This message is a wrapper around a collection of intents.
-
#intent_batch_uri ⇒ String
The URI to a Google Cloud Storage file containing intents to update or create.
-
#intent_view ⇒ String
Optional.
-
#language_code ⇒ String
Optional.
-
#update_mask ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2BatchUpdateIntentsRequest
constructor
A new instance of GoogleCloudDialogflowV2BatchUpdateIntentsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2BatchUpdateIntentsRequest
Returns a new instance of GoogleCloudDialogflowV2BatchUpdateIntentsRequest
348 349 350 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 348 def initialize(**args) update!(**args) end |
Instance Attribute Details
#intent_batch_inline ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentBatch
This message is a wrapper around a collection of intents.
Corresponds to the JSON property intentBatchInline
320 321 322 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 320 def intent_batch_inline @intent_batch_inline end |
#intent_batch_uri ⇒ String
The URI to a Google Cloud Storage file containing intents to update or
create. The file format can either be a serialized proto (of IntentBatch
type) or JSON object. Note: The URI must start with "gs://".
Corresponds to the JSON property intentBatchUri
327 328 329 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 327 def intent_batch_uri @intent_batch_uri end |
#intent_view ⇒ String
Optional. The resource view to apply to the returned intent.
Corresponds to the JSON property intentView
332 333 334 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 332 def intent_view @intent_view end |
#language_code ⇒ String
Optional. The language of training phrases, parameters and rich messages
defined in intents
. If not specified, the agent's default language is
used. More than a dozen
languages are supported.
Note: languages must be enabled in the agent, before they can be used.
Corresponds to the JSON property languageCode
341 342 343 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 341 def language_code @language_code end |
#update_mask ⇒ String
Optional. The mask to control which fields get updated.
Corresponds to the JSON property updateMask
346 347 348 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 346 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
353 354 355 356 357 358 359 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 353 def update!(**args) @intent_batch_inline = args[:intent_batch_inline] if args.key?(:intent_batch_inline) @intent_batch_uri = args[:intent_batch_uri] if args.key?(:intent_batch_uri) @intent_view = args[:intent_view] if args.key?(:intent_view) @language_code = args[:language_code] if args.key?(:language_code) @update_mask = args[:update_mask] if args.key?(:update_mask) end |