Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Deployment
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Deployment
- 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
Instance Attribute Summary collapse
-
#end_time ⇒ String
Corresponds to the JSON property
endTime. -
#flow_version ⇒ String
Corresponds to the JSON property
flowVersion. -
#name ⇒ String
Corresponds to the JSON property
name. -
#result ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DeploymentResult
Corresponds to the JSON property
result. -
#start_time ⇒ String
Corresponds to the JSON property
startTime. -
#state ⇒ String
Corresponds to the JSON property
state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Deployment
constructor
A new instance of GoogleCloudDialogflowCxV3Deployment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Deployment
Returns a new instance of GoogleCloudDialogflowCxV3Deployment.
1684 1685 1686 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1684 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Corresponds to the JSON property endTime
1657 1658 1659 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1657 def end_time @end_time end |
#flow_version ⇒ String
Corresponds to the JSON property flowVersion
1662 1663 1664 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1662 def flow_version @flow_version end |
#name ⇒ String
Corresponds to the JSON property name
1667 1668 1669 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1667 def name @name end |
#result ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DeploymentResult
Corresponds to the JSON property result
1672 1673 1674 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1672 def result @result end |
#start_time ⇒ String
Corresponds to the JSON property startTime
1677 1678 1679 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1677 def start_time @start_time end |
#state ⇒ String
Corresponds to the JSON property state
1682 1683 1684 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1682 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1689 1690 1691 1692 1693 1694 1695 1696 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1689 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @flow_version = args[:flow_version] if args.key?(:flow_version) @name = args[:name] if args.key?(:name) @result = args[:result] if args.key?(:result) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) end |