Class: Google::Apis::ComputeAlpha::AutoscalersScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::AutoscalersScopedList
- 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
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
-
#autoscalers ⇒ Array<Google::Apis::ComputeAlpha::Autoscaler>
[Output Only] A list of autoscalers contained in this scope.
-
#warning ⇒ Google::Apis::ComputeAlpha::AutoscalersScopedList::Warning
[Output Only] Informational warning which replaces the list of autoscalers when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AutoscalersScopedList
constructor
A new instance of AutoscalersScopedList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AutoscalersScopedList
Returns a new instance of AutoscalersScopedList.
2553 2554 2555 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2553 def initialize(**args) update!(**args) end |
Instance Attribute Details
#autoscalers ⇒ Array<Google::Apis::ComputeAlpha::Autoscaler>
[Output Only] A list of autoscalers contained in this scope.
Corresponds to the JSON property autoscalers
2545 2546 2547 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2545 def autoscalers @autoscalers end |
#warning ⇒ Google::Apis::ComputeAlpha::AutoscalersScopedList::Warning
[Output Only] Informational warning which replaces the list of autoscalers
when the list is empty.
Corresponds to the JSON property warning
2551 2552 2553 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2551 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2558 2559 2560 2561 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2558 def update!(**args) @autoscalers = args[:autoscalers] if args.key?(:autoscalers) @warning = args[:warning] if args.key?(:warning) end |