Show / Hide Table of Contents

Class RegionHealthCheckHttpHealthCheckArgs

Inheritance
System.Object
InputArgs
ResourceArgs
RegionHealthCheckHttpHealthCheckArgs
Inherited Members
ResourceArgs.Empty
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: Pulumi.Gcp.Compute.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class RegionHealthCheckHttpHealthCheckArgs : ResourceArgs

Constructors

View Source

RegionHealthCheckHttpHealthCheckArgs()

Declaration
public RegionHealthCheckHttpHealthCheckArgs()

Properties

View Source

Host

The value of the host header in the HTTP2 health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.

Declaration
public Input<string> Host { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Port

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>
View Source

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>
View Source

PortSpecification

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, HTTP2 health check follows behavior specified in port and portName fields.
Declaration
public Input<string> PortSpecification { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

RequestPath

The request path of the HTTP2 health check request. The default value is /.

Declaration
public Input<string> RequestPath { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.