Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3beta1/classes.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb
Overview
The request message for Agents.ExportAgent.
Instance Attribute Summary collapse
-
#agent_uri ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportAgentRequest
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExportAgentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportAgentRequest
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportAgentRequest.
3160 3161 3162 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 3160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_uri ⇒ String
Optional. The Google Cloud Storage
URI to export the agent to. The format of this URI must be gs:///
. If left
unspecified, the serialized agent is returned inline.
Corresponds to the JSON property agentUri
3158 3159 3160 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 3158 def agent_uri @agent_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3165 3166 3167 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 3165 def update!(**args) @agent_uri = args[:agent_uri] if args.key?(:agent_uri) end |