Class: Google::Apis::ComputeBeta::HealthChecksScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::HealthChecksScopedList
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
-
#health_checks ⇒ Array<Google::Apis::ComputeBeta::HealthCheck>
A list of HealthChecks contained in this scope.
-
#warning ⇒ Google::Apis::ComputeBeta::HealthChecksScopedList::Warning
Informational warning which replaces the list of backend services when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HealthChecksScopedList
constructor
A new instance of HealthChecksScopedList.
-
#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) ⇒ HealthChecksScopedList
Returns a new instance of HealthChecksScopedList
8303 8304 8305 |
# File 'generated/google/apis/compute_beta/classes.rb', line 8303 def initialize(**args) update!(**args) end |
Instance Attribute Details
#health_checks ⇒ Array<Google::Apis::ComputeBeta::HealthCheck>
A list of HealthChecks contained in this scope.
Corresponds to the JSON property healthChecks
8295 8296 8297 |
# File 'generated/google/apis/compute_beta/classes.rb', line 8295 def health_checks @health_checks end |
#warning ⇒ Google::Apis::ComputeBeta::HealthChecksScopedList::Warning
Informational warning which replaces the list of backend services when the
list is empty.
Corresponds to the JSON property warning
8301 8302 8303 |
# File 'generated/google/apis/compute_beta/classes.rb', line 8301 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8308 8309 8310 8311 |
# File 'generated/google/apis/compute_beta/classes.rb', line 8308 def update!(**args) @health_checks = args[:health_checks] if args.key?(:health_checks) @warning = args[:warning] if args.key?(:warning) end |