Package com.pulumi.gcp.compute.outputs
Class RegionBackendServiceCircuitBreakers
- java.lang.Object
-
- com.pulumi.gcp.compute.outputs.RegionBackendServiceCircuitBreakers
-
public final class RegionBackendServiceCircuitBreakers extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RegionBackendServiceCircuitBreakers.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RegionBackendServiceCircuitBreakers.Builder
builder()
static RegionBackendServiceCircuitBreakers.Builder
builder(RegionBackendServiceCircuitBreakers defaults)
java.util.Optional<RegionBackendServiceCircuitBreakersConnectTimeout>
connectTimeout()
java.util.Optional<java.lang.Integer>
maxConnections()
java.util.Optional<java.lang.Integer>
maxPendingRequests()
java.util.Optional<java.lang.Integer>
maxRequests()
java.util.Optional<java.lang.Integer>
maxRequestsPerConnection()
java.util.Optional<java.lang.Integer>
maxRetries()
-
-
-
Method Detail
-
connectTimeout
public java.util.Optional<RegionBackendServiceCircuitBreakersConnectTimeout> connectTimeout()
- Returns:
- The timeout for new network connections to hosts. Structure is documented below.
-
maxConnections
public java.util.Optional<java.lang.Integer> maxConnections()
- Returns:
- The maximum number of connections to the backend cluster. Defaults to 1024.
-
maxPendingRequests
public java.util.Optional<java.lang.Integer> maxPendingRequests()
- Returns:
- The maximum number of pending requests to the backend cluster. Defaults to 1024.
-
maxRequests
public java.util.Optional<java.lang.Integer> maxRequests()
- Returns:
- The maximum number of parallel requests to the backend cluster. Defaults to 1024.
-
maxRequestsPerConnection
public java.util.Optional<java.lang.Integer> maxRequestsPerConnection()
- Returns:
- 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.
-
maxRetries
public java.util.Optional<java.lang.Integer> maxRetries()
- Returns:
- The maximum number of parallel retries to the backend cluster. Defaults to 3.
-
builder
public static RegionBackendServiceCircuitBreakers.Builder builder()
-
builder
public static RegionBackendServiceCircuitBreakers.Builder builder(RegionBackendServiceCircuitBreakers defaults)
-
-