Class: Google::Apis::ComputeAlpha::BackendServicesScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::BackendServicesScopedList
- 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
-
#backend_services ⇒ Array<Google::Apis::ComputeAlpha::BackendService>
A list of BackendServices contained in this scope.
-
#warning ⇒ Google::Apis::ComputeAlpha::BackendServicesScopedList::Warning
Informational warning which replaces the list of backend services when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackendServicesScopedList
constructor
A new instance of BackendServicesScopedList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BackendServicesScopedList
Returns a new instance of BackendServicesScopedList.
4406 4407 4408 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4406 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backend_services ⇒ Array<Google::Apis::ComputeAlpha::BackendService>
A list of BackendServices contained in this scope.
Corresponds to the JSON property backendServices
4398 4399 4400 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4398 def backend_services @backend_services end |
#warning ⇒ Google::Apis::ComputeAlpha::BackendServicesScopedList::Warning
Informational warning which replaces the list of backend services when the
list is empty.
Corresponds to the JSON property warning
4404 4405 4406 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4404 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4411 4412 4413 4414 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4411 def update!(**args) @backend_services = args[:backend_services] if args.key?(:backend_services) @warning = args[:warning] if args.key?(:warning) end |