UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

145 lines 6.17 kB
"use strict"; // *** 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.TargetSSLProxy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Represents a TargetSslProxy resource, which is used by one or more * global forwarding rule to route incoming SSL requests to a backend * service. * * To get more information about TargetSslProxy, see: * * * [API documentation](https://cloud.google.com/compute/docs/reference/v1/targetSslProxies) * * How-to Guides * * [Setting Up SSL proxy for Google Cloud Load Balancing](https://cloud.google.com/compute/docs/load-balancing/tcp-ssl/) * * ## Example Usage * * ### Target Ssl Proxy Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * import * as std from "@pulumi/std"; * * const defaultSSLCertificate = new gcp.compute.SSLCertificate("default", { * name: "default-cert", * privateKey: std.file({ * input: "path/to/private.key", * }).then(invoke => invoke.result), * certificate: std.file({ * input: "path/to/certificate.crt", * }).then(invoke => invoke.result), * }); * const defaultHealthCheck = new gcp.compute.HealthCheck("default", { * name: "health-check", * checkIntervalSec: 1, * timeoutSec: 1, * tcpHealthCheck: { * port: 443, * }, * }); * const defaultBackendService = new gcp.compute.BackendService("default", { * name: "backend-service", * protocol: "SSL", * healthChecks: defaultHealthCheck.id, * }); * const _default = new gcp.compute.TargetSSLProxy("default", { * name: "test-proxy", * backendService: defaultBackendService.id, * sslCertificates: [defaultSSLCertificate.id], * }); * ``` * * ## Import * * TargetSslProxy can be imported using any of these accepted formats: * * * `projects/{{project}}/global/targetSslProxies/{{name}}` * * * `{{project}}/{{name}}` * * * `{{name}}` * * When using the `pulumi import` command, TargetSslProxy can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:compute/targetSSLProxy:TargetSSLProxy default projects/{{project}}/global/targetSslProxies/{{name}} * ``` * * ```sh * $ pulumi import gcp:compute/targetSSLProxy:TargetSSLProxy default {{project}}/{{name}} * ``` * * ```sh * $ pulumi import gcp:compute/targetSSLProxy:TargetSSLProxy default {{name}} * ``` */ class TargetSSLProxy extends pulumi.CustomResource { /** * Get an existing TargetSSLProxy 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 TargetSSLProxy(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of TargetSSLProxy. 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'] === TargetSSLProxy.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["backendService"] = state ? state.backendService : undefined; resourceInputs["certificateMap"] = state ? state.certificateMap : 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["proxyHeader"] = state ? state.proxyHeader : undefined; resourceInputs["proxyId"] = state ? state.proxyId : undefined; resourceInputs["selfLink"] = state ? state.selfLink : undefined; resourceInputs["sslCertificates"] = state ? state.sslCertificates : undefined; resourceInputs["sslPolicy"] = state ? state.sslPolicy : 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["certificateMap"] = args ? args.certificateMap : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["project"] = args ? args.project : undefined; resourceInputs["proxyHeader"] = args ? args.proxyHeader : undefined; resourceInputs["sslCertificates"] = args ? args.sslCertificates : undefined; resourceInputs["sslPolicy"] = args ? args.sslPolicy : undefined; resourceInputs["creationTimestamp"] = undefined /*out*/; resourceInputs["proxyId"] = undefined /*out*/; resourceInputs["selfLink"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(TargetSSLProxy.__pulumiType, name, resourceInputs, opts); } } exports.TargetSSLProxy = TargetSSLProxy; /** @internal */ TargetSSLProxy.__pulumiType = 'gcp:compute/targetSSLProxy:TargetSSLProxy'; //# sourceMappingURL=targetSSLProxy.js.map