Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
The request message for Intents.ExportIntents.
Instance Attribute Summary collapse
-
#data_format ⇒ String
Optional.
-
#intents ⇒ Array<String>
Required.
-
#intents_content_inline ⇒ Boolean
(also: #intents_content_inline?)
Optional.
-
#intents_uri ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExportIntentsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportIntentsRequest.
7133 7134 7135 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7133 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_format ⇒ String
Optional. The data format of the exported intents. If not specified, BLOB
is
assumed.
Corresponds to the JSON property dataFormat
7109 7110 7111 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7109 def data_format @data_format end |
#intents ⇒ Array<String>
Required. The name of the intents to export. Format: projects//locations//
agents//intents/
.
Corresponds to the JSON property intents
7115 7116 7117 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7115 def intents @intents end |
#intents_content_inline ⇒ Boolean Also known as: intents_content_inline?
Optional. The option to return the serialized intents inline.
Corresponds to the JSON property intentsContentInline
7120 7121 7122 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7120 def intents_content_inline @intents_content_inline end |
#intents_uri ⇒ String
Optional. The Google Cloud Storage
URI to export the intents to. The format of this URI must be gs:///
.
Dialogflow performs a write operation for the Cloud Storage object on the
caller's behalf, so your request authentication must have write permissions
for the object. For more information, see Dialogflow access control.
Corresponds to the JSON property intentsUri
7131 7132 7133 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7131 def intents_uri @intents_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7138 7139 7140 7141 7142 7143 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7138 def update!(**args) @data_format = args[:data_format] if args.key?(:data_format) @intents = args[:intents] if args.key?(:intents) @intents_content_inline = args[:intents_content_inline] if args.key?(:intents_content_inline) @intents_uri = args[:intents_uri] if args.key?(:intents_uri) end |