Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ExportAgentRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ExportAgentRequest

Returns a new instance of GoogleCloudDialogflowV2ExportAgentRequest.



922
923
924
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 922

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#agent_uriString

Required. The Google Cloud Storage URI to export the agent to. The format of this URI must be gs://<bucket-name>/<object-name>. If left unspecified, the serialized agent is returned inline. Corresponds to the JSON property agentUri

Returns:

  • (String)


920
921
922
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 920

def agent_uri
  @agent_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



927
928
929
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 927

def update!(**args)
  @agent_uri = args[:agent_uri] if args.key?(:agent_uri)
end