UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

90 lines 3.86 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"); /** * Provides a resource to manage iam access key * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const fooUser = new volcengine.iam.User("fooUser", { * userName: "acc-test-user", * description: "acc-test", * displayName: "name", * }); * const fooAccessKey = new volcengine.iam.AccessKey("fooAccessKey", { * userName: fooUser.userName, * secretFile: "./sk", * status: "active", * }); * // pgp_key = "keybase:some_person_that_exists" * ``` * * ## Import * * Iam access key don't support import */ 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["createDate"] = state ? state.createDate : 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["userName"] = state ? state.userName : undefined; } else { const args = argsOrState; resourceInputs["pgpKey"] = args ? args.pgpKey : undefined; resourceInputs["secretFile"] = args ? args.secretFile : undefined; resourceInputs["status"] = args ? args.status : undefined; resourceInputs["userName"] = args ? args.userName : undefined; resourceInputs["createDate"] = undefined /*out*/; resourceInputs["encryptedSecret"] = undefined /*out*/; resourceInputs["keyFingerprint"] = undefined /*out*/; resourceInputs["secret"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["secret"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(AccessKey.__pulumiType, name, resourceInputs, opts); } } exports.AccessKey = AccessKey; /** @internal */ AccessKey.__pulumiType = 'volcengine:iam/accessKey:AccessKey'; //# sourceMappingURL=accessKey.js.map