Class: Google::Apis::AppengineV1::ReadinessCheck

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReadinessCheck

Returns a new instance of ReadinessCheck



617
618
619
# File 'generated/google/apis/appengine_v1/classes.rb', line 617

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#check_intervalString

Interval between health checks. Corresponds to the JSON property checkInterval

Returns:

  • (String)


605
606
607
# File 'generated/google/apis/appengine_v1/classes.rb', line 605

def check_interval
  @check_interval
end

#failure_thresholdFixnum

Number of consecutive failed checks required before removing traffic. Corresponds to the JSON property failureThreshold

Returns:

  • (Fixnum)


615
616
617
# File 'generated/google/apis/appengine_v1/classes.rb', line 615

def failure_threshold
  @failure_threshold
end

#hostString

Host header to send when performing a HTTP Readiness check. Example: "myapp. appspot.com" Corresponds to the JSON property host

Returns:

  • (String)


595
596
597
# File 'generated/google/apis/appengine_v1/classes.rb', line 595

def host
  @host
end

#pathString

The request path. Corresponds to the JSON property path

Returns:

  • (String)


589
590
591
# File 'generated/google/apis/appengine_v1/classes.rb', line 589

def path
  @path
end

#success_thresholdFixnum

Number of consecutive successful checks required before receiving traffic. Corresponds to the JSON property successThreshold

Returns:

  • (Fixnum)


600
601
602
# File 'generated/google/apis/appengine_v1/classes.rb', line 600

def success_threshold
  @success_threshold
end

#timeoutString

Time before the check is considered failed. Corresponds to the JSON property timeout

Returns:

  • (String)


610
611
612
# File 'generated/google/apis/appengine_v1/classes.rb', line 610

def timeout
  @timeout
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



622
623
624
625
626
627
628
629
# File 'generated/google/apis/appengine_v1/classes.rb', line 622

def update!(**args)
  @path = args[:path] if args.key?(:path)
  @host = args[:host] if args.key?(:host)
  @success_threshold = args[:success_threshold] if args.key?(:success_threshold)
  @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)
end