Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportFlowRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportFlowRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
The request message for Flows.ExportFlow.
Instance Attribute Summary collapse
-
#flow_uri ⇒ String
Optional.
-
#include_referenced_flows ⇒ Boolean
(also: #include_referenced_flows?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportFlowRequest
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExportFlowRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportFlowRequest
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportFlowRequest.
7050 7051 7052 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7050 def initialize(**args) update!(**args) end |
Instance Attribute Details
#flow_uri ⇒ String
Optional. The Google Cloud Storage
URI to export the flow to. The format of this URI must be gs:///
. If left
unspecified, the serialized flow is returned inline. Dialogflow performs a
write operation for the Cloud Storage object on the caller's behalf, so your
request authentication must have write permissions for the object. For more
information, see Dialogflow access control.
Corresponds to the JSON property flowUri
7042 7043 7044 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7042 def flow_uri @flow_uri end |
#include_referenced_flows ⇒ Boolean Also known as: include_referenced_flows?
Optional. Whether to export flows referenced by the specified flow.
Corresponds to the JSON property includeReferencedFlows
7047 7048 7049 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7047 def include_referenced_flows @include_referenced_flows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7055 7056 7057 7058 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7055 def update!(**args) @flow_uri = args[:flow_uri] if args.key?(:flow_uri) @include_referenced_flows = args[:include_referenced_flows] if args.key?(:include_referenced_flows) end |