UNPKG

@pulumi/gcp

Version:

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

220 lines • 7.79 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.TlsRoute = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * TlsRoute defines how traffic should be routed based on SNI and other matching L3 attributes. * * To get more information about TlsRoute, see: * * * [API documentation](https://cloud.google.com/traffic-director/docs/reference/network-services/rest/v1beta1/projects.locations.tlsRoutes) * * ## Example Usage * * ### Network Services Tls Route Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const defaultHttpHealthCheck = new gcp.compute.HttpHealthCheck("default", { * name: "backend-service-health-check", * requestPath: "/", * checkIntervalSec: 1, * timeoutSec: 1, * }); * const _default = new gcp.compute.BackendService("default", { * name: "my-backend-service", * healthChecks: defaultHttpHealthCheck.id, * }); * const defaultTlsRoute = new gcp.networkservices.TlsRoute("default", { * name: "my-tls-route", * description: "my description", * rules: [{ * matches: [{ * sniHosts: ["example.com"], * alpns: ["http/1.1"], * }], * action: { * destinations: [{ * serviceName: _default.id, * weight: 1, * }], * }, * }], * }); * ``` * ### Network Services Tls Route Mesh Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const defaultHttpHealthCheck = new gcp.compute.HttpHealthCheck("default", { * name: "backend-service-health-check", * requestPath: "/", * checkIntervalSec: 1, * timeoutSec: 1, * }); * const _default = new gcp.compute.BackendService("default", { * name: "my-backend-service", * healthChecks: defaultHttpHealthCheck.id, * }); * const defaultMesh = new gcp.networkservices.Mesh("default", { * name: "my-tls-route", * labels: { * foo: "bar", * }, * description: "my description", * }); * const defaultTlsRoute = new gcp.networkservices.TlsRoute("default", { * name: "my-tls-route", * description: "my description", * meshes: [defaultMesh.id], * rules: [{ * matches: [{ * sniHosts: ["example.com"], * alpns: ["http/1.1"], * }], * action: { * destinations: [{ * serviceName: _default.id, * weight: 1, * }], * }, * }], * }); * ``` * ### Network Services Tls Route Gateway Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const defaultHttpHealthCheck = new gcp.compute.HttpHealthCheck("default", { * name: "backend-service-health-check", * requestPath: "/", * checkIntervalSec: 1, * timeoutSec: 1, * }); * const _default = new gcp.compute.BackendService("default", { * name: "my-backend-service", * healthChecks: defaultHttpHealthCheck.id, * }); * const defaultGateway = new gcp.networkservices.Gateway("default", { * name: "my-tls-route", * labels: { * foo: "bar", * }, * description: "my description", * scope: "my-scope", * type: "OPEN_MESH", * ports: [443], * }); * const defaultTlsRoute = new gcp.networkservices.TlsRoute("default", { * name: "my-tls-route", * description: "my description", * gateways: [defaultGateway.id], * rules: [{ * matches: [{ * sniHosts: ["example.com"], * alpns: ["http/1.1"], * }], * action: { * destinations: [{ * serviceName: _default.id, * weight: 1, * }], * }, * }], * }); * ``` * * ## Import * * TlsRoute can be imported using any of these accepted formats: * * * `projects/{{project}}/locations/global/tlsRoutes/{{name}}` * * * `{{project}}/{{name}}` * * * `{{name}}` * * When using the `pulumi import` command, TlsRoute can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:networkservices/tlsRoute:TlsRoute default projects/{{project}}/locations/global/tlsRoutes/{{name}} * ``` * * ```sh * $ pulumi import gcp:networkservices/tlsRoute:TlsRoute default {{project}}/{{name}} * ``` * * ```sh * $ pulumi import gcp:networkservices/tlsRoute:TlsRoute default {{name}} * ``` */ class TlsRoute extends pulumi.CustomResource { /** * Get an existing TlsRoute 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 TlsRoute(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of TlsRoute. 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'] === TlsRoute.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["createTime"] = state ? state.createTime : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["gateways"] = state ? state.gateways : undefined; resourceInputs["meshes"] = state ? state.meshes : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["project"] = state ? state.project : undefined; resourceInputs["rules"] = state ? state.rules : undefined; resourceInputs["selfLink"] = state ? state.selfLink : undefined; resourceInputs["updateTime"] = state ? state.updateTime : undefined; } else { const args = argsOrState; if ((!args || args.rules === undefined) && !opts.urn) { throw new Error("Missing required property 'rules'"); } resourceInputs["description"] = args ? args.description : undefined; resourceInputs["gateways"] = args ? args.gateways : undefined; resourceInputs["meshes"] = args ? args.meshes : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["project"] = args ? args.project : undefined; resourceInputs["rules"] = args ? args.rules : undefined; resourceInputs["createTime"] = undefined /*out*/; resourceInputs["selfLink"] = undefined /*out*/; resourceInputs["updateTime"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(TlsRoute.__pulumiType, name, resourceInputs, opts); } } exports.TlsRoute = TlsRoute; /** @internal */ TlsRoute.__pulumiType = 'gcp:networkservices/tlsRoute:TlsRoute'; //# sourceMappingURL=tlsRoute.js.map