UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

94 lines 4.07 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.UserPolicyAttachment = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage iam user policy attachment * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const user = new volcengine.iam.User("user", { * userName: "TfTest", * description: "test", * }); * const policy = new volcengine.iam.Policy("policy", { * policyName: "TerraformResourceTest1", * description: "created by terraform 1", * policyDocument: "{\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"auto_scaling:DescribeScalingGroups\"],\"Resource\":[\"*\"]}]}", * }); * const foo = new volcengine.iam.UserPolicyAttachment("foo", { * userName: user.userName, * policyName: policy.policyName, * policyType: policy.policyType, * }); * ``` * * ## Import * * Iam user policy attachment can be imported using the UserName:PolicyName:PolicyType, e.g. * * ```sh * $ pulumi import volcengine:iam/userPolicyAttachment:UserPolicyAttachment default TerraformTestUser:TerraformTestPolicy:Custom * ``` */ class UserPolicyAttachment extends pulumi.CustomResource { /** * Get an existing UserPolicyAttachment 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 UserPolicyAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of UserPolicyAttachment. 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'] === UserPolicyAttachment.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["policyName"] = state ? state.policyName : undefined; resourceInputs["policyType"] = state ? state.policyType : undefined; resourceInputs["userName"] = state ? state.userName : undefined; } else { const args = argsOrState; if ((!args || args.policyName === undefined) && !opts.urn) { throw new Error("Missing required property 'policyName'"); } if ((!args || args.policyType === undefined) && !opts.urn) { throw new Error("Missing required property 'policyType'"); } if ((!args || args.userName === undefined) && !opts.urn) { throw new Error("Missing required property 'userName'"); } resourceInputs["policyName"] = args ? args.policyName : undefined; resourceInputs["policyType"] = args ? args.policyType : undefined; resourceInputs["userName"] = args ? args.userName : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(UserPolicyAttachment.__pulumiType, name, resourceInputs, opts); } } exports.UserPolicyAttachment = UserPolicyAttachment; /** @internal */ UserPolicyAttachment.__pulumiType = 'volcengine:iam/userPolicyAttachment:UserPolicyAttachment'; //# sourceMappingURL=userPolicyAttachment.js.map