UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

104 lines 4.73 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.Account = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage rds postgresql account * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.rds_postgresql.Account("foo", { * accountName: "acc-test-account", * accountPassword: "93c@*****!ab12", * accountType: "Super", * instanceId: "postgres-954*****7233", * }); * const foo1 = new volcengine.rds_postgresql.Account("foo1", { * accountName: "acc-test-account1", * accountPassword: "9wc@****b12", * accountPrivileges: "Inherit,Login,CreateRole,CreateDB", * accountType: "Normal", * instanceId: "postgres-95*****7233", * }); * ``` * * ## Import * * RDS postgresql account can be imported using the instance_id:account_name, e.g. * * ```sh * $ pulumi import volcengine:rds_postgresql/account:Account default postgres-ca7b7019****:accountName * ``` */ class Account extends pulumi.CustomResource { /** * Get an existing Account 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 Account(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of Account. 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'] === Account.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["accountName"] = state ? state.accountName : undefined; resourceInputs["accountPassword"] = state ? state.accountPassword : undefined; resourceInputs["accountPrivileges"] = state ? state.accountPrivileges : undefined; resourceInputs["accountStatus"] = state ? state.accountStatus : undefined; resourceInputs["accountType"] = state ? state.accountType : undefined; resourceInputs["instanceId"] = state ? state.instanceId : undefined; } else { const args = argsOrState; if ((!args || args.accountName === undefined) && !opts.urn) { throw new Error("Missing required property 'accountName'"); } if ((!args || args.accountPassword === undefined) && !opts.urn) { throw new Error("Missing required property 'accountPassword'"); } if ((!args || args.accountType === undefined) && !opts.urn) { throw new Error("Missing required property 'accountType'"); } if ((!args || args.instanceId === undefined) && !opts.urn) { throw new Error("Missing required property 'instanceId'"); } resourceInputs["accountName"] = args ? args.accountName : undefined; resourceInputs["accountPassword"] = (args === null || args === void 0 ? void 0 : args.accountPassword) ? pulumi.secret(args.accountPassword) : undefined; resourceInputs["accountPrivileges"] = args ? args.accountPrivileges : undefined; resourceInputs["accountType"] = args ? args.accountType : undefined; resourceInputs["instanceId"] = args ? args.instanceId : undefined; resourceInputs["accountStatus"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["accountPassword"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(Account.__pulumiType, name, resourceInputs, opts); } } exports.Account = Account; /** @internal */ Account.__pulumiType = 'volcengine:rds_postgresql/account:Account'; //# sourceMappingURL=account.js.map