Show / Hide Table of Contents

Class CircuitBreakers

Settings controlling the volume of requests, connections and retries to this backend service.

Inheritance
System.Object
CircuitBreakers
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class CircuitBreakers : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MaxConnections

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.

Declaration
[JsonProperty("maxConnections")]
public virtual int? MaxConnections { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaxPendingRequests

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.

Declaration
[JsonProperty("maxPendingRequests")]
public virtual int? MaxPendingRequests { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaxRequests

The maximum number of parallel requests that allowed to the backend service. If not specified, there is no limit.

Declaration
[JsonProperty("maxRequests")]
public virtual int? MaxRequests { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaxRequestsPerConnection

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.

Declaration
[JsonProperty("maxRequestsPerConnection")]
public virtual int? MaxRequestsPerConnection { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaxRetries

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.

Declaration
[JsonProperty("maxRetries")]
public virtual int? MaxRetries { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top