import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * 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](https://cloud.google.com/compute/docs/reference/rest/v1/regionHealthChecks)
 * * How-to Guides
 *     * [Official Documentation](https://cloud.google.com/load-balancing/docs/health-checks)
 *
 * ## Example Usage
 *
 * ### Region Health Check Tcp
 *
 * ```typescript
 * 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,
 *     },
 * });
 * ```
 * ### Region Health Check Tcp Full
 *
 * ```typescript
 * 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",
 *     },
 * });
 * ```
 * ### Region Health Check Ssl
 *
 * ```typescript
 * 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,
 *     },
 * });
 * ```
 * ### Region Health Check Ssl Full
 *
 * ```typescript
 * 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",
 *     },
 * });
 * ```
 * ### Region Health Check Http
 *
 * ```typescript
 * 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,
 *     },
 * });
 * ```
 * ### Region Health Check Http Logs
 *
 * ```typescript
 * 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,
 *     },
 * });
 * ```
 * ### Region Health Check Http Full
 *
 * ```typescript
 * 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",
 *     },
 * });
 * ```
 * ### Region Health Check Https
 *
 * ```typescript
 * 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,
 *     },
 * });
 * ```
 * ### Region Health Check Https Full
 *
 * ```typescript
 * 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",
 *     },
 * });
 * ```
 * ### Region Health Check Http2
 *
 * ```typescript
 * 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,
 *     },
 * });
 * ```
 * ### Region Health Check Http2 Full
 *
 * ```typescript
 * 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",
 *     },
 * });
 * ```
 * ### Region Health Check Grpc
 *
 * ```typescript
 * 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,
 *     },
 * });
 * ```
 * ### Region Health Check Grpc Full
 *
 * ```typescript
 * 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",
 *     },
 * });
 * ```
 * ### Region Health Check Grpc With Tls
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 *
 * const grpc_with_tls_region_health_check = new gcp.compute.RegionHealthCheck("grpc-with-tls-region-health-check", {
 *     name: "grpc-with-tls-region-health-check",
 *     timeoutSec: 1,
 *     checkIntervalSec: 1,
 *     grpcTlsHealthCheck: {
 *         port: 443,
 *     },
 * });
 * ```
 * ### Region Health Check Grpc With Tls Full
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 *
 * const grpc_with_tls_region_health_check = new gcp.compute.RegionHealthCheck("grpc-with-tls-region-health-check", {
 *     name: "grpc-with-tls-region-health-check",
 *     description: "regional health check via GRPC with TLS",
 *     timeoutSec: 1,
 *     checkIntervalSec: 1,
 *     healthyThreshold: 4,
 *     unhealthyThreshold: 5,
 *     grpcTlsHealthCheck: {
 *         portSpecification: "USE_FIXED_PORT",
 *         port: 443,
 *         grpcServiceName: "testservice",
 *     },
 * });
 * ```
 *
 * ## 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:
 *
 * ```sh
 * $ 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}}
 * ```
 */
export declare class RegionHealthCheck extends pulumi.CustomResource {
    /**
     * Get an existing RegionHealthCheck resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: RegionHealthCheckState, opts?: pulumi.CustomResourceOptions): RegionHealthCheck;
    /**
     * Returns true if the given object is an instance of RegionHealthCheck.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is RegionHealthCheck;
    /**
     * How often (in seconds) to send a health check. The default value is 5
     * seconds.
     */
    readonly checkIntervalSec: pulumi.Output<number | undefined>;
    /**
     * Creation timestamp in RFC3339 text format.
     */
    readonly creationTimestamp: pulumi.Output<string>;
    /**
     * Whether Terraform will be prevented from destroying the resource. Defaults to DELETE.
     * When a 'terraform destroy' or 'pulumi up' would delete the resource,
     * the command will fail if this field is set to "PREVENT" in Terraform state.
     * When set to "ABANDON", the command will remove the resource from Terraform
     * management without updating or deleting the resource in the API.
     * When set to "DELETE", deleting the resource is allowed.
     */
    readonly deletionPolicy: pulumi.Output<string>;
    /**
     * An optional description of this resource. Provide this property when
     * you create the resource.
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    readonly grpcHealthCheck: pulumi.Output<outputs.compute.RegionHealthCheckGrpcHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    readonly grpcTlsHealthCheck: pulumi.Output<outputs.compute.RegionHealthCheckGrpcTlsHealthCheck | undefined>;
    /**
     * The unique identifier number for the resource. This identifier is defined by the server.
     */
    readonly healthCheckId: pulumi.Output<number>;
    /**
     * A so-far unhealthy instance will be marked healthy after this many
     * consecutive successes. The default value is 2.
     */
    readonly healthyThreshold: pulumi.Output<number | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    readonly http2HealthCheck: pulumi.Output<outputs.compute.RegionHealthCheckHttp2HealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    readonly httpHealthCheck: pulumi.Output<outputs.compute.RegionHealthCheckHttpHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    readonly httpsHealthCheck: pulumi.Output<outputs.compute.RegionHealthCheckHttpsHealthCheck | undefined>;
    /**
     * Configure logging on this health check.
     * Structure is documented below.
     */
    readonly logConfig: pulumi.Output<outputs.compute.RegionHealthCheckLogConfig>;
    /**
     * 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.
     */
    readonly name: pulumi.Output<string>;
    /**
     * The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    readonly project: pulumi.Output<string>;
    /**
     * The Region in which the created health check should reside.
     * If it is not provided, the provider region is used.
     */
    readonly region: pulumi.Output<string>;
    /**
     * The URI of the created resource.
     */
    readonly selfLink: pulumi.Output<string>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    readonly sslHealthCheck: pulumi.Output<outputs.compute.RegionHealthCheckSslHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    readonly tcpHealthCheck: pulumi.Output<outputs.compute.RegionHealthCheckTcpHealthCheck | undefined>;
    /**
     * 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.
     */
    readonly timeoutSec: pulumi.Output<number | undefined>;
    /**
     * The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
     */
    readonly type: pulumi.Output<string>;
    /**
     * A so-far healthy instance will be marked unhealthy after this many
     * consecutive failures. The default value is 2.
     */
    readonly unhealthyThreshold: pulumi.Output<number | undefined>;
    /**
     * Create a RegionHealthCheck resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args?: RegionHealthCheckArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering RegionHealthCheck resources.
 */
export interface RegionHealthCheckState {
    /**
     * How often (in seconds) to send a health check. The default value is 5
     * seconds.
     */
    checkIntervalSec?: pulumi.Input<number | undefined>;
    /**
     * Creation timestamp in RFC3339 text format.
     */
    creationTimestamp?: pulumi.Input<string | undefined>;
    /**
     * Whether Terraform will be prevented from destroying the resource. Defaults to DELETE.
     * When a 'terraform destroy' or 'pulumi up' would delete the resource,
     * the command will fail if this field is set to "PREVENT" in Terraform state.
     * When set to "ABANDON", the command will remove the resource from Terraform
     * management without updating or deleting the resource in the API.
     * When set to "DELETE", deleting the resource is allowed.
     */
    deletionPolicy?: pulumi.Input<string | undefined>;
    /**
     * An optional description of this resource. Provide this property when
     * you create the resource.
     */
    description?: pulumi.Input<string | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    grpcHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckGrpcHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    grpcTlsHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckGrpcTlsHealthCheck | undefined>;
    /**
     * The unique identifier number for the resource. This identifier is defined by the server.
     */
    healthCheckId?: pulumi.Input<number | undefined>;
    /**
     * A so-far unhealthy instance will be marked healthy after this many
     * consecutive successes. The default value is 2.
     */
    healthyThreshold?: pulumi.Input<number | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    http2HealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckHttp2HealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    httpHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckHttpHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    httpsHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckHttpsHealthCheck | undefined>;
    /**
     * Configure logging on this health check.
     * Structure is documented below.
     */
    logConfig?: pulumi.Input<inputs.compute.RegionHealthCheckLogConfig | undefined>;
    /**
     * 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.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    project?: pulumi.Input<string | undefined>;
    /**
     * The Region in which the created health check should reside.
     * If it is not provided, the provider region is used.
     */
    region?: pulumi.Input<string | undefined>;
    /**
     * The URI of the created resource.
     */
    selfLink?: pulumi.Input<string | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    sslHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckSslHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    tcpHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckTcpHealthCheck | undefined>;
    /**
     * 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.
     */
    timeoutSec?: pulumi.Input<number | undefined>;
    /**
     * The type of the health check. One of HTTP, HTTP2, HTTPS, TCP, or SSL.
     */
    type?: pulumi.Input<string | undefined>;
    /**
     * A so-far healthy instance will be marked unhealthy after this many
     * consecutive failures. The default value is 2.
     */
    unhealthyThreshold?: pulumi.Input<number | undefined>;
}
/**
 * The set of arguments for constructing a RegionHealthCheck resource.
 */
export interface RegionHealthCheckArgs {
    /**
     * How often (in seconds) to send a health check. The default value is 5
     * seconds.
     */
    checkIntervalSec?: pulumi.Input<number | undefined>;
    /**
     * Whether Terraform will be prevented from destroying the resource. Defaults to DELETE.
     * When a 'terraform destroy' or 'pulumi up' would delete the resource,
     * the command will fail if this field is set to "PREVENT" in Terraform state.
     * When set to "ABANDON", the command will remove the resource from Terraform
     * management without updating or deleting the resource in the API.
     * When set to "DELETE", deleting the resource is allowed.
     */
    deletionPolicy?: pulumi.Input<string | undefined>;
    /**
     * An optional description of this resource. Provide this property when
     * you create the resource.
     */
    description?: pulumi.Input<string | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    grpcHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckGrpcHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    grpcTlsHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckGrpcTlsHealthCheck | undefined>;
    /**
     * A so-far unhealthy instance will be marked healthy after this many
     * consecutive successes. The default value is 2.
     */
    healthyThreshold?: pulumi.Input<number | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    http2HealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckHttp2HealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    httpHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckHttpHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    httpsHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckHttpsHealthCheck | undefined>;
    /**
     * Configure logging on this health check.
     * Structure is documented below.
     */
    logConfig?: pulumi.Input<inputs.compute.RegionHealthCheckLogConfig | undefined>;
    /**
     * 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.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    project?: pulumi.Input<string | undefined>;
    /**
     * The Region in which the created health check should reside.
     * If it is not provided, the provider region is used.
     */
    region?: pulumi.Input<string | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    sslHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckSslHealthCheck | undefined>;
    /**
     * A nested object resource.
     * Structure is documented below.
     */
    tcpHealthCheck?: pulumi.Input<inputs.compute.RegionHealthCheckTcpHealthCheck | undefined>;
    /**
     * 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.
     */
    timeoutSec?: pulumi.Input<number | undefined>;
    /**
     * A so-far healthy instance will be marked unhealthy after this many
     * consecutive failures. The default value is 2.
     */
    unhealthyThreshold?: pulumi.Input<number | undefined>;
}
//# sourceMappingURL=regionHealthCheck.d.ts.map