@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
112 lines • 5.3 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.SSLCertificate = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* An SslCertificate resource, used for HTTPS load balancing. This resource
* provides a mechanism to upload an SSL key and certificate to
* the load balancer to serve secure connections from the user.
*
* To get more information about SslCertificate, see:
*
* * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/sslCertificates)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/load-balancing/docs/ssl-certificates)
*
* ## Example Usage
*
* ## Import
*
* SslCertificate can be imported using any of these accepted formats:
*
* * `projects/{{project}}/global/sslCertificates/{{name}}`
*
* * `{{project}}/{{name}}`
*
* * `{{name}}`
*
* When using the `pulumi import` command, SslCertificate can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:compute/sSLCertificate:SSLCertificate default projects/{{project}}/global/sslCertificates/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/sSLCertificate:SSLCertificate default {{project}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/sSLCertificate:SSLCertificate default {{name}}
* ```
*/
class SSLCertificate extends pulumi.CustomResource {
/**
* Get an existing SSLCertificate 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 SSLCertificate(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of SSLCertificate. 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'] === SSLCertificate.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["certificate"] = state ? state.certificate : undefined;
resourceInputs["certificateId"] = state ? state.certificateId : undefined;
resourceInputs["creationTimestamp"] = state ? state.creationTimestamp : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["expireTime"] = state ? state.expireTime : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["namePrefix"] = state ? state.namePrefix : undefined;
resourceInputs["privateKey"] = state ? state.privateKey : undefined;
resourceInputs["project"] = state ? state.project : undefined;
resourceInputs["selfLink"] = state ? state.selfLink : undefined;
}
else {
const args = argsOrState;
if ((!args || args.certificate === undefined) && !opts.urn) {
throw new Error("Missing required property 'certificate'");
}
if ((!args || args.privateKey === undefined) && !opts.urn) {
throw new Error("Missing required property 'privateKey'");
}
resourceInputs["certificate"] = (args === null || args === void 0 ? void 0 : args.certificate) ? pulumi.secret(args.certificate) : undefined;
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["namePrefix"] = args ? args.namePrefix : undefined;
resourceInputs["privateKey"] = (args === null || args === void 0 ? void 0 : args.privateKey) ? pulumi.secret(args.privateKey) : undefined;
resourceInputs["project"] = args ? args.project : undefined;
resourceInputs["certificateId"] = undefined /*out*/;
resourceInputs["creationTimestamp"] = undefined /*out*/;
resourceInputs["expireTime"] = undefined /*out*/;
resourceInputs["selfLink"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["certificate", "privateKey"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(SSLCertificate.__pulumiType, name, resourceInputs, opts);
}
}
exports.SSLCertificate = SSLCertificate;
/** @internal */
SSLCertificate.__pulumiType = 'gcp:compute/sSLCertificate:SSLCertificate';
//# sourceMappingURL=sslcertificate.js.map