@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
72 lines • 2.42 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.keyringsOutput = exports.keyrings = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of kms keyrings
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.kms.getKeyrings({
* descriptions: [
* "tf-1",
* "tf-2",
* ],
* keyringNames: [
* "tf-test-1",
* "tf-test-2",
* "tf-test-3",
* ],
* });
* ```
*/
/** @deprecated volcengine.kms.Keyrings has been deprecated in favor of volcengine.kms.getKeyrings */
function keyrings(args, opts) {
pulumi.log.warn("keyrings is deprecated: volcengine.kms.Keyrings has been deprecated in favor of volcengine.kms.getKeyrings");
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:kms/keyrings:Keyrings", {
"creationDateRanges": args.creationDateRanges,
"descriptions": args.descriptions,
"keyringNames": args.keyringNames,
"keyringTypes": args.keyringTypes,
"nameRegex": args.nameRegex,
"outputFile": args.outputFile,
"projectName": args.projectName,
"updateDateRanges": args.updateDateRanges,
}, opts);
}
exports.keyrings = keyrings;
/**
* Use this data source to query detailed information of kms keyrings
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.kms.getKeyrings({
* descriptions: [
* "tf-1",
* "tf-2",
* ],
* keyringNames: [
* "tf-test-1",
* "tf-test-2",
* "tf-test-3",
* ],
* });
* ```
*/
/** @deprecated volcengine.kms.Keyrings has been deprecated in favor of volcengine.kms.getKeyrings */
function keyringsOutput(args, opts) {
return pulumi.output(args).apply((a) => keyrings(a, opts));
}
exports.keyringsOutput = keyringsOutput;
//# sourceMappingURL=keyrings.js.map