Class: Google::Apis::ComputeV1::InstancesScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::InstancesScopedList
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
-
#instances ⇒ Array<Google::Apis::ComputeV1::Instance>
[Output Only] List of instances contained in this scope.
-
#warning ⇒ Google::Apis::ComputeV1::InstancesScopedList::Warning
[Output Only] Informational warning which replaces the list of instances when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesScopedList
constructor
A new instance of InstancesScopedList.
-
#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) ⇒ InstancesScopedList
Returns a new instance of InstancesScopedList
8531 8532 8533 |
# File 'generated/google/apis/compute_v1/classes.rb', line 8531 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instances ⇒ Array<Google::Apis::ComputeV1::Instance>
[Output Only] List of instances contained in this scope.
Corresponds to the JSON property instances
8523 8524 8525 |
# File 'generated/google/apis/compute_v1/classes.rb', line 8523 def instances @instances end |
#warning ⇒ Google::Apis::ComputeV1::InstancesScopedList::Warning
[Output Only] Informational warning which replaces the list of instances when
the list is empty.
Corresponds to the JSON property warning
8529 8530 8531 |
# File 'generated/google/apis/compute_v1/classes.rb', line 8529 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8536 8537 8538 8539 |
# File 'generated/google/apis/compute_v1/classes.rb', line 8536 def update!(**args) @instances = args[:instances] if args.key?(:instances) @warning = args[:warning] if args.key?(:warning) end |