Class: Google::Apis::AppengineV1::LivenessCheck
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppengineV1::LivenessCheck
 
- 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.
Instance Attribute Summary collapse
- 
  
    
      #check_interval  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Interval between health checks. 
- 
  
    
      #failure_threshold  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of consecutive failed checks required before considering the VM unhealthy. 
- 
  
    
      #host  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Host header to send when performing a HTTP Liveness check. 
- 
  
    
      #initial_delay  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The initial delay before starting to execute the checks. 
- 
  
    
      #path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The request path. 
- 
  
    
      #success_threshold  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of consecutive successful checks required before considering the VM healthy. 
- 
  
    
      #timeout  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Time before the check is considered failed. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LivenessCheck 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LivenessCheck. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LivenessCheck
Returns a new instance of LivenessCheck
| 1489 1490 1491 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1489 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#check_interval ⇒ String
Interval between health checks.
Corresponds to the JSON property checkInterval
| 1454 1455 1456 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1454 def check_interval @check_interval end | 
#failure_threshold ⇒ Fixnum
Number of consecutive failed checks required before considering the VM
unhealthy.
Corresponds to the JSON property failureThreshold
| 1460 1461 1462 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1460 def failure_threshold @failure_threshold end | 
#host ⇒ String
Host header to send when performing a HTTP Liveness check. Example: "myapp.
appspot.com"
Corresponds to the JSON property host
| 1466 1467 1468 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1466 def host @host end | 
#initial_delay ⇒ String
The initial delay before starting to execute the checks.
Corresponds to the JSON property initialDelay
| 1471 1472 1473 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1471 def initial_delay @initial_delay end | 
#path ⇒ String
The request path.
Corresponds to the JSON property path
| 1476 1477 1478 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1476 def path @path end | 
#success_threshold ⇒ Fixnum
Number of consecutive successful checks required before considering the VM
healthy.
Corresponds to the JSON property successThreshold
| 1482 1483 1484 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1482 def success_threshold @success_threshold end | 
#timeout ⇒ String
Time before the check is considered failed.
Corresponds to the JSON property timeout
| 1487 1488 1489 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1487 def timeout @timeout end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1494 1495 1496 1497 1498 1499 1500 1501 1502 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1494 def update!(**args) @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) @initial_delay = args[:initial_delay] if args.key?(:initial_delay) @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 |