1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vepfs
  6. MountService
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine

    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.

    Example Usage

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      vEPFSMountServiceDemo:
        type: volcenginecc:vepfs:MountService
        name: VEPFSMountServiceDemo
        properties:
          mountServiceName: test
          project: default
          nodeType: ecs.g4i.large
          subnetId: subnet-1a185dj3sh1q8*****
          vpcId: vpc-1a17v350xa8lc8n*****
          zoneId: cn-beijing-a
          attachFileSystems:
            - file_system_id: vepfs-cnbj607*****
              customer_path: /vepfs-cnbj*****
    

    Create MountService Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MountService(name: string, args: MountServiceArgs, opts?: CustomResourceOptions);
    @overload
    def MountService(resource_name: str,
                     args: MountServiceArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def MountService(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     mount_service_name: Optional[str] = None,
                     node_type: Optional[str] = None,
                     subnet_id: Optional[str] = None,
                     vpc_id: Optional[str] = None,
                     zone_id: Optional[str] = None,
                     attach_file_systems: Optional[Sequence[MountServiceAttachFileSystemArgs]] = None,
                     project: Optional[str] = None)
    func NewMountService(ctx *Context, name string, args MountServiceArgs, opts ...ResourceOption) (*MountService, error)
    public MountService(string name, MountServiceArgs args, CustomResourceOptions? opts = null)
    public MountService(String name, MountServiceArgs args)
    public MountService(String name, MountServiceArgs args, CustomResourceOptions options)
    
    type: volcenginecc:vepfs:MountService
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MountServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MountServiceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MountServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MountServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MountServiceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var mountServiceResource = new Volcenginecc.Vepfs.MountService("mountServiceResource", new()
    {
        MountServiceName = "string",
        NodeType = "string",
        SubnetId = "string",
        VpcId = "string",
        ZoneId = "string",
        AttachFileSystems = new[]
        {
            new Volcenginecc.Vepfs.Inputs.MountServiceAttachFileSystemArgs
            {
                AccountId = "string",
                CustomerPath = "string",
                FileSystemId = "string",
                FileSystemName = "string",
                Status = "string",
            },
        },
        Project = "string",
    });
    
    example, err := vepfs.NewMountService(ctx, "mountServiceResource", &vepfs.MountServiceArgs{
    	MountServiceName: pulumi.String("string"),
    	NodeType:         pulumi.String("string"),
    	SubnetId:         pulumi.String("string"),
    	VpcId:            pulumi.String("string"),
    	ZoneId:           pulumi.String("string"),
    	AttachFileSystems: vepfs.MountServiceAttachFileSystemArray{
    		&vepfs.MountServiceAttachFileSystemArgs{
    			AccountId:      pulumi.String("string"),
    			CustomerPath:   pulumi.String("string"),
    			FileSystemId:   pulumi.String("string"),
    			FileSystemName: pulumi.String("string"),
    			Status:         pulumi.String("string"),
    		},
    	},
    	Project: pulumi.String("string"),
    })
    
    var mountServiceResource = new MountService("mountServiceResource", MountServiceArgs.builder()
        .mountServiceName("string")
        .nodeType("string")
        .subnetId("string")
        .vpcId("string")
        .zoneId("string")
        .attachFileSystems(MountServiceAttachFileSystemArgs.builder()
            .accountId("string")
            .customerPath("string")
            .fileSystemId("string")
            .fileSystemName("string")
            .status("string")
            .build())
        .project("string")
        .build());
    
    mount_service_resource = volcenginecc.vepfs.MountService("mountServiceResource",
        mount_service_name="string",
        node_type="string",
        subnet_id="string",
        vpc_id="string",
        zone_id="string",
        attach_file_systems=[{
            "account_id": "string",
            "customer_path": "string",
            "file_system_id": "string",
            "file_system_name": "string",
            "status": "string",
        }],
        project="string")
    
    const mountServiceResource = new volcenginecc.vepfs.MountService("mountServiceResource", {
        mountServiceName: "string",
        nodeType: "string",
        subnetId: "string",
        vpcId: "string",
        zoneId: "string",
        attachFileSystems: [{
            accountId: "string",
            customerPath: "string",
            fileSystemId: "string",
            fileSystemName: "string",
            status: "string",
        }],
        project: "string",
    });
    
    type: volcenginecc:vepfs:MountService
    properties:
        attachFileSystems:
            - accountId: string
              customerPath: string
              fileSystemId: string
              fileSystemName: string
              status: string
        mountServiceName: string
        nodeType: string
        project: string
        subnetId: string
        vpcId: string
        zoneId: string
    

    MountService Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The MountService resource accepts the following input properties:

    MountServiceName string
    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.
    NodeType string
    Client management node type.
    SubnetId string
    Subnet ID.
    VpcId string
    Private network ID.
    ZoneId string
    Availability zone ID.
    AttachFileSystems List<Volcengine.MountServiceAttachFileSystem>
    Project string
    Project.
    MountServiceName string
    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.
    NodeType string
    Client management node type.
    SubnetId string
    Subnet ID.
    VpcId string
    Private network ID.
    ZoneId string
    Availability zone ID.
    AttachFileSystems []MountServiceAttachFileSystemArgs
    Project string
    Project.
    mountServiceName String
    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.
    nodeType String
    Client management node type.
    subnetId String
    Subnet ID.
    vpcId String
    Private network ID.
    zoneId String
    Availability zone ID.
    attachFileSystems List<MountServiceAttachFileSystem>
    project String
    Project.
    mountServiceName string
    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.
    nodeType string
    Client management node type.
    subnetId string
    Subnet ID.
    vpcId string
    Private network ID.
    zoneId string
    Availability zone ID.
    attachFileSystems MountServiceAttachFileSystem[]
    project string
    Project.
    mount_service_name str
    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.
    node_type str
    Client management node type.
    subnet_id str
    Subnet ID.
    vpc_id str
    Private network ID.
    zone_id str
    Availability zone ID.
    attach_file_systems Sequence[MountServiceAttachFileSystemArgs]
    project str
    Project.
    mountServiceName String
    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.
    nodeType String
    Client management node type.
    subnetId String
    Subnet ID.
    vpcId String
    Private network ID.
    zoneId String
    Availability zone ID.
    attachFileSystems List<Property Map>
    project String
    Project.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MountService resource produces the following output properties:

    CreateTime string
    Creation time.
    Id string
    The provider-assigned unique ID for this managed resource.
    MountServiceId string
    Mount service ID.
    Nodes List<Volcengine.MountServiceNode>
    SecurityGroupId string
    Client NIC security group ID.
    Status string
    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.
    VersionNumber string
    Mount service version.
    ZoneName string
    Availability zone name.
    CreateTime string
    Creation time.
    Id string
    The provider-assigned unique ID for this managed resource.
    MountServiceId string
    Mount service ID.
    Nodes []MountServiceNode
    SecurityGroupId string
    Client NIC security group ID.
    Status string
    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.
    VersionNumber string
    Mount service version.
    ZoneName string
    Availability zone name.
    createTime String
    Creation time.
    id String
    The provider-assigned unique ID for this managed resource.
    mountServiceId String
    Mount service ID.
    nodes List<MountServiceNode>
    securityGroupId String
    Client NIC security group ID.
    status String
    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.
    versionNumber String
    Mount service version.
    zoneName String
    Availability zone name.
    createTime string
    Creation time.
    id string
    The provider-assigned unique ID for this managed resource.
    mountServiceId string
    Mount service ID.
    nodes MountServiceNode[]
    securityGroupId string
    Client NIC security group ID.
    status string
    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.
    versionNumber string
    Mount service version.
    zoneName string
    Availability zone name.
    create_time str
    Creation time.
    id str
    The provider-assigned unique ID for this managed resource.
    mount_service_id str
    Mount service ID.
    nodes Sequence[MountServiceNode]
    security_group_id str
    Client NIC security group ID.
    status str
    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.
    version_number str
    Mount service version.
    zone_name str
    Availability zone name.
    createTime String
    Creation time.
    id String
    The provider-assigned unique ID for this managed resource.
    mountServiceId String
    Mount service ID.
    nodes List<Property Map>
    securityGroupId String
    Client NIC security group ID.
    status String
    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.
    versionNumber String
    Mount service version.
    zoneName String
    Availability zone name.

    Look up Existing MountService Resource

    Get an existing MountService resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: MountServiceState, opts?: CustomResourceOptions): MountService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attach_file_systems: Optional[Sequence[MountServiceAttachFileSystemArgs]] = None,
            create_time: Optional[str] = None,
            mount_service_id: Optional[str] = None,
            mount_service_name: Optional[str] = None,
            node_type: Optional[str] = None,
            nodes: Optional[Sequence[MountServiceNodeArgs]] = None,
            project: Optional[str] = None,
            security_group_id: Optional[str] = None,
            status: Optional[str] = None,
            subnet_id: Optional[str] = None,
            version_number: Optional[str] = None,
            vpc_id: Optional[str] = None,
            zone_id: Optional[str] = None,
            zone_name: Optional[str] = None) -> MountService
    func GetMountService(ctx *Context, name string, id IDInput, state *MountServiceState, opts ...ResourceOption) (*MountService, error)
    public static MountService Get(string name, Input<string> id, MountServiceState? state, CustomResourceOptions? opts = null)
    public static MountService get(String name, Output<String> id, MountServiceState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:vepfs:MountService    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AttachFileSystems List<Volcengine.MountServiceAttachFileSystem>
    CreateTime string
    Creation time.
    MountServiceId string
    Mount service ID.
    MountServiceName string
    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.
    NodeType string
    Client management node type.
    Nodes List<Volcengine.MountServiceNode>
    Project string
    Project.
    SecurityGroupId string
    Client NIC security group ID.
    Status string
    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.
    SubnetId string
    Subnet ID.
    VersionNumber string
    Mount service version.
    VpcId string
    Private network ID.
    ZoneId string
    Availability zone ID.
    ZoneName string
    Availability zone name.
    AttachFileSystems []MountServiceAttachFileSystemArgs
    CreateTime string
    Creation time.
    MountServiceId string
    Mount service ID.
    MountServiceName string
    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.
    NodeType string
    Client management node type.
    Nodes []MountServiceNodeArgs
    Project string
    Project.
    SecurityGroupId string
    Client NIC security group ID.
    Status string
    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.
    SubnetId string
    Subnet ID.
    VersionNumber string
    Mount service version.
    VpcId string
    Private network ID.
    ZoneId string
    Availability zone ID.
    ZoneName string
    Availability zone name.
    attachFileSystems List<MountServiceAttachFileSystem>
    createTime String
    Creation time.
    mountServiceId String
    Mount service ID.
    mountServiceName String
    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.
    nodeType String
    Client management node type.
    nodes List<MountServiceNode>
    project String
    Project.
    securityGroupId String
    Client NIC security group ID.
    status String
    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.
    subnetId String
    Subnet ID.
    versionNumber String
    Mount service version.
    vpcId String
    Private network ID.
    zoneId String
    Availability zone ID.
    zoneName String
    Availability zone name.
    attachFileSystems MountServiceAttachFileSystem[]
    createTime string
    Creation time.
    mountServiceId string
    Mount service ID.
    mountServiceName string
    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.
    nodeType string
    Client management node type.
    nodes MountServiceNode[]
    project string
    Project.
    securityGroupId string
    Client NIC security group ID.
    status string
    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.
    subnetId string
    Subnet ID.
    versionNumber string
    Mount service version.
    vpcId string
    Private network ID.
    zoneId string
    Availability zone ID.
    zoneName string
    Availability zone name.
    attach_file_systems Sequence[MountServiceAttachFileSystemArgs]
    create_time str
    Creation time.
    mount_service_id str
    Mount service ID.
    mount_service_name str
    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.
    node_type str
    Client management node type.
    nodes Sequence[MountServiceNodeArgs]
    project str
    Project.
    security_group_id str
    Client NIC security group ID.
    status str
    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.
    subnet_id str
    Subnet ID.
    version_number str
    Mount service version.
    vpc_id str
    Private network ID.
    zone_id str
    Availability zone ID.
    zone_name str
    Availability zone name.
    attachFileSystems List<Property Map>
    createTime String
    Creation time.
    mountServiceId String
    Mount service ID.
    mountServiceName String
    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.
    nodeType String
    Client management node type.
    nodes List<Property Map>
    project String
    Project.
    securityGroupId String
    Client NIC security group ID.
    status String
    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.
    subnetId String
    Subnet ID.
    versionNumber String
    Mount service version.
    vpcId String
    Private network ID.
    zoneId String
    Availability zone ID.
    zoneName String
    Availability zone name.

    Supporting Types

    MountServiceAttachFileSystem, MountServiceAttachFileSystemArgs

    AccountId string
    Account ID.
    CustomerPath string
    User mount path.
    FileSystemId string
    File system ID.
    FileSystemName string
    File system name.
    Status string
    Binding status. Details: Attaching: Attaching. AttachError: Attachment failed. Attached: Attached. Detaching: Detaching. DetachError: Detachment failed.
    AccountId string
    Account ID.
    CustomerPath string
    User mount path.
    FileSystemId string
    File system ID.
    FileSystemName string
    File system name.
    Status string
    Binding status. Details: Attaching: Attaching. AttachError: Attachment failed. Attached: Attached. Detaching: Detaching. DetachError: Detachment failed.
    accountId String
    Account ID.
    customerPath String
    User mount path.
    fileSystemId String
    File system ID.
    fileSystemName String
    File system name.
    status String
    Binding status. Details: Attaching: Attaching. AttachError: Attachment failed. Attached: Attached. Detaching: Detaching. DetachError: Detachment failed.
    accountId string
    Account ID.
    customerPath string
    User mount path.
    fileSystemId string
    File system ID.
    fileSystemName string
    File system name.
    status string
    Binding status. Details: Attaching: Attaching. AttachError: Attachment failed. Attached: Attached. Detaching: Detaching. DetachError: Detachment failed.
    account_id str
    Account ID.
    customer_path str
    User mount path.
    file_system_id str
    File system ID.
    file_system_name str
    File system name.
    status str
    Binding status. Details: Attaching: Attaching. AttachError: Attachment failed. Attached: Attached. Detaching: Detaching. DetachError: Detachment failed.
    accountId String
    Account ID.
    customerPath String
    User mount path.
    fileSystemId String
    File system ID.
    fileSystemName String
    File system name.
    status String
    Binding status. Details: Attaching: Attaching. AttachError: Attachment failed. Attached: Attached. Detaching: Detaching. DetachError: Detachment failed.

    MountServiceNode, MountServiceNodeArgs

    DefaultPassword string
    Node initial password.
    NodeId string
    Node instance ID.
    DefaultPassword string
    Node initial password.
    NodeId string
    Node instance ID.
    defaultPassword String
    Node initial password.
    nodeId String
    Node instance ID.
    defaultPassword string
    Node initial password.
    nodeId string
    Node instance ID.
    default_password str
    Node initial password.
    node_id str
    Node instance ID.
    defaultPassword String
    Node initial password.
    nodeId String
    Node instance ID.

    Import

    $ pulumi import volcenginecc:vepfs/mountService:MountService example "mount_service_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.