Class: Google::Apis::ComputeV1::CircuitBreakers
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::CircuitBreakers
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
Settings controlling the volume of connections to a backend service.
Instance Attribute Summary collapse
-
#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
3356 3357 3358 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3356 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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
3329 3330 3331 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3329 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
3335 3336 3337 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3335 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
3341 3342 3343 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3341 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
3348 3349 3350 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3348 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
3354 3355 3356 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3354 def max_retries @max_retries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3361 3362 3363 3364 3365 3366 3367 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3361 def update!(**args) @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 |