Class: Google::Apis::AppengineV1beta::ReadinessCheck

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

Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReadinessCheck

Returns a new instance of ReadinessCheck.



2244
2245
2246
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2244

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

Instance Attribute Details

#app_start_timeoutString

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

Returns:

  • (String)


2211
2212
2213
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2211

def app_start_timeout
  @app_start_timeout
end

#check_intervalString

Interval between health checks. Corresponds to the JSON property checkInterval

Returns:

  • (String)


2216
2217
2218
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2216

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)


2221
2222
2223
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2221

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)


2227
2228
2229
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2227

def host
  @host
end

#pathString

The request path. Corresponds to the JSON property path

Returns:

  • (String)


2232
2233
2234
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2232

def path
  @path
end

#success_thresholdFixnum

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

Returns:

  • (Fixnum)


2237
2238
2239
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2237

def success_threshold
  @success_threshold
end

#timeoutString

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

Returns:

  • (String)


2242
2243
2244
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2242

def timeout
  @timeout
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2249
2250
2251
2252
2253
2254
2255
2256
2257
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2249

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