class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportFlowRequest
The request message for Flows.ImportFlow.
Attributes
flow_content[RW]
Uncompressed raw byte content for flow. Corresponds to the JSON property `flowContent` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
flow_uri[RW]
The [Google Cloud Storage](cloud.google.com/storage/docs/) URI to import flow from. The format of this URI must be `gs:///`. Corresponds to the JSON property `flowUri` @return [String]
import_option[RW]
Flow import mode. If not specified, `KEEP` is assumed. Corresponds to the JSON property `importOption` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 2388 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 2393 def update!(**args) @flow_content = args[:flow_content] if args.key?(:flow_content) @flow_uri = args[:flow_uri] if args.key?(:flow_uri) @import_option = args[:import_option] if args.key?(:import_option) end