@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
254 lines • 11.9 kB
JavaScript
// *** 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.RepositoryGroupIamMember = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Three different resources help you manage your IAM policy for Gemini for Google Cloud RepositoryGroup. Each of these resources serves a different use case:
*
* * `gcp.gemini.RepositoryGroupIamPolicy`: Authoritative. Sets the IAM policy for the repositorygroup and replaces any existing policy already attached.
* * `gcp.gemini.RepositoryGroupIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the repositorygroup are preserved.
* * `gcp.gemini.RepositoryGroupIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the repositorygroup are preserved.
*
* A data source can be used to retrieve policy data in advent you do not need creation
*
* * `gcp.gemini.RepositoryGroupIamPolicy`: Retrieves the IAM policy for the repositorygroup
*
* > **Note:** `gcp.gemini.RepositoryGroupIamPolicy` **cannot** be used in conjunction with `gcp.gemini.RepositoryGroupIamBinding` and `gcp.gemini.RepositoryGroupIamMember` or they will fight over what your policy should be.
*
* > **Note:** `gcp.gemini.RepositoryGroupIamBinding` resources **can be** used in conjunction with `gcp.gemini.RepositoryGroupIamMember` resources **only if** they do not grant privilege to the same role.
*
* ## gcp.gemini.RepositoryGroupIamPolicy
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const admin = gcp.organizations.getIAMPolicy({
* bindings: [{
* role: "roles/cloudaicompanion.repositoryGroupsUser",
* members: ["user:jane@example.com"],
* }],
* });
* const policy = new gcp.gemini.RepositoryGroupIamPolicy("policy", {
* project: example.project,
* location: example.location,
* codeRepositoryIndex: example.codeRepositoryIndex,
* repositoryGroupId: example.repositoryGroupId,
* policyData: admin.then(admin => admin.policyData),
* });
* ```
*
* ## gcp.gemini.RepositoryGroupIamBinding
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const binding = new gcp.gemini.RepositoryGroupIamBinding("binding", {
* project: example.project,
* location: example.location,
* codeRepositoryIndex: example.codeRepositoryIndex,
* repositoryGroupId: example.repositoryGroupId,
* role: "roles/cloudaicompanion.repositoryGroupsUser",
* members: ["user:jane@example.com"],
* });
* ```
*
* ## gcp.gemini.RepositoryGroupIamMember
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const member = new gcp.gemini.RepositoryGroupIamMember("member", {
* project: example.project,
* location: example.location,
* codeRepositoryIndex: example.codeRepositoryIndex,
* repositoryGroupId: example.repositoryGroupId,
* role: "roles/cloudaicompanion.repositoryGroupsUser",
* member: "user:jane@example.com",
* });
* ```
*
* ## This resource supports User Project Overrides.
*
* -
*
* # IAM policy for Gemini for Google Cloud RepositoryGroup
*
* Three different resources help you manage your IAM policy for Gemini for Google Cloud RepositoryGroup. Each of these resources serves a different use case:
*
* * `gcp.gemini.RepositoryGroupIamPolicy`: Authoritative. Sets the IAM policy for the repositorygroup and replaces any existing policy already attached.
* * `gcp.gemini.RepositoryGroupIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the repositorygroup are preserved.
* * `gcp.gemini.RepositoryGroupIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the repositorygroup are preserved.
*
* A data source can be used to retrieve policy data in advent you do not need creation
*
* * `gcp.gemini.RepositoryGroupIamPolicy`: Retrieves the IAM policy for the repositorygroup
*
* > **Note:** `gcp.gemini.RepositoryGroupIamPolicy` **cannot** be used in conjunction with `gcp.gemini.RepositoryGroupIamBinding` and `gcp.gemini.RepositoryGroupIamMember` or they will fight over what your policy should be.
*
* > **Note:** `gcp.gemini.RepositoryGroupIamBinding` resources **can be** used in conjunction with `gcp.gemini.RepositoryGroupIamMember` resources **only if** they do not grant privilege to the same role.
*
* ## gcp.gemini.RepositoryGroupIamPolicy
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const admin = gcp.organizations.getIAMPolicy({
* bindings: [{
* role: "roles/cloudaicompanion.repositoryGroupsUser",
* members: ["user:jane@example.com"],
* }],
* });
* const policy = new gcp.gemini.RepositoryGroupIamPolicy("policy", {
* project: example.project,
* location: example.location,
* codeRepositoryIndex: example.codeRepositoryIndex,
* repositoryGroupId: example.repositoryGroupId,
* policyData: admin.then(admin => admin.policyData),
* });
* ```
*
* ## gcp.gemini.RepositoryGroupIamBinding
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const binding = new gcp.gemini.RepositoryGroupIamBinding("binding", {
* project: example.project,
* location: example.location,
* codeRepositoryIndex: example.codeRepositoryIndex,
* repositoryGroupId: example.repositoryGroupId,
* role: "roles/cloudaicompanion.repositoryGroupsUser",
* members: ["user:jane@example.com"],
* });
* ```
*
* ## gcp.gemini.RepositoryGroupIamMember
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const member = new gcp.gemini.RepositoryGroupIamMember("member", {
* project: example.project,
* location: example.location,
* codeRepositoryIndex: example.codeRepositoryIndex,
* repositoryGroupId: example.repositoryGroupId,
* role: "roles/cloudaicompanion.repositoryGroupsUser",
* member: "user:jane@example.com",
* });
* ```
*
* ## Import
*
* For all import syntaxes, the "resource in question" can take any of the following forms:
*
* * projects/{{project}}/locations/{{location}}/codeRepositoryIndexes/{{code_repository_index}}/repositoryGroups/{{repository_group_id}}
*
* * {{project}}/{{location}}/{{code_repository_index}}/{{repository_group_id}}
*
* * {{location}}/{{code_repository_index}}/{{repository_group_id}}
*
* * {{repository_group_id}}
*
* Any variables not passed in the import command will be taken from the provider configuration.
*
* Gemini for Google Cloud repositorygroup IAM resources can be imported using the resource identifiers, role, and member.
*
* IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
*
* ```sh
* $ pulumi import gcp:gemini/repositoryGroupIamMember:RepositoryGroupIamMember editor "projects/{{project}}/locations/{{location}}/codeRepositoryIndexes/{{code_repository_index}}/repositoryGroups/{{repository_group_id}} roles/cloudaicompanion.repositoryGroupsUser user:jane@example.com"
* ```
*
* IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
*
* ```sh
* $ pulumi import gcp:gemini/repositoryGroupIamMember:RepositoryGroupIamMember editor "projects/{{project}}/locations/{{location}}/codeRepositoryIndexes/{{code_repository_index}}/repositoryGroups/{{repository_group_id}} roles/cloudaicompanion.repositoryGroupsUser"
* ```
*
* IAM policy imports use the identifier of the resource in question, e.g.
*
* ```sh
* $ pulumi import gcp:gemini/repositoryGroupIamMember:RepositoryGroupIamMember editor projects/{{project}}/locations/{{location}}/codeRepositoryIndexes/{{code_repository_index}}/repositoryGroups/{{repository_group_id}}
* ```
*
* -> **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
*
* full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
*/
class RepositoryGroupIamMember extends pulumi.CustomResource {
/**
* Get an existing RepositoryGroupIamMember 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 RepositoryGroupIamMember(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of RepositoryGroupIamMember. 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'] === RepositoryGroupIamMember.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["codeRepositoryIndex"] = state?.codeRepositoryIndex;
resourceInputs["condition"] = state?.condition;
resourceInputs["etag"] = state?.etag;
resourceInputs["location"] = state?.location;
resourceInputs["member"] = state?.member;
resourceInputs["project"] = state?.project;
resourceInputs["repositoryGroupId"] = state?.repositoryGroupId;
resourceInputs["role"] = state?.role;
}
else {
const args = argsOrState;
if (args?.codeRepositoryIndex === undefined && !opts.urn) {
throw new Error("Missing required property 'codeRepositoryIndex'");
}
if (args?.member === undefined && !opts.urn) {
throw new Error("Missing required property 'member'");
}
if (args?.repositoryGroupId === undefined && !opts.urn) {
throw new Error("Missing required property 'repositoryGroupId'");
}
if (args?.role === undefined && !opts.urn) {
throw new Error("Missing required property 'role'");
}
resourceInputs["codeRepositoryIndex"] = args?.codeRepositoryIndex;
resourceInputs["condition"] = args?.condition;
resourceInputs["location"] = args?.location;
resourceInputs["member"] = args?.member;
resourceInputs["project"] = args?.project;
resourceInputs["repositoryGroupId"] = args?.repositoryGroupId;
resourceInputs["role"] = args?.role;
resourceInputs["etag"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(RepositoryGroupIamMember.__pulumiType, name, resourceInputs, opts);
}
}
exports.RepositoryGroupIamMember = RepositoryGroupIamMember;
/** @internal */
RepositoryGroupIamMember.__pulumiType = 'gcp:gemini/repositoryGroupIamMember:RepositoryGroupIamMember';
//# sourceMappingURL=repositoryGroupIamMember.js.map
;