UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

173 lines 6.92 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.FhirStoreIamMember = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Three different resources help you manage your IAM policy for Healthcare FHIR store. Each of these resources serves a different use case: * * * `gcp.healthcare.FhirStoreIamPolicy`: Authoritative. Sets the IAM policy for the FHIR store and replaces any existing policy already attached. * * `gcp.healthcare.FhirStoreIamBinding`: 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 FHIR store are preserved. * * `gcp.healthcare.FhirStoreIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the FHIR store are preserved. * * > **Note:** `gcp.healthcare.FhirStoreIamPolicy` **cannot** be used in conjunction with `gcp.healthcare.FhirStoreIamBinding` and `gcp.healthcare.FhirStoreIamMember` or they will fight over what your policy should be. * * > **Note:** `gcp.healthcare.FhirStoreIamBinding` resources **can be** used in conjunction with `gcp.healthcare.FhirStoreIamMember` resources **only if** they do not grant privilege to the same role. * * ## gcp.healthcare.FhirStoreIamPolicy * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const admin = gcp.organizations.getIAMPolicy({ * bindings: [{ * role: "roles/editor", * members: ["user:jane@example.com"], * }], * }); * const fhirStore = new gcp.healthcare.FhirStoreIamPolicy("fhir_store", { * fhirStoreId: "your-fhir-store-id", * policyData: admin.then(admin => admin.policyData), * }); * ``` * * ## gcp.healthcare.FhirStoreIamBinding * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const fhirStore = new gcp.healthcare.FhirStoreIamBinding("fhir_store", { * fhirStoreId: "your-fhir-store-id", * role: "roles/editor", * members: ["user:jane@example.com"], * }); * ``` * * ## gcp.healthcare.FhirStoreIamMember * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const fhirStore = new gcp.healthcare.FhirStoreIamMember("fhir_store", { * fhirStoreId: "your-fhir-store-id", * role: "roles/editor", * member: "user:jane@example.com", * }); * ``` * * ## gcp.healthcare.FhirStoreIamBinding * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const fhirStore = new gcp.healthcare.FhirStoreIamBinding("fhir_store", { * fhirStoreId: "your-fhir-store-id", * role: "roles/editor", * members: ["user:jane@example.com"], * }); * ``` * * ## gcp.healthcare.FhirStoreIamMember * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const fhirStore = new gcp.healthcare.FhirStoreIamMember("fhir_store", { * fhirStoreId: "your-fhir-store-id", * role: "roles/editor", * member: "user:jane@example.com", * }); * ``` * * ## Import * * ### Importing IAM policies * * IAM policy imports use the identifier of the Healthcare FHIR store resource. For example: * * * `"{{project_id}}/{{location}}/{{dataset}}/{{fhir_store}}"` * * An `import` block (Terraform v1.5.0 and later) can be used to import IAM policies: * * tf * * import { * * id = "{{project_id}}/{{location}}/{{dataset}}/{{fhir_store}}" * * to = google_healthcare_fhir_store_iam_policy.default * * } * * The `pulumi import` command can also be used: * * ```sh * $ pulumi import gcp:healthcare/fhirStoreIamMember:FhirStoreIamMember default {{project_id}}/{{location}}/{{dataset}}/{{fhir_store}} * ``` */ class FhirStoreIamMember extends pulumi.CustomResource { /** * Get an existing FhirStoreIamMember 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 FhirStoreIamMember(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of FhirStoreIamMember. 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'] === FhirStoreIamMember.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["condition"] = state ? state.condition : undefined; resourceInputs["etag"] = state ? state.etag : undefined; resourceInputs["fhirStoreId"] = state ? state.fhirStoreId : undefined; resourceInputs["member"] = state ? state.member : undefined; resourceInputs["role"] = state ? state.role : undefined; } else { const args = argsOrState; if ((!args || args.fhirStoreId === undefined) && !opts.urn) { throw new Error("Missing required property 'fhirStoreId'"); } if ((!args || args.member === undefined) && !opts.urn) { throw new Error("Missing required property 'member'"); } if ((!args || args.role === undefined) && !opts.urn) { throw new Error("Missing required property 'role'"); } resourceInputs["condition"] = args ? args.condition : undefined; resourceInputs["fhirStoreId"] = args ? args.fhirStoreId : undefined; resourceInputs["member"] = args ? args.member : undefined; resourceInputs["role"] = args ? args.role : undefined; resourceInputs["etag"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(FhirStoreIamMember.__pulumiType, name, resourceInputs, opts); } } exports.FhirStoreIamMember = FhirStoreIamMember; /** @internal */ FhirStoreIamMember.__pulumiType = 'gcp:healthcare/fhirStoreIamMember:FhirStoreIamMember'; //# sourceMappingURL=fhirStoreIamMember.js.map