@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
32 lines • 1.41 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.getAiIndexOutput = exports.getAiIndex = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* A representation of a collection of database items organized in a way that allows for approximate nearest neighbor (a.k.a ANN) algorithms search.
*/
function getAiIndex(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("gcp:vertex/getAiIndex:getAiIndex", {
"name": args.name,
"project": args.project,
"region": args.region,
}, opts);
}
exports.getAiIndex = getAiIndex;
/**
* A representation of a collection of database items organized in a way that allows for approximate nearest neighbor (a.k.a ANN) algorithms search.
*/
function getAiIndexOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("gcp:vertex/getAiIndex:getAiIndex", {
"name": args.name,
"project": args.project,
"region": args.region,
}, opts);
}
exports.getAiIndexOutput = getAiIndexOutput;
//# sourceMappingURL=getAiIndex.js.map