Class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#current_revision ⇒ String
[Output Only] Current instances' config revision.
-
#effective ⇒ Boolean
(also: #effective?)
[Output Only] A bit indicating whether instances' config has been applied to all managed instances in managed instance 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.
15903 15904 15905 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15903 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_revision ⇒ String
[Output Only] Current instances' config revision. This value is in RFC3339
text format.
Corresponds to the JSON property currentRevision
15894 15895 15896 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15894 def current_revision @current_revision end |
#effective ⇒ Boolean Also known as: effective?
[Output Only] A bit indicating whether instances' config has been applied to
all managed instances in managed instance group.
Corresponds to the JSON property effective
15900 15901 15902 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15900 def effective @effective end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15908 15909 15910 15911 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15908 def update!(**args) @current_revision = args[:current_revision] if args.key?(:current_revision) @effective = args[:effective] if args.key?(:effective) end |