@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
99 lines • 4.84 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.AiFeatureStoreEntityTypeIamPolicy = 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:
*
* * {{featurestore}}/entityTypes/{{name}}
*
* * {{name}}
*
* Any variables not passed in the import command will be taken from the provider configuration.
*
* Vertex AI featurestoreentitytype 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:vertex/aiFeatureStoreEntityTypeIamPolicy:AiFeatureStoreEntityTypeIamPolicy editor "{{featurestore}}/entityTypes/{{featurestore_entitytype}} 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:vertex/aiFeatureStoreEntityTypeIamPolicy:AiFeatureStoreEntityTypeIamPolicy editor "{{featurestore}}/entityTypes/{{featurestore_entitytype}} roles/viewer"
* ```
*
* IAM policy imports use the identifier of the resource in question, e.g.
*
* ```sh
* $ pulumi import gcp:vertex/aiFeatureStoreEntityTypeIamPolicy:AiFeatureStoreEntityTypeIamPolicy editor {{featurestore}}/entityTypes/{{featurestore_entitytype}}
* ```
*
* -> **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 AiFeatureStoreEntityTypeIamPolicy extends pulumi.CustomResource {
/**
* Get an existing AiFeatureStoreEntityTypeIamPolicy 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 AiFeatureStoreEntityTypeIamPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of AiFeatureStoreEntityTypeIamPolicy. 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'] === AiFeatureStoreEntityTypeIamPolicy.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["entitytype"] = state ? state.entitytype : undefined;
resourceInputs["etag"] = state ? state.etag : undefined;
resourceInputs["featurestore"] = state ? state.featurestore : undefined;
resourceInputs["policyData"] = state ? state.policyData : undefined;
}
else {
const args = argsOrState;
if ((!args || args.entitytype === undefined) && !opts.urn) {
throw new Error("Missing required property 'entitytype'");
}
if ((!args || args.featurestore === undefined) && !opts.urn) {
throw new Error("Missing required property 'featurestore'");
}
if ((!args || args.policyData === undefined) && !opts.urn) {
throw new Error("Missing required property 'policyData'");
}
resourceInputs["entitytype"] = args ? args.entitytype : undefined;
resourceInputs["featurestore"] = args ? args.featurestore : undefined;
resourceInputs["policyData"] = args ? args.policyData : undefined;
resourceInputs["etag"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(AiFeatureStoreEntityTypeIamPolicy.__pulumiType, name, resourceInputs, opts);
}
}
exports.AiFeatureStoreEntityTypeIamPolicy = AiFeatureStoreEntityTypeIamPolicy;
/** @internal */
AiFeatureStoreEntityTypeIamPolicy.__pulumiType = 'gcp:vertex/aiFeatureStoreEntityTypeIamPolicy:AiFeatureStoreEntityTypeIamPolicy';
//# sourceMappingURL=aiFeatureStoreEntityTypeIamPolicy.js.map