UNPKG

@pulumi/gcp

Version:

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

109 lines 5.38 kB
"use strict"; // *** 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.AiFeatureOnlineStoreIamBinding = 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/{{region}}/featureOnlineStores/{{name}} * * * {{project}}/{{region}}/{{name}} * * * {{region}}/{{name}} * * * {{name}} * * Any variables not passed in the import command will be taken from the provider configuration. * * Vertex AI featureonlinestore 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/aiFeatureOnlineStoreIamBinding:AiFeatureOnlineStoreIamBinding editor "projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}} 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/aiFeatureOnlineStoreIamBinding:AiFeatureOnlineStoreIamBinding editor "projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}} roles/viewer" * ``` * * IAM policy imports use the identifier of the resource in question, e.g. * * ```sh * $ pulumi import gcp:vertex/aiFeatureOnlineStoreIamBinding:AiFeatureOnlineStoreIamBinding editor projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}} * ``` * * -> **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 AiFeatureOnlineStoreIamBinding extends pulumi.CustomResource { /** * Get an existing AiFeatureOnlineStoreIamBinding 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 AiFeatureOnlineStoreIamBinding(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of AiFeatureOnlineStoreIamBinding. 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'] === AiFeatureOnlineStoreIamBinding.__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["featureOnlineStore"] = state ? state.featureOnlineStore : undefined; resourceInputs["members"] = state ? state.members : undefined; resourceInputs["project"] = state ? state.project : undefined; resourceInputs["region"] = state ? state.region : undefined; resourceInputs["role"] = state ? state.role : undefined; } else { const args = argsOrState; if ((!args || args.featureOnlineStore === undefined) && !opts.urn) { throw new Error("Missing required property 'featureOnlineStore'"); } if ((!args || args.members === undefined) && !opts.urn) { throw new Error("Missing required property 'members'"); } if ((!args || args.role === undefined) && !opts.urn) { throw new Error("Missing required property 'role'"); } resourceInputs["condition"] = args ? args.condition : undefined; resourceInputs["featureOnlineStore"] = args ? args.featureOnlineStore : undefined; resourceInputs["members"] = args ? args.members : undefined; resourceInputs["project"] = args ? args.project : undefined; resourceInputs["region"] = args ? args.region : undefined; resourceInputs["role"] = args ? args.role : undefined; resourceInputs["etag"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(AiFeatureOnlineStoreIamBinding.__pulumiType, name, resourceInputs, opts); } } exports.AiFeatureOnlineStoreIamBinding = AiFeatureOnlineStoreIamBinding; /** @internal */ AiFeatureOnlineStoreIamBinding.__pulumiType = 'gcp:vertex/aiFeatureOnlineStoreIamBinding:AiFeatureOnlineStoreIamBinding'; //# sourceMappingURL=aiFeatureOnlineStoreIamBinding.js.map