Class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusAllInstancesConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceGroupManagerStatusAllInstancesConfig
- 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
Instance Attribute Summary collapse
-
#current_revision ⇒ String
Output only.
-
#effective ⇒ Boolean
(also: #effective?)
Output only.
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.
24872 24873 24874 |
# File 'lib/google/apis/compute_beta/classes.rb', line 24872 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
24863 24864 24865 |
# File 'lib/google/apis/compute_beta/classes.rb', line 24863 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
24869 24870 24871 |
# File 'lib/google/apis/compute_beta/classes.rb', line 24869 def effective @effective end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24877 24878 24879 24880 |
# File 'lib/google/apis/compute_beta/classes.rb', line 24877 def update!(**args) @current_revision = args[:current_revision] if args.key?(:current_revision) @effective = args[:effective] if args.key?(:effective) end |