Class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperation
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
Bulk instance operation is the creation of VMs in a MIG when the targetSizePolicy.mode is set to BULK.
Instance Attribute Summary collapse
-
#in_progress ⇒ Boolean
(also: #in_progress?)
Output only.
-
#last_progress_check ⇒ Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerStatusBulkInstanceOperation
constructor
A new instance of InstanceGroupManagerStatusBulkInstanceOperation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerStatusBulkInstanceOperation
Returns a new instance of InstanceGroupManagerStatusBulkInstanceOperation.
25994 25995 25996 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25994 def initialize(**args) update!(**args) end |
Instance Attribute Details
#in_progress ⇒ Boolean Also known as: in_progress?
Output only. Informs whether bulk instance operation is in progress.
Corresponds to the JSON property inProgress
25985 25986 25987 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25985 def in_progress @in_progress end |
#last_progress_check ⇒ Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck
Output only. Information from the last progress check of bulk instance
operation.
Corresponds to the JSON property lastProgressCheck
25992 25993 25994 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25992 def last_progress_check @last_progress_check end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25999 26000 26001 26002 |
# File 'lib/google/apis/compute_beta/classes.rb', line 25999 def update!(**args) @in_progress = args[:in_progress] if args.key?(:in_progress) @last_progress_check = args[:last_progress_check] if args.key?(:last_progress_check) end |