import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * The mount service is the connection point for the file system in a network environment. The file system must be mounted on compute nodes to enable data access and storage. * * ## Import * * ```sh * $ pulumi import volcenginecc:vepfs/mountService:MountService example "mount_service_id" * ``` */ export declare class MountService extends pulumi.CustomResource { /** * Get an existing MountService 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: string, id: pulumi.Input, state?: MountServiceState, opts?: pulumi.CustomResourceOptions): MountService; /** * Returns true if the given object is an instance of MountService. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is MountService; readonly attachFileSystems: pulumi.Output; /** * Creation time. */ readonly createTime: pulumi.Output; /** * Mount service ID. */ readonly mountServiceId: pulumi.Output; /** * Mount service name. Naming rules: Must start with a Chinese or English character. Only Chinese characters, letters, numbers, periods (.), underscores (_), or hyphens (-) are allowed. Length must be between 1 and 128 characters. The mount service name must be unique within each region and account; duplicates are not allowed. */ readonly mountServiceName: pulumi.Output; /** * Client management node type. */ readonly nodeType: pulumi.Output; readonly nodes: pulumi.Output; /** * Project. */ readonly project: pulumi.Output; /** * Client NIC security group ID. */ readonly securityGroupId: pulumi.Output; /** * Mount service status. Details: Creating: Creating. CreateError: Creation failed. Running: Running. Updating: Updating. UpdateError: Update failed. Deleting: Deleting. DeleteError: Deletion failed. Deleted: Deleted. Attaching: Attaching. AttachError: Attachment failed. Detaching: Detaching. DetachError: Detachment failed. Stopped: Stopped. Error: Error. */ readonly status: pulumi.Output; /** * Subnet ID. */ readonly subnetId: pulumi.Output; /** * Mount service version. */ readonly versionNumber: pulumi.Output; /** * Private network ID. */ readonly vpcId: pulumi.Output; /** * Availability zone ID. */ readonly zoneId: pulumi.Output; /** * Availability zone name. */ readonly zoneName: pulumi.Output; /** * Create a MountService resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: MountServiceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MountService resources. */ export interface MountServiceState { attachFileSystems?: pulumi.Input[]>; /** * Creation time. */ createTime?: pulumi.Input; /** * Mount service ID. */ mountServiceId?: pulumi.Input; /** * Mount service name. Naming rules: Must start with a Chinese or English character. Only Chinese characters, letters, numbers, periods (.), underscores (_), or hyphens (-) are allowed. Length must be between 1 and 128 characters. The mount service name must be unique within each region and account; duplicates are not allowed. */ mountServiceName?: pulumi.Input; /** * Client management node type. */ nodeType?: pulumi.Input; nodes?: pulumi.Input[]>; /** * Project. */ project?: pulumi.Input; /** * Client NIC security group ID. */ securityGroupId?: pulumi.Input; /** * Mount service status. Details: Creating: Creating. CreateError: Creation failed. Running: Running. Updating: Updating. UpdateError: Update failed. Deleting: Deleting. DeleteError: Deletion failed. Deleted: Deleted. Attaching: Attaching. AttachError: Attachment failed. Detaching: Detaching. DetachError: Detachment failed. Stopped: Stopped. Error: Error. */ status?: pulumi.Input; /** * Subnet ID. */ subnetId?: pulumi.Input; /** * Mount service version. */ versionNumber?: pulumi.Input; /** * Private network ID. */ vpcId?: pulumi.Input; /** * Availability zone ID. */ zoneId?: pulumi.Input; /** * Availability zone name. */ zoneName?: pulumi.Input; } /** * The set of arguments for constructing a MountService resource. */ export interface MountServiceArgs { attachFileSystems?: pulumi.Input[]>; /** * Mount service name. Naming rules: Must start with a Chinese or English character. Only Chinese characters, letters, numbers, periods (.), underscores (_), or hyphens (-) are allowed. Length must be between 1 and 128 characters. The mount service name must be unique within each region and account; duplicates are not allowed. */ mountServiceName: pulumi.Input; /** * Client management node type. */ nodeType: pulumi.Input; /** * Project. */ project?: pulumi.Input; /** * Subnet ID. */ subnetId: pulumi.Input; /** * Private network ID. */ vpcId: pulumi.Input; /** * Availability zone ID. */ zoneId: pulumi.Input; }