Class: Google::Apis::ComputeV1::InstanceGroupManagerStatusAllInstancesConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::InstanceGroupManagerStatusAllInstancesConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#current_revision ⇒ String
[Output Only] Current all-instances configuration revision.
-
#effective ⇒ Boolean
(also: #effective?)
[Output Only] A bit indicating whether this configuration has been applied to all managed instances in the group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerStatusAllInstancesConfig
constructor
A new instance of InstanceGroupManagerStatusAllInstancesConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerStatusAllInstancesConfig
Returns a new instance of InstanceGroupManagerStatusAllInstancesConfig.
16010 16011 16012 |
# File 'lib/google/apis/compute_v1/classes.rb', line 16010 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_revision ⇒ String
[Output Only] Current all-instances configuration revision. This value is in
RFC3339 text format.
Corresponds to the JSON property currentRevision
16001 16002 16003 |
# File 'lib/google/apis/compute_v1/classes.rb', line 16001 def current_revision @current_revision end |
#effective ⇒ Boolean Also known as: effective?
[Output Only] A bit indicating whether this configuration has been applied to
all managed instances in the group.
Corresponds to the JSON property effective
16007 16008 16009 |
# File 'lib/google/apis/compute_v1/classes.rb', line 16007 def effective @effective end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16015 16016 16017 16018 |
# File 'lib/google/apis/compute_v1/classes.rb', line 16015 def update!(**args) @current_revision = args[:current_revision] if args.key?(:current_revision) @effective = args[:effective] if args.key?(:effective) end |