UNPKG

@pulumi/gcp

Version:

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

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