Class: Google::Apis::ComputeV1::CircuitBreakers

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CircuitBreakers

Returns a new instance of CircuitBreakers.



3899
3900
3901
# File 'generated/google/apis/compute_v1/classes.rb', line 3899

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

Instance Attribute Details

#max_connectionsFixnum

The maximum number of connections to the backend service. If not specified, there is no limit. Corresponds to the JSON property maxConnections

Returns:

  • (Fixnum)


3871
3872
3873
# File 'generated/google/apis/compute_v1/classes.rb', line 3871

def max_connections
  @max_connections
end

#max_pending_requestsFixnum

The maximum number of pending requests allowed to the backend service. If not specified, there is no limit. Corresponds to the JSON property maxPendingRequests

Returns:

  • (Fixnum)


3877
3878
3879
# File 'generated/google/apis/compute_v1/classes.rb', line 3877

def max_pending_requests
  @max_pending_requests
end

#max_requestsFixnum

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

Returns:

  • (Fixnum)


3883
3884
3885
# File 'generated/google/apis/compute_v1/classes.rb', line 3883

def max_requests
  @max_requests
end

#max_requests_per_connectionFixnum

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

Returns:

  • (Fixnum)


3891
3892
3893
# File 'generated/google/apis/compute_v1/classes.rb', line 3891

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 1. Corresponds to the JSON property maxRetries

Returns:

  • (Fixnum)


3897
3898
3899
# File 'generated/google/apis/compute_v1/classes.rb', line 3897

def max_retries
  @max_retries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3904
3905
3906
3907
3908
3909
3910
# File 'generated/google/apis/compute_v1/classes.rb', line 3904

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