@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
143 lines • 5.68 kB
JavaScript
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.RegionTargetTcpProxy = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Represents a RegionTargetTcpProxy resource, which is used by one or more
* forwarding rules to route incoming TCP requests to a regional TCP proxy load
* balancer.
*
* To get more information about RegionTargetTcpProxy, see:
*
* * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionTargetTcpProxies)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/load-balancing/docs/tcp/internal-proxy)
*
* ## Example Usage
*
* ### Region Target Tcp Proxy Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const defaultRegionHealthCheck = new gcp.compute.RegionHealthCheck("default", {
* name: "health-check",
* region: "europe-west4",
* timeoutSec: 1,
* checkIntervalSec: 1,
* tcpHealthCheck: {
* port: 80,
* },
* });
* const defaultRegionBackendService = new gcp.compute.RegionBackendService("default", {
* name: "backend-service",
* protocol: "TCP",
* timeoutSec: 10,
* region: "europe-west4",
* healthChecks: defaultRegionHealthCheck.id,
* loadBalancingScheme: "INTERNAL_MANAGED",
* });
* const _default = new gcp.compute.RegionTargetTcpProxy("default", {
* name: "test-proxy",
* region: "europe-west4",
* backendService: defaultRegionBackendService.id,
* });
* ```
*
* ## Import
*
* RegionTargetTcpProxy can be imported using any of these accepted formats:
*
* * `projects/{{project}}/regions/{{region}}/targetTcpProxies/{{name}}`
*
* * `{{project}}/{{region}}/{{name}}`
*
* * `{{region}}/{{name}}`
*
* * `{{name}}`
*
* When using the `pulumi import` command, RegionTargetTcpProxy can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:compute/regionTargetTcpProxy:RegionTargetTcpProxy default projects/{{project}}/regions/{{region}}/targetTcpProxies/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/regionTargetTcpProxy:RegionTargetTcpProxy default {{project}}/{{region}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/regionTargetTcpProxy:RegionTargetTcpProxy default {{region}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/regionTargetTcpProxy:RegionTargetTcpProxy default {{name}}
* ```
*/
class RegionTargetTcpProxy extends pulumi.CustomResource {
/**
* Get an existing RegionTargetTcpProxy 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, id, state, opts) {
return new RegionTargetTcpProxy(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of RegionTargetTcpProxy. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === RegionTargetTcpProxy.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["backendService"] = state?.backendService;
resourceInputs["creationTimestamp"] = state?.creationTimestamp;
resourceInputs["description"] = state?.description;
resourceInputs["name"] = state?.name;
resourceInputs["project"] = state?.project;
resourceInputs["proxyBind"] = state?.proxyBind;
resourceInputs["proxyHeader"] = state?.proxyHeader;
resourceInputs["proxyId"] = state?.proxyId;
resourceInputs["region"] = state?.region;
resourceInputs["selfLink"] = state?.selfLink;
}
else {
const args = argsOrState;
if (args?.backendService === undefined && !opts.urn) {
throw new Error("Missing required property 'backendService'");
}
resourceInputs["backendService"] = args?.backendService;
resourceInputs["description"] = args?.description;
resourceInputs["name"] = args?.name;
resourceInputs["project"] = args?.project;
resourceInputs["proxyBind"] = args?.proxyBind;
resourceInputs["proxyHeader"] = args?.proxyHeader;
resourceInputs["region"] = args?.region;
resourceInputs["creationTimestamp"] = undefined /*out*/;
resourceInputs["proxyId"] = undefined /*out*/;
resourceInputs["selfLink"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(RegionTargetTcpProxy.__pulumiType, name, resourceInputs, opts);
}
}
exports.RegionTargetTcpProxy = RegionTargetTcpProxy;
/** @internal */
RegionTargetTcpProxy.__pulumiType = 'gcp:compute/regionTargetTcpProxy:RegionTargetTcpProxy';
//# sourceMappingURL=regionTargetTcpProxy.js.map
;