Class: Google::Apis::ComputeBeta::CircuitBreakers
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::CircuitBreakers
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
Settings controlling the volume of connections to a backend service.
Instance Attribute Summary collapse
-
#connect_timeout ⇒ Google::Apis::ComputeBeta::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 cluster.
-
#max_pending_requests ⇒ Fixnum
The maximum number of pending requests allowed to the backend cluster.
-
#max_requests ⇒ Fixnum
The maximum number of parallel requests that allowed to the backend cluster.
-
#max_requests_per_connection ⇒ Fixnum
Maximum requests for a single backend connection.
-
#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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ CircuitBreakers
Returns a new instance of CircuitBreakers
3530 3531 3532 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3530 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connect_timeout ⇒ Google::Apis::ComputeBeta::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
3497 3498 3499 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3497 def connect_timeout @connect_timeout end |
#max_connections ⇒ Fixnum
The maximum number of connections to the backend cluster. If not specified,
the default is 1024.
Corresponds to the JSON property maxConnections
3503 3504 3505 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3503 def max_connections @max_connections end |
#max_pending_requests ⇒ Fixnum
The maximum number of pending requests allowed to the backend cluster. If not
specified, the default is 1024.
Corresponds to the JSON property maxPendingRequests
3509 3510 3511 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3509 def max_pending_requests @max_pending_requests end |
#max_requests ⇒ Fixnum
The maximum number of parallel requests that allowed to the backend cluster.
If not specified, the default is 1024.
Corresponds to the JSON property maxRequests
3515 3516 3517 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3515 def max_requests @max_requests end |
#max_requests_per_connection ⇒ Fixnum
Maximum requests for a single backend connection. 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.
Corresponds to the JSON property maxRequestsPerConnection
3522 3523 3524 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3522 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 3.
Corresponds to the JSON property maxRetries
3528 3529 3530 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3528 def max_retries @max_retries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3535 3536 3537 3538 3539 3540 3541 3542 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3535 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 |