@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
49 lines • 1.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.indexesOutput = exports.indexes = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of tls indexes
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getIndexes({
* ids: ["9b756385-1dfb-4306-a094-0c88e04b34a5"],
* });
* ```
*/
/** @deprecated volcengine.tls.Indexes has been deprecated in favor of volcengine.tls.getIndexes */
function indexes(args, opts) {
pulumi.log.warn("indexes is deprecated: volcengine.tls.Indexes has been deprecated in favor of volcengine.tls.getIndexes");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:tls/indexes:Indexes", {
"ids": args.ids,
"outputFile": args.outputFile,
}, opts);
}
exports.indexes = indexes;
/**
* Use this data source to query detailed information of tls indexes
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getIndexes({
* ids: ["9b756385-1dfb-4306-a094-0c88e04b34a5"],
* });
* ```
*/
/** @deprecated volcengine.tls.Indexes has been deprecated in favor of volcengine.tls.getIndexes */
function indexesOutput(args, opts) {
return pulumi.output(args).apply((a) => indexes(a, opts));
}
exports.indexesOutput = indexesOutput;
//# sourceMappingURL=indexes.js.map