Class: Google::Cloud::Dialogflow::CX::V3::Version
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::CX::V3::Version
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/cx/v3/version.rb
Overview
Represents a version of a flow.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#description ⇒ ::String
The description of the version.
-
#display_name ⇒ ::String
Required.
-
#name ⇒ ::String
Format: projects/
/locations/ /agents/ /flows/ /versions/ . -
#nlu_settings ⇒ ::Google::Cloud::Dialogflow::CX::V3::NluSettings
readonly
Output only.
-
#state ⇒ ::Google::Cloud::Dialogflow::CX::V3::Version::State
readonly
Output only.
Instance Attribute Details
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Create time of the version.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/version.rb', line 61 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The state of the version. module State # Not specified. This value is not used. STATE_UNSPECIFIED = 0 # Version is not ready to serve (e.g. training is running). RUNNING = 1 # Training has succeeded and this version is ready to serve. SUCCEEDED = 2 # Version training failed. FAILED = 3 end end |
#description ⇒ ::String
Returns The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/version.rb', line 61 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The state of the version. module State # Not specified. This value is not used. STATE_UNSPECIFIED = 0 # Version is not ready to serve (e.g. training is running). RUNNING = 1 # Training has succeeded and this version is ready to serve. SUCCEEDED = 2 # Version training failed. FAILED = 3 end end |
#display_name ⇒ ::String
Returns Required. The human-readable name of the version. Limit of 64 characters.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/version.rb', line 61 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The state of the version. module State # Not specified. This value is not used. STATE_UNSPECIFIED = 0 # Version is not ready to serve (e.g. training is running). RUNNING = 1 # Training has succeeded and this version is ready to serve. SUCCEEDED = 2 # Version training failed. FAILED = 3 end end |
#name ⇒ ::String
Returns Format:
projects/
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/version.rb', line 61 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The state of the version. module State # Not specified. This value is not used. STATE_UNSPECIFIED = 0 # Version is not ready to serve (e.g. training is running). RUNNING = 1 # Training has succeeded and this version is ready to serve. SUCCEEDED = 2 # Version training failed. FAILED = 3 end end |
#nlu_settings ⇒ ::Google::Cloud::Dialogflow::CX::V3::NluSettings (readonly)
Returns Output only. The NLU settings of the flow at version creation.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/version.rb', line 61 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The state of the version. module State # Not specified. This value is not used. STATE_UNSPECIFIED = 0 # Version is not ready to serve (e.g. training is running). RUNNING = 1 # Training has succeeded and this version is ready to serve. SUCCEEDED = 2 # Version training failed. FAILED = 3 end end |
#state ⇒ ::Google::Cloud::Dialogflow::CX::V3::Version::State (readonly)
Returns Output only. The state of this version. This field is read-only and cannot be set by create and update methods.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/version.rb', line 61 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The state of the version. module State # Not specified. This value is not used. STATE_UNSPECIFIED = 0 # Version is not ready to serve (e.g. training is running). RUNNING = 1 # Training has succeeded and this version is ready to serve. SUCCEEDED = 2 # Version training failed. FAILED = 3 end end |