Class: Google::Apis::ComputeBeta::InstanceGroupManagerPendingActionsSummary
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceGroupManagerPendingActionsSummary
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#creating ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed.
-
#deleting ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed.
-
#recreating ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed.
-
#restarting ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerPendingActionsSummary
constructor
A new instance of InstanceGroupManagerPendingActionsSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerPendingActionsSummary
Returns a new instance of InstanceGroupManagerPendingActionsSummary
11322 11323 11324 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11322 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creating ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed. Prefer using the
status field instead. Please contact cloud-updater-feedback@google.com to
leave feedback if your workload relies on this field. [Output Only] The number
of instances in the managed instance group that are pending to be created.
Corresponds to the JSON property creating
11296 11297 11298 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11296 def creating @creating end |
#deleting ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed. Prefer using the
status field instead. Please contact cloud-updater-feedback@google.com to
leave feedback if your workload relies on this field. [Output Only] The number
of instances in the managed instance group that are pending to be deleted.
Corresponds to the JSON property deleting
11304 11305 11306 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11304 def deleting @deleting end |
#recreating ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed. Prefer using the
status field instead. Please contact cloud-updater-feedback@google.com to
leave feedback if your workload relies on this field. [Output Only] The number
of instances in the managed instance group that are pending to be recreated.
Corresponds to the JSON property recreating
11312 11313 11314 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11312 def recreating @recreating end |
#restarting ⇒ Fixnum
[Deprecated] This field is deprecated and will be removed. Prefer using the
status field instead. Please contact cloud-updater-feedback@google.com to
leave feedback if your workload relies on this field. [Output Only] The number
of instances in the managed instance group that are pending to be restarted.
Corresponds to the JSON property restarting
11320 11321 11322 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11320 def restarting @restarting end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11327 11328 11329 11330 11331 11332 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11327 def update!(**args) @creating = args[:creating] if args.key?(:creating) @deleting = args[:deleting] if args.key?(:deleting) @recreating = args[:recreating] if args.key?(:recreating) @restarting = args[:restarting] if args.key?(:restarting) end |