UNPKG

@pulumi/gcp

Version:

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

112 lines 6.02 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.WorkstationIamPolicy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## Import * * For all import syntaxes, the "resource in question" can take any of the following forms: * * * projects/{{project}}/locations/{{location}}/workstationClusters/{{workstation_cluster_id}}/workstationConfigs/{{workstation_config_id}}/workstations/{{workstation_id}} * * * {{project}}/{{location}}/{{workstation_cluster_id}}/{{workstation_config_id}}/{{workstation_id}} * * * {{location}}/{{workstation_cluster_id}}/{{workstation_config_id}}/{{workstation_id}} * * * {{workstation_id}} * * Any variables not passed in the import command will be taken from the provider configuration. * * Cloud Workstations workstation 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:workstations/workstationIamPolicy:WorkstationIamPolicy editor "projects/{{project}}/locations/{{location}}/workstationClusters/{{workstation_cluster_id}}/workstationConfigs/{{workstation_config_id}}/workstations/{{workstation_id}} roles/viewer user:jane@example.com" * ``` * * IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g. * * ```sh * $ pulumi import gcp:workstations/workstationIamPolicy:WorkstationIamPolicy editor "projects/{{project}}/locations/{{location}}/workstationClusters/{{workstation_cluster_id}}/workstationConfigs/{{workstation_config_id}}/workstations/{{workstation_id}} roles/viewer" * ``` * * IAM policy imports use the identifier of the resource in question, e.g. * * ```sh * $ pulumi import gcp:workstations/workstationIamPolicy:WorkstationIamPolicy editor projects/{{project}}/locations/{{location}}/workstationClusters/{{workstation_cluster_id}}/workstationConfigs/{{workstation_config_id}}/workstations/{{workstation_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 WorkstationIamPolicy extends pulumi.CustomResource { /** * Get an existing WorkstationIamPolicy 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 WorkstationIamPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of WorkstationIamPolicy. 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'] === WorkstationIamPolicy.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["etag"] = state ? state.etag : undefined; resourceInputs["location"] = state ? state.location : undefined; resourceInputs["policyData"] = state ? state.policyData : undefined; resourceInputs["project"] = state ? state.project : undefined; resourceInputs["workstationClusterId"] = state ? state.workstationClusterId : undefined; resourceInputs["workstationConfigId"] = state ? state.workstationConfigId : undefined; resourceInputs["workstationId"] = state ? state.workstationId : undefined; } else { const args = argsOrState; if ((!args || args.policyData === undefined) && !opts.urn) { throw new Error("Missing required property 'policyData'"); } if ((!args || args.workstationClusterId === undefined) && !opts.urn) { throw new Error("Missing required property 'workstationClusterId'"); } if ((!args || args.workstationConfigId === undefined) && !opts.urn) { throw new Error("Missing required property 'workstationConfigId'"); } if ((!args || args.workstationId === undefined) && !opts.urn) { throw new Error("Missing required property 'workstationId'"); } resourceInputs["location"] = args ? args.location : undefined; resourceInputs["policyData"] = args ? args.policyData : undefined; resourceInputs["project"] = args ? args.project : undefined; resourceInputs["workstationClusterId"] = args ? args.workstationClusterId : undefined; resourceInputs["workstationConfigId"] = args ? args.workstationConfigId : undefined; resourceInputs["workstationId"] = args ? args.workstationId : undefined; resourceInputs["etag"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(WorkstationIamPolicy.__pulumiType, name, resourceInputs, opts); } } exports.WorkstationIamPolicy = WorkstationIamPolicy; /** @internal */ WorkstationIamPolicy.__pulumiType = 'gcp:workstations/workstationIamPolicy:WorkstationIamPolicy'; //# sourceMappingURL=workstationIamPolicy.js.map