UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

150 lines 7.34 kB
"use strict"; // *** 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.FileSystem = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage vepfs file system * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const fooVpc = new volcengine.vpc.Vpc("fooVpc", { * vpcName: "acc-test-vpc", * cidrBlock: "172.16.0.0/16", * }); * const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", { * subnetName: "acc-test-subnet", * cidrBlock: "172.16.0.0/24", * zoneId: "cn-beijing-a", * vpcId: fooVpc.id, * }); * const fooFileSystem = new volcengine.vepfs.FileSystem("fooFileSystem", { * fileSystemName: "acc-test-file-system", * subnetId: fooSubnet.id, * storeType: "Advance_100", * description: "tf-test", * capacity: 12, * project: "default", * enableRestripe: false, * tags: [{ * key: "k1", * value: "v1", * }], * }); * ``` * * ## Import * * VepfsFileSystem can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:vepfs/fileSystem:FileSystem default resource_id * ``` */ class FileSystem extends pulumi.CustomResource { /** * Get an existing FileSystem 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 FileSystem(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of FileSystem. 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'] === FileSystem.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["accountId"] = state ? state.accountId : undefined; resourceInputs["bandwidth"] = state ? state.bandwidth : undefined; resourceInputs["capacity"] = state ? state.capacity : undefined; resourceInputs["chargeStatus"] = state ? state.chargeStatus : undefined; resourceInputs["chargeType"] = state ? state.chargeType : undefined; resourceInputs["createTime"] = state ? state.createTime : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["enableRestripe"] = state ? state.enableRestripe : undefined; resourceInputs["expireTime"] = state ? state.expireTime : undefined; resourceInputs["fileSystemName"] = state ? state.fileSystemName : undefined; resourceInputs["fileSystemType"] = state ? state.fileSystemType : undefined; resourceInputs["freeTime"] = state ? state.freeTime : undefined; resourceInputs["lastModifyTime"] = state ? state.lastModifyTime : undefined; resourceInputs["project"] = state ? state.project : undefined; resourceInputs["protocolType"] = state ? state.protocolType : undefined; resourceInputs["regionId"] = state ? state.regionId : undefined; resourceInputs["status"] = state ? state.status : undefined; resourceInputs["stopServiceTime"] = state ? state.stopServiceTime : undefined; resourceInputs["storeType"] = state ? state.storeType : undefined; resourceInputs["storeTypeCn"] = state ? state.storeTypeCn : undefined; resourceInputs["subnetId"] = state ? state.subnetId : undefined; resourceInputs["tags"] = state ? state.tags : undefined; resourceInputs["version"] = state ? state.version : undefined; resourceInputs["zoneId"] = state ? state.zoneId : undefined; resourceInputs["zoneName"] = state ? state.zoneName : undefined; } else { const args = argsOrState; if ((!args || args.capacity === undefined) && !opts.urn) { throw new Error("Missing required property 'capacity'"); } if ((!args || args.fileSystemName === undefined) && !opts.urn) { throw new Error("Missing required property 'fileSystemName'"); } if ((!args || args.storeType === undefined) && !opts.urn) { throw new Error("Missing required property 'storeType'"); } if ((!args || args.subnetId === undefined) && !opts.urn) { throw new Error("Missing required property 'subnetId'"); } resourceInputs["capacity"] = args ? args.capacity : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["enableRestripe"] = args ? args.enableRestripe : undefined; resourceInputs["fileSystemName"] = args ? args.fileSystemName : undefined; resourceInputs["project"] = args ? args.project : undefined; resourceInputs["storeType"] = args ? args.storeType : undefined; resourceInputs["subnetId"] = args ? args.subnetId : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["accountId"] = undefined /*out*/; resourceInputs["bandwidth"] = undefined /*out*/; resourceInputs["chargeStatus"] = undefined /*out*/; resourceInputs["chargeType"] = undefined /*out*/; resourceInputs["createTime"] = undefined /*out*/; resourceInputs["expireTime"] = undefined /*out*/; resourceInputs["fileSystemType"] = undefined /*out*/; resourceInputs["freeTime"] = undefined /*out*/; resourceInputs["lastModifyTime"] = undefined /*out*/; resourceInputs["protocolType"] = undefined /*out*/; resourceInputs["regionId"] = undefined /*out*/; resourceInputs["status"] = undefined /*out*/; resourceInputs["stopServiceTime"] = undefined /*out*/; resourceInputs["storeTypeCn"] = undefined /*out*/; resourceInputs["version"] = undefined /*out*/; resourceInputs["zoneId"] = undefined /*out*/; resourceInputs["zoneName"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(FileSystem.__pulumiType, name, resourceInputs, opts); } } exports.FileSystem = FileSystem; /** @internal */ FileSystem.__pulumiType = 'volcengine:vepfs/fileSystem:FileSystem'; //# sourceMappingURL=fileSystem.js.map