@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
95 lines • 4.29 kB
JavaScript
;
// *** 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.UserGroupPolicyAttachment = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage iam user group policy attachment
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooPolicy = new volcengine.iam.Policy("fooPolicy", {
* policyName: "acc-test-policy",
* description: "acc-test",
* policyDocument: "{\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"auto_scaling:DescribeScalingGroups\"],\"Resource\":[\"*\"]}]}",
* });
* const fooUserGroup = new volcengine.iam.UserGroup("fooUserGroup", {
* userGroupName: "acc-test-group",
* description: "acc-test",
* displayName: "acc-test",
* });
* const fooUserGroupPolicyAttachment = new volcengine.iam.UserGroupPolicyAttachment("fooUserGroupPolicyAttachment", {
* policyName: fooPolicy.policyName,
* policyType: "Custom",
* userGroupName: fooUserGroup.userGroupName,
* });
* ```
*
* ## Import
*
* IamUserGroupPolicyAttachment can be imported using the user group name and policy name, e.g.
*
* ```sh
* $ pulumi import volcengine:iam/userGroupPolicyAttachment:UserGroupPolicyAttachment default userGroupName:policyName
* ```
*/
class UserGroupPolicyAttachment extends pulumi.CustomResource {
/**
* Get an existing UserGroupPolicyAttachment 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 UserGroupPolicyAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of UserGroupPolicyAttachment. 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'] === UserGroupPolicyAttachment.__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["userGroupName"] = state ? state.userGroupName : 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.userGroupName === undefined) && !opts.urn) {
throw new Error("Missing required property 'userGroupName'");
}
resourceInputs["policyName"] = args ? args.policyName : undefined;
resourceInputs["policyType"] = args ? args.policyType : undefined;
resourceInputs["userGroupName"] = args ? args.userGroupName : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(UserGroupPolicyAttachment.__pulumiType, name, resourceInputs, opts);
}
}
exports.UserGroupPolicyAttachment = UserGroupPolicyAttachment;
/** @internal */
UserGroupPolicyAttachment.__pulumiType = 'volcengine:iam/userGroupPolicyAttachment:UserGroupPolicyAttachment';
//# sourceMappingURL=userGroupPolicyAttachment.js.map