Class: Google::Apis::RunV1::Probe

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

Overview

Not supported by Cloud Run Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Probe

Returns a new instance of Probe.



1897
1898
1899
# File 'lib/google/apis/run_v1/classes.rb', line 1897

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

Instance Attribute Details

#execGoogle::Apis::RunV1::ExecAction

Not supported by Cloud Run ExecAction describes a "run in container" action. Corresponds to the JSON property exec



1850
1851
1852
# File 'lib/google/apis/run_v1/classes.rb', line 1850

def exec
  @exec
end

#failure_thresholdFixnum

(Optional) Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Corresponds to the JSON property failureThreshold

Returns:

  • (Fixnum)


1856
1857
1858
# File 'lib/google/apis/run_v1/classes.rb', line 1856

def failure_threshold
  @failure_threshold
end

#http_getGoogle::Apis::RunV1::HttpGetAction

Not supported by Cloud Run HTTPGetAction describes an action based on HTTP Get requests. Corresponds to the JSON property httpGet



1862
1863
1864
# File 'lib/google/apis/run_v1/classes.rb', line 1862

def http_get
  @http_get
end

#initial_delay_secondsFixnum

(Optional) Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/ pods/pod-lifecycle#container-probes Corresponds to the JSON property initialDelaySeconds

Returns:

  • (Fixnum)


1869
1870
1871
# File 'lib/google/apis/run_v1/classes.rb', line 1869

def initial_delay_seconds
  @initial_delay_seconds
end

#period_secondsFixnum

(Optional) How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Corresponds to the JSON property periodSeconds

Returns:

  • (Fixnum)


1875
1876
1877
# File 'lib/google/apis/run_v1/classes.rb', line 1875

def period_seconds
  @period_seconds
end

#success_thresholdFixnum

(Optional) Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1. Corresponds to the JSON property successThreshold

Returns:

  • (Fixnum)


1882
1883
1884
# File 'lib/google/apis/run_v1/classes.rb', line 1882

def success_threshold
  @success_threshold
end

#tcp_socketGoogle::Apis::RunV1::TcpSocketAction

Not supported by Cloud Run TCPSocketAction describes an action based on opening a socket Corresponds to the JSON property tcpSocket



1888
1889
1890
# File 'lib/google/apis/run_v1/classes.rb', line 1888

def tcp_socket
  @tcp_socket
end

#timeout_secondsFixnum

(Optional) Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/ workloads/pods/pod-lifecycle#container-probes Corresponds to the JSON property timeoutSeconds

Returns:

  • (Fixnum)


1895
1896
1897
# File 'lib/google/apis/run_v1/classes.rb', line 1895

def timeout_seconds
  @timeout_seconds
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
# File 'lib/google/apis/run_v1/classes.rb', line 1902

def update!(**args)
  @exec = args[:exec] if args.key?(:exec)
  @failure_threshold = args[:failure_threshold] if args.key?(:failure_threshold)
  @http_get = args[:http_get] if args.key?(:http_get)
  @initial_delay_seconds = args[:initial_delay_seconds] if args.key?(:initial_delay_seconds)
  @period_seconds = args[:period_seconds] if args.key?(:period_seconds)
  @success_threshold = args[:success_threshold] if args.key?(:success_threshold)
  @tcp_socket = args[:tcp_socket] if args.key?(:tcp_socket)
  @timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
end