Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Version
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Version
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3beta1/classes.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb
Overview
Represents a version of a flow.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
The description of the version.
-
#display_name ⇒ String
Required.
-
#name ⇒ String
Format: projects//locations//agents//flows//versions/.
-
#nlu_settings ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings
Settings related to NLU.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Version
constructor
A new instance of GoogleCloudDialogflowCxV3beta1Version.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Version
Returns a new instance of GoogleCloudDialogflowCxV3beta1Version.
6516 6517 6518 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6516 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Create time of the version.
Corresponds to the JSON property createTime
6486 6487 6488 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6486 def create_time @create_time end |
#description ⇒ String
The description of the version. The maximum length is 500 characters. If
exceeded, the request is rejected.
Corresponds to the JSON property description
6492 6493 6494 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6492 def description @description end |
#display_name ⇒ String
Required. The human-readable name of the version. Limit of 64 characters.
Corresponds to the JSON property displayName
6497 6498 6499 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6497 def display_name @display_name end |
#name ⇒ String
Format: projects//locations//agents//flows//versions/. Version ID is a self-
increasing number generated by Dialogflow upon version creation.
Corresponds to the JSON property name
6503 6504 6505 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6503 def name @name end |
#nlu_settings ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings
Settings related to NLU.
Corresponds to the JSON property nluSettings
6508 6509 6510 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6508 def nlu_settings @nlu_settings end |
#state ⇒ String
Output only. The state of this version. This field is read-only and cannot be
set by create and update methods.
Corresponds to the JSON property state
6514 6515 6516 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6514 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6521 6522 6523 6524 6525 6526 6527 6528 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6521 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings) @state = args[:state] if args.key?(:state) end |