Class: Google::Apis::AppengineV1beta::ReadinessCheck
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AppengineV1beta::ReadinessCheck
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/representations.rb 
Overview
Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation.
Instance Attribute Summary collapse
- 
  
    
      #app_start_timeout  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
 - 
  
    
      #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
      2325 2326 2327  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2325 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#app_start_timeout ⇒ String
A maximum time limit on application initialization, measured from moment the
application successfully replies to a healthcheck until it is ready to serve
traffic.
Corresponds to the JSON property appStartTimeout
      2292 2293 2294  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2292 def app_start_timeout @app_start_timeout end  | 
  
#check_interval ⇒ String
Interval between health checks.
Corresponds to the JSON property checkInterval
      2297 2298 2299  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2297 def check_interval @check_interval end  | 
  
#failure_threshold ⇒ Fixnum
Number of consecutive failed checks required before removing traffic.
Corresponds to the JSON property failureThreshold
      2302 2303 2304  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2302 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
      2308 2309 2310  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2308 def host @host end  | 
  
#path ⇒ String
The request path.
Corresponds to the JSON property path
      2313 2314 2315  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2313 def path @path end  | 
  
#success_threshold ⇒ Fixnum
Number of consecutive successful checks required before receiving traffic.
Corresponds to the JSON property successThreshold
      2318 2319 2320  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2318 def success_threshold @success_threshold end  | 
  
#timeout ⇒ String
Time before the check is considered failed.
Corresponds to the JSON property timeout
      2323 2324 2325  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2323 def timeout @timeout end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2330 2331 2332 2333 2334 2335 2336 2337 2338  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 2330 def update!(**args) @app_start_timeout = args[:app_start_timeout] if args.key?(:app_start_timeout) @check_interval = args[:check_interval] if args.key?(:check_interval) @failure_threshold = args[:failure_threshold] if args.key?(:failure_threshold) @host = args[:host] if args.key?(:host) @path = args[:path] if args.key?(:path) @success_threshold = args[:success_threshold] if args.key?(:success_threshold) @timeout = args[:timeout] if args.key?(:timeout) end  |