Interface ComputeHealthCheckGrpcHealthCheck
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComputeHealthCheckGrpcHealthCheck.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:18.427Z") @Stability(Stable) public interface ComputeHealthCheckGrpcHealthCheck extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classComputeHealthCheckGrpcHealthCheck.BuilderA builder forComputeHealthCheckGrpcHealthCheckstatic classComputeHealthCheckGrpcHealthCheck.Jsii$ProxyAn implementation forComputeHealthCheckGrpcHealthCheck
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static ComputeHealthCheckGrpcHealthCheck.Builderbuilder()default StringgetGrpcServiceName()The gRPC service name for the health check.default NumbergetPort()The port number for the health check request.default StringgetPortName()Port name as defined in InstanceGroup#NamedPort#name.default StringgetPortSpecification()Specifies how port is selected for health checking, can be one of the following values:.
-
-
-
Method Detail
-
getGrpcServiceName
@Stability(Stable) @Nullable default String getGrpcServiceName()
The gRPC service name for the health check.The value of grpcServiceName has the following meanings by convention: * Empty serviceName means the overall status of all services at the backend. * Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service. The grpcServiceName can only be ASCII. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_health_check#grpc_service_name ComputeHealthCheck#grpc_service_name}
-
getPort
@Stability(Stable) @Nullable default Number getPort()
The port number for the health check request.Must be specified if portName and portSpecification are not set or if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_health_check#port ComputeHealthCheck#port}
-
getPortName
@Stability(Stable) @Nullable default String getPortName()
Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_health_check#port_name ComputeHealthCheck#port_name}
-
getPortSpecification
@Stability(Stable) @Nullable default String getPortSpecification()
Specifies how port is selected for health checking, can be one of the following values:.* 'USE_FIXED_PORT': The port number in 'port' is used for health checking. * 'USE_NAMED_PORT': The 'portName' is used for health checking. * 'USE_SERVING_PORT': For NetworkEndpointGroup, the port specified for each network endpoint is used for health checking. For other backends, the port or named port specified in the Backend Service is used for health checking. If not specified, gRPC health check follows behavior specified in 'port' and 'portName' fields. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"] Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_health_check#port_specification ComputeHealthCheck#port_specification}
-
builder
@Stability(Stable) static ComputeHealthCheckGrpcHealthCheck.Builder builder()
-
-