Class: Google::Apis::CloudcontrolspartnerV1::WorkloadOnboardingStep
- Inherits:
-
Object
- Object
- Google::Apis::CloudcontrolspartnerV1::WorkloadOnboardingStep
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudcontrolspartner_v1/classes.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb
Overview
Container for workload onboarding information.
Instance Attribute Summary collapse
-
#completion_state ⇒ String
Output only.
-
#completion_time ⇒ String
The completion time of the onboarding step.
-
#start_time ⇒ String
The starting time of the onboarding step.
-
#step ⇒ String
The onboarding step.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkloadOnboardingStep
constructor
A new instance of WorkloadOnboardingStep.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkloadOnboardingStep
Returns a new instance of WorkloadOnboardingStep.
937 938 939 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 937 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completion_state ⇒ String
Output only. The completion state of the onboarding step.
Corresponds to the JSON property completionState
920 921 922 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 920 def completion_state @completion_state end |
#completion_time ⇒ String
The completion time of the onboarding step.
Corresponds to the JSON property completionTime
925 926 927 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 925 def completion_time @completion_time end |
#start_time ⇒ String
The starting time of the onboarding step.
Corresponds to the JSON property startTime
930 931 932 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 930 def start_time @start_time end |
#step ⇒ String
The onboarding step.
Corresponds to the JSON property step
935 936 937 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 935 def step @step end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
942 943 944 945 946 947 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 942 def update!(**args) @completion_state = args[:completion_state] if args.key?(:completion_state) @completion_time = args[:completion_time] if args.key?(:completion_time) @start_time = args[:start_time] if args.key?(:start_time) @step = args[:step] if args.key?(:step) end |