Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutState
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
State of the auto-rollout process.
Instance Attribute Summary collapse
-
#start_time ⇒ String
Start time of the current step.
-
#step ⇒ String
Display name of the current auto rollout step.
-
#step_index ⇒ Fixnum
Index of the current step in the auto rollout steps list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1RolloutState
constructor
A new instance of GoogleCloudDialogflowCxV3beta1RolloutState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1RolloutState
Returns a new instance of GoogleCloudDialogflowCxV3beta1RolloutState.
11965 11966 11967 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11965 def initialize(**args) update!(**args) end |
Instance Attribute Details
#start_time ⇒ String
Start time of the current step.
Corresponds to the JSON property startTime
11953 11954 11955 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11953 def start_time @start_time end |
#step ⇒ String
Display name of the current auto rollout step.
Corresponds to the JSON property step
11958 11959 11960 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11958 def step @step end |
#step_index ⇒ Fixnum
Index of the current step in the auto rollout steps list.
Corresponds to the JSON property stepIndex
11963 11964 11965 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11963 def step_index @step_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11970 11971 11972 11973 11974 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11970 def update!(**args) @start_time = args[:start_time] if args.key?(:start_time) @step = args[:step] if args.key?(:step) @step_index = args[:step_index] if args.key?(:step_index) end |