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

powerscale.Aclsettings

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 ACL Settings entity of PowerScale Array. We can Create, Update and Delete the ACL Settings using this resource. We can also import the existing ACL Settings from PowerScale array. Note that, ACL Settings is the native functionality of PowerScale. When creating the resource, we actually load ACL Settings from PowerScale to the resource state.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as powerscale from "@pulumi/powerscale";
    
    // PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.
    const exampleAclSettings = new powerscale.Aclsettings("exampleAclSettings", {});
    
    import pulumi
    import pulumi_powerscale as powerscale
    
    # PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.
    example_acl_settings = powerscale.Aclsettings("exampleAclSettings")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.
    		_, err := powerscale.NewAclsettings(ctx, "exampleAclSettings", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Powerscale = Pulumi.Powerscale;
    
    return await Deployment.RunAsync(() => 
    {
        // PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.
        var exampleAclSettings = new Powerscale.Aclsettings("exampleAclSettings");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.powerscale.Aclsettings;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.
            var exampleAclSettings = new Aclsettings("exampleAclSettings");
    
        }
    }
    
    resources:
      # PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.
      exampleAclSettings:
        type: powerscale:Aclsettings
    

    Create Aclsettings Resource

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

    Constructor syntax

    new Aclsettings(name: string, args?: AclsettingsArgs, opts?: CustomResourceOptions);
    @overload
    def Aclsettings(resource_name: str,
                    args: Optional[AclsettingsArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Aclsettings(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    access: Optional[str] = None,
                    calcmode: Optional[str] = None,
                    calcmode_group: Optional[str] = None,
                    calcmode_owner: Optional[str] = None,
                    calcmode_traverse: Optional[str] = None,
                    chmod: Optional[str] = None,
                    chmod007: Optional[str] = None,
                    chmod_inheritable: Optional[str] = None,
                    chown: Optional[str] = None,
                    create_over_smb: Optional[str] = None,
                    dos_attr: Optional[str] = None,
                    group_owner_inheritance: Optional[str] = None,
                    rwx: Optional[str] = None,
                    synthetic_denies: Optional[str] = None,
                    utimes: Optional[str] = None)
    func NewAclsettings(ctx *Context, name string, args *AclsettingsArgs, opts ...ResourceOption) (*Aclsettings, error)
    public Aclsettings(string name, AclsettingsArgs? args = null, CustomResourceOptions? opts = null)
    public Aclsettings(String name, AclsettingsArgs args)
    public Aclsettings(String name, AclsettingsArgs args, CustomResourceOptions options)
    
    type: powerscale:Aclsettings
    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 AclsettingsArgs
    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 AclsettingsArgs
    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 AclsettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AclsettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AclsettingsArgs
    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 aclsettingsResource = new Powerscale.Aclsettings("aclsettingsResource", new()
    {
        Access = "string",
        Calcmode = "string",
        CalcmodeGroup = "string",
        CalcmodeOwner = "string",
        CalcmodeTraverse = "string",
        Chmod = "string",
        Chmod007 = "string",
        ChmodInheritable = "string",
        Chown = "string",
        CreateOverSmb = "string",
        DosAttr = "string",
        GroupOwnerInheritance = "string",
        Rwx = "string",
        SyntheticDenies = "string",
        Utimes = "string",
    });
    
    example, err := powerscale.NewAclsettings(ctx, "aclsettingsResource", &powerscale.AclsettingsArgs{
    	Access:                pulumi.String("string"),
    	Calcmode:              pulumi.String("string"),
    	CalcmodeGroup:         pulumi.String("string"),
    	CalcmodeOwner:         pulumi.String("string"),
    	CalcmodeTraverse:      pulumi.String("string"),
    	Chmod:                 pulumi.String("string"),
    	Chmod007:              pulumi.String("string"),
    	ChmodInheritable:      pulumi.String("string"),
    	Chown:                 pulumi.String("string"),
    	CreateOverSmb:         pulumi.String("string"),
    	DosAttr:               pulumi.String("string"),
    	GroupOwnerInheritance: pulumi.String("string"),
    	Rwx:                   pulumi.String("string"),
    	SyntheticDenies:       pulumi.String("string"),
    	Utimes:                pulumi.String("string"),
    })
    
    var aclsettingsResource = new Aclsettings("aclsettingsResource", AclsettingsArgs.builder()
        .access("string")
        .calcmode("string")
        .calcmodeGroup("string")
        .calcmodeOwner("string")
        .calcmodeTraverse("string")
        .chmod("string")
        .chmod007("string")
        .chmodInheritable("string")
        .chown("string")
        .createOverSmb("string")
        .dosAttr("string")
        .groupOwnerInheritance("string")
        .rwx("string")
        .syntheticDenies("string")
        .utimes("string")
        .build());
    
    aclsettings_resource = powerscale.Aclsettings("aclsettingsResource",
        access="string",
        calcmode="string",
        calcmode_group="string",
        calcmode_owner="string",
        calcmode_traverse="string",
        chmod="string",
        chmod007="string",
        chmod_inheritable="string",
        chown="string",
        create_over_smb="string",
        dos_attr="string",
        group_owner_inheritance="string",
        rwx="string",
        synthetic_denies="string",
        utimes="string")
    
    const aclsettingsResource = new powerscale.Aclsettings("aclsettingsResource", {
        access: "string",
        calcmode: "string",
        calcmodeGroup: "string",
        calcmodeOwner: "string",
        calcmodeTraverse: "string",
        chmod: "string",
        chmod007: "string",
        chmodInheritable: "string",
        chown: "string",
        createOverSmb: "string",
        dosAttr: "string",
        groupOwnerInheritance: "string",
        rwx: "string",
        syntheticDenies: "string",
        utimes: "string",
    });
    
    type: powerscale:Aclsettings
    properties:
        access: string
        calcmode: string
        calcmodeGroup: string
        calcmodeOwner: string
        calcmodeTraverse: string
        chmod: string
        chmod007: string
        chmodInheritable: string
        chown: string
        createOverSmb: string
        dosAttr: string
        groupOwnerInheritance: string
        rwx: string
        syntheticDenies: string
        utimes: string
    

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

    Access string
    Access checks (chmod, chown). Options: unix, windows
    Calcmode string
    Displayed mode bits. Options: approx, 777
    CalcmodeGroup string
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    CalcmodeOwner string
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    CalcmodeTraverse string
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    Chmod string
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    Chmod007 string
    chmod (007) on files with existing ACLs. Options: default, remove
    ChmodInheritable string
    ACLs created on directories by UNIX chmod. Options: yes, no
    Chown string
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    CreateOverSmb string
    ACL creation over SMB. Options: allow, disallow
    DosAttr string
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    GroupOwnerInheritance string
    Group owner inheritance. Options: native, parent, creator
    Rwx string
    Treatment of 'rwx' permissions. Options: retain, full_control
    SyntheticDenies string
    Synthetic 'deny' ACEs. Options: none, remove
    Utimes string
    Access check (utimes). Options: onlyowner, ownerand_write
    Access string
    Access checks (chmod, chown). Options: unix, windows
    Calcmode string
    Displayed mode bits. Options: approx, 777
    CalcmodeGroup string
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    CalcmodeOwner string
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    CalcmodeTraverse string
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    Chmod string
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    Chmod007 string
    chmod (007) on files with existing ACLs. Options: default, remove
    ChmodInheritable string
    ACLs created on directories by UNIX chmod. Options: yes, no
    Chown string
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    CreateOverSmb string
    ACL creation over SMB. Options: allow, disallow
    DosAttr string
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    GroupOwnerInheritance string
    Group owner inheritance. Options: native, parent, creator
    Rwx string
    Treatment of 'rwx' permissions. Options: retain, full_control
    SyntheticDenies string
    Synthetic 'deny' ACEs. Options: none, remove
    Utimes string
    Access check (utimes). Options: onlyowner, ownerand_write
    access String
    Access checks (chmod, chown). Options: unix, windows
    calcmode String
    Displayed mode bits. Options: approx, 777
    calcmodeGroup String
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmodeOwner String
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmodeTraverse String
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod String
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 String
    chmod (007) on files with existing ACLs. Options: default, remove
    chmodInheritable String
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown String
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    createOverSmb String
    ACL creation over SMB. Options: allow, disallow
    dosAttr String
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    groupOwnerInheritance String
    Group owner inheritance. Options: native, parent, creator
    rwx String
    Treatment of 'rwx' permissions. Options: retain, full_control
    syntheticDenies String
    Synthetic 'deny' ACEs. Options: none, remove
    utimes String
    Access check (utimes). Options: onlyowner, ownerand_write
    access string
    Access checks (chmod, chown). Options: unix, windows
    calcmode string
    Displayed mode bits. Options: approx, 777
    calcmodeGroup string
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmodeOwner string
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmodeTraverse string
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod string
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 string
    chmod (007) on files with existing ACLs. Options: default, remove
    chmodInheritable string
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown string
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    createOverSmb string
    ACL creation over SMB. Options: allow, disallow
    dosAttr string
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    groupOwnerInheritance string
    Group owner inheritance. Options: native, parent, creator
    rwx string
    Treatment of 'rwx' permissions. Options: retain, full_control
    syntheticDenies string
    Synthetic 'deny' ACEs. Options: none, remove
    utimes string
    Access check (utimes). Options: onlyowner, ownerand_write
    access str
    Access checks (chmod, chown). Options: unix, windows
    calcmode str
    Displayed mode bits. Options: approx, 777
    calcmode_group str
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmode_owner str
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmode_traverse str
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod str
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 str
    chmod (007) on files with existing ACLs. Options: default, remove
    chmod_inheritable str
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown str
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    create_over_smb str
    ACL creation over SMB. Options: allow, disallow
    dos_attr str
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    group_owner_inheritance str
    Group owner inheritance. Options: native, parent, creator
    rwx str
    Treatment of 'rwx' permissions. Options: retain, full_control
    synthetic_denies str
    Synthetic 'deny' ACEs. Options: none, remove
    utimes str
    Access check (utimes). Options: onlyowner, ownerand_write
    access String
    Access checks (chmod, chown). Options: unix, windows
    calcmode String
    Displayed mode bits. Options: approx, 777
    calcmodeGroup String
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmodeOwner String
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmodeTraverse String
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod String
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 String
    chmod (007) on files with existing ACLs. Options: default, remove
    chmodInheritable String
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown String
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    createOverSmb String
    ACL creation over SMB. Options: allow, disallow
    dosAttr String
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    groupOwnerInheritance String
    Group owner inheritance. Options: native, parent, creator
    rwx String
    Treatment of 'rwx' permissions. Options: retain, full_control
    syntheticDenies String
    Synthetic 'deny' ACEs. Options: none, remove
    utimes String
    Access check (utimes). Options: onlyowner, ownerand_write

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Aclsettings Resource

    Get an existing Aclsettings 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?: AclsettingsState, opts?: CustomResourceOptions): Aclsettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access: Optional[str] = None,
            calcmode: Optional[str] = None,
            calcmode_group: Optional[str] = None,
            calcmode_owner: Optional[str] = None,
            calcmode_traverse: Optional[str] = None,
            chmod: Optional[str] = None,
            chmod007: Optional[str] = None,
            chmod_inheritable: Optional[str] = None,
            chown: Optional[str] = None,
            create_over_smb: Optional[str] = None,
            dos_attr: Optional[str] = None,
            group_owner_inheritance: Optional[str] = None,
            rwx: Optional[str] = None,
            synthetic_denies: Optional[str] = None,
            utimes: Optional[str] = None) -> Aclsettings
    func GetAclsettings(ctx *Context, name string, id IDInput, state *AclsettingsState, opts ...ResourceOption) (*Aclsettings, error)
    public static Aclsettings Get(string name, Input<string> id, AclsettingsState? state, CustomResourceOptions? opts = null)
    public static Aclsettings get(String name, Output<String> id, AclsettingsState state, CustomResourceOptions options)
    resources:  _:    type: powerscale:Aclsettings    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:
    Access string
    Access checks (chmod, chown). Options: unix, windows
    Calcmode string
    Displayed mode bits. Options: approx, 777
    CalcmodeGroup string
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    CalcmodeOwner string
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    CalcmodeTraverse string
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    Chmod string
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    Chmod007 string
    chmod (007) on files with existing ACLs. Options: default, remove
    ChmodInheritable string
    ACLs created on directories by UNIX chmod. Options: yes, no
    Chown string
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    CreateOverSmb string
    ACL creation over SMB. Options: allow, disallow
    DosAttr string
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    GroupOwnerInheritance string
    Group owner inheritance. Options: native, parent, creator
    Rwx string
    Treatment of 'rwx' permissions. Options: retain, full_control
    SyntheticDenies string
    Synthetic 'deny' ACEs. Options: none, remove
    Utimes string
    Access check (utimes). Options: onlyowner, ownerand_write
    Access string
    Access checks (chmod, chown). Options: unix, windows
    Calcmode string
    Displayed mode bits. Options: approx, 777
    CalcmodeGroup string
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    CalcmodeOwner string
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    CalcmodeTraverse string
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    Chmod string
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    Chmod007 string
    chmod (007) on files with existing ACLs. Options: default, remove
    ChmodInheritable string
    ACLs created on directories by UNIX chmod. Options: yes, no
    Chown string
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    CreateOverSmb string
    ACL creation over SMB. Options: allow, disallow
    DosAttr string
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    GroupOwnerInheritance string
    Group owner inheritance. Options: native, parent, creator
    Rwx string
    Treatment of 'rwx' permissions. Options: retain, full_control
    SyntheticDenies string
    Synthetic 'deny' ACEs. Options: none, remove
    Utimes string
    Access check (utimes). Options: onlyowner, ownerand_write
    access String
    Access checks (chmod, chown). Options: unix, windows
    calcmode String
    Displayed mode bits. Options: approx, 777
    calcmodeGroup String
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmodeOwner String
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmodeTraverse String
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod String
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 String
    chmod (007) on files with existing ACLs. Options: default, remove
    chmodInheritable String
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown String
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    createOverSmb String
    ACL creation over SMB. Options: allow, disallow
    dosAttr String
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    groupOwnerInheritance String
    Group owner inheritance. Options: native, parent, creator
    rwx String
    Treatment of 'rwx' permissions. Options: retain, full_control
    syntheticDenies String
    Synthetic 'deny' ACEs. Options: none, remove
    utimes String
    Access check (utimes). Options: onlyowner, ownerand_write
    access string
    Access checks (chmod, chown). Options: unix, windows
    calcmode string
    Displayed mode bits. Options: approx, 777
    calcmodeGroup string
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmodeOwner string
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmodeTraverse string
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod string
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 string
    chmod (007) on files with existing ACLs. Options: default, remove
    chmodInheritable string
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown string
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    createOverSmb string
    ACL creation over SMB. Options: allow, disallow
    dosAttr string
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    groupOwnerInheritance string
    Group owner inheritance. Options: native, parent, creator
    rwx string
    Treatment of 'rwx' permissions. Options: retain, full_control
    syntheticDenies string
    Synthetic 'deny' ACEs. Options: none, remove
    utimes string
    Access check (utimes). Options: onlyowner, ownerand_write
    access str
    Access checks (chmod, chown). Options: unix, windows
    calcmode str
    Displayed mode bits. Options: approx, 777
    calcmode_group str
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmode_owner str
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmode_traverse str
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod str
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 str
    chmod (007) on files with existing ACLs. Options: default, remove
    chmod_inheritable str
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown str
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    create_over_smb str
    ACL creation over SMB. Options: allow, disallow
    dos_attr str
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    group_owner_inheritance str
    Group owner inheritance. Options: native, parent, creator
    rwx str
    Treatment of 'rwx' permissions. Options: retain, full_control
    synthetic_denies str
    Synthetic 'deny' ACEs. Options: none, remove
    utimes str
    Access check (utimes). Options: onlyowner, ownerand_write
    access String
    Access checks (chmod, chown). Options: unix, windows
    calcmode String
    Displayed mode bits. Options: approx, 777
    calcmodeGroup String
    Approximate group mode bits when ACL exists. Options: groupaces, grouponly
    calcmodeOwner String
    Approximate owner mode bits when ACL exists. Options: owneraces, owneronly
    calcmodeTraverse String
    Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore
    chmod String
    chmod on files with existing ACLs. Options: remove, replace, replaceusersandgroups, mergewithugopriority, merge, deny, ignore
    chmod007 String
    chmod (007) on files with existing ACLs. Options: default, remove
    chmodInheritable String
    ACLs created on directories by UNIX chmod. Options: yes, no
    chown String
    chown/chgrp on files with existing ACLs. Options: ownergroupandacl, ownergroup_only, ignore
    createOverSmb String
    ACL creation over SMB. Options: allow, disallow
    dosAttr String
    Read only DOS attribute. Options: denysmb, denysmbandnfs
    groupOwnerInheritance String
    Group owner inheritance. Options: native, parent, creator
    rwx String
    Treatment of 'rwx' permissions. Options: retain, full_control
    syntheticDenies String
    Synthetic 'deny' ACEs. Options: none, remove
    utimes String
    Access check (utimes). Options: onlyowner, ownerand_write

    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/aclsettings:Aclsettings example_acl_settings <anyString>
    

    Example:

    $ pulumi import powerscale:index/aclsettings:Aclsettings example_acl_settings anyString
    

    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