@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
60 lines • 2.34 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.keyMaterialsOutput = exports.keyMaterials = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of kms key materials
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.kms.getKeyMaterials({
* keyName: "Test-3",
* keyringName: "Tf-test-1",
* wrappingAlgorithm: "RSAES_OAEP_SHA_256",
* wrappingKeySpec: "RSA_2048",
* });
* ```
*/
/** @deprecated volcengine.kms.KeyMaterials has been deprecated in favor of volcengine.kms.getKeyMaterials */
function keyMaterials(args, opts) {
pulumi.log.warn("keyMaterials is deprecated: volcengine.kms.KeyMaterials has been deprecated in favor of volcengine.kms.getKeyMaterials");
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:kms/keyMaterials:KeyMaterials", {
"keyId": args.keyId,
"keyName": args.keyName,
"keyringName": args.keyringName,
"outputFile": args.outputFile,
"wrappingAlgorithm": args.wrappingAlgorithm,
"wrappingKeySpec": args.wrappingKeySpec,
}, opts);
}
exports.keyMaterials = keyMaterials;
/**
* Use this data source to query detailed information of kms key materials
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.kms.getKeyMaterials({
* keyName: "Test-3",
* keyringName: "Tf-test-1",
* wrappingAlgorithm: "RSAES_OAEP_SHA_256",
* wrappingKeySpec: "RSA_2048",
* });
* ```
*/
/** @deprecated volcengine.kms.KeyMaterials has been deprecated in favor of volcengine.kms.getKeyMaterials */
function keyMaterialsOutput(args, opts) {
return pulumi.output(args).apply((a) => keyMaterials(a, opts));
}
exports.keyMaterialsOutput = keyMaterialsOutput;
//# sourceMappingURL=keyMaterials.js.map