Class RegionHealthCheckTcpHealthCheckArgs
Inherited Members
Namespace: Pulumi.Gcp.Compute.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class RegionHealthCheckTcpHealthCheckArgs : ResourceArgs
Constructors
View SourceRegionHealthCheckTcpHealthCheckArgs()
Declaration
public RegionHealthCheckTcpHealthCheckArgs()
Properties
View SourcePort
The TCP port number for the HTTP2 health check request. The default value is 443.
Declaration
public Input<int> Port { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
PortName
Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
Declaration
public Input<string> PortName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PortSpecification
Specifies how port is selected for health checking, can be one of the following values:
USE_FIXED_PORT: The port number inportis used for health checking.USE_NAMED_PORT: TheportNameis 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, HTTP2 health check follows behavior specified inportandportNamefields.
Declaration
public Input<string> PortSpecification { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ProxyHeader
Specifies the type of proxy header to append before sending data to the backend.
Declaration
public Input<string> ProxyHeader { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Request
The application data to send once the SSL connection has been established (default value is empty). If both request and response are empty, the connection establishment alone will indicate health. The request data can only be ASCII.
Declaration
public Input<string> Request { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Response
The bytes to match against the beginning of the response data. If left empty (the default value), any response will indicate health. The response data can only be ASCII.
Declaration
public Input<string> Response { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |