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

Inherits:
Object
  • Object
show all
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 requests, connections and retries to this backend service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CircuitBreakers

Returns a new instance of CircuitBreakers.



4659
4660
4661
# File 'lib/google/apis/compute_v1/classes.rb', line 4659

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

Instance Attribute Details

#max_connectionsFixnum

Not supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. Corresponds to the JSON property maxConnections

Returns:

  • (Fixnum)


4633
4634
4635
# File 'lib/google/apis/compute_v1/classes.rb', line 4633

def max_connections
  @max_connections
end

#max_pending_requestsFixnum

Not supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. Corresponds to the JSON property maxPendingRequests

Returns:

  • (Fixnum)


4639
4640
4641
# File 'lib/google/apis/compute_v1/classes.rb', line 4639

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)


4645
4646
4647
# File 'lib/google/apis/compute_v1/classes.rb', line 4645

def max_requests
  @max_requests
end

#max_requests_per_connectionFixnum

Not supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. Corresponds to the JSON property maxRequestsPerConnection

Returns:

  • (Fixnum)


4651
4652
4653
# File 'lib/google/apis/compute_v1/classes.rb', line 4651

def max_requests_per_connection
  @max_requests_per_connection
end

#max_retriesFixnum

Not supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. Corresponds to the JSON property maxRetries

Returns:

  • (Fixnum)


4657
4658
4659
# File 'lib/google/apis/compute_v1/classes.rb', line 4657

def max_retries
  @max_retries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4664
4665
4666
4667
4668
4669
4670
# File 'lib/google/apis/compute_v1/classes.rb', line 4664

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