@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
100 lines • 4.55 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.Snapshot = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage nas snapshot
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const foo = new volcengine.nas.Snapshot("foo", {
* description: "desc2",
* fileSystemId: "enas-cnbj5c18f02afe0e",
* snapshotName: "tfsnap3",
* });
* ```
*
* ## Import
*
* Nas Snapshot can be imported using the id, e.g.
*
* ```sh
* $ pulumi import volcengine:nas/snapshot:Snapshot default snap-472a716f****
* ```
*/
class Snapshot extends pulumi.CustomResource {
/**
* Get an existing Snapshot resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new Snapshot(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of Snapshot. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Snapshot.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["createTime"] = state ? state.createTime : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["fileSystemId"] = state ? state.fileSystemId : undefined;
resourceInputs["fileSystemName"] = state ? state.fileSystemName : undefined;
resourceInputs["isEncrypt"] = state ? state.isEncrypt : undefined;
resourceInputs["progress"] = state ? state.progress : undefined;
resourceInputs["snapshotName"] = state ? state.snapshotName : undefined;
resourceInputs["snapshotType"] = state ? state.snapshotType : undefined;
resourceInputs["sourceSize"] = state ? state.sourceSize : undefined;
resourceInputs["sourceVersion"] = state ? state.sourceVersion : undefined;
resourceInputs["status"] = state ? state.status : undefined;
resourceInputs["zoneId"] = state ? state.zoneId : undefined;
}
else {
const args = argsOrState;
if ((!args || args.fileSystemId === undefined) && !opts.urn) {
throw new Error("Missing required property 'fileSystemId'");
}
if ((!args || args.snapshotName === undefined) && !opts.urn) {
throw new Error("Missing required property 'snapshotName'");
}
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["fileSystemId"] = args ? args.fileSystemId : undefined;
resourceInputs["snapshotName"] = args ? args.snapshotName : undefined;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["fileSystemName"] = undefined /*out*/;
resourceInputs["isEncrypt"] = undefined /*out*/;
resourceInputs["progress"] = undefined /*out*/;
resourceInputs["snapshotType"] = undefined /*out*/;
resourceInputs["sourceSize"] = undefined /*out*/;
resourceInputs["sourceVersion"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
resourceInputs["zoneId"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Snapshot.__pulumiType, name, resourceInputs, opts);
}
}
exports.Snapshot = Snapshot;
/** @internal */
Snapshot.__pulumiType = 'volcengine:nas/snapshot:Snapshot';
//# sourceMappingURL=snapshot.js.map