UNPKG

@pulumi/gcp

Version:

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

109 lines 4.99 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.RegionSslPolicy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Represents a Regional SSL policy. SSL policies give you the ability to control the * features of SSL that your SSL proxy or HTTPS load balancer negotiates. * * To get more information about RegionSslPolicy, see: * * * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionSslPolicies) * * How-to Guides * * [Using SSL Policies](https://cloud.google.com/compute/docs/load-balancing/ssl-policies) * * ## Import * * RegionSslPolicy can be imported using any of these accepted formats: * * * `projects/{{project}}/regions/{{region}}/sslPolicies/{{name}}` * * * `{{project}}/{{region}}/{{name}}` * * * `{{region}}/{{name}}` * * * `{{name}}` * * When using the `pulumi import` command, RegionSslPolicy can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:compute/regionSslPolicy:RegionSslPolicy default projects/{{project}}/regions/{{region}}/sslPolicies/{{name}} * ``` * * ```sh * $ pulumi import gcp:compute/regionSslPolicy:RegionSslPolicy default {{project}}/{{region}}/{{name}} * ``` * * ```sh * $ pulumi import gcp:compute/regionSslPolicy:RegionSslPolicy default {{region}}/{{name}} * ``` * * ```sh * $ pulumi import gcp:compute/regionSslPolicy:RegionSslPolicy default {{name}} * ``` */ class RegionSslPolicy extends pulumi.CustomResource { /** * Get an existing RegionSslPolicy 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 RegionSslPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of RegionSslPolicy. 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'] === RegionSslPolicy.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["creationTimestamp"] = state ? state.creationTimestamp : undefined; resourceInputs["customFeatures"] = state ? state.customFeatures : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["enabledFeatures"] = state ? state.enabledFeatures : undefined; resourceInputs["fingerprint"] = state ? state.fingerprint : undefined; resourceInputs["minTlsVersion"] = state ? state.minTlsVersion : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["profile"] = state ? state.profile : undefined; resourceInputs["project"] = state ? state.project : undefined; resourceInputs["region"] = state ? state.region : undefined; resourceInputs["selfLink"] = state ? state.selfLink : undefined; } else { const args = argsOrState; resourceInputs["customFeatures"] = args ? args.customFeatures : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["minTlsVersion"] = args ? args.minTlsVersion : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["profile"] = args ? args.profile : undefined; resourceInputs["project"] = args ? args.project : undefined; resourceInputs["region"] = args ? args.region : undefined; resourceInputs["creationTimestamp"] = undefined /*out*/; resourceInputs["enabledFeatures"] = undefined /*out*/; resourceInputs["fingerprint"] = undefined /*out*/; resourceInputs["selfLink"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(RegionSslPolicy.__pulumiType, name, resourceInputs, opts); } } exports.RegionSslPolicy = RegionSslPolicy; /** @internal */ RegionSslPolicy.__pulumiType = 'gcp:compute/regionSslPolicy:RegionSslPolicy'; //# sourceMappingURL=regionSslPolicy.js.map