@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
145 lines • 7.16 kB
JavaScript
;
// *** 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.PrincipalAccessBoundaryPolicy = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* ## Example Usage
*
* ### Iam Principal Access Boundary Policy
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const pab_policy_for_org = new gcp.iam.PrincipalAccessBoundaryPolicy("pab-policy-for-org", {
* organization: "123456789",
* location: "global",
* displayName: "PAB policy for Organization",
* principalAccessBoundaryPolicyId: "pab-policy-for-org",
* });
* ```
* ### Iam Organizations Policy Binding
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as time from "@pulumi/time";
*
* const pabPolicy = new gcp.iam.PrincipalAccessBoundaryPolicy("pab_policy", {
* organization: "123456789",
* location: "global",
* displayName: "Binding for all principals in the Organization",
* principalAccessBoundaryPolicyId: "my-pab-policy",
* });
* const wait60Seconds = new time.index.Sleep("wait_60_seconds", {createDuration: "60s"}, {
* dependsOn: [pabPolicy],
* });
* const my_pab_policy = new gcp.iam.OrganizationsPolicyBinding("my-pab-policy", {
* organization: "123456789",
* location: "global",
* displayName: "Binding for all principals in the Organization",
* policyKind: "PRINCIPAL_ACCESS_BOUNDARY",
* policyBindingId: "binding-for-all-org-principals",
* policy: pulumi.interpolate`organizations/123456789/locations/global/principalAccessBoundaryPolicies/${pabPolicy.principalAccessBoundaryPolicyId}`,
* target: {
* principalSet: "//cloudresourcemanager.googleapis.com/organizations/123456789",
* },
* }, {
* dependsOn: [wait60Seconds],
* });
* ```
*
* ## Import
*
* PrincipalAccessBoundaryPolicy can be imported using any of these accepted formats:
*
* * `organizations/{{organization}}/locations/{{location}}/principalAccessBoundaryPolicies/{{principal_access_boundary_policy_id}}`
*
* * `{{organization}}/{{location}}/{{principal_access_boundary_policy_id}}`
*
* When using the `pulumi import` command, PrincipalAccessBoundaryPolicy can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:iam/principalAccessBoundaryPolicy:PrincipalAccessBoundaryPolicy default organizations/{{organization}}/locations/{{location}}/principalAccessBoundaryPolicies/{{principal_access_boundary_policy_id}}
* ```
*
* ```sh
* $ pulumi import gcp:iam/principalAccessBoundaryPolicy:PrincipalAccessBoundaryPolicy default {{organization}}/{{location}}/{{principal_access_boundary_policy_id}}
* ```
*/
class PrincipalAccessBoundaryPolicy extends pulumi.CustomResource {
/**
* Get an existing PrincipalAccessBoundaryPolicy 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 PrincipalAccessBoundaryPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of PrincipalAccessBoundaryPolicy. 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'] === PrincipalAccessBoundaryPolicy.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["annotations"] = state ? state.annotations : undefined;
resourceInputs["createTime"] = state ? state.createTime : undefined;
resourceInputs["details"] = state ? state.details : undefined;
resourceInputs["displayName"] = state ? state.displayName : undefined;
resourceInputs["effectiveAnnotations"] = state ? state.effectiveAnnotations : undefined;
resourceInputs["etag"] = state ? state.etag : undefined;
resourceInputs["location"] = state ? state.location : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["organization"] = state ? state.organization : undefined;
resourceInputs["principalAccessBoundaryPolicyId"] = state ? state.principalAccessBoundaryPolicyId : undefined;
resourceInputs["uid"] = state ? state.uid : undefined;
resourceInputs["updateTime"] = state ? state.updateTime : undefined;
}
else {
const args = argsOrState;
if ((!args || args.location === undefined) && !opts.urn) {
throw new Error("Missing required property 'location'");
}
if ((!args || args.organization === undefined) && !opts.urn) {
throw new Error("Missing required property 'organization'");
}
if ((!args || args.principalAccessBoundaryPolicyId === undefined) && !opts.urn) {
throw new Error("Missing required property 'principalAccessBoundaryPolicyId'");
}
resourceInputs["annotations"] = args ? args.annotations : undefined;
resourceInputs["details"] = args ? args.details : undefined;
resourceInputs["displayName"] = args ? args.displayName : undefined;
resourceInputs["location"] = args ? args.location : undefined;
resourceInputs["organization"] = args ? args.organization : undefined;
resourceInputs["principalAccessBoundaryPolicyId"] = args ? args.principalAccessBoundaryPolicyId : undefined;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["effectiveAnnotations"] = undefined /*out*/;
resourceInputs["etag"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["uid"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(PrincipalAccessBoundaryPolicy.__pulumiType, name, resourceInputs, opts);
}
}
exports.PrincipalAccessBoundaryPolicy = PrincipalAccessBoundaryPolicy;
/** @internal */
PrincipalAccessBoundaryPolicy.__pulumiType = 'gcp:iam/principalAccessBoundaryPolicy:PrincipalAccessBoundaryPolicy';
//# sourceMappingURL=principalAccessBoundaryPolicy.js.map