class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportAgentRequest
The request message for Agents.ExportAgent.
Attributes
agent_uri[RW]
Optional. The [Google Cloud Storage](cloud.google.com/storage/docs/) 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` @return [String]
environment[RW]
Optional. Environment name. If not set, draft environment is assumed. Format: ` projects//locations//agents//environments/`. Corresponds to the JSON property `environment` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 1631 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 1636 def update!(**args) @agent_uri = args[:agent_uri] if args.key?(:agent_uri) @environment = args[:environment] if args.key?(:environment) end