Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ExportAgentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ExportAgentRequest
- 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 Agents.ExportAgent.
Instance Attribute Summary collapse
-
#agent_uri ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ExportAgentRequest
constructor
A new instance of GoogleCloudDialogflowV2ExportAgentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ExportAgentRequest
Returns a new instance of GoogleCloudDialogflowV2ExportAgentRequest
674 675 676 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 674 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_uri ⇒ String
Optional. The Google Cloud Storage URI to export the agent to.
Note: The URI must start with
"gs://". If left unspecified, the serialized agent is returned inline.
Corresponds to the JSON property agentUri
672 673 674 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 672 def agent_uri @agent_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
679 680 681 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 679 def update!(**args) @agent_uri = args[:agent_uri] if args.key?(:agent_uri) end |