Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportFlowRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportFlowRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
The request message for Flows.ImportFlow.
Instance Attribute Summary collapse
-
#flow_content ⇒ String
Uncompressed raw byte content for flow.
-
#flow_import_strategy ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowImportStrategy
The flow import strategy used for resource conflict resolution associated with an ImportFlowRequest.
-
#flow_uri ⇒ String
The Google Cloud Storage URI to import flow from.
-
#import_option ⇒ String
Flow import mode.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportFlowRequest
constructor
A new instance of GoogleCloudDialogflowCxV3ImportFlowRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportFlowRequest
Returns a new instance of GoogleCloudDialogflowCxV3ImportFlowRequest.
4113 4114 4115 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#flow_content ⇒ String
Uncompressed raw byte content for flow.
Corresponds to the JSON property flowContent
NOTE: Values are automatically base64 encoded/decoded in the client library.
4090 4091 4092 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4090 def flow_content @flow_content end |
#flow_import_strategy ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowImportStrategy
The flow import strategy used for resource conflict resolution associated with
an ImportFlowRequest.
Corresponds to the JSON property flowImportStrategy
4096 4097 4098 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4096 def flow_import_strategy @flow_import_strategy end |
#flow_uri ⇒ String
The Google Cloud Storage URI to
import flow from. The format of this URI must be gs:///
. Dialogflow performs
a read operation for the Cloud Storage object on the caller's behalf, so your
request authentication must have read permissions for the object. For more
information, see Dialogflow access control.
Corresponds to the JSON property flowUri
4106 4107 4108 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4106 def flow_uri @flow_uri end |
#import_option ⇒ String
Flow import mode. If not specified, KEEP
is assumed.
Corresponds to the JSON property importOption
4111 4112 4113 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4111 def import_option @import_option end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4118 4119 4120 4121 4122 4123 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4118 def update!(**args) @flow_content = args[:flow_content] if args.key?(:flow_content) @flow_import_strategy = args[:flow_import_strategy] if args.key?(:flow_import_strategy) @flow_uri = args[:flow_uri] if args.key?(:flow_uri) @import_option = args[:import_option] if args.key?(:import_option) end |