UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

98 lines 4.44 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.CACertificate = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage alb ca certificate * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.alb.CACertificate("foo", { * caCertificate: `-----BEGIN CERTIFICATE----- * -----END CERTIFICATE----- * `, * caCertificateName: "acc-test-1", * description: "acc-test-1", * projectName: "default", * }); * ``` * * ## Import * * AlbCaCertificate can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:alb/cACertificate:CACertificate default cert-***** * ``` */ class CACertificate extends pulumi.CustomResource { /** * Get an existing CACertificate 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 CACertificate(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of CACertificate. 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'] === CACertificate.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["caCertificate"] = state ? state.caCertificate : undefined; resourceInputs["caCertificateName"] = state ? state.caCertificateName : 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["projectName"] = state ? state.projectName : undefined; resourceInputs["san"] = state ? state.san : undefined; resourceInputs["status"] = state ? state.status : undefined; } else { const args = argsOrState; if ((!args || args.caCertificate === undefined) && !opts.urn) { throw new Error("Missing required property 'caCertificate'"); } resourceInputs["caCertificate"] = args ? args.caCertificate : undefined; resourceInputs["caCertificateName"] = args ? args.caCertificateName : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["projectName"] = args ? args.projectName : 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(CACertificate.__pulumiType, name, resourceInputs, opts); } } exports.CACertificate = CACertificate; /** @internal */ CACertificate.__pulumiType = 'volcengine:alb/cACertificate:CACertificate'; //# sourceMappingURL=cacertificate.js.map