Class: Google::Apis::ComputeBeta::CircuitBreakers

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CircuitBreakers

Returns a new instance of CircuitBreakers



3475
3476
3477
# File 'generated/google/apis/compute_beta/classes.rb', line 3475

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

Instance Attribute Details

#connect_timeoutGoogle::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



3442
3443
3444
# File 'generated/google/apis/compute_beta/classes.rb', line 3442

def connect_timeout
  @connect_timeout
end

#max_connectionsFixnum

The maximum number of connections to the backend cluster. If not specified, the default is 1024. Corresponds to the JSON property maxConnections

Returns:

  • (Fixnum)


3448
3449
3450
# File 'generated/google/apis/compute_beta/classes.rb', line 3448

def max_connections
  @max_connections
end

#max_pending_requestsFixnum

The maximum number of pending requests allowed to the backend cluster. If not specified, the default is 1024. Corresponds to the JSON property maxPendingRequests

Returns:

  • (Fixnum)


3454
3455
3456
# File 'generated/google/apis/compute_beta/classes.rb', line 3454

def max_pending_requests
  @max_pending_requests
end

#max_requestsFixnum

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

Returns:

  • (Fixnum)


3460
3461
3462
# File 'generated/google/apis/compute_beta/classes.rb', line 3460

def max_requests
  @max_requests
end

#max_requests_per_connectionFixnum

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

Returns:

  • (Fixnum)


3467
3468
3469
# File 'generated/google/apis/compute_beta/classes.rb', line 3467

def max_requests_per_connection
  @max_requests_per_connection
end

#max_retriesFixnum

The maximum number of parallel retries allowed to the backend cluster. If not specified, the default is 3. Corresponds to the JSON property maxRetries

Returns:

  • (Fixnum)


3473
3474
3475
# File 'generated/google/apis/compute_beta/classes.rb', line 3473

def max_retries
  @max_retries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3480
3481
3482
3483
3484
3485
3486
3487
# File 'generated/google/apis/compute_beta/classes.rb', line 3480

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