Class: Google::Apis::AppengineV1::ReadinessCheck
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::ReadinessCheck
- 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
Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation.
Instance Attribute Summary collapse
-
#check_interval ⇒ String
Interval between health checks.
-
#failure_threshold ⇒ Fixnum
Number of consecutive failed checks required before removing traffic.
-
#host ⇒ String
Host header to send when performing a HTTP Readiness check.
-
#path ⇒ String
The request path.
-
#success_threshold ⇒ Fixnum
Number of consecutive successful checks required before receiving traffic.
-
#timeout ⇒ String
Time before the check is considered failed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReadinessCheck
constructor
A new instance of ReadinessCheck.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReadinessCheck
Returns a new instance of ReadinessCheck
1049 1050 1051 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1049 def initialize(**args) update!(**args) end |
Instance Attribute Details
#check_interval ⇒ String
Interval between health checks.
Corresponds to the JSON property checkInterval
1021 1022 1023 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1021 def check_interval @check_interval end |
#failure_threshold ⇒ Fixnum
Number of consecutive failed checks required before removing traffic.
Corresponds to the JSON property failureThreshold
1031 1032 1033 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1031 def failure_threshold @failure_threshold end |
#host ⇒ String
Host header to send when performing a HTTP Readiness check. Example: "myapp.
appspot.com"
Corresponds to the JSON property host
1042 1043 1044 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1042 def host @host end |
#path ⇒ String
The request path.
Corresponds to the JSON property path
1036 1037 1038 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1036 def path @path end |
#success_threshold ⇒ Fixnum
Number of consecutive successful checks required before receiving traffic.
Corresponds to the JSON property successThreshold
1047 1048 1049 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1047 def success_threshold @success_threshold end |
#timeout ⇒ String
Time before the check is considered failed.
Corresponds to the JSON property timeout
1026 1027 1028 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1026 def timeout @timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1054 1055 1056 1057 1058 1059 1060 1061 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1054 def update!(**args) @check_interval = args[:check_interval] if args.key?(:check_interval) @timeout = args[:timeout] if args.key?(:timeout) @failure_threshold = args[:failure_threshold] if args.key?(:failure_threshold) @path = args[:path] if args.key?(:path) @host = args[:host] if args.key?(:host) @success_threshold = args[:success_threshold] if args.key?(:success_threshold) end |