Class: Google::Apis::AppengineV1beta::LivenessCheck

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/appengine_v1beta/classes.rb,
lib/google/apis/appengine_v1beta/representations.rb,
lib/google/apis/appengine_v1beta/representations.rb

Overview

Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LivenessCheck

Returns a new instance of LivenessCheck.



1704
1705
1706
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1704

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

Instance Attribute Details

#check_intervalString

Interval between health checks. Corresponds to the JSON property checkInterval

Returns:

  • (String)


1669
1670
1671
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1669

def check_interval
  @check_interval
end

#failure_thresholdFixnum

Number of consecutive failed checks required before considering the VM unhealthy. Corresponds to the JSON property failureThreshold

Returns:

  • (Fixnum)


1675
1676
1677
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1675

def failure_threshold
  @failure_threshold
end

#hostString

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

Returns:

  • (String)


1681
1682
1683
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1681

def host
  @host
end

#initial_delayString

The initial delay before starting to execute the checks. Corresponds to the JSON property initialDelay

Returns:

  • (String)


1686
1687
1688
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1686

def initial_delay
  @initial_delay
end

#pathString

The request path. Corresponds to the JSON property path

Returns:

  • (String)


1691
1692
1693
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1691

def path
  @path
end

#success_thresholdFixnum

Number of consecutive successful checks required before considering the VM healthy. Corresponds to the JSON property successThreshold

Returns:

  • (Fixnum)


1697
1698
1699
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1697

def success_threshold
  @success_threshold
end

#timeoutString

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

Returns:

  • (String)


1702
1703
1704
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1702

def timeout
  @timeout
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1709
1710
1711
1712
1713
1714
1715
1716
1717
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1709

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