Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowImportStrategy
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowImportStrategy
- 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 flow import strategy used for resource conflict resolution associated with an ImportFlowRequest.
Instance Attribute Summary collapse
-
#global_import_strategy ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FlowImportStrategy
constructor
A new instance of GoogleCloudDialogflowCxV3FlowImportStrategy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FlowImportStrategy
Returns a new instance of GoogleCloudDialogflowCxV3FlowImportStrategy.
3069 3070 3071 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3069 def initialize(**args) update!(**args) end |
Instance Attribute Details
#global_import_strategy ⇒ String
Optional. Import strategy for resource conflict resolution, applied globally
throughout the flow. It will be applied for all display name conflicts in the
imported content. If not specified, 'CREATE_NEW' is assumed.
Corresponds to the JSON property globalImportStrategy
3067 3068 3069 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3067 def global_import_strategy @global_import_strategy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3074 3075 3076 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3074 def update!(**args) @global_import_strategy = args[:global_import_strategy] if args.key?(:global_import_strategy) end |