Class: Google::Apis::ComputeAlpha::CircuitBreakers
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::CircuitBreakers
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Settings controlling the volume of requests, connections and retries to this backend service.
Instance Attribute Summary collapse
-
#connect_timeout ⇒ Google::Apis::ComputeAlpha::Duration
A Duration represents a fixed-length span of time represented as a count of seconds and fractions of seconds at nanosecond resolution.
-
#max_connections ⇒ Fixnum
The maximum number of connections to the backend service.
-
#max_pending_requests ⇒ Fixnum
The maximum number of pending requests allowed to the backend service.
-
#max_requests ⇒ Fixnum
The maximum number of parallel requests that allowed to the backend service.
-
#max_requests_per_connection ⇒ Fixnum
Maximum requests for a single connection to the backend service.
-
#max_retries ⇒ Fixnum
The maximum number of parallel retries allowed to the backend cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CircuitBreakers
constructor
A new instance of CircuitBreakers.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CircuitBreakers
Returns a new instance of CircuitBreakers.
5923 5924 5925 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5923 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connect_timeout ⇒ Google::Apis::ComputeAlpha::Duration
A Duration represents a fixed-length span of time represented as a count of
seconds and fractions of seconds at nanosecond resolution. It is independent
of any calendar and concepts like "day" or "month". Range is approximately 10,
000 years.
Corresponds to the JSON property connectTimeout
5881 5882 5883 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5881 def connect_timeout @connect_timeout end |
#max_connections ⇒ Fixnum
The maximum number of connections to the backend service. If not specified,
there is no limit. Not supported when the backend service is referenced by a
URL map that is bound to target gRPC proxy that has validateForProxyless field
set to true.
Corresponds to the JSON property maxConnections
5889 5890 5891 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5889 def max_connections @max_connections end |
#max_pending_requests ⇒ Fixnum
The maximum number of pending requests allowed to the backend service. If not
specified, there is no limit. Not supported when the backend service is
referenced by a URL map that is bound to target gRPC proxy that has
validateForProxyless field set to true.
Corresponds to the JSON property maxPendingRequests
5897 5898 5899 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5897 def max_pending_requests @max_pending_requests end |
#max_requests ⇒ Fixnum
The maximum number of parallel requests that allowed to the backend service.
If not specified, there is no limit.
Corresponds to the JSON property maxRequests
5903 5904 5905 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5903 def max_requests @max_requests end |
#max_requests_per_connection ⇒ Fixnum
Maximum requests for a single connection to the backend service. This
parameter is respected by both the HTTP/1.1 and HTTP/2 implementations. If not
specified, there is no limit. Setting this parameter to 1 will effectively
disable keep alive. Not supported when the backend service is referenced by a
URL map that is bound to target gRPC proxy that has validateForProxyless field
set to true.
Corresponds to the JSON property maxRequestsPerConnection
5913 5914 5915 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5913 def max_requests_per_connection @max_requests_per_connection end |
#max_retries ⇒ Fixnum
The maximum number of parallel retries allowed to the backend cluster. If not
specified, the default is 1. Not supported when the backend service is
referenced by a URL map that is bound to target gRPC proxy that has
validateForProxyless field set to true.
Corresponds to the JSON property maxRetries
5921 5922 5923 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5921 def max_retries @max_retries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5928 5929 5930 5931 5932 5933 5934 5935 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5928 def update!(**args) @connect_timeout = args[:connect_timeout] if args.key?(:connect_timeout) @max_connections = args[:max_connections] if args.key?(:max_connections) @max_pending_requests = args[:max_pending_requests] if args.key?(:max_pending_requests) @max_requests = args[:max_requests] if args.key?(:max_requests) @max_requests_per_connection = args[:max_requests_per_connection] if args.key?(:max_requests_per_connection) @max_retries = args[:max_retries] if args.key?(:max_retries) end |