UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

106 lines 4.82 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.Certificate = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage alb certificate * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.alb.Certificate("foo", { * description: "test123", * privateKey: "private key", * publicKey: "public key", * tags: [{ * key: "k1", * value: "v1", * }], * }); * ``` * * ## Import * * Certificate can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:alb/certificate:Certificate default cert-2fe5k****c16o5oxruvtk3qf5 * ``` */ class Certificate extends pulumi.CustomResource { /** * Get an existing Certificate 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 Certificate(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of Certificate. 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'] === Certificate.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["certificateName"] = state ? state.certificateName : undefined; resourceInputs["certificateType"] = state ? state.certificateType : undefined; resourceInputs["createTime"] = state ? state.createTime : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["domainName"] = state ? state.domainName : undefined; resourceInputs["expiredAt"] = state ? state.expiredAt : undefined; resourceInputs["listeners"] = state ? state.listeners : undefined; resourceInputs["privateKey"] = state ? state.privateKey : undefined; resourceInputs["projectName"] = state ? state.projectName : undefined; resourceInputs["publicKey"] = state ? state.publicKey : undefined; resourceInputs["san"] = state ? state.san : undefined; resourceInputs["status"] = state ? state.status : undefined; resourceInputs["tags"] = state ? state.tags : undefined; } else { const args = argsOrState; if ((!args || args.privateKey === undefined) && !opts.urn) { throw new Error("Missing required property 'privateKey'"); } if ((!args || args.publicKey === undefined) && !opts.urn) { throw new Error("Missing required property 'publicKey'"); } resourceInputs["certificateName"] = args ? args.certificateName : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["privateKey"] = args ? args.privateKey : undefined; resourceInputs["projectName"] = args ? args.projectName : undefined; resourceInputs["publicKey"] = args ? args.publicKey : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["certificateType"] = undefined /*out*/; resourceInputs["createTime"] = undefined /*out*/; resourceInputs["domainName"] = undefined /*out*/; resourceInputs["expiredAt"] = undefined /*out*/; resourceInputs["listeners"] = undefined /*out*/; resourceInputs["san"] = undefined /*out*/; resourceInputs["status"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(Certificate.__pulumiType, name, resourceInputs, opts); } } exports.Certificate = Certificate; /** @internal */ Certificate.__pulumiType = 'volcengine:alb/certificate:Certificate'; //# sourceMappingURL=certificate.js.map