UNPKG

@pulumi/pulumiservice

Version:
74 lines 3.48 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.Team = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * The Pulumi Cloud offers role-based access control (RBAC) using teams. Teams allow organization admins to assign a set of stack permissions to a group of users. */ class Team extends pulumi.CustomResource { /** * Get an existing Team 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, opts) { return new Team(name, undefined, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of Team. 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'] === Team.__pulumiType; } /** * Create a Team resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name, args, opts) { let resourceInputs = {}; opts = opts || {}; if (!opts.id) { if ((!args || args.organizationName === undefined) && !opts.urn) { throw new Error("Missing required property 'organizationName'"); } if ((!args || args.teamType === undefined) && !opts.urn) { throw new Error("Missing required property 'teamType'"); } resourceInputs["description"] = args ? args.description : undefined; resourceInputs["displayName"] = args ? args.displayName : undefined; resourceInputs["githubTeamId"] = args ? args.githubTeamId : undefined; resourceInputs["members"] = args ? args.members : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["organizationName"] = args ? args.organizationName : undefined; resourceInputs["teamType"] = args ? args.teamType : undefined; } else { resourceInputs["description"] = undefined /*out*/; resourceInputs["displayName"] = undefined /*out*/; resourceInputs["githubTeamId"] = undefined /*out*/; resourceInputs["members"] = undefined /*out*/; resourceInputs["name"] = undefined /*out*/; resourceInputs["organizationName"] = undefined /*out*/; resourceInputs["teamType"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(Team.__pulumiType, name, resourceInputs, opts); } } exports.Team = Team; /** @internal */ Team.__pulumiType = 'pulumiservice:index:Team'; //# sourceMappingURL=team.js.map