@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
62 lines • 2.23 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.snapshotsOutput = exports.snapshots = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of nas snapshots
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.nas.getSnapshots({
* fileSystemId: "enas-cnbj5c18f02afe0e",
* ids: [
* "snap-022c648fed8b",
* "snap-e53591b05fbd",
* ],
* });
* ```
*/
/** @deprecated volcengine.nas.Snapshots has been deprecated in favor of volcengine.nas.getSnapshots */
function snapshots(args, opts) {
pulumi.log.warn("snapshots is deprecated: volcengine.nas.Snapshots has been deprecated in favor of volcengine.nas.getSnapshots");
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:nas/snapshots:Snapshots", {
"fileSystemId": args.fileSystemId,
"ids": args.ids,
"outputFile": args.outputFile,
"snapshotName": args.snapshotName,
"snapshotType": args.snapshotType,
"status": args.status,
}, opts);
}
exports.snapshots = snapshots;
/**
* Use this data source to query detailed information of nas snapshots
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.nas.getSnapshots({
* fileSystemId: "enas-cnbj5c18f02afe0e",
* ids: [
* "snap-022c648fed8b",
* "snap-e53591b05fbd",
* ],
* });
* ```
*/
/** @deprecated volcengine.nas.Snapshots has been deprecated in favor of volcengine.nas.getSnapshots */
function snapshotsOutput(args, opts) {
return pulumi.output(args).apply((a) => snapshots(a, opts));
}
exports.snapshotsOutput = snapshotsOutput;
//# sourceMappingURL=snapshots.js.map