1. Packages
  2. Powerscale Provider
  3. API Docs
  4. Filesystem
powerscale 1.7.1 published on Wednesday, Apr 30, 2025 by dell

powerscale.Filesystem

Explore with Pulumi AI

powerscale logo
powerscale 1.7.1 published on Wednesday, Apr 30, 2025 by dell

    This resource is used to manage the FileSystem (Namespace directory) entity of PowerScale Array. We can Create, Update and Delete the FileSystem using this resource. We can also import an existing FileSystem from PowerScale array.

    Create Filesystem Resource

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

    Constructor syntax

    new Filesystem(name: string, args: FilesystemArgs, opts?: CustomResourceOptions);
    @overload
    def Filesystem(resource_name: str,
                   args: FilesystemArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Filesystem(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   group: Optional[FilesystemGroupArgs] = None,
                   owner: Optional[FilesystemOwnerArgs] = None,
                   access_control: Optional[str] = None,
                   directory_path: Optional[str] = None,
                   filesystem_id: Optional[str] = None,
                   full_path: Optional[str] = None,
                   name: Optional[str] = None,
                   overwrite: Optional[bool] = None,
                   query_zone: Optional[str] = None,
                   recursive: Optional[bool] = None)
    func NewFilesystem(ctx *Context, name string, args FilesystemArgs, opts ...ResourceOption) (*Filesystem, error)
    public Filesystem(string name, FilesystemArgs args, CustomResourceOptions? opts = null)
    public Filesystem(String name, FilesystemArgs args)
    public Filesystem(String name, FilesystemArgs args, CustomResourceOptions options)
    
    type: powerscale:Filesystem
    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 FilesystemArgs
    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 FilesystemArgs
    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 FilesystemArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FilesystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FilesystemArgs
    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 filesystemResource = new Powerscale.Filesystem("filesystemResource", new()
    {
        Group = new Powerscale.Inputs.FilesystemGroupArgs
        {
            Id = "string",
            Name = "string",
            Type = "string",
        },
        Owner = new Powerscale.Inputs.FilesystemOwnerArgs
        {
            Id = "string",
            Name = "string",
            Type = "string",
        },
        AccessControl = "string",
        DirectoryPath = "string",
        FilesystemId = "string",
        FullPath = "string",
        Name = "string",
        Overwrite = false,
        QueryZone = "string",
        Recursive = false,
    });
    
    example, err := powerscale.NewFilesystem(ctx, "filesystemResource", &powerscale.FilesystemArgs{
    	Group: &powerscale.FilesystemGroupArgs{
    		Id:   pulumi.String("string"),
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	Owner: &powerscale.FilesystemOwnerArgs{
    		Id:   pulumi.String("string"),
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	AccessControl: pulumi.String("string"),
    	DirectoryPath: pulumi.String("string"),
    	FilesystemId:  pulumi.String("string"),
    	FullPath:      pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	Overwrite:     pulumi.Bool(false),
    	QueryZone:     pulumi.String("string"),
    	Recursive:     pulumi.Bool(false),
    })
    
    var filesystemResource = new Filesystem("filesystemResource", FilesystemArgs.builder()
        .group(FilesystemGroupArgs.builder()
            .id("string")
            .name("string")
            .type("string")
            .build())
        .owner(FilesystemOwnerArgs.builder()
            .id("string")
            .name("string")
            .type("string")
            .build())
        .accessControl("string")
        .directoryPath("string")
        .filesystemId("string")
        .fullPath("string")
        .name("string")
        .overwrite(false)
        .queryZone("string")
        .recursive(false)
        .build());
    
    filesystem_resource = powerscale.Filesystem("filesystemResource",
        group={
            "id": "string",
            "name": "string",
            "type": "string",
        },
        owner={
            "id": "string",
            "name": "string",
            "type": "string",
        },
        access_control="string",
        directory_path="string",
        filesystem_id="string",
        full_path="string",
        name="string",
        overwrite=False,
        query_zone="string",
        recursive=False)
    
    const filesystemResource = new powerscale.Filesystem("filesystemResource", {
        group: {
            id: "string",
            name: "string",
            type: "string",
        },
        owner: {
            id: "string",
            name: "string",
            type: "string",
        },
        accessControl: "string",
        directoryPath: "string",
        filesystemId: "string",
        fullPath: "string",
        name: "string",
        overwrite: false,
        queryZone: "string",
        recursive: false,
    });
    
    type: powerscale:Filesystem
    properties:
        accessControl: string
        directoryPath: string
        filesystemId: string
        fullPath: string
        group:
            id: string
            name: string
            type: string
        name: string
        overwrite: false
        owner:
            id: string
            name: string
            type: string
        queryZone: string
        recursive: false
    

    Filesystem 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 Filesystem resource accepts the following input properties:

    Group FilesystemGroup
    The group of the Filesystem.(Update Supported)
    Owner FilesystemOwner
    The owner of the Filesystem.(Update Supported)
    AccessControl string
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    DirectoryPath string
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    FilesystemId string
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    FullPath string
    The full path of the FileSystem
    Name string
    FileSystem directory name
    Overwrite bool
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    QueryZone string
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    Recursive bool
    Creates intermediate folders recursively when set to true.
    Group FilesystemGroupArgs
    The group of the Filesystem.(Update Supported)
    Owner FilesystemOwnerArgs
    The owner of the Filesystem.(Update Supported)
    AccessControl string
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    DirectoryPath string
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    FilesystemId string
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    FullPath string
    The full path of the FileSystem
    Name string
    FileSystem directory name
    Overwrite bool
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    QueryZone string
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    Recursive bool
    Creates intermediate folders recursively when set to true.
    group FilesystemGroup
    The group of the Filesystem.(Update Supported)
    owner FilesystemOwner
    The owner of the Filesystem.(Update Supported)
    accessControl String
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    directoryPath String
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystemId String
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    fullPath String
    The full path of the FileSystem
    name String
    FileSystem directory name
    overwrite Boolean
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    queryZone String
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive Boolean
    Creates intermediate folders recursively when set to true.
    group FilesystemGroup
    The group of the Filesystem.(Update Supported)
    owner FilesystemOwner
    The owner of the Filesystem.(Update Supported)
    accessControl string
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    directoryPath string
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystemId string
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    fullPath string
    The full path of the FileSystem
    name string
    FileSystem directory name
    overwrite boolean
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    queryZone string
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive boolean
    Creates intermediate folders recursively when set to true.
    group FilesystemGroupArgs
    The group of the Filesystem.(Update Supported)
    owner FilesystemOwnerArgs
    The owner of the Filesystem.(Update Supported)
    access_control str
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    directory_path str
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystem_id str
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    full_path str
    The full path of the FileSystem
    name str
    FileSystem directory name
    overwrite bool
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    query_zone str
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive bool
    Creates intermediate folders recursively when set to true.
    group Property Map
    The group of the Filesystem.(Update Supported)
    owner Property Map
    The owner of the Filesystem.(Update Supported)
    accessControl String
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    directoryPath String
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystemId String
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    fullPath String
    The full path of the FileSystem
    name String
    FileSystem directory name
    overwrite Boolean
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    queryZone String
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive Boolean
    Creates intermediate folders recursively when set to true.

    Outputs

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

    Authoritative string
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    CreationTime string
    File System Resource Creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    Mode string
    Acl mode
    Type string
    File System Resource type
    Authoritative string
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    CreationTime string
    File System Resource Creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    Mode string
    Acl mode
    Type string
    File System Resource type
    authoritative String
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creationTime String
    File System Resource Creation time
    id String
    The provider-assigned unique ID for this managed resource.
    mode String
    Acl mode
    type String
    File System Resource type
    authoritative string
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creationTime string
    File System Resource Creation time
    id string
    The provider-assigned unique ID for this managed resource.
    mode string
    Acl mode
    type string
    File System Resource type
    authoritative str
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creation_time str
    File System Resource Creation time
    id str
    The provider-assigned unique ID for this managed resource.
    mode str
    Acl mode
    type str
    File System Resource type
    authoritative String
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creationTime String
    File System Resource Creation time
    id String
    The provider-assigned unique ID for this managed resource.
    mode String
    Acl mode
    type String
    File System Resource type

    Look up Existing Filesystem Resource

    Get an existing Filesystem 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?: FilesystemState, opts?: CustomResourceOptions): Filesystem
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_control: Optional[str] = None,
            authoritative: Optional[str] = None,
            creation_time: Optional[str] = None,
            directory_path: Optional[str] = None,
            filesystem_id: Optional[str] = None,
            full_path: Optional[str] = None,
            group: Optional[FilesystemGroupArgs] = None,
            mode: Optional[str] = None,
            name: Optional[str] = None,
            overwrite: Optional[bool] = None,
            owner: Optional[FilesystemOwnerArgs] = None,
            query_zone: Optional[str] = None,
            recursive: Optional[bool] = None,
            type: Optional[str] = None) -> Filesystem
    func GetFilesystem(ctx *Context, name string, id IDInput, state *FilesystemState, opts ...ResourceOption) (*Filesystem, error)
    public static Filesystem Get(string name, Input<string> id, FilesystemState? state, CustomResourceOptions? opts = null)
    public static Filesystem get(String name, Output<String> id, FilesystemState state, CustomResourceOptions options)
    resources:  _:    type: powerscale:Filesystem    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:
    AccessControl string
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    Authoritative string
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    CreationTime string
    File System Resource Creation time
    DirectoryPath string
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    FilesystemId string
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    FullPath string
    The full path of the FileSystem
    Group FilesystemGroup
    The group of the Filesystem.(Update Supported)
    Mode string
    Acl mode
    Name string
    FileSystem directory name
    Overwrite bool
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    Owner FilesystemOwner
    The owner of the Filesystem.(Update Supported)
    QueryZone string
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    Recursive bool
    Creates intermediate folders recursively when set to true.
    Type string
    File System Resource type
    AccessControl string
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    Authoritative string
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    CreationTime string
    File System Resource Creation time
    DirectoryPath string
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    FilesystemId string
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    FullPath string
    The full path of the FileSystem
    Group FilesystemGroupArgs
    The group of the Filesystem.(Update Supported)
    Mode string
    Acl mode
    Name string
    FileSystem directory name
    Overwrite bool
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    Owner FilesystemOwnerArgs
    The owner of the Filesystem.(Update Supported)
    QueryZone string
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    Recursive bool
    Creates intermediate folders recursively when set to true.
    Type string
    File System Resource type
    accessControl String
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    authoritative String
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creationTime String
    File System Resource Creation time
    directoryPath String
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystemId String
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    fullPath String
    The full path of the FileSystem
    group FilesystemGroup
    The group of the Filesystem.(Update Supported)
    mode String
    Acl mode
    name String
    FileSystem directory name
    overwrite Boolean
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    owner FilesystemOwner
    The owner of the Filesystem.(Update Supported)
    queryZone String
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive Boolean
    Creates intermediate folders recursively when set to true.
    type String
    File System Resource type
    accessControl string
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    authoritative string
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creationTime string
    File System Resource Creation time
    directoryPath string
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystemId string
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    fullPath string
    The full path of the FileSystem
    group FilesystemGroup
    The group of the Filesystem.(Update Supported)
    mode string
    Acl mode
    name string
    FileSystem directory name
    overwrite boolean
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    owner FilesystemOwner
    The owner of the Filesystem.(Update Supported)
    queryZone string
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive boolean
    Creates intermediate folders recursively when set to true.
    type string
    File System Resource type
    access_control str
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    authoritative str
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creation_time str
    File System Resource Creation time
    directory_path str
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystem_id str
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    full_path str
    The full path of the FileSystem
    group FilesystemGroupArgs
    The group of the Filesystem.(Update Supported)
    mode str
    Acl mode
    name str
    FileSystem directory name
    overwrite bool
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    owner FilesystemOwnerArgs
    The owner of the Filesystem.(Update Supported)
    query_zone str
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive bool
    Creates intermediate folders recursively when set to true.
    type str
    File System Resource type
    accessControl String
    The ACL value for the directory. Users can either provide access rights input such as 'privateread' , 'private' , 'publicread', 'publicreadwrite', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700). (Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)
    authoritative String
    If the directory has access rights set, then this field returns acl. Otherwise it returns mode.
    creationTime String
    File System Resource Creation time
    directoryPath String
    FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to manage. If no directory path is specified, [/ifs] would be taken by default.
    filesystemId String
    FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)
    fullPath String
    The full path of the FileSystem
    group Property Map
    The group of the Filesystem.(Update Supported)
    mode String
    Acl mode
    name String
    FileSystem directory name
    overwrite Boolean
    Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.
    owner Property Map
    The owner of the Filesystem.(Update Supported)
    queryZone String
    Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.
    recursive Boolean
    Creates intermediate folders recursively when set to true.
    type String
    File System Resource type

    Supporting Types

    FilesystemGroup, FilesystemGroupArgs

    Id string
    group identifier
    Name string
    group name
    Type string
    group type
    Id string
    group identifier
    Name string
    group name
    Type string
    group type
    id String
    group identifier
    name String
    group name
    type String
    group type
    id string
    group identifier
    name string
    group name
    type string
    group type
    id str
    group identifier
    name str
    group name
    type str
    group type
    id String
    group identifier
    name String
    group name
    type String
    group type

    FilesystemOwner, FilesystemOwnerArgs

    Id string
    Owner identifier
    Name string
    Owner name
    Type string
    Owner type
    Id string
    Owner identifier
    Name string
    Owner name
    Type string
    Owner type
    id String
    Owner identifier
    name String
    Owner name
    type String
    Owner type
    id string
    Owner identifier
    name string
    Owner name
    type string
    Owner type
    id str
    Owner identifier
    name str
    Owner name
    type str
    Owner type
    id String
    Owner identifier
    name String
    Owner name
    type String
    Owner type

    Import

    Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.

    Licensed under the Mozilla Public License Version 2.0 (the “License”);

    you may not use this file except in compliance with the License.

    You may obtain a copy of the License at

    http://mozilla.org/MPL/2.0/
    

    Unless required by applicable law or agreed to in writing, software

    distributed under the License is distributed on an “AS IS” BASIS,

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

    See the License for the specific language governing permissions and

    limitations under the License.

    The command is

    $ pulumi import powerscale:index/filesystem:Filesystem file_system_test <name>
    

    Example:

    $ pulumi import powerscale:index/filesystem:Filesystem file_system_test ifs/DirTf
    

    after running this command, populate the name field and other required parameters in the config file to start managing this resource.

    Note: running “terraform show” after importing shows the current config/state of the resource. You can copy/paste that config to make it easier to manage the resource.

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

    Package Details

    Repository
    powerscale dell/terraform-provider-powerscale
    License
    Notes
    This Pulumi package is based on the powerscale Terraform Provider.
    powerscale logo
    powerscale 1.7.1 published on Wednesday, Apr 30, 2025 by dell