Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Version
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Version
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
You can create multiple versions of your agent and publish them to separate environments. When you edit an agent, you are editing the draft agent. At any point, you can save the draft agent as an agent version, which is an immutable snapshot of your agent. When you save the draft agent, it is published to the default environment. When you create agent versions, you can publish them to custom environments. You can create a variety of custom environments for: - testing - development - production - etc. For more information, see the versions and environments guide.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#name ⇒ String
Output only.
-
#status ⇒ String
Output only.
-
#version_number ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Version
constructor
A new instance of GoogleCloudDialogflowV2beta1Version.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Version
Returns a new instance of GoogleCloudDialogflowV2beta1Version.
20318 20319 20320 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20318 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The creation time of this version. This field is read-only, i.e.,
it cannot be set by create and update methods.
Corresponds to the JSON property createTime
20293 20294 20295 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20293 def create_time @create_time end |
#description ⇒ String
Optional. The developer-provided description of this version.
Corresponds to the JSON property description
20298 20299 20300 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20298 def description @description end |
#name ⇒ String
Output only. The unique identifier of this agent version. Supported formats: -
projects//agent/versions/ - projects//locations//agent/versions/
Corresponds to the JSON property name
20304 20305 20306 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20304 def name @name end |
#status ⇒ String
Output only. The status of this version. This field is read-only and cannot be
set by create and update methods.
Corresponds to the JSON property status
20310 20311 20312 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20310 def status @status end |
#version_number ⇒ Fixnum
Output only. The sequential number of this version. This field is read-only
which means it cannot be set by create and update methods.
Corresponds to the JSON property versionNumber
20316 20317 20318 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20316 def version_number @version_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20323 20324 20325 20326 20327 20328 20329 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20323 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @status = args[:status] if args.key?(:status) @version_number = args[:version_number] if args.key?(:version_number) end |