@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
131 lines • 5.41 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.TargetTCPProxy = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Represents a TargetTcpProxy resource, which is used by one or more
* global forwarding rule to route incoming TCP requests to a Backend
* service.
*
* To get more information about TargetTcpProxy, see:
*
* * [API documentation](https://cloud.google.com/compute/docs/reference/v1/targetTcpProxies)
* * How-to Guides
* * [Setting Up TCP proxy for Google Cloud Load Balancing](https://cloud.google.com/compute/docs/load-balancing/tcp-ssl/tcp-proxy)
*
* ## Example Usage
*
* ### Target Tcp Proxy Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const defaultHealthCheck = new gcp.compute.HealthCheck("default", {
* name: "health-check",
* timeoutSec: 1,
* checkIntervalSec: 1,
* tcpHealthCheck: {
* port: 443,
* },
* });
* const defaultBackendService = new gcp.compute.BackendService("default", {
* name: "backend-service",
* protocol: "TCP",
* timeoutSec: 10,
* healthChecks: defaultHealthCheck.id,
* });
* const _default = new gcp.compute.TargetTCPProxy("default", {
* name: "test-proxy",
* backendService: defaultBackendService.id,
* });
* ```
*
* ## Import
*
* TargetTcpProxy can be imported using any of these accepted formats:
*
* * `projects/{{project}}/global/targetTcpProxies/{{name}}`
*
* * `{{project}}/{{name}}`
*
* * `{{name}}`
*
* When using the `pulumi import` command, TargetTcpProxy can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:compute/targetTCPProxy:TargetTCPProxy default projects/{{project}}/global/targetTcpProxies/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/targetTCPProxy:TargetTCPProxy default {{project}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/targetTCPProxy:TargetTCPProxy default {{name}}
* ```
*/
class TargetTCPProxy extends pulumi.CustomResource {
/**
* Get an existing TargetTCPProxy 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 TargetTCPProxy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of TargetTCPProxy. 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'] === TargetTCPProxy.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["backendService"] = state ? state.backendService : undefined;
resourceInputs["creationTimestamp"] = state ? state.creationTimestamp : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["project"] = state ? state.project : undefined;
resourceInputs["proxyBind"] = state ? state.proxyBind : undefined;
resourceInputs["proxyHeader"] = state ? state.proxyHeader : undefined;
resourceInputs["proxyId"] = state ? state.proxyId : undefined;
resourceInputs["selfLink"] = state ? state.selfLink : undefined;
}
else {
const args = argsOrState;
if ((!args || args.backendService === undefined) && !opts.urn) {
throw new Error("Missing required property 'backendService'");
}
resourceInputs["backendService"] = args ? args.backendService : undefined;
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["project"] = args ? args.project : undefined;
resourceInputs["proxyBind"] = args ? args.proxyBind : undefined;
resourceInputs["proxyHeader"] = args ? args.proxyHeader : undefined;
resourceInputs["creationTimestamp"] = undefined /*out*/;
resourceInputs["proxyId"] = undefined /*out*/;
resourceInputs["selfLink"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(TargetTCPProxy.__pulumiType, name, resourceInputs, opts);
}
}
exports.TargetTCPProxy = TargetTCPProxy;
/** @internal */
TargetTCPProxy.__pulumiType = 'gcp:compute/targetTCPProxy:TargetTCPProxy';
//# sourceMappingURL=targetTCPProxy.js.map