Class: Google::Apis::ComputeV1::CircuitBreakers
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::CircuitBreakers
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/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 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.
4274 4275 4276 |
# File 'lib/google/apis/compute_v1/classes.rb', line 4274 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_connections ⇒ Fixnum
The maximum number of connections to the backend service. If not specified,
there is no limit.
Corresponds to the JSON property maxConnections
4246 4247 4248 |
# File 'lib/google/apis/compute_v1/classes.rb', line 4246 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.
Corresponds to the JSON property maxPendingRequests
4252 4253 4254 |
# File 'lib/google/apis/compute_v1/classes.rb', line 4252 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
4258 4259 4260 |
# File 'lib/google/apis/compute_v1/classes.rb', line 4258 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.
Corresponds to the JSON property maxRequestsPerConnection
4266 4267 4268 |
# File 'lib/google/apis/compute_v1/classes.rb', line 4266 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.
Corresponds to the JSON property maxRetries
4272 4273 4274 |
# File 'lib/google/apis/compute_v1/classes.rb', line 4272 def max_retries @max_retries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4279 4280 4281 4282 4283 4284 4285 |
# File 'lib/google/apis/compute_v1/classes.rb', line 4279 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 |