gcp.compute.RegionHealthCheck
Explore with Pulumi AI
Health Checks determine whether instances are responsive and able to do work. They are an important part of a comprehensive load balancing configuration, as they enable monitoring instances behind load balancers.
Health Checks poll instances at a specified interval. Instances that do not respond successfully to some number of probes in a row are marked as unhealthy. No new connections are sent to unhealthy instances, though existing connections will continue. The health check will continue to poll unhealthy instances. If an instance later responds successfully to some number of consecutive probes, it is marked healthy again and can receive new connections.
To get more information about RegionHealthCheck, see:
- API documentation
- How-to Guides
Example Usage
Region Health Check Tcp
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const tcp_region_health_check = new gcp.compute.RegionHealthCheck("tcp-region-health-check", {
    name: "tcp-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    tcpHealthCheck: {
        port: 80,
    },
});
import pulumi
import pulumi_gcp as gcp
tcp_region_health_check = gcp.compute.RegionHealthCheck("tcp-region-health-check",
    name="tcp-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    tcp_health_check={
        "port": 80,
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "tcp-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("tcp-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			TcpHealthCheck: &compute.RegionHealthCheckTcpHealthCheckArgs{
				Port: pulumi.Int(80),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var tcp_region_health_check = new Gcp.Compute.RegionHealthCheck("tcp-region-health-check", new()
    {
        Name = "tcp-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        TcpHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckTcpHealthCheckArgs
        {
            Port = 80,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckTcpHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var tcp_region_health_check = new RegionHealthCheck("tcp-region-health-check", RegionHealthCheckArgs.builder()
            .name("tcp-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .tcpHealthCheck(RegionHealthCheckTcpHealthCheckArgs.builder()
                .port("80")
                .build())
            .build());
    }
}
resources:
  tcp-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: tcp-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      tcpHealthCheck:
        port: '80'
Region Health Check Tcp Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const tcp_region_health_check = new gcp.compute.RegionHealthCheck("tcp-region-health-check", {
    name: "tcp-region-health-check",
    description: "Health check via tcp",
    timeoutSec: 1,
    checkIntervalSec: 1,
    healthyThreshold: 4,
    unhealthyThreshold: 5,
    tcpHealthCheck: {
        portName: "health-check-port",
        portSpecification: "USE_NAMED_PORT",
        request: "ARE YOU HEALTHY?",
        proxyHeader: "NONE",
        response: "I AM HEALTHY",
    },
});
import pulumi
import pulumi_gcp as gcp
tcp_region_health_check = gcp.compute.RegionHealthCheck("tcp-region-health-check",
    name="tcp-region-health-check",
    description="Health check via tcp",
    timeout_sec=1,
    check_interval_sec=1,
    healthy_threshold=4,
    unhealthy_threshold=5,
    tcp_health_check={
        "port_name": "health-check-port",
        "port_specification": "USE_NAMED_PORT",
        "request": "ARE YOU HEALTHY?",
        "proxy_header": "NONE",
        "response": "I AM HEALTHY",
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "tcp-region-health-check", &compute.RegionHealthCheckArgs{
			Name:               pulumi.String("tcp-region-health-check"),
			Description:        pulumi.String("Health check via tcp"),
			TimeoutSec:         pulumi.Int(1),
			CheckIntervalSec:   pulumi.Int(1),
			HealthyThreshold:   pulumi.Int(4),
			UnhealthyThreshold: pulumi.Int(5),
			TcpHealthCheck: &compute.RegionHealthCheckTcpHealthCheckArgs{
				PortName:          pulumi.String("health-check-port"),
				PortSpecification: pulumi.String("USE_NAMED_PORT"),
				Request:           pulumi.String("ARE YOU HEALTHY?"),
				ProxyHeader:       pulumi.String("NONE"),
				Response:          pulumi.String("I AM HEALTHY"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var tcp_region_health_check = new Gcp.Compute.RegionHealthCheck("tcp-region-health-check", new()
    {
        Name = "tcp-region-health-check",
        Description = "Health check via tcp",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HealthyThreshold = 4,
        UnhealthyThreshold = 5,
        TcpHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckTcpHealthCheckArgs
        {
            PortName = "health-check-port",
            PortSpecification = "USE_NAMED_PORT",
            Request = "ARE YOU HEALTHY?",
            ProxyHeader = "NONE",
            Response = "I AM HEALTHY",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckTcpHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var tcp_region_health_check = new RegionHealthCheck("tcp-region-health-check", RegionHealthCheckArgs.builder()
            .name("tcp-region-health-check")
            .description("Health check via tcp")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .healthyThreshold(4)
            .unhealthyThreshold(5)
            .tcpHealthCheck(RegionHealthCheckTcpHealthCheckArgs.builder()
                .portName("health-check-port")
                .portSpecification("USE_NAMED_PORT")
                .request("ARE YOU HEALTHY?")
                .proxyHeader("NONE")
                .response("I AM HEALTHY")
                .build())
            .build());
    }
}
resources:
  tcp-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: tcp-region-health-check
      description: Health check via tcp
      timeoutSec: 1
      checkIntervalSec: 1
      healthyThreshold: 4
      unhealthyThreshold: 5
      tcpHealthCheck:
        portName: health-check-port
        portSpecification: USE_NAMED_PORT
        request: ARE YOU HEALTHY?
        proxyHeader: NONE
        response: I AM HEALTHY
Region Health Check Ssl
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const ssl_region_health_check = new gcp.compute.RegionHealthCheck("ssl-region-health-check", {
    name: "ssl-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    sslHealthCheck: {
        port: 443,
    },
});
import pulumi
import pulumi_gcp as gcp
ssl_region_health_check = gcp.compute.RegionHealthCheck("ssl-region-health-check",
    name="ssl-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    ssl_health_check={
        "port": 443,
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "ssl-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("ssl-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			SslHealthCheck: &compute.RegionHealthCheckSslHealthCheckArgs{
				Port: pulumi.Int(443),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var ssl_region_health_check = new Gcp.Compute.RegionHealthCheck("ssl-region-health-check", new()
    {
        Name = "ssl-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        SslHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckSslHealthCheckArgs
        {
            Port = 443,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckSslHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var ssl_region_health_check = new RegionHealthCheck("ssl-region-health-check", RegionHealthCheckArgs.builder()
            .name("ssl-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .sslHealthCheck(RegionHealthCheckSslHealthCheckArgs.builder()
                .port("443")
                .build())
            .build());
    }
}
resources:
  ssl-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: ssl-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      sslHealthCheck:
        port: '443'
Region Health Check Ssl Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const ssl_region_health_check = new gcp.compute.RegionHealthCheck("ssl-region-health-check", {
    name: "ssl-region-health-check",
    description: "Health check via ssl",
    timeoutSec: 1,
    checkIntervalSec: 1,
    healthyThreshold: 4,
    unhealthyThreshold: 5,
    sslHealthCheck: {
        portName: "health-check-port",
        portSpecification: "USE_NAMED_PORT",
        request: "ARE YOU HEALTHY?",
        proxyHeader: "NONE",
        response: "I AM HEALTHY",
    },
});
import pulumi
import pulumi_gcp as gcp
ssl_region_health_check = gcp.compute.RegionHealthCheck("ssl-region-health-check",
    name="ssl-region-health-check",
    description="Health check via ssl",
    timeout_sec=1,
    check_interval_sec=1,
    healthy_threshold=4,
    unhealthy_threshold=5,
    ssl_health_check={
        "port_name": "health-check-port",
        "port_specification": "USE_NAMED_PORT",
        "request": "ARE YOU HEALTHY?",
        "proxy_header": "NONE",
        "response": "I AM HEALTHY",
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "ssl-region-health-check", &compute.RegionHealthCheckArgs{
			Name:               pulumi.String("ssl-region-health-check"),
			Description:        pulumi.String("Health check via ssl"),
			TimeoutSec:         pulumi.Int(1),
			CheckIntervalSec:   pulumi.Int(1),
			HealthyThreshold:   pulumi.Int(4),
			UnhealthyThreshold: pulumi.Int(5),
			SslHealthCheck: &compute.RegionHealthCheckSslHealthCheckArgs{
				PortName:          pulumi.String("health-check-port"),
				PortSpecification: pulumi.String("USE_NAMED_PORT"),
				Request:           pulumi.String("ARE YOU HEALTHY?"),
				ProxyHeader:       pulumi.String("NONE"),
				Response:          pulumi.String("I AM HEALTHY"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var ssl_region_health_check = new Gcp.Compute.RegionHealthCheck("ssl-region-health-check", new()
    {
        Name = "ssl-region-health-check",
        Description = "Health check via ssl",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HealthyThreshold = 4,
        UnhealthyThreshold = 5,
        SslHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckSslHealthCheckArgs
        {
            PortName = "health-check-port",
            PortSpecification = "USE_NAMED_PORT",
            Request = "ARE YOU HEALTHY?",
            ProxyHeader = "NONE",
            Response = "I AM HEALTHY",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckSslHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var ssl_region_health_check = new RegionHealthCheck("ssl-region-health-check", RegionHealthCheckArgs.builder()
            .name("ssl-region-health-check")
            .description("Health check via ssl")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .healthyThreshold(4)
            .unhealthyThreshold(5)
            .sslHealthCheck(RegionHealthCheckSslHealthCheckArgs.builder()
                .portName("health-check-port")
                .portSpecification("USE_NAMED_PORT")
                .request("ARE YOU HEALTHY?")
                .proxyHeader("NONE")
                .response("I AM HEALTHY")
                .build())
            .build());
    }
}
resources:
  ssl-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: ssl-region-health-check
      description: Health check via ssl
      timeoutSec: 1
      checkIntervalSec: 1
      healthyThreshold: 4
      unhealthyThreshold: 5
      sslHealthCheck:
        portName: health-check-port
        portSpecification: USE_NAMED_PORT
        request: ARE YOU HEALTHY?
        proxyHeader: NONE
        response: I AM HEALTHY
Region Health Check Http
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const http_region_health_check = new gcp.compute.RegionHealthCheck("http-region-health-check", {
    name: "http-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    httpHealthCheck: {
        port: 80,
    },
});
import pulumi
import pulumi_gcp as gcp
http_region_health_check = gcp.compute.RegionHealthCheck("http-region-health-check",
    name="http-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    http_health_check={
        "port": 80,
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "http-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("http-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			HttpHealthCheck: &compute.RegionHealthCheckHttpHealthCheckArgs{
				Port: pulumi.Int(80),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var http_region_health_check = new Gcp.Compute.RegionHealthCheck("http-region-health-check", new()
    {
        Name = "http-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HttpHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttpHealthCheckArgs
        {
            Port = 80,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckHttpHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var http_region_health_check = new RegionHealthCheck("http-region-health-check", RegionHealthCheckArgs.builder()
            .name("http-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .httpHealthCheck(RegionHealthCheckHttpHealthCheckArgs.builder()
                .port("80")
                .build())
            .build());
    }
}
resources:
  http-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: http-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      httpHealthCheck:
        port: '80'
Region Health Check Http Logs
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const http_region_health_check = new gcp.compute.RegionHealthCheck("http-region-health-check", {
    name: "http-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    httpHealthCheck: {
        port: 80,
    },
    logConfig: {
        enable: true,
    },
});
import pulumi
import pulumi_gcp as gcp
http_region_health_check = gcp.compute.RegionHealthCheck("http-region-health-check",
    name="http-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    http_health_check={
        "port": 80,
    },
    log_config={
        "enable": True,
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "http-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("http-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			HttpHealthCheck: &compute.RegionHealthCheckHttpHealthCheckArgs{
				Port: pulumi.Int(80),
			},
			LogConfig: &compute.RegionHealthCheckLogConfigArgs{
				Enable: pulumi.Bool(true),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var http_region_health_check = new Gcp.Compute.RegionHealthCheck("http-region-health-check", new()
    {
        Name = "http-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HttpHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttpHealthCheckArgs
        {
            Port = 80,
        },
        LogConfig = new Gcp.Compute.Inputs.RegionHealthCheckLogConfigArgs
        {
            Enable = true,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckHttpHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckLogConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var http_region_health_check = new RegionHealthCheck("http-region-health-check", RegionHealthCheckArgs.builder()
            .name("http-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .httpHealthCheck(RegionHealthCheckHttpHealthCheckArgs.builder()
                .port("80")
                .build())
            .logConfig(RegionHealthCheckLogConfigArgs.builder()
                .enable(true)
                .build())
            .build());
    }
}
resources:
  http-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: http-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      httpHealthCheck:
        port: '80'
      logConfig:
        enable: true
Region Health Check Http Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const http_region_health_check = new gcp.compute.RegionHealthCheck("http-region-health-check", {
    name: "http-region-health-check",
    description: "Health check via http",
    timeoutSec: 1,
    checkIntervalSec: 1,
    healthyThreshold: 4,
    unhealthyThreshold: 5,
    httpHealthCheck: {
        portName: "health-check-port",
        portSpecification: "USE_NAMED_PORT",
        host: "1.2.3.4",
        requestPath: "/mypath",
        proxyHeader: "NONE",
        response: "I AM HEALTHY",
    },
});
import pulumi
import pulumi_gcp as gcp
http_region_health_check = gcp.compute.RegionHealthCheck("http-region-health-check",
    name="http-region-health-check",
    description="Health check via http",
    timeout_sec=1,
    check_interval_sec=1,
    healthy_threshold=4,
    unhealthy_threshold=5,
    http_health_check={
        "port_name": "health-check-port",
        "port_specification": "USE_NAMED_PORT",
        "host": "1.2.3.4",
        "request_path": "/mypath",
        "proxy_header": "NONE",
        "response": "I AM HEALTHY",
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "http-region-health-check", &compute.RegionHealthCheckArgs{
			Name:               pulumi.String("http-region-health-check"),
			Description:        pulumi.String("Health check via http"),
			TimeoutSec:         pulumi.Int(1),
			CheckIntervalSec:   pulumi.Int(1),
			HealthyThreshold:   pulumi.Int(4),
			UnhealthyThreshold: pulumi.Int(5),
			HttpHealthCheck: &compute.RegionHealthCheckHttpHealthCheckArgs{
				PortName:          pulumi.String("health-check-port"),
				PortSpecification: pulumi.String("USE_NAMED_PORT"),
				Host:              pulumi.String("1.2.3.4"),
				RequestPath:       pulumi.String("/mypath"),
				ProxyHeader:       pulumi.String("NONE"),
				Response:          pulumi.String("I AM HEALTHY"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var http_region_health_check = new Gcp.Compute.RegionHealthCheck("http-region-health-check", new()
    {
        Name = "http-region-health-check",
        Description = "Health check via http",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HealthyThreshold = 4,
        UnhealthyThreshold = 5,
        HttpHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttpHealthCheckArgs
        {
            PortName = "health-check-port",
            PortSpecification = "USE_NAMED_PORT",
            Host = "1.2.3.4",
            RequestPath = "/mypath",
            ProxyHeader = "NONE",
            Response = "I AM HEALTHY",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckHttpHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var http_region_health_check = new RegionHealthCheck("http-region-health-check", RegionHealthCheckArgs.builder()
            .name("http-region-health-check")
            .description("Health check via http")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .healthyThreshold(4)
            .unhealthyThreshold(5)
            .httpHealthCheck(RegionHealthCheckHttpHealthCheckArgs.builder()
                .portName("health-check-port")
                .portSpecification("USE_NAMED_PORT")
                .host("1.2.3.4")
                .requestPath("/mypath")
                .proxyHeader("NONE")
                .response("I AM HEALTHY")
                .build())
            .build());
    }
}
resources:
  http-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: http-region-health-check
      description: Health check via http
      timeoutSec: 1
      checkIntervalSec: 1
      healthyThreshold: 4
      unhealthyThreshold: 5
      httpHealthCheck:
        portName: health-check-port
        portSpecification: USE_NAMED_PORT
        host: 1.2.3.4
        requestPath: /mypath
        proxyHeader: NONE
        response: I AM HEALTHY
Region Health Check Https
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const https_region_health_check = new gcp.compute.RegionHealthCheck("https-region-health-check", {
    name: "https-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    httpsHealthCheck: {
        port: 443,
    },
});
import pulumi
import pulumi_gcp as gcp
https_region_health_check = gcp.compute.RegionHealthCheck("https-region-health-check",
    name="https-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    https_health_check={
        "port": 443,
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "https-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("https-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			HttpsHealthCheck: &compute.RegionHealthCheckHttpsHealthCheckArgs{
				Port: pulumi.Int(443),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var https_region_health_check = new Gcp.Compute.RegionHealthCheck("https-region-health-check", new()
    {
        Name = "https-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HttpsHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttpsHealthCheckArgs
        {
            Port = 443,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckHttpsHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var https_region_health_check = new RegionHealthCheck("https-region-health-check", RegionHealthCheckArgs.builder()
            .name("https-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .httpsHealthCheck(RegionHealthCheckHttpsHealthCheckArgs.builder()
                .port("443")
                .build())
            .build());
    }
}
resources:
  https-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: https-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      httpsHealthCheck:
        port: '443'
Region Health Check Https Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const https_region_health_check = new gcp.compute.RegionHealthCheck("https-region-health-check", {
    name: "https-region-health-check",
    description: "Health check via https",
    timeoutSec: 1,
    checkIntervalSec: 1,
    healthyThreshold: 4,
    unhealthyThreshold: 5,
    httpsHealthCheck: {
        portName: "health-check-port",
        portSpecification: "USE_NAMED_PORT",
        host: "1.2.3.4",
        requestPath: "/mypath",
        proxyHeader: "NONE",
        response: "I AM HEALTHY",
    },
});
import pulumi
import pulumi_gcp as gcp
https_region_health_check = gcp.compute.RegionHealthCheck("https-region-health-check",
    name="https-region-health-check",
    description="Health check via https",
    timeout_sec=1,
    check_interval_sec=1,
    healthy_threshold=4,
    unhealthy_threshold=5,
    https_health_check={
        "port_name": "health-check-port",
        "port_specification": "USE_NAMED_PORT",
        "host": "1.2.3.4",
        "request_path": "/mypath",
        "proxy_header": "NONE",
        "response": "I AM HEALTHY",
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "https-region-health-check", &compute.RegionHealthCheckArgs{
			Name:               pulumi.String("https-region-health-check"),
			Description:        pulumi.String("Health check via https"),
			TimeoutSec:         pulumi.Int(1),
			CheckIntervalSec:   pulumi.Int(1),
			HealthyThreshold:   pulumi.Int(4),
			UnhealthyThreshold: pulumi.Int(5),
			HttpsHealthCheck: &compute.RegionHealthCheckHttpsHealthCheckArgs{
				PortName:          pulumi.String("health-check-port"),
				PortSpecification: pulumi.String("USE_NAMED_PORT"),
				Host:              pulumi.String("1.2.3.4"),
				RequestPath:       pulumi.String("/mypath"),
				ProxyHeader:       pulumi.String("NONE"),
				Response:          pulumi.String("I AM HEALTHY"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var https_region_health_check = new Gcp.Compute.RegionHealthCheck("https-region-health-check", new()
    {
        Name = "https-region-health-check",
        Description = "Health check via https",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HealthyThreshold = 4,
        UnhealthyThreshold = 5,
        HttpsHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttpsHealthCheckArgs
        {
            PortName = "health-check-port",
            PortSpecification = "USE_NAMED_PORT",
            Host = "1.2.3.4",
            RequestPath = "/mypath",
            ProxyHeader = "NONE",
            Response = "I AM HEALTHY",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckHttpsHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var https_region_health_check = new RegionHealthCheck("https-region-health-check", RegionHealthCheckArgs.builder()
            .name("https-region-health-check")
            .description("Health check via https")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .healthyThreshold(4)
            .unhealthyThreshold(5)
            .httpsHealthCheck(RegionHealthCheckHttpsHealthCheckArgs.builder()
                .portName("health-check-port")
                .portSpecification("USE_NAMED_PORT")
                .host("1.2.3.4")
                .requestPath("/mypath")
                .proxyHeader("NONE")
                .response("I AM HEALTHY")
                .build())
            .build());
    }
}
resources:
  https-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: https-region-health-check
      description: Health check via https
      timeoutSec: 1
      checkIntervalSec: 1
      healthyThreshold: 4
      unhealthyThreshold: 5
      httpsHealthCheck:
        portName: health-check-port
        portSpecification: USE_NAMED_PORT
        host: 1.2.3.4
        requestPath: /mypath
        proxyHeader: NONE
        response: I AM HEALTHY
Region Health Check Http2
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const http2_region_health_check = new gcp.compute.RegionHealthCheck("http2-region-health-check", {
    name: "http2-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    http2HealthCheck: {
        port: 443,
    },
});
import pulumi
import pulumi_gcp as gcp
http2_region_health_check = gcp.compute.RegionHealthCheck("http2-region-health-check",
    name="http2-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    http2_health_check={
        "port": 443,
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "http2-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("http2-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			Http2HealthCheck: &compute.RegionHealthCheckHttp2HealthCheckArgs{
				Port: pulumi.Int(443),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var http2_region_health_check = new Gcp.Compute.RegionHealthCheck("http2-region-health-check", new()
    {
        Name = "http2-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        Http2HealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttp2HealthCheckArgs
        {
            Port = 443,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckHttp2HealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var http2_region_health_check = new RegionHealthCheck("http2-region-health-check", RegionHealthCheckArgs.builder()
            .name("http2-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .http2HealthCheck(RegionHealthCheckHttp2HealthCheckArgs.builder()
                .port("443")
                .build())
            .build());
    }
}
resources:
  http2-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: http2-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      http2HealthCheck:
        port: '443'
Region Health Check Http2 Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const http2_region_health_check = new gcp.compute.RegionHealthCheck("http2-region-health-check", {
    name: "http2-region-health-check",
    description: "Health check via http2",
    timeoutSec: 1,
    checkIntervalSec: 1,
    healthyThreshold: 4,
    unhealthyThreshold: 5,
    http2HealthCheck: {
        portName: "health-check-port",
        portSpecification: "USE_NAMED_PORT",
        host: "1.2.3.4",
        requestPath: "/mypath",
        proxyHeader: "NONE",
        response: "I AM HEALTHY",
    },
});
import pulumi
import pulumi_gcp as gcp
http2_region_health_check = gcp.compute.RegionHealthCheck("http2-region-health-check",
    name="http2-region-health-check",
    description="Health check via http2",
    timeout_sec=1,
    check_interval_sec=1,
    healthy_threshold=4,
    unhealthy_threshold=5,
    http2_health_check={
        "port_name": "health-check-port",
        "port_specification": "USE_NAMED_PORT",
        "host": "1.2.3.4",
        "request_path": "/mypath",
        "proxy_header": "NONE",
        "response": "I AM HEALTHY",
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "http2-region-health-check", &compute.RegionHealthCheckArgs{
			Name:               pulumi.String("http2-region-health-check"),
			Description:        pulumi.String("Health check via http2"),
			TimeoutSec:         pulumi.Int(1),
			CheckIntervalSec:   pulumi.Int(1),
			HealthyThreshold:   pulumi.Int(4),
			UnhealthyThreshold: pulumi.Int(5),
			Http2HealthCheck: &compute.RegionHealthCheckHttp2HealthCheckArgs{
				PortName:          pulumi.String("health-check-port"),
				PortSpecification: pulumi.String("USE_NAMED_PORT"),
				Host:              pulumi.String("1.2.3.4"),
				RequestPath:       pulumi.String("/mypath"),
				ProxyHeader:       pulumi.String("NONE"),
				Response:          pulumi.String("I AM HEALTHY"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var http2_region_health_check = new Gcp.Compute.RegionHealthCheck("http2-region-health-check", new()
    {
        Name = "http2-region-health-check",
        Description = "Health check via http2",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        HealthyThreshold = 4,
        UnhealthyThreshold = 5,
        Http2HealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttp2HealthCheckArgs
        {
            PortName = "health-check-port",
            PortSpecification = "USE_NAMED_PORT",
            Host = "1.2.3.4",
            RequestPath = "/mypath",
            ProxyHeader = "NONE",
            Response = "I AM HEALTHY",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckHttp2HealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var http2_region_health_check = new RegionHealthCheck("http2-region-health-check", RegionHealthCheckArgs.builder()
            .name("http2-region-health-check")
            .description("Health check via http2")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .healthyThreshold(4)
            .unhealthyThreshold(5)
            .http2HealthCheck(RegionHealthCheckHttp2HealthCheckArgs.builder()
                .portName("health-check-port")
                .portSpecification("USE_NAMED_PORT")
                .host("1.2.3.4")
                .requestPath("/mypath")
                .proxyHeader("NONE")
                .response("I AM HEALTHY")
                .build())
            .build());
    }
}
resources:
  http2-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: http2-region-health-check
      description: Health check via http2
      timeoutSec: 1
      checkIntervalSec: 1
      healthyThreshold: 4
      unhealthyThreshold: 5
      http2HealthCheck:
        portName: health-check-port
        portSpecification: USE_NAMED_PORT
        host: 1.2.3.4
        requestPath: /mypath
        proxyHeader: NONE
        response: I AM HEALTHY
Region Health Check Grpc
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const grpc_region_health_check = new gcp.compute.RegionHealthCheck("grpc-region-health-check", {
    name: "grpc-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    grpcHealthCheck: {
        port: 443,
    },
});
import pulumi
import pulumi_gcp as gcp
grpc_region_health_check = gcp.compute.RegionHealthCheck("grpc-region-health-check",
    name="grpc-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    grpc_health_check={
        "port": 443,
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "grpc-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("grpc-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			GrpcHealthCheck: &compute.RegionHealthCheckGrpcHealthCheckArgs{
				Port: pulumi.Int(443),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var grpc_region_health_check = new Gcp.Compute.RegionHealthCheck("grpc-region-health-check", new()
    {
        Name = "grpc-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        GrpcHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckGrpcHealthCheckArgs
        {
            Port = 443,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckGrpcHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var grpc_region_health_check = new RegionHealthCheck("grpc-region-health-check", RegionHealthCheckArgs.builder()
            .name("grpc-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .grpcHealthCheck(RegionHealthCheckGrpcHealthCheckArgs.builder()
                .port("443")
                .build())
            .build());
    }
}
resources:
  grpc-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: grpc-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      grpcHealthCheck:
        port: '443'
Region Health Check Grpc Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const grpc_region_health_check = new gcp.compute.RegionHealthCheck("grpc-region-health-check", {
    name: "grpc-region-health-check",
    timeoutSec: 1,
    checkIntervalSec: 1,
    grpcHealthCheck: {
        portName: "health-check-port",
        portSpecification: "USE_NAMED_PORT",
        grpcServiceName: "testservice",
    },
});
import pulumi
import pulumi_gcp as gcp
grpc_region_health_check = gcp.compute.RegionHealthCheck("grpc-region-health-check",
    name="grpc-region-health-check",
    timeout_sec=1,
    check_interval_sec=1,
    grpc_health_check={
        "port_name": "health-check-port",
        "port_specification": "USE_NAMED_PORT",
        "grpc_service_name": "testservice",
    })
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewRegionHealthCheck(ctx, "grpc-region-health-check", &compute.RegionHealthCheckArgs{
			Name:             pulumi.String("grpc-region-health-check"),
			TimeoutSec:       pulumi.Int(1),
			CheckIntervalSec: pulumi.Int(1),
			GrpcHealthCheck: &compute.RegionHealthCheckGrpcHealthCheckArgs{
				PortName:          pulumi.String("health-check-port"),
				PortSpecification: pulumi.String("USE_NAMED_PORT"),
				GrpcServiceName:   pulumi.String("testservice"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var grpc_region_health_check = new Gcp.Compute.RegionHealthCheck("grpc-region-health-check", new()
    {
        Name = "grpc-region-health-check",
        TimeoutSec = 1,
        CheckIntervalSec = 1,
        GrpcHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckGrpcHealthCheckArgs
        {
            PortName = "health-check-port",
            PortSpecification = "USE_NAMED_PORT",
            GrpcServiceName = "testservice",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionHealthCheck;
import com.pulumi.gcp.compute.RegionHealthCheckArgs;
import com.pulumi.gcp.compute.inputs.RegionHealthCheckGrpcHealthCheckArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var grpc_region_health_check = new RegionHealthCheck("grpc-region-health-check", RegionHealthCheckArgs.builder()
            .name("grpc-region-health-check")
            .timeoutSec(1)
            .checkIntervalSec(1)
            .grpcHealthCheck(RegionHealthCheckGrpcHealthCheckArgs.builder()
                .portName("health-check-port")
                .portSpecification("USE_NAMED_PORT")
                .grpcServiceName("testservice")
                .build())
            .build());
    }
}
resources:
  grpc-region-health-check:
    type: gcp:compute:RegionHealthCheck
    properties:
      name: grpc-region-health-check
      timeoutSec: 1
      checkIntervalSec: 1
      grpcHealthCheck:
        portName: health-check-port
        portSpecification: USE_NAMED_PORT
        grpcServiceName: testservice
Create RegionHealthCheck Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RegionHealthCheck(name: string, args?: RegionHealthCheckArgs, opts?: CustomResourceOptions);@overload
def RegionHealthCheck(resource_name: str,
                      args: Optional[RegionHealthCheckArgs] = None,
                      opts: Optional[ResourceOptions] = None)
@overload
def RegionHealthCheck(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      check_interval_sec: Optional[int] = None,
                      description: Optional[str] = None,
                      grpc_health_check: Optional[RegionHealthCheckGrpcHealthCheckArgs] = None,
                      healthy_threshold: Optional[int] = None,
                      http2_health_check: Optional[RegionHealthCheckHttp2HealthCheckArgs] = None,
                      http_health_check: Optional[RegionHealthCheckHttpHealthCheckArgs] = None,
                      https_health_check: Optional[RegionHealthCheckHttpsHealthCheckArgs] = None,
                      log_config: Optional[RegionHealthCheckLogConfigArgs] = None,
                      name: Optional[str] = None,
                      project: Optional[str] = None,
                      region: Optional[str] = None,
                      ssl_health_check: Optional[RegionHealthCheckSslHealthCheckArgs] = None,
                      tcp_health_check: Optional[RegionHealthCheckTcpHealthCheckArgs] = None,
                      timeout_sec: Optional[int] = None,
                      unhealthy_threshold: Optional[int] = None)func NewRegionHealthCheck(ctx *Context, name string, args *RegionHealthCheckArgs, opts ...ResourceOption) (*RegionHealthCheck, error)public RegionHealthCheck(string name, RegionHealthCheckArgs? args = null, CustomResourceOptions? opts = null)
public RegionHealthCheck(String name, RegionHealthCheckArgs args)
public RegionHealthCheck(String name, RegionHealthCheckArgs args, CustomResourceOptions options)
type: gcp:compute:RegionHealthCheck
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RegionHealthCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RegionHealthCheckArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RegionHealthCheckArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegionHealthCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RegionHealthCheckArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var regionHealthCheckResource = new Gcp.Compute.RegionHealthCheck("regionHealthCheckResource", new()
{
    CheckIntervalSec = 0,
    Description = "string",
    GrpcHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckGrpcHealthCheckArgs
    {
        GrpcServiceName = "string",
        Port = 0,
        PortName = "string",
        PortSpecification = "string",
    },
    HealthyThreshold = 0,
    Http2HealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttp2HealthCheckArgs
    {
        Host = "string",
        Port = 0,
        PortName = "string",
        PortSpecification = "string",
        ProxyHeader = "string",
        RequestPath = "string",
        Response = "string",
    },
    HttpHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttpHealthCheckArgs
    {
        Host = "string",
        Port = 0,
        PortName = "string",
        PortSpecification = "string",
        ProxyHeader = "string",
        RequestPath = "string",
        Response = "string",
    },
    HttpsHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckHttpsHealthCheckArgs
    {
        Host = "string",
        Port = 0,
        PortName = "string",
        PortSpecification = "string",
        ProxyHeader = "string",
        RequestPath = "string",
        Response = "string",
    },
    LogConfig = new Gcp.Compute.Inputs.RegionHealthCheckLogConfigArgs
    {
        Enable = false,
    },
    Name = "string",
    Project = "string",
    Region = "string",
    SslHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckSslHealthCheckArgs
    {
        Port = 0,
        PortName = "string",
        PortSpecification = "string",
        ProxyHeader = "string",
        Request = "string",
        Response = "string",
    },
    TcpHealthCheck = new Gcp.Compute.Inputs.RegionHealthCheckTcpHealthCheckArgs
    {
        Port = 0,
        PortName = "string",
        PortSpecification = "string",
        ProxyHeader = "string",
        Request = "string",
        Response = "string",
    },
    TimeoutSec = 0,
    UnhealthyThreshold = 0,
});
example, err := compute.NewRegionHealthCheck(ctx, "regionHealthCheckResource", &compute.RegionHealthCheckArgs{
	CheckIntervalSec: pulumi.Int(0),
	Description:      pulumi.String("string"),
	GrpcHealthCheck: &compute.RegionHealthCheckGrpcHealthCheckArgs{
		GrpcServiceName:   pulumi.String("string"),
		Port:              pulumi.Int(0),
		PortName:          pulumi.String("string"),
		PortSpecification: pulumi.String("string"),
	},
	HealthyThreshold: pulumi.Int(0),
	Http2HealthCheck: &compute.RegionHealthCheckHttp2HealthCheckArgs{
		Host:              pulumi.String("string"),
		Port:              pulumi.Int(0),
		PortName:          pulumi.String("string"),
		PortSpecification: pulumi.String("string"),
		ProxyHeader:       pulumi.String("string"),
		RequestPath:       pulumi.String("string"),
		Response:          pulumi.String("string"),
	},
	HttpHealthCheck: &compute.RegionHealthCheckHttpHealthCheckArgs{
		Host:              pulumi.String("string"),
		Port:              pulumi.Int(0),
		PortName:          pulumi.String("string"),
		PortSpecification: pulumi.String("string"),
		ProxyHeader:       pulumi.String("string"),
		RequestPath:       pulumi.String("string"),
		Response:          pulumi.String("string"),
	},
	HttpsHealthCheck: &compute.RegionHealthCheckHttpsHealthCheckArgs{
		Host:              pulumi.String("string"),
		Port:              pulumi.Int(0),
		PortName:          pulumi.String("string"),
		PortSpecification: pulumi.String("string"),
		ProxyHeader:       pulumi.String("string"),
		RequestPath:       pulumi.String("string"),
		Response:          pulumi.String("string"),
	},
	LogConfig: &compute.RegionHealthCheckLogConfigArgs{
		Enable: pulumi.Bool(false),
	},
	Name:    pulumi.String("string"),
	Project: pulumi.String("string"),
	Region:  pulumi.String("string"),
	SslHealthCheck: &compute.RegionHealthCheckSslHealthCheckArgs{
		Port:              pulumi.Int(0),
		PortName:          pulumi.String("string"),
		PortSpecification: pulumi.String("string"),
		ProxyHeader:       pulumi.String("string"),
		Request:           pulumi.String("string"),
		Response:          pulumi.String("string"),
	},
	TcpHealthCheck: &compute.RegionHealthCheckTcpHealthCheckArgs{
		Port:              pulumi.Int(0),
		PortName:          pulumi.String("string"),
		PortSpecification: pulumi.String("string"),
		ProxyHeader:       pulumi.String("string"),
		Request:           pulumi.String("string"),
		Response:          pulumi.String("string"),
	},
	TimeoutSec:         pulumi.Int(0),
	UnhealthyThreshold: pulumi.Int(0),
})
var regionHealthCheckResource = new RegionHealthCheck("regionHealthCheckResource", RegionHealthCheckArgs.builder()
    .checkIntervalSec(0)
    .description("string")
    .grpcHealthCheck(RegionHealthCheckGrpcHealthCheckArgs.builder()
        .grpcServiceName("string")
        .port(0)
        .portName("string")
        .portSpecification("string")
        .build())
    .healthyThreshold(0)
    .http2HealthCheck(RegionHealthCheckHttp2HealthCheckArgs.builder()
        .host("string")
        .port(0)
        .portName("string")
        .portSpecification("string")
        .proxyHeader("string")
        .requestPath("string")
        .response("string")
        .build())
    .httpHealthCheck(RegionHealthCheckHttpHealthCheckArgs.builder()
        .host("string")
        .port(0)
        .portName("string")
        .portSpecification("string")
        .proxyHeader("string")
        .requestPath("string")
        .response("string")
        .build())
    .httpsHealthCheck(RegionHealthCheckHttpsHealthCheckArgs.builder()
        .host("string")
        .port(0)
        .portName("string")
        .portSpecification("string")
        .proxyHeader("string")
        .requestPath("string")
        .response("string")
        .build())
    .logConfig(RegionHealthCheckLogConfigArgs.builder()
        .enable(false)
        .build())
    .name("string")
    .project("string")
    .region("string")
    .sslHealthCheck(RegionHealthCheckSslHealthCheckArgs.builder()
        .port(0)
        .portName("string")
        .portSpecification("string")
        .proxyHeader("string")
        .request("string")
        .response("string")
        .build())
    .tcpHealthCheck(RegionHealthCheckTcpHealthCheckArgs.builder()
        .port(0)
        .portName("string")
        .portSpecification("string")
        .proxyHeader("string")
        .request("string")
        .response("string")
        .build())
    .timeoutSec(0)
    .unhealthyThreshold(0)
    .build());
region_health_check_resource = gcp.compute.RegionHealthCheck("regionHealthCheckResource",
    check_interval_sec=0,
    description="string",
    grpc_health_check={
        "grpc_service_name": "string",
        "port": 0,
        "port_name": "string",
        "port_specification": "string",
    },
    healthy_threshold=0,
    http2_health_check={
        "host": "string",
        "port": 0,
        "port_name": "string",
        "port_specification": "string",
        "proxy_header": "string",
        "request_path": "string",
        "response": "string",
    },
    http_health_check={
        "host": "string",
        "port": 0,
        "port_name": "string",
        "port_specification": "string",
        "proxy_header": "string",
        "request_path": "string",
        "response": "string",
    },
    https_health_check={
        "host": "string",
        "port": 0,
        "port_name": "string",
        "port_specification": "string",
        "proxy_header": "string",
        "request_path": "string",
        "response": "string",
    },
    log_config={
        "enable": False,
    },
    name="string",
    project="string",
    region="string",
    ssl_health_check={
        "port": 0,
        "port_name": "string",
        "port_specification": "string",
        "proxy_header": "string",
        "request": "string",
        "response": "string",
    },
    tcp_health_check={
        "port": 0,
        "port_name": "string",
        "port_specification": "string",
        "proxy_header": "string",
        "request": "string",
        "response": "string",
    },
    timeout_sec=0,
    unhealthy_threshold=0)
const regionHealthCheckResource = new gcp.compute.RegionHealthCheck("regionHealthCheckResource", {
    checkIntervalSec: 0,
    description: "string",
    grpcHealthCheck: {
        grpcServiceName: "string",
        port: 0,
        portName: "string",
        portSpecification: "string",
    },
    healthyThreshold: 0,
    http2HealthCheck: {
        host: "string",
        port: 0,
        portName: "string",
        portSpecification: "string",
        proxyHeader: "string",
        requestPath: "string",
        response: "string",
    },
    httpHealthCheck: {
        host: "string",
        port: 0,
        portName: "string",
        portSpecification: "string",
        proxyHeader: "string",
        requestPath: "string",
        response: "string",
    },
    httpsHealthCheck: {
        host: "string",
        port: 0,
        portName: "string",
        portSpecification: "string",
        proxyHeader: "string",
        requestPath: "string",
        response: "string",
    },
    logConfig: {
        enable: false,
    },
    name: "string",
    project: "string",
    region: "string",
    sslHealthCheck: {
        port: 0,
        portName: "string",
        portSpecification: "string",
        proxyHeader: "string",
        request: "string",
        response: "string",
    },
    tcpHealthCheck: {
        port: 0,
        portName: "string",
        portSpecification: "string",
        proxyHeader: "string",
        request: "string",
        response: "string",
    },
    timeoutSec: 0,
    unhealthyThreshold: 0,
});
type: gcp:compute:RegionHealthCheck
properties:
    checkIntervalSec: 0
    description: string
    grpcHealthCheck:
        grpcServiceName: string
        port: 0
        portName: string
        portSpecification: string
    healthyThreshold: 0
    http2HealthCheck:
        host: string
        port: 0
        portName: string
        portSpecification: string
        proxyHeader: string
        requestPath: string
        response: string
    httpHealthCheck:
        host: string
        port: 0
        portName: string
        portSpecification: string
        proxyHeader: string
        requestPath: string
        response: string
    httpsHealthCheck:
        host: string
        port: 0
        portName: string
        portSpecification: string
        proxyHeader: string
        requestPath: string
        response: string
    logConfig:
        enable: false
    name: string
    project: string
    region: string
    sslHealthCheck:
        port: 0
        portName: string
        portSpecification: string
        proxyHeader: string
        request: string
        response: string
    tcpHealthCheck:
        port: 0
        portName: string
        portSpecification: string
        proxyHeader: string
        request: string
        response: string
    timeoutSec: 0
    unhealthyThreshold: 0
RegionHealthCheck Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RegionHealthCheck resource accepts the following input properties:
- CheckInterval intSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- GrpcHealth RegionCheck Health Check Grpc Health Check 
- A nested object resource. Structure is documented below.
- HealthyThreshold int
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- Http2HealthCheck RegionHealth Check Http2Health Check 
- A nested object resource. Structure is documented below.
- HttpHealth RegionCheck Health Check Http Health Check 
- A nested object resource. Structure is documented below.
- HttpsHealth RegionCheck Health Check Https Health Check 
- A nested object resource. Structure is documented below.
- LogConfig RegionHealth Check Log Config 
- Configure logging on this health check. Structure is documented below.
- Name string
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- SslHealth RegionCheck Health Check Ssl Health Check 
- A nested object resource. Structure is documented below.
- TcpHealth RegionCheck Health Check Tcp Health Check 
- A nested object resource. Structure is documented below.
- TimeoutSec int
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- UnhealthyThreshold int
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- CheckInterval intSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- GrpcHealth RegionCheck Health Check Grpc Health Check Args 
- A nested object resource. Structure is documented below.
- HealthyThreshold int
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- Http2HealthCheck RegionHealth Check Http2Health Check Args 
- A nested object resource. Structure is documented below.
- HttpHealth RegionCheck Health Check Http Health Check Args 
- A nested object resource. Structure is documented below.
- HttpsHealth RegionCheck Health Check Https Health Check Args 
- A nested object resource. Structure is documented below.
- LogConfig RegionHealth Check Log Config Args 
- Configure logging on this health check. Structure is documented below.
- Name string
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- SslHealth RegionCheck Health Check Ssl Health Check Args 
- A nested object resource. Structure is documented below.
- TcpHealth RegionCheck Health Check Tcp Health Check Args 
- A nested object resource. Structure is documented below.
- TimeoutSec int
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- UnhealthyThreshold int
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- checkInterval IntegerSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- grpcHealth RegionCheck Health Check Grpc Health Check 
- A nested object resource. Structure is documented below.
- healthyThreshold Integer
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2HealthCheck RegionHealth Check Http2Health Check 
- A nested object resource. Structure is documented below.
- httpHealth RegionCheck Health Check Http Health Check 
- A nested object resource. Structure is documented below.
- httpsHealth RegionCheck Health Check Https Health Check 
- A nested object resource. Structure is documented below.
- logConfig RegionHealth Check Log Config 
- Configure logging on this health check. Structure is documented below.
- name String
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- sslHealth RegionCheck Health Check Ssl Health Check 
- A nested object resource. Structure is documented below.
- tcpHealth RegionCheck Health Check Tcp Health Check 
- A nested object resource. Structure is documented below.
- timeoutSec Integer
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- unhealthyThreshold Integer
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- checkInterval numberSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- grpcHealth RegionCheck Health Check Grpc Health Check 
- A nested object resource. Structure is documented below.
- healthyThreshold number
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2HealthCheck RegionHealth Check Http2Health Check 
- A nested object resource. Structure is documented below.
- httpHealth RegionCheck Health Check Http Health Check 
- A nested object resource. Structure is documented below.
- httpsHealth RegionCheck Health Check Https Health Check 
- A nested object resource. Structure is documented below.
- logConfig RegionHealth Check Log Config 
- Configure logging on this health check. Structure is documented below.
- name string
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region string
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- sslHealth RegionCheck Health Check Ssl Health Check 
- A nested object resource. Structure is documented below.
- tcpHealth RegionCheck Health Check Tcp Health Check 
- A nested object resource. Structure is documented below.
- timeoutSec number
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- unhealthyThreshold number
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- check_interval_ intsec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- grpc_health_ Regioncheck Health Check Grpc Health Check Args 
- A nested object resource. Structure is documented below.
- healthy_threshold int
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2_health_ Regioncheck Health Check Http2Health Check Args 
- A nested object resource. Structure is documented below.
- http_health_ Regioncheck Health Check Http Health Check Args 
- A nested object resource. Structure is documented below.
- https_health_ Regioncheck Health Check Https Health Check Args 
- A nested object resource. Structure is documented below.
- log_config RegionHealth Check Log Config Args 
- Configure logging on this health check. Structure is documented below.
- name str
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region str
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- ssl_health_ Regioncheck Health Check Ssl Health Check Args 
- A nested object resource. Structure is documented below.
- tcp_health_ Regioncheck Health Check Tcp Health Check Args 
- A nested object resource. Structure is documented below.
- timeout_sec int
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- unhealthy_threshold int
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- checkInterval NumberSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- grpcHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- healthyThreshold Number
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2HealthCheck Property Map
- A nested object resource. Structure is documented below.
- httpHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- httpsHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- logConfig Property Map
- Configure logging on this health check. Structure is documented below.
- name String
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- sslHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- tcpHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- timeoutSec Number
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- unhealthyThreshold Number
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
Outputs
All input properties are implicitly available as output properties. Additionally, the RegionHealthCheck resource produces the following output properties:
- CreationTimestamp string
- Creation timestamp in RFC3339 text format.
- HealthCheck intId 
- The unique identifier number for the resource. This identifier is defined by the server.
- Id string
- The provider-assigned unique ID for this managed resource.
- SelfLink string
- The URI of the created resource.
- Type string
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- CreationTimestamp string
- Creation timestamp in RFC3339 text format.
- HealthCheck intId 
- The unique identifier number for the resource. This identifier is defined by the server.
- Id string
- The provider-assigned unique ID for this managed resource.
- SelfLink string
- The URI of the created resource.
- Type string
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- creationTimestamp String
- Creation timestamp in RFC3339 text format.
- healthCheck IntegerId 
- The unique identifier number for the resource. This identifier is defined by the server.
- id String
- The provider-assigned unique ID for this managed resource.
- selfLink String
- The URI of the created resource.
- type String
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- creationTimestamp string
- Creation timestamp in RFC3339 text format.
- healthCheck numberId 
- The unique identifier number for the resource. This identifier is defined by the server.
- id string
- The provider-assigned unique ID for this managed resource.
- selfLink string
- The URI of the created resource.
- type string
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- creation_timestamp str
- Creation timestamp in RFC3339 text format.
- health_check_ intid 
- The unique identifier number for the resource. This identifier is defined by the server.
- id str
- The provider-assigned unique ID for this managed resource.
- self_link str
- The URI of the created resource.
- type str
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- creationTimestamp String
- Creation timestamp in RFC3339 text format.
- healthCheck NumberId 
- The unique identifier number for the resource. This identifier is defined by the server.
- id String
- The provider-assigned unique ID for this managed resource.
- selfLink String
- The URI of the created resource.
- type String
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
Look up Existing RegionHealthCheck Resource
Get an existing RegionHealthCheck resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RegionHealthCheckState, opts?: CustomResourceOptions): RegionHealthCheck@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        check_interval_sec: Optional[int] = None,
        creation_timestamp: Optional[str] = None,
        description: Optional[str] = None,
        grpc_health_check: Optional[RegionHealthCheckGrpcHealthCheckArgs] = None,
        health_check_id: Optional[int] = None,
        healthy_threshold: Optional[int] = None,
        http2_health_check: Optional[RegionHealthCheckHttp2HealthCheckArgs] = None,
        http_health_check: Optional[RegionHealthCheckHttpHealthCheckArgs] = None,
        https_health_check: Optional[RegionHealthCheckHttpsHealthCheckArgs] = None,
        log_config: Optional[RegionHealthCheckLogConfigArgs] = None,
        name: Optional[str] = None,
        project: Optional[str] = None,
        region: Optional[str] = None,
        self_link: Optional[str] = None,
        ssl_health_check: Optional[RegionHealthCheckSslHealthCheckArgs] = None,
        tcp_health_check: Optional[RegionHealthCheckTcpHealthCheckArgs] = None,
        timeout_sec: Optional[int] = None,
        type: Optional[str] = None,
        unhealthy_threshold: Optional[int] = None) -> RegionHealthCheckfunc GetRegionHealthCheck(ctx *Context, name string, id IDInput, state *RegionHealthCheckState, opts ...ResourceOption) (*RegionHealthCheck, error)public static RegionHealthCheck Get(string name, Input<string> id, RegionHealthCheckState? state, CustomResourceOptions? opts = null)public static RegionHealthCheck get(String name, Output<String> id, RegionHealthCheckState state, CustomResourceOptions options)resources:  _:    type: gcp:compute:RegionHealthCheck    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CheckInterval intSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- CreationTimestamp string
- Creation timestamp in RFC3339 text format.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- GrpcHealth RegionCheck Health Check Grpc Health Check 
- A nested object resource. Structure is documented below.
- HealthCheck intId 
- The unique identifier number for the resource. This identifier is defined by the server.
- HealthyThreshold int
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- Http2HealthCheck RegionHealth Check Http2Health Check 
- A nested object resource. Structure is documented below.
- HttpHealth RegionCheck Health Check Http Health Check 
- A nested object resource. Structure is documented below.
- HttpsHealth RegionCheck Health Check Https Health Check 
- A nested object resource. Structure is documented below.
- LogConfig RegionHealth Check Log Config 
- Configure logging on this health check. Structure is documented below.
- Name string
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- SelfLink string
- The URI of the created resource.
- SslHealth RegionCheck Health Check Ssl Health Check 
- A nested object resource. Structure is documented below.
- TcpHealth RegionCheck Health Check Tcp Health Check 
- A nested object resource. Structure is documented below.
- TimeoutSec int
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- Type string
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- UnhealthyThreshold int
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- CheckInterval intSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- CreationTimestamp string
- Creation timestamp in RFC3339 text format.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- GrpcHealth RegionCheck Health Check Grpc Health Check Args 
- A nested object resource. Structure is documented below.
- HealthCheck intId 
- The unique identifier number for the resource. This identifier is defined by the server.
- HealthyThreshold int
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- Http2HealthCheck RegionHealth Check Http2Health Check Args 
- A nested object resource. Structure is documented below.
- HttpHealth RegionCheck Health Check Http Health Check Args 
- A nested object resource. Structure is documented below.
- HttpsHealth RegionCheck Health Check Https Health Check Args 
- A nested object resource. Structure is documented below.
- LogConfig RegionHealth Check Log Config Args 
- Configure logging on this health check. Structure is documented below.
- Name string
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- SelfLink string
- The URI of the created resource.
- SslHealth RegionCheck Health Check Ssl Health Check Args 
- A nested object resource. Structure is documented below.
- TcpHealth RegionCheck Health Check Tcp Health Check Args 
- A nested object resource. Structure is documented below.
- TimeoutSec int
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- Type string
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- UnhealthyThreshold int
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- checkInterval IntegerSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- creationTimestamp String
- Creation timestamp in RFC3339 text format.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- grpcHealth RegionCheck Health Check Grpc Health Check 
- A nested object resource. Structure is documented below.
- healthCheck IntegerId 
- The unique identifier number for the resource. This identifier is defined by the server.
- healthyThreshold Integer
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2HealthCheck RegionHealth Check Http2Health Check 
- A nested object resource. Structure is documented below.
- httpHealth RegionCheck Health Check Http Health Check 
- A nested object resource. Structure is documented below.
- httpsHealth RegionCheck Health Check Https Health Check 
- A nested object resource. Structure is documented below.
- logConfig RegionHealth Check Log Config 
- Configure logging on this health check. Structure is documented below.
- name String
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- selfLink String
- The URI of the created resource.
- sslHealth RegionCheck Health Check Ssl Health Check 
- A nested object resource. Structure is documented below.
- tcpHealth RegionCheck Health Check Tcp Health Check 
- A nested object resource. Structure is documented below.
- timeoutSec Integer
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- type String
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- unhealthyThreshold Integer
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- checkInterval numberSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- creationTimestamp string
- Creation timestamp in RFC3339 text format.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- grpcHealth RegionCheck Health Check Grpc Health Check 
- A nested object resource. Structure is documented below.
- healthCheck numberId 
- The unique identifier number for the resource. This identifier is defined by the server.
- healthyThreshold number
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2HealthCheck RegionHealth Check Http2Health Check 
- A nested object resource. Structure is documented below.
- httpHealth RegionCheck Health Check Http Health Check 
- A nested object resource. Structure is documented below.
- httpsHealth RegionCheck Health Check Https Health Check 
- A nested object resource. Structure is documented below.
- logConfig RegionHealth Check Log Config 
- Configure logging on this health check. Structure is documented below.
- name string
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region string
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- selfLink string
- The URI of the created resource.
- sslHealth RegionCheck Health Check Ssl Health Check 
- A nested object resource. Structure is documented below.
- tcpHealth RegionCheck Health Check Tcp Health Check 
- A nested object resource. Structure is documented below.
- timeoutSec number
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- type string
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- unhealthyThreshold number
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- check_interval_ intsec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- creation_timestamp str
- Creation timestamp in RFC3339 text format.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- grpc_health_ Regioncheck Health Check Grpc Health Check Args 
- A nested object resource. Structure is documented below.
- health_check_ intid 
- The unique identifier number for the resource. This identifier is defined by the server.
- healthy_threshold int
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2_health_ Regioncheck Health Check Http2Health Check Args 
- A nested object resource. Structure is documented below.
- http_health_ Regioncheck Health Check Http Health Check Args 
- A nested object resource. Structure is documented below.
- https_health_ Regioncheck Health Check Https Health Check Args 
- A nested object resource. Structure is documented below.
- log_config RegionHealth Check Log Config Args 
- Configure logging on this health check. Structure is documented below.
- name str
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region str
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- self_link str
- The URI of the created resource.
- ssl_health_ Regioncheck Health Check Ssl Health Check Args 
- A nested object resource. Structure is documented below.
- tcp_health_ Regioncheck Health Check Tcp Health Check Args 
- A nested object resource. Structure is documented below.
- timeout_sec int
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- type str
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- unhealthy_threshold int
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
- checkInterval NumberSec 
- How often (in seconds) to send a health check. The default value is 5 seconds.
- creationTimestamp String
- Creation timestamp in RFC3339 text format.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- grpcHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- healthCheck NumberId 
- The unique identifier number for the resource. This identifier is defined by the server.
- healthyThreshold Number
- A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.
- http2HealthCheck Property Map
- A nested object resource. Structure is documented below.
- httpHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- httpsHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- logConfig Property Map
- Configure logging on this health check. Structure is documented below.
- name String
- Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The Region in which the created health check should reside. If it is not provided, the provider region is used.
- selfLink String
- The URI of the created resource.
- sslHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- tcpHealth Property MapCheck 
- A nested object resource. Structure is documented below.
- timeoutSec Number
- How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.
- type String
- The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
- unhealthyThreshold Number
- A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.
Supporting Types
RegionHealthCheckGrpcHealthCheck, RegionHealthCheckGrpcHealthCheckArgs            
- GrpcService stringName 
- 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.
 
- Port int
- 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.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- GrpcService stringName 
- 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.
 
- Port int
- 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.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- grpcService StringName 
- 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.
 
- port Integer
- 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.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- grpcService stringName 
- 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.
 
- port number
- 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.
- portName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- grpc_service_ strname 
- 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.
 
- port int
- 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.
- port_name str
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- port_specification str
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- grpcService StringName 
- 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.
 
- port Number
- 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.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
RegionHealthCheckHttp2HealthCheck, RegionHealthCheckHttp2HealthCheckArgs          
- Host string
- 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.
- Port int
- The TCP port number for the HTTP2 health check request. The default value is 443.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- 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. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"] 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the backend. Default value: "NONE" Possible values: ["NONE", "PROXY_V1"]
- RequestPath string
- The request path of the HTTP2 health check request. The default value is /.
- Response string
- 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.
- Host string
- 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.
- Port int
- The TCP port number for the HTTP2 health check request. The default value is 443.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- 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. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"] 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the backend. Default value: "NONE" Possible values: ["NONE", "PROXY_V1"]
- RequestPath string
- The request path of the HTTP2 health check request. The default value is /.
- Response string
- 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.
- host String
- 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.
- port Integer
- The TCP port number for the HTTP2 health check request. The default value is 443.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- 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. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"] 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the backend. Default value: "NONE" Possible values: ["NONE", "PROXY_V1"]
- requestPath String
- The request path of the HTTP2 health check request. The default value is /.
- response String
- 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.
- host string
- 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.
- port number
- The TCP port number for the HTTP2 health check request. The default value is 443.
- portName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification string
- 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. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"] 
- proxyHeader string
- Specifies the type of proxy header to append before sending data to the backend. Default value: "NONE" Possible values: ["NONE", "PROXY_V1"]
- requestPath string
- The request path of the HTTP2 health check request. The default value is /.
- response string
- 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.
- host str
- 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.
- port int
- The TCP port number for the HTTP2 health check request. The default value is 443.
- port_name str
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- port_specification str
- 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. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"] 
- proxy_header str
- Specifies the type of proxy header to append before sending data to the backend. Default value: "NONE" Possible values: ["NONE", "PROXY_V1"]
- request_path str
- The request path of the HTTP2 health check request. The default value is /.
- response str
- 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.
- host String
- 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.
- port Number
- The TCP port number for the HTTP2 health check request. The default value is 443.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- 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. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"] 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the backend. Default value: "NONE" Possible values: ["NONE", "PROXY_V1"]
- requestPath String
- The request path of the HTTP2 health check request. The default value is /.
- response String
- 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.
RegionHealthCheckHttpHealthCheck, RegionHealthCheckHttpHealthCheckArgs            
- Host string
- The value of the host header in the HTTP health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- Port int
- The TCP port number for the HTTP health check request. The default value is 80.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- RequestPath string
- The request path of the HTTP health check request. The default value is /.
- Response string
- 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.
- Host string
- The value of the host header in the HTTP health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- Port int
- The TCP port number for the HTTP health check request. The default value is 80.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- RequestPath string
- The request path of the HTTP health check request. The default value is /.
- Response string
- 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.
- host String
- The value of the host header in the HTTP health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port Integer
- The TCP port number for the HTTP health check request. The default value is 80.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- requestPath String
- The request path of the HTTP health check request. The default value is /.
- response String
- 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.
- host string
- The value of the host header in the HTTP health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port number
- The TCP port number for the HTTP health check request. The default value is 80.
- portName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- requestPath string
- The request path of the HTTP health check request. The default value is /.
- response string
- 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.
- host str
- The value of the host header in the HTTP health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port int
- The TCP port number for the HTTP health check request. The default value is 80.
- port_name str
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- port_specification str
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxy_header str
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request_path str
- The request path of the HTTP health check request. The default value is /.
- response str
- 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.
- host String
- The value of the host header in the HTTP health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port Number
- The TCP port number for the HTTP health check request. The default value is 80.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- requestPath String
- The request path of the HTTP health check request. The default value is /.
- response String
- 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.
RegionHealthCheckHttpsHealthCheck, RegionHealthCheckHttpsHealthCheckArgs            
- Host string
- The value of the host header in the HTTPS health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- Port int
- The TCP port number for the HTTPS health check request. The default value is 443.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTPS health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- RequestPath string
- The request path of the HTTPS health check request. The default value is /.
- Response string
- 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.
- Host string
- The value of the host header in the HTTPS health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- Port int
- The TCP port number for the HTTPS health check request. The default value is 443.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTPS health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- RequestPath string
- The request path of the HTTPS health check request. The default value is /.
- Response string
- 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.
- host String
- The value of the host header in the HTTPS health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port Integer
- The TCP port number for the HTTPS health check request. The default value is 443.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTPS health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- requestPath String
- The request path of the HTTPS health check request. The default value is /.
- response String
- 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.
- host string
- The value of the host header in the HTTPS health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port number
- The TCP port number for the HTTPS health check request. The default value is 443.
- portName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTPS health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- requestPath string
- The request path of the HTTPS health check request. The default value is /.
- response string
- 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.
- host str
- The value of the host header in the HTTPS health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port int
- The TCP port number for the HTTPS health check request. The default value is 443.
- port_name str
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- port_specification str
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTPS health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxy_header str
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request_path str
- The request path of the HTTPS health check request. The default value is /.
- response str
- 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.
- host String
- The value of the host header in the HTTPS health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.
- port Number
- The TCP port number for the HTTPS health check request. The default value is 443.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, HTTPS health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- requestPath String
- The request path of the HTTPS health check request. The default value is /.
- response String
- 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.
RegionHealthCheckLogConfig, RegionHealthCheckLogConfigArgs          
- Enable bool
- Indicates whether or not to export logs. This is false by default, which means no health check logging will be done.
- Enable bool
- Indicates whether or not to export logs. This is false by default, which means no health check logging will be done.
- enable Boolean
- Indicates whether or not to export logs. This is false by default, which means no health check logging will be done.
- enable boolean
- Indicates whether or not to export logs. This is false by default, which means no health check logging will be done.
- enable bool
- Indicates whether or not to export logs. This is false by default, which means no health check logging will be done.
- enable Boolean
- Indicates whether or not to export logs. This is false by default, which means no health check logging will be done.
RegionHealthCheckSslHealthCheck, RegionHealthCheckSslHealthCheckArgs            
- Port int
- The TCP port number for the HTTP2 health check request. The default value is 443.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- Request string
- 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.
- Response string
- 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.
- Port int
- The TCP port number for the HTTP2 health check request. The default value is 443.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- Request string
- 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.
- Response string
- 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.
- port Integer
- The TCP port number for the HTTP2 health check request. The default value is 443.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request String
- 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.
- response String
- 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.
- port number
- The TCP port number for the HTTP2 health check request. The default value is 443.
- portName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request string
- 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.
- response string
- 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.
- port int
- The TCP port number for the HTTP2 health check request. The default value is 443.
- port_name str
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- port_specification str
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxy_header str
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request str
- 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.
- response str
- 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.
- port Number
- The TCP port number for the HTTP2 health check request. The default value is 443.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request String
- 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.
- response String
- 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.
RegionHealthCheckTcpHealthCheck, RegionHealthCheckTcpHealthCheckArgs            
- Port int
- The TCP port number for the TCP health check request. The default value is 80.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, TCP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- Request string
- The application data to send once the TCP 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.
- Response string
- 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.
- Port int
- The TCP port number for the TCP health check request. The default value is 80.
- PortName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- PortSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, TCP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- ProxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- Request string
- The application data to send once the TCP 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.
- Response string
- 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.
- port Integer
- The TCP port number for the TCP health check request. The default value is 80.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, TCP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request String
- The application data to send once the TCP 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.
- response String
- 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.
- port number
- The TCP port number for the TCP health check request. The default value is 80.
- portName string
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification string
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, TCP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader string
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request string
- The application data to send once the TCP 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.
- response string
- 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.
- port int
- The TCP port number for the TCP health check request. The default value is 80.
- port_name str
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- port_specification str
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, TCP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxy_header str
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request str
- The application data to send once the TCP 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.
- response str
- 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.
- port Number
- The TCP port number for the TCP health check request. The default value is 80.
- portName String
- Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.
- portSpecification String
- Specifies how port is selected for health checking, can be one of the
following values:- USE_FIXED_PORT: The port number in- portis used for health checking.
- USE_NAMED_PORT: The- portNameis 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, TCP health check follows behavior specified in- portand- portNamefields. Possible values are:- USE_FIXED_PORT,- USE_NAMED_PORT,- USE_SERVING_PORT.
 
- proxyHeader String
- Specifies the type of proxy header to append before sending data to the
backend.
Default value is NONE. Possible values are:NONE,PROXY_V1.
- request String
- The application data to send once the TCP 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.
- response String
- 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.
Import
RegionHealthCheck can be imported using any of these accepted formats:
- projects/{{project}}/regions/{{region}}/healthChecks/{{name}}
- {{project}}/{{region}}/{{name}}
- {{region}}/{{name}}
- {{name}}
When using the pulumi import command, RegionHealthCheck can be imported using one of the formats above. For example:
$ pulumi import gcp:compute/regionHealthCheck:RegionHealthCheck default projects/{{project}}/regions/{{region}}/healthChecks/{{name}}
$ pulumi import gcp:compute/regionHealthCheck:RegionHealthCheck default {{project}}/{{region}}/{{name}}
$ pulumi import gcp:compute/regionHealthCheck:RegionHealthCheck default {{region}}/{{name}}
$ pulumi import gcp:compute/regionHealthCheck:RegionHealthCheck default {{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the google-betaTerraform Provider.