UNPKG

@huaweicloudos/pulumi

Version:

A Pulumi package for creating and managing Huaweicloud cloud resources.

90 lines 4.18 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.AccessKey = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Manages a permanent Access Key resource within HuaweiCloud IAM service. * * > **NOTE:** You *must* have admin privileges in your HuaweiCloud cloud to use this resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as pulumi from "@huaweicloudos/pulumi"; * * const config = new pulumi.Config(); * const user1Password = config.requireObject("user1Password"); * const user1 = new huaweicloud.iam.User("user1", { * description: "A user", * password: user1Password, * }); * const key1 = new huaweicloud.iam.AccessKey("key1", {userId: user1.id}); * ``` */ class AccessKey extends pulumi.CustomResource { /** * Get an existing AccessKey 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 AccessKey(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of AccessKey. 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'] === AccessKey.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["createTime"] = state ? state.createTime : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["encryptedSecret"] = state ? state.encryptedSecret : undefined; resourceInputs["keyFingerprint"] = state ? state.keyFingerprint : undefined; resourceInputs["pgpKey"] = state ? state.pgpKey : undefined; resourceInputs["secret"] = state ? state.secret : undefined; resourceInputs["secretFile"] = state ? state.secretFile : undefined; resourceInputs["status"] = state ? state.status : undefined; resourceInputs["userId"] = state ? state.userId : undefined; resourceInputs["userName"] = state ? state.userName : undefined; } else { const args = argsOrState; if ((!args || args.userId === undefined) && !opts.urn) { throw new Error("Missing required property 'userId'"); } resourceInputs["description"] = args ? args.description : undefined; resourceInputs["pgpKey"] = args ? args.pgpKey : undefined; resourceInputs["secretFile"] = args ? args.secretFile : undefined; resourceInputs["status"] = args ? args.status : undefined; resourceInputs["userId"] = args ? args.userId : undefined; resourceInputs["createTime"] = undefined /*out*/; resourceInputs["encryptedSecret"] = undefined /*out*/; resourceInputs["keyFingerprint"] = undefined /*out*/; resourceInputs["secret"] = undefined /*out*/; resourceInputs["userName"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(AccessKey.__pulumiType, name, resourceInputs, opts); } } exports.AccessKey = AccessKey; /** @internal */ AccessKey.__pulumiType = 'huaweicloud:Iam/accessKey:AccessKey'; //# sourceMappingURL=accessKey.js.map