Class: Google::Apis::ComputeBeta::HealthStatusForNetworkEndpoint
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::HealthStatusForNetworkEndpoint
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#backend_service ⇒ Google::Apis::ComputeBeta::BackendServiceReference
URL of the backend service associated with the health state of the network endpoint.
-
#forwarding_rule ⇒ Google::Apis::ComputeBeta::ForwardingRuleReference
URL of the forwarding rule associated with the health state of the network endpoint.
-
#health_check ⇒ Google::Apis::ComputeBeta::HealthCheckReference
A full or valid partial URL to a health check.
-
#health_check_service ⇒ Google::Apis::ComputeBeta::HealthCheckServiceReference
A full or valid partial URL to a health check service.
-
#health_state ⇒ String
Health state of the network endpoint determined based on the health checks configured.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HealthStatusForNetworkEndpoint
constructor
A new instance of HealthStatusForNetworkEndpoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HealthStatusForNetworkEndpoint
Returns a new instance of HealthStatusForNetworkEndpoint.
10917 10918 10919 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10917 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backend_service ⇒ Google::Apis::ComputeBeta::BackendServiceReference
URL of the backend service associated with the health state of the network
endpoint.
Corresponds to the JSON property backendService
10886 10887 10888 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10886 def backend_service @backend_service end |
#forwarding_rule ⇒ Google::Apis::ComputeBeta::ForwardingRuleReference
URL of the forwarding rule associated with the health state of the network
endpoint.
Corresponds to the JSON property forwardingRule
10892 10893 10894 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10892 def forwarding_rule @forwarding_rule end |
#health_check ⇒ Google::Apis::ComputeBeta::HealthCheckReference
A full or valid partial URL to a health check. For example, the following are
valid URLs: - https://www.googleapis.com/compute/beta/projects/project-id/
global/httpHealthChecks/health-check - projects/project-id/global/
httpHealthChecks/health-check - global/httpHealthChecks/health-check
Corresponds to the JSON property healthCheck
10900 10901 10902 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10900 def health_check @health_check end |
#health_check_service ⇒ Google::Apis::ComputeBeta::HealthCheckServiceReference
A full or valid partial URL to a health check service. For example, the
following are valid URLs: - https://www.googleapis.com/compute/beta/projects/
project-id/regions/us-west1/healthCheckServices/health-check-service -
projects/project-id/regions/us-west1/healthCheckServices/health-check-service -
regions/us-west1/healthCheckServices/health-check-service
Corresponds to the JSON property healthCheckService
10909 10910 10911 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10909 def health_check_service @health_check_service end |
#health_state ⇒ String
Health state of the network endpoint determined based on the health checks
configured.
Corresponds to the JSON property healthState
10915 10916 10917 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10915 def health_state @health_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10922 10923 10924 10925 10926 10927 10928 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10922 def update!(**args) @backend_service = args[:backend_service] if args.key?(:backend_service) @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule) @health_check = args[:health_check] if args.key?(:health_check) @health_check_service = args[:health_check_service] if args.key?(:health_check_service) @health_state = args[:health_state] if args.key?(:health_state) end |