Class: Google::Apis::AppengineV1::HealthCheck
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::HealthCheck
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1/classes.rb,
generated/google/apis/appengine_v1/representations.rb,
generated/google/apis/appengine_v1/representations.rb
Overview
Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment.
Instance Attribute Summary collapse
-
#check_interval ⇒ String
Interval between health checks.
-
#disable_health_check ⇒ Boolean
(also: #disable_health_check?)
Whether to explicitly disable health checks for this instance.
-
#healthy_threshold ⇒ Fixnum
Number of consecutive successful health checks required before receiving traffic.
-
#host ⇒ String
Host header to send when performing an HTTP health check.
-
#restart_threshold ⇒ Fixnum
Number of consecutive failed health checks required before an instance is restarted.
-
#timeout ⇒ String
Time before the health check is considered failed.
-
#unhealthy_threshold ⇒ Fixnum
Number of consecutive failed health checks required before removing traffic.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HealthCheck
constructor
A new instance of HealthCheck.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ HealthCheck
Returns a new instance of HealthCheck
730 731 732 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 730 def initialize(**args) update!(**args) end |
Instance Attribute Details
#check_interval ⇒ String
Interval between health checks.
Corresponds to the JSON property checkInterval
712 713 714 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 712 def check_interval @check_interval end |
#disable_health_check ⇒ Boolean Also known as: disable_health_check?
Whether to explicitly disable health checks for this instance.
Corresponds to the JSON property disableHealthCheck
727 728 729 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 727 def disable_health_check @disable_health_check end |
#healthy_threshold ⇒ Fixnum
Number of consecutive successful health checks required before receiving
traffic.
Corresponds to the JSON property healthyThreshold
707 708 709 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 707 def healthy_threshold @healthy_threshold end |
#host ⇒ String
Host header to send when performing an HTTP health check. Example: "myapp.
appspot.com"
Corresponds to the JSON property host
695 696 697 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 695 def host @host end |
#restart_threshold ⇒ Fixnum
Number of consecutive failed health checks required before an instance is
restarted.
Corresponds to the JSON property restartThreshold
701 702 703 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 701 def restart_threshold @restart_threshold end |
#timeout ⇒ String
Time before the health check is considered failed.
Corresponds to the JSON property timeout
717 718 719 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 717 def timeout @timeout end |
#unhealthy_threshold ⇒ Fixnum
Number of consecutive failed health checks required before removing traffic.
Corresponds to the JSON property unhealthyThreshold
722 723 724 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 722 def unhealthy_threshold @unhealthy_threshold end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
735 736 737 738 739 740 741 742 743 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 735 def update!(**args) @host = args[:host] if args.key?(:host) @restart_threshold = args[:restart_threshold] if args.key?(:restart_threshold) @healthy_threshold = args[:healthy_threshold] if args.key?(:healthy_threshold) @check_interval = args[:check_interval] if args.key?(:check_interval) @timeout = args[:timeout] if args.key?(:timeout) @unhealthy_threshold = args[:unhealthy_threshold] if args.key?(:unhealthy_threshold) @disable_health_check = args[:disable_health_check] if args.key?(:disable_health_check) end |