UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

97 lines 4.29 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.PolicyProject = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage iam policy project * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.iam.PolicyProject("foo", { * policyName: "restart-oas-ecs", * policyType: "Custom", * principalName: "jonny", * principalType: "User", * projectNames: ["default"], * }); * ``` * * ## Import * * IamPolicyProject can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:iam/policyProject:PolicyProject default PrincipalType:PrincipalName:PolicyType:PolicyName:ProjectName * ``` */ class PolicyProject extends pulumi.CustomResource { /** * Get an existing PolicyProject 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 PolicyProject(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of PolicyProject. 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'] === PolicyProject.__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["principalName"] = state ? state.principalName : undefined; resourceInputs["principalType"] = state ? state.principalType : undefined; resourceInputs["projectNames"] = state ? state.projectNames : 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.principalName === undefined) && !opts.urn) { throw new Error("Missing required property 'principalName'"); } if ((!args || args.principalType === undefined) && !opts.urn) { throw new Error("Missing required property 'principalType'"); } if ((!args || args.projectNames === undefined) && !opts.urn) { throw new Error("Missing required property 'projectNames'"); } resourceInputs["policyName"] = args ? args.policyName : undefined; resourceInputs["policyType"] = args ? args.policyType : undefined; resourceInputs["principalName"] = args ? args.principalName : undefined; resourceInputs["principalType"] = args ? args.principalType : undefined; resourceInputs["projectNames"] = args ? args.projectNames : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(PolicyProject.__pulumiType, name, resourceInputs, opts); } } exports.PolicyProject = PolicyProject; /** @internal */ PolicyProject.__pulumiType = 'volcengine:iam/policyProject:PolicyProject'; //# sourceMappingURL=policyProject.js.map