{"attribution":"This Pulumi package is based on the [`powerscale` Terraform Provider](https://github.com/dell/terraform-provider-powerscale).","config":{"variables":{"authType":{"description":"what should be the auth type, 0 for basic and 1 for session-based. This can also be set using the environment variable POWERSCALE_AUTH_TYPE","type":"number"},"endpoint":{"description":"The API endpoint, ex. https://172.17.177.230:8080. This can also be set using the environment variable POWERSCALE_ENDPOINT","type":"string"},"insecure":{"description":"whether to skip SSL validation. This can also be set using the environment variable POWERSCALE_INSECURE","type":"boolean"},"password":{"description":"The password. This can also be set using the environment variable POWERSCALE_PASSWORD","secret":true,"type":"string"},"timeout":{"description":"specifies a time limit for requests. This can also be set using the environment variable POWERSCALE_TIMEOUT","type":"number"},"username":{"description":"The username. This can also be set using the environment variable POWERSCALE_USERNAME","type":"string"}}},"description":"A Pulumi provider dynamically bridged from powerscale.","functions":{"powerscale:index/getAccesszone:getAccesszone":{"description":"Access Zone Datasource. This datasource is used to query the existing Access Zone from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale Access Zones allow you to isolate data and control who can access data in each zone.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Returns all of the PowerScale access zones and their details\n// PowerScale access zones allow you to isolate data and control who can access data in each zone.\nconst all = powerscale.getAccesszone({});\nexport const powerscaleAccesszoneDataAll = all;\n// Returns a subset of the PowerScale access zones based on the names provided in the `names` filter block and their details\nconst test = powerscale.getAccesszone({\n    filter: {\n        names: [\"tfaccAccessZone\"],\n    },\n});\nexport const powerscaleAccesszone = test;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Returns all of the PowerScale access zones and their details\n# PowerScale access zones allow you to isolate data and control who can access data in each zone.\nall = powerscale.get_accesszone()\npulumi.export(\"powerscaleAccesszoneDataAll\", all)\n# Returns a subset of the PowerScale access zones based on the names provided in the `names` filter block and their details\ntest = powerscale.get_accesszone(filter={\n    \"names\": [\"tfaccAccessZone\"],\n})\npulumi.export(\"powerscaleAccesszone\", test)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Returns all of the PowerScale access zones and their details\n    // PowerScale access zones allow you to isolate data and control who can access data in each zone.\n    var all = Powerscale.GetAccesszone.Invoke();\n\n    // Returns a subset of the PowerScale access zones based on the names provided in the `names` filter block and their details\n    var test = Powerscale.GetAccesszone.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetAccesszoneFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"tfaccAccessZone\",\n            },\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleAccesszoneDataAll\"] = all,\n        [\"powerscaleAccesszone\"] = test,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Returns all of the PowerScale access zones and their details\n\t\t// PowerScale access zones allow you to isolate data and control who can access data in each zone.\n\t\tall, err := powerscale.LookupAccesszone(ctx, &powerscale.LookupAccesszoneArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleAccesszoneDataAll\", all)\n\t\t// Returns a subset of the PowerScale access zones based on the names provided in the `names` filter block and their details\n\t\ttest, err := powerscale.LookupAccesszone(ctx, &powerscale.LookupAccesszoneArgs{\n\t\t\tFilter: powerscale.GetAccesszoneFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"tfaccAccessZone\",\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleAccesszone\", test)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetAccesszoneArgs;\nimport com.pulumi.powerscale.inputs.GetAccesszoneFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Returns all of the PowerScale access zones and their details\n        // PowerScale access zones allow you to isolate data and control who can access data in each zone.\n        final var all = PowerscaleFunctions.getAccesszone(GetAccesszoneArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleAccesszoneDataAll\", all);\n        // Returns a subset of the PowerScale access zones based on the names provided in the `names` filter block and their details\n        final var test = PowerscaleFunctions.getAccesszone(GetAccesszoneArgs.builder()\n            .filter(GetAccesszoneFilterArgs.builder()\n                .names(\"tfaccAccessZone\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleAccesszone\", test);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Returns all of the PowerScale access zones and their details\n  # PowerScale access zones allow you to isolate data and control who can access data in each zone.\n  all:\n    fn::invoke:\n      function: powerscale:getAccesszone\n      arguments: {}\n  # Returns a subset of the PowerScale access zones based on the names provided in the `names` filter block and their details\n  test:\n    fn::invoke:\n      function: powerscale:getAccesszone\n      arguments:\n        filter:\n          names:\n            - tfaccAccessZone\noutputs:\n  powerscaleAccesszoneDataAll: ${all}\n  powerscaleAccesszone: ${test}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getAccesszone.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetAccesszoneFilter:getAccesszoneFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getAccesszone.\n","properties":{"accessZonesDetails":{"description":"List of AccessZones\n","items":{"$ref":"#/types/powerscale:index%2FgetAccesszoneAccessZonesDetail:getAccesszoneAccessZonesDetail"},"type":"array"},"filter":{"$ref":"#/types/powerscale:index%2FgetAccesszoneFilter:getAccesszoneFilter"},"id":{"description":"Identifier\n","type":"string"}},"required":["accessZonesDetails","id"],"type":"object"}},"powerscale:index/getAclsettings:getAclsettings":{"description":"This datasource is used to query the ACL Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. You can use ACL Settings to manage file and directory permissions, referred to as access rights.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of the ACL settings from PowerScale array.\n// Returns the PowerScale ACL settings on PowerScale array\nconst all = powerscale.getAclsettings({});\nexport const powerscaleAclsettingsDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of the ACL settings from PowerScale array.\n# Returns the PowerScale ACL settings on PowerScale array\nall = powerscale.get_aclsettings()\npulumi.export(\"powerscaleAclsettingsDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of the ACL settings from PowerScale array.\n    // Returns the PowerScale ACL settings on PowerScale array\n    var all = Powerscale.GetAclsettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleAclsettingsDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of the ACL settings from PowerScale array.\n\t\t// Returns the PowerScale ACL settings on PowerScale array\n\t\tall, err := powerscale.LookupAclsettings(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleAclsettingsDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of the ACL settings from PowerScale array.\n        // Returns the PowerScale ACL settings on PowerScale array\n        final var all = PowerscaleFunctions.getAclsettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleAclsettingsDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of the ACL settings from PowerScale array.\n\n  # Returns the PowerScale ACL settings on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getAclsettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_aclsettings.all\n  powerscaleAclsettingsDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getAclsettings.\n","properties":{"access":{"description":"Access checks (chmod, chown). Options: unix, windows\n","type":"string"},"calcmode":{"description":"Displayed mode bits. Options: approx, 777\n","type":"string"},"calcmodeGroup":{"description":"Approximate group mode bits when ACL exists. Options: group*aces, group*only\n","type":"string"},"calcmodeOwner":{"description":"Approximate owner mode bits when ACL exists. Options: owner*aces, owner*only\n","type":"string"},"calcmodeTraverse":{"description":"Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore\n","type":"string"},"chmod":{"description":"chmod on files with existing ACLs. Options: remove, replace, replace*users*and*groups, merge*with*ugo*priority, merge, deny, ignore\n","type":"string"},"chmod007":{"description":"chmod (007) on files with existing ACLs. Options: default, remove\n","type":"string"},"chmodInheritable":{"description":"ACLs created on directories by UNIX chmod. Options: yes, no\n","type":"string"},"chown":{"description":"chown/chgrp on files with existing ACLs. Options: owner*group*and*acl, owner*group_only, ignore\n","type":"string"},"createOverSmb":{"description":"ACL creation over SMB. Options: allow, disallow\n","type":"string"},"dosAttr":{"description":"Read only DOS attribute. Options: deny*smb, deny*smb*and*nfs\n","type":"string"},"groupOwnerInheritance":{"description":"Group owner inheritance. Options: native, parent, creator\n","type":"string"},"id":{"description":"The provider-assigned unique ID for this managed resource.","type":"string"},"rwx":{"description":"Treatment of 'rwx' permissions. Options: retain, full_control\n","type":"string"},"syntheticDenies":{"description":"Synthetic 'deny' ACEs. Options: none, remove\n","type":"string"},"utimes":{"description":"Access check (utimes). Options: only*owner, owner*and_write\n","type":"string"}},"required":["access","calcmode","calcmodeGroup","calcmodeOwner","calcmodeTraverse","chmod","chmod007","chmodInheritable","chown","createOverSmb","dosAttr","groupOwnerInheritance","id","rwx","syntheticDenies","utimes"],"type":"object"}},"powerscale:index/getAdsprovider:getAdsprovider":{"description":"This datasource is used to query the existing ADS providers from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. Joining your cluster to an AD domain allows you to perform user and group authentication.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing ADS providers from PowerScale array.\n// Returns a list of PowerScale ADS providers based on names and scope specified in the filter block.\nconst test = powerscale.getAdsprovider({\n    filter: {\n        names: [\"PIE.LAB.EMC.COM\"],\n        scope: \"effective\",\n    },\n});\nexport const powerscaleAdsprovider = test;\n// Returns all PowerScale ADS providers on PowerScale array\nconst all = powerscale.getAdsprovider({});\nexport const powerscaleAdsproviderDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing ADS providers from PowerScale array.\n# Returns a list of PowerScale ADS providers based on names and scope specified in the filter block.\ntest = powerscale.get_adsprovider(filter={\n    \"names\": [\"PIE.LAB.EMC.COM\"],\n    \"scope\": \"effective\",\n})\npulumi.export(\"powerscaleAdsprovider\", test)\n# Returns all PowerScale ADS providers on PowerScale array\nall = powerscale.get_adsprovider()\npulumi.export(\"powerscaleAdsproviderDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing ADS providers from PowerScale array.\n    // Returns a list of PowerScale ADS providers based on names and scope specified in the filter block.\n    var test = Powerscale.GetAdsprovider.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetAdsproviderFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"PIE.LAB.EMC.COM\",\n            },\n            Scope = \"effective\",\n        },\n    });\n\n    // Returns all PowerScale ADS providers on PowerScale array\n    var all = Powerscale.GetAdsprovider.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleAdsprovider\"] = test,\n        [\"powerscaleAdsproviderDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing ADS providers from PowerScale array.\n\t\t// Returns a list of PowerScale ADS providers based on names and scope specified in the filter block.\n\t\ttest, err := powerscale.LookupAdsprovider(ctx, &powerscale.LookupAdsproviderArgs{\n\t\t\tFilter: powerscale.GetAdsproviderFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"PIE.LAB.EMC.COM\",\n\t\t\t\t},\n\t\t\t\tScope: pulumi.StringRef(\"effective\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleAdsprovider\", test)\n\t\t// Returns all PowerScale ADS providers on PowerScale array\n\t\tall, err := powerscale.LookupAdsprovider(ctx, &powerscale.LookupAdsproviderArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleAdsproviderDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetAdsproviderArgs;\nimport com.pulumi.powerscale.inputs.GetAdsproviderFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing ADS providers from PowerScale array.\n        // Returns a list of PowerScale ADS providers based on names and scope specified in the filter block.\n        final var test = PowerscaleFunctions.getAdsprovider(GetAdsproviderArgs.builder()\n            .filter(GetAdsproviderFilterArgs.builder()\n                .names(\"PIE.LAB.EMC.COM\")\n                .scope(\"effective\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleAdsprovider\", test);\n        // Returns all PowerScale ADS providers on PowerScale array\n        final var all = PowerscaleFunctions.getAdsprovider(GetAdsproviderArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleAdsproviderDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing ADS providers from PowerScale array.\n\n  # Returns a list of PowerScale ADS providers based on names and scope specified in the filter block.\n  test:\n    fn::invoke:\n      function: powerscale:getAdsprovider\n      arguments:\n        filter:\n          names:\n            - PIE.LAB.EMC.COM\n          scope: effective\n  # Returns all PowerScale ADS providers on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getAdsprovider\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_adsprovider.test\n  powerscaleAdsprovider: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_adsprovider.all\n  powerscaleAdsproviderDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getAdsprovider.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetAdsproviderFilter:getAdsproviderFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getAdsprovider.\n","properties":{"adsProvidersDetails":{"description":"List of AdsProviders.\n","items":{"$ref":"#/types/powerscale:index%2FgetAdsproviderAdsProvidersDetail:getAdsproviderAdsProvidersDetail"},"type":"array"},"filter":{"$ref":"#/types/powerscale:index%2FgetAdsproviderFilter:getAdsproviderFilter"},"id":{"description":"Unique identifier of the ads provider instance.\n","type":"string"}},"required":["adsProvidersDetails","id"],"type":"object"}},"powerscale:index/getCluster:getCluster":{"description":"This datasource is used to query the existing cluster from PowerScale array. The information fetched from this data source can be used for getting the details, including <span pulumi-lang-nodejs=\"`config`\" pulumi-lang-dotnet=\"`Config`\" pulumi-lang-go=\"`config`\" pulumi-lang-python=\"`config`\" pulumi-lang-yaml=\"`config`\" pulumi-lang-java=\"`config`\">`config`</span>, <span pulumi-lang-nodejs=\"`identity`\" pulumi-lang-dotnet=\"`Identity`\" pulumi-lang-go=\"`identity`\" pulumi-lang-python=\"`identity`\" pulumi-lang-yaml=\"`identity`\" pulumi-lang-java=\"`identity`\">`identity`</span>, <span pulumi-lang-nodejs=\"`nodes`\" pulumi-lang-dotnet=\"`Nodes`\" pulumi-lang-go=\"`nodes`\" pulumi-lang-python=\"`nodes`\" pulumi-lang-yaml=\"`nodes`\" pulumi-lang-java=\"`nodes`\">`nodes`</span>, <span pulumi-lang-nodejs=\"`internalNetworks`\" pulumi-lang-dotnet=\"`InternalNetworks`\" pulumi-lang-go=\"`internalNetworks`\" pulumi-lang-python=\"`internal_networks`\" pulumi-lang-yaml=\"`internalNetworks`\" pulumi-lang-java=\"`internalNetworks`\">`internal_networks`</span> and <span pulumi-lang-nodejs=\"`acs`\" pulumi-lang-dotnet=\"`Acs`\" pulumi-lang-go=\"`acs`\" pulumi-lang-python=\"`acs`\" pulumi-lang-yaml=\"`acs`\" pulumi-lang-java=\"`acs`\">`acs`</span>.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\nconst test = powerscale.getCluster({});\nexport const powerscaleCluster = test;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\ntest = powerscale.get_cluster()\npulumi.export(\"powerscaleCluster\", test)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    var test = Powerscale.GetCluster.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleCluster\"] = test,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\ttest, err := powerscale.GetCluster(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleCluster\", test)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        final var test = PowerscaleFunctions.getCluster(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleCluster\", test);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n  test:\n    fn::invoke:\n      function: powerscale:getCluster\n      arguments: {}\noutputs:\n  powerscaleCluster: ${test}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getCluster.\n","properties":{"acs":{"$ref":"#/types/powerscale:index%2FgetClusterAcs:getClusterAcs","description":"Cluster ACS status.\n"},"config":{"$ref":"#/types/powerscale:index%2FgetClusterConfig:getClusterConfig","description":"The configuration information of cluster.\n"},"id":{"description":"Unique identifier of the cluster.\n","type":"string"},"identity":{"$ref":"#/types/powerscale:index%2FgetClusterIdentity:getClusterIdentity","description":"Unprivileged cluster information for display when logging in.\n"},"internalNetworks":{"$ref":"#/types/powerscale:index%2FgetClusterInternalNetworks:getClusterInternalNetworks","description":"Configuration fields for internal networks.\n"},"nodes":{"$ref":"#/types/powerscale:index%2FgetClusterNodes:getClusterNodes","description":"Cluster node information\n"}},"required":["acs","config","id","identity","internalNetworks","nodes"],"type":"object"}},"powerscale:index/getClusterEmail:getClusterEmail":{"description":"This datasource is used to query the Cluster Email Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Returns PowerScale cluster email settings detail\nconst test = powerscale.getClusterEmail({});\nexport const powerscaleClusterEmailOutput = test;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Returns PowerScale cluster email settings detail\ntest = powerscale.get_cluster_email()\npulumi.export(\"powerscaleClusterEmailOutput\", test)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Returns PowerScale cluster email settings detail\n    var test = Powerscale.GetClusterEmail.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleClusterEmailOutput\"] = test,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Returns PowerScale cluster email settings detail\n\t\ttest, err := powerscale.LookupClusterEmail(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleClusterEmailOutput\", test)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Returns PowerScale cluster email settings detail\n        final var test = PowerscaleFunctions.getClusterEmail(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleClusterEmailOutput\", test);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Returns PowerScale cluster email settings detail\n  test:\n    fn::invoke:\n      function: powerscale:getClusterEmail\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_cluster_email.example\n  powerscaleClusterEmailOutput: ${test}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getClusterEmail.\n","properties":{"id":{"description":"Unique identifier.\n","type":"string"},"settings":{"$ref":"#/types/powerscale:index%2FgetClusterEmailSettings:getClusterEmailSettings","description":"Cluster email notification settings.\n"}},"required":["id","settings"],"type":"object"}},"powerscale:index/getFilepoolPolicy:getFilepoolPolicy":{"description":"This datasource is used to query the existing File Pool Policies from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n// Returns a list of PowerScale File Pool Policies based on names filter block. \nconst exampleFilepoolPolicy = powerscale.getFilepoolPolicy({\n    filter: {\n        names: [\n            \"filePoolPolicySample\",\n            \"Default policy\",\n        ],\n    },\n});\nexport const powerscaleFilepoolPolicyFilter = exampleFilepoolPolicy;\n// Returns all of the PowerScale File Pool Policies including Default Policy.\nconst all = powerscale.getFilepoolPolicy({});\nexport const powerscaleFilepoolPolicyAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n# Returns a list of PowerScale File Pool Policies based on names filter block. \nexample_filepool_policy = powerscale.get_filepool_policy(filter={\n    \"names\": [\n        \"filePoolPolicySample\",\n        \"Default policy\",\n    ],\n})\npulumi.export(\"powerscaleFilepoolPolicyFilter\", example_filepool_policy)\n# Returns all of the PowerScale File Pool Policies including Default Policy.\nall = powerscale.get_filepool_policy()\npulumi.export(\"powerscaleFilepoolPolicyAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n    // Returns a list of PowerScale File Pool Policies based on names filter block. \n    var exampleFilepoolPolicy = Powerscale.GetFilepoolPolicy.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetFilepoolPolicyFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"filePoolPolicySample\",\n                \"Default policy\",\n            },\n        },\n    });\n\n    // Returns all of the PowerScale File Pool Policies including Default Policy.\n    var all = Powerscale.GetFilepoolPolicy.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleFilepoolPolicyFilter\"] = exampleFilepoolPolicy,\n        [\"powerscaleFilepoolPolicyAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n\t\t// Returns a list of PowerScale File Pool Policies based on names filter block.\n\t\texampleFilepoolPolicy, err := powerscale.LookupFilepoolPolicy(ctx, &powerscale.LookupFilepoolPolicyArgs{\n\t\t\tFilter: powerscale.GetFilepoolPolicyFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"filePoolPolicySample\",\n\t\t\t\t\t\"Default policy\",\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleFilepoolPolicyFilter\", exampleFilepoolPolicy)\n\t\t// Returns all of the PowerScale File Pool Policies including Default Policy.\n\t\tall, err := powerscale.LookupFilepoolPolicy(ctx, &powerscale.LookupFilepoolPolicyArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleFilepoolPolicyAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetFilepoolPolicyArgs;\nimport com.pulumi.powerscale.inputs.GetFilepoolPolicyFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n        // Returns a list of PowerScale File Pool Policies based on names filter block. \n        final var exampleFilepoolPolicy = PowerscaleFunctions.getFilepoolPolicy(GetFilepoolPolicyArgs.builder()\n            .filter(GetFilepoolPolicyFilterArgs.builder()\n                .names(                \n                    \"filePoolPolicySample\",\n                    \"Default policy\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleFilepoolPolicyFilter\", exampleFilepoolPolicy);\n        // Returns all of the PowerScale File Pool Policies including Default Policy.\n        final var all = PowerscaleFunctions.getFilepoolPolicy(GetFilepoolPolicyArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleFilepoolPolicyAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n  # Returns a list of PowerScale File Pool Policies based on names filter block.\n  exampleFilepoolPolicy:\n    fn::invoke:\n      function: powerscale:getFilepoolPolicy\n      arguments:\n        filter:\n          names:\n            - filePoolPolicySample\n            - Default policy\n  # Returns all of the PowerScale File Pool Policies including Default Policy.\n  all:\n    fn::invoke:\n      function: powerscale:getFilepoolPolicy\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command.\n  # The user can use the fetched information by the variable data.powerscale_filepool_policy.example_filepool_policy\n  powerscaleFilepoolPolicyFilter: ${exampleFilepoolPolicy}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_filepool_policy.all\n  powerscaleFilepoolPolicyAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getFilepoolPolicy.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilter:getFilepoolPolicyFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getFilepoolPolicy.\n","properties":{"filePoolPolicies":{"description":"List of file pool policies.\n","items":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicy:getFilepoolPolicyFilePoolPolicy"},"type":"array"},"filter":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilter:getFilepoolPolicyFilter"},"id":{"description":"Unique identifier of the file pool policy instance.\n","type":"string"}},"required":["filePoolPolicies","id"],"type":"object"}},"powerscale:index/getFilesystem:getFilesystem":{"description":"This datasource is used to query the existing FileSystem (Namespace Directory) from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.It allows you to get information which includes all metadata , access control , quotas and snapshots related information for the directory.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This terraform DataSource is used to query the existing FileSystem(Namespace Directory) from PowerScale array.It allows you to get information which includes all metadata , access control , quotas and snapshots related information for the directory.\n// Returns the information related to the specified PowerScale FileSystem(Namespace Directory) based on the directory path. If directory path is not set it will give details regarding the default \"/ifs\" directory.\nconst system = powerscale.getFilesystem({\n    directoryPath: \"/ifs/tfacc_file_system_test\",\n});\nexport const powerscaleFilesystem1 = system;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This terraform DataSource is used to query the existing FileSystem(Namespace Directory) from PowerScale array.It allows you to get information which includes all metadata , access control , quotas and snapshots related information for the directory.\n# Returns the information related to the specified PowerScale FileSystem(Namespace Directory) based on the directory path. If directory path is not set it will give details regarding the default \"/ifs\" directory.\nsystem = powerscale.get_filesystem(directory_path=\"/ifs/tfacc_file_system_test\")\npulumi.export(\"powerscaleFilesystem1\", system)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This terraform DataSource is used to query the existing FileSystem(Namespace Directory) from PowerScale array.It allows you to get information which includes all metadata , access control , quotas and snapshots related information for the directory.\n    // Returns the information related to the specified PowerScale FileSystem(Namespace Directory) based on the directory path. If directory path is not set it will give details regarding the default \"/ifs\" directory.\n    var system = Powerscale.GetFilesystem.Invoke(new()\n    {\n        DirectoryPath = \"/ifs/tfacc_file_system_test\",\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleFilesystem1\"] = system,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This terraform DataSource is used to query the existing FileSystem(Namespace Directory) from PowerScale array.It allows you to get information which includes all metadata , access control , quotas and snapshots related information for the directory.\n\t\t// Returns the information related to the specified PowerScale FileSystem(Namespace Directory) based on the directory path. If directory path is not set it will give details regarding the default \"/ifs\" directory.\n\t\tsystem, err := powerscale.LookupFilesystem(ctx, &powerscale.LookupFilesystemArgs{\n\t\t\tDirectoryPath: pulumi.StringRef(\"/ifs/tfacc_file_system_test\"),\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleFilesystem1\", system)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetFilesystemArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This terraform DataSource is used to query the existing FileSystem(Namespace Directory) from PowerScale array.It allows you to get information which includes all metadata , access control , quotas and snapshots related information for the directory.\n        // Returns the information related to the specified PowerScale FileSystem(Namespace Directory) based on the directory path. If directory path is not set it will give details regarding the default \"/ifs\" directory.\n        final var system = PowerscaleFunctions.getFilesystem(GetFilesystemArgs.builder()\n            .directoryPath(\"/ifs/tfacc_file_system_test\")\n            .build());\n\n        ctx.export(\"powerscaleFilesystem1\", system);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This terraform DataSource is used to query the existing FileSystem(Namespace Directory) from PowerScale array.It allows you to get information which includes all metadata , access control , quotas and snapshots related information for the directory.\n\n  # Returns the information related to the specified PowerScale FileSystem(Namespace Directory) based on the directory path. If directory path is not set it will give details regarding the default \"/ifs\" directory.\n  system:\n    fn::invoke:\n      function: powerscale:getFilesystem\n      arguments:\n        directoryPath: /ifs/tfacc_file_system_test\noutputs:\n  powerscaleFilesystem1: ${system}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getFilesystem.\n","properties":{"directoryPath":{"description":"FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to query. Default path is `/ifs`\n","type":"string"},"fileSystemsDetails":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetails:getFilesystemFileSystemsDetails","description":"Details of the Filesystem\n"},"id":{"description":"FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)\n","type":"string"}},"type":"object"},"outputs":{"description":"A collection of values returned by getFilesystem.\n","properties":{"directoryPath":{"description":"FileSystem directory path.This specifies the path to the FileSystem(Namespace directory) which we are trying to query. Default path is `/ifs`\n","type":"string"},"fileSystemsDetails":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetails:getFilesystemFileSystemsDetails","description":"Details of the Filesystem\n"},"id":{"description":"FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)\n","type":"string"}},"required":["directoryPath","fileSystemsDetails","id"],"type":"object"}},"powerscale:index/getGroupnet:getGroupnet":{"description":"This datasource is used to query the existing Groupnets from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\n\n","inputs":{"description":"A collection of arguments for invoking getGroupnet.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetGroupnetFilter:getGroupnetFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getGroupnet.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetGroupnetFilter:getGroupnetFilter"},"groupnets":{"description":"List of groupnets.\n","items":{"$ref":"#/types/powerscale:index%2FgetGroupnetGroupnet:getGroupnetGroupnet"},"type":"array"},"id":{"description":"Unique identifier of the groupnet instance.\n","type":"string"}},"required":["groupnets","id"],"type":"object"}},"powerscale:index/getLdapProvider:getLdapProvider":{"description":"This datasource is used to query the existing LDAP providers from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n// Returns a list of PowerScale LDAP providers based on names and scope filter block. \nconst exampleLdapProvider = powerscale.getLdapProvider({\n    filter: {\n        names: [\"ldap_provider_name\"],\n        scope: \"effective\",\n    },\n});\nexport const powerscaleLdapProviderFilter = exampleLdapProvider;\n// Returns all of the PowerScale LDAP providers\nconst all = powerscale.getLdapProvider({});\nexport const powerscaleLdapProviderAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n# Returns a list of PowerScale LDAP providers based on names and scope filter block. \nexample_ldap_provider = powerscale.get_ldap_provider(filter={\n    \"names\": [\"ldap_provider_name\"],\n    \"scope\": \"effective\",\n})\npulumi.export(\"powerscaleLdapProviderFilter\", example_ldap_provider)\n# Returns all of the PowerScale LDAP providers\nall = powerscale.get_ldap_provider()\npulumi.export(\"powerscaleLdapProviderAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n    // Returns a list of PowerScale LDAP providers based on names and scope filter block. \n    var exampleLdapProvider = Powerscale.GetLdapProvider.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetLdapProviderFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"ldap_provider_name\",\n            },\n            Scope = \"effective\",\n        },\n    });\n\n    // Returns all of the PowerScale LDAP providers\n    var all = Powerscale.GetLdapProvider.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleLdapProviderFilter\"] = exampleLdapProvider,\n        [\"powerscaleLdapProviderAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n\t\t// Returns a list of PowerScale LDAP providers based on names and scope filter block.\n\t\texampleLdapProvider, err := powerscale.LookupLdapProvider(ctx, &powerscale.LookupLdapProviderArgs{\n\t\t\tFilter: powerscale.GetLdapProviderFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"ldap_provider_name\",\n\t\t\t\t},\n\t\t\t\tScope: pulumi.StringRef(\"effective\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleLdapProviderFilter\", exampleLdapProvider)\n\t\t// Returns all of the PowerScale LDAP providers\n\t\tall, err := powerscale.LookupLdapProvider(ctx, &powerscale.LookupLdapProviderArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleLdapProviderAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetLdapProviderArgs;\nimport com.pulumi.powerscale.inputs.GetLdapProviderFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n        // Returns a list of PowerScale LDAP providers based on names and scope filter block. \n        final var exampleLdapProvider = PowerscaleFunctions.getLdapProvider(GetLdapProviderArgs.builder()\n            .filter(GetLdapProviderFilterArgs.builder()\n                .names(\"ldap_provider_name\")\n                .scope(\"effective\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleLdapProviderFilter\", exampleLdapProvider);\n        // Returns all of the PowerScale LDAP providers\n        final var all = PowerscaleFunctions.getLdapProvider(GetLdapProviderArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleLdapProviderAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n\n  # Returns a list of PowerScale LDAP providers based on names and scope filter block.\n  exampleLdapProvider:\n    fn::invoke:\n      function: powerscale:getLdapProvider\n      arguments:\n        filter:\n          names:\n            - ldap_provider_name\n          scope: effective\n  # Returns all of the PowerScale LDAP providers\n  all:\n    fn::invoke:\n      function: powerscale:getLdapProvider\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command.\n  # The user can use the fetched information by the variable data.powerscale_ldap_provider.example_ldap_provider\n  powerscaleLdapProviderFilter: ${exampleLdapProvider}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_ldap_provider.all\n  powerscaleLdapProviderAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getLdapProvider.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetLdapProviderFilter:getLdapProviderFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getLdapProvider.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetLdapProviderFilter:getLdapProviderFilter"},"id":{"description":"Unique identifier of the LDAP provider instance.\n","type":"string"},"ldapProviders":{"description":"List of LDAP providers.\n","items":{"$ref":"#/types/powerscale:index%2FgetLdapProviderLdapProvider:getLdapProviderLdapProvider"},"type":"array"}},"required":["id","ldapProviders"],"type":"object"}},"powerscale:index/getNamespaceAcl:getNamespaceAcl":{"description":"This datasource is used to query the Namespace ACL from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. You can use Namespace ACL to manage the access control list for a namespace.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of the Namespace ACL from PowerScale array.\n// Returns the PowerScale Namespace ACL on PowerScale array\nconst example = powerscale.getNamespaceAcl({\n    filter: {\n        namespace: \"ifs/example\",\n        nsaccess: true,\n    },\n});\nexport const powerscaleNamespaceAclExample = example;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of the Namespace ACL from PowerScale array.\n# Returns the PowerScale Namespace ACL on PowerScale array\nexample = powerscale.get_namespace_acl(filter={\n    \"namespace\": \"ifs/example\",\n    \"nsaccess\": True,\n})\npulumi.export(\"powerscaleNamespaceAclExample\", example)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of the Namespace ACL from PowerScale array.\n    // Returns the PowerScale Namespace ACL on PowerScale array\n    var example = Powerscale.GetNamespaceAcl.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetNamespaceAclFilterInputArgs\n        {\n            Namespace = \"ifs/example\",\n            Nsaccess = true,\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNamespaceAclExample\"] = example,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of the Namespace ACL from PowerScale array.\n\t\t// Returns the PowerScale Namespace ACL on PowerScale array\n\t\texample, err := powerscale.LookupNamespaceAcl(ctx, &powerscale.LookupNamespaceAclArgs{\n\t\t\tFilter: powerscale.GetNamespaceAclFilter{\n\t\t\t\tNamespace: \"ifs/example\",\n\t\t\t\tNsaccess:  pulumi.BoolRef(true),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNamespaceAclExample\", example)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetNamespaceAclArgs;\nimport com.pulumi.powerscale.inputs.GetNamespaceAclFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of the Namespace ACL from PowerScale array.\n        // Returns the PowerScale Namespace ACL on PowerScale array\n        final var example = PowerscaleFunctions.getNamespaceAcl(GetNamespaceAclArgs.builder()\n            .filter(GetNamespaceAclFilterArgs.builder()\n                .namespace(\"ifs/example\")\n                .nsaccess(true)\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleNamespaceAclExample\", example);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of the Namespace ACL from PowerScale array.\n\n  # Returns the PowerScale Namespace ACL on PowerScale array\n  example:\n    fn::invoke:\n      function: powerscale:getNamespaceAcl\n      arguments:\n        filter:\n          namespace: ifs/example\n          nsaccess: true\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_namespace_acl.example\n  powerscaleNamespaceAclExample: ${example}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getNamespaceAcl.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNamespaceAclFilter:getNamespaceAclFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNamespaceAcl.\n","properties":{"acls":{"description":"Array effective configuration of the JSON array of access rights.\n","items":{"$ref":"#/types/powerscale:index%2FgetNamespaceAclAcl:getNamespaceAclAcl"},"type":"array"},"authoritative":{"description":"If the directory has access rights set, then this field is returned as acl. If the directory has POSIX permissions set, then this field is returned as mode.\n","type":"string"},"filter":{"$ref":"#/types/powerscale:index%2FgetNamespaceAclFilter:getNamespaceAclFilter"},"group":{"$ref":"#/types/powerscale:index%2FgetNamespaceAclGroup:getNamespaceAclGroup","description":"Provides the JSON object for the group persona of the owner.\n"},"id":{"description":"The provider-assigned unique ID for this managed resource.","type":"string"},"mode":{"description":"Provides the POSIX mode.\n","type":"string"},"owner":{"$ref":"#/types/powerscale:index%2FgetNamespaceAclOwner:getNamespaceAclOwner","description":"Provides the JSON object for the group persona of the owner.\n"}},"required":["acls","authoritative","group","id","mode","owner"],"type":"object"}},"powerscale:index/getNetworkRule:getNetworkRule":{"description":"This datasource is used to query the existing network rules from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing network rules from PowerScale array.\n// Returns a list of PowerScale network rules based on names and query parameters specified in the filter block.\nconst test = powerscale.getNetworkRule({\n    filter: {\n        names: [\"rule0\"],\n        groupnet: \"groupnet0\",\n        subnet: \"subnet0\",\n        pool: \"pool0\",\n    },\n});\nexport const powerscaleNetworkRule = test;\n// Returns all PowerScale network rules on PowerScale array\nconst all = powerscale.getNetworkRule({});\nexport const powerscaleNetworkRuleDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing network rules from PowerScale array.\n# Returns a list of PowerScale network rules based on names and query parameters specified in the filter block.\ntest = powerscale.get_network_rule(filter={\n    \"names\": [\"rule0\"],\n    \"groupnet\": \"groupnet0\",\n    \"subnet\": \"subnet0\",\n    \"pool\": \"pool0\",\n})\npulumi.export(\"powerscaleNetworkRule\", test)\n# Returns all PowerScale network rules on PowerScale array\nall = powerscale.get_network_rule()\npulumi.export(\"powerscaleNetworkRuleDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing network rules from PowerScale array.\n    // Returns a list of PowerScale network rules based on names and query parameters specified in the filter block.\n    var test = Powerscale.GetNetworkRule.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetNetworkRuleFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"rule0\",\n            },\n            Groupnet = \"groupnet0\",\n            Subnet = \"subnet0\",\n            Pool = \"pool0\",\n        },\n    });\n\n    // Returns all PowerScale network rules on PowerScale array\n    var all = Powerscale.GetNetworkRule.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNetworkRule\"] = test,\n        [\"powerscaleNetworkRuleDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing network rules from PowerScale array.\n\t\t// Returns a list of PowerScale network rules based on names and query parameters specified in the filter block.\n\t\ttest, err := powerscale.LookupNetworkRule(ctx, &powerscale.LookupNetworkRuleArgs{\n\t\t\tFilter: powerscale.GetNetworkRuleFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"rule0\",\n\t\t\t\t},\n\t\t\t\tGroupnet: pulumi.StringRef(\"groupnet0\"),\n\t\t\t\tSubnet:   pulumi.StringRef(\"subnet0\"),\n\t\t\t\tPool:     pulumi.StringRef(\"pool0\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNetworkRule\", test)\n\t\t// Returns all PowerScale network rules on PowerScale array\n\t\tall, err := powerscale.LookupNetworkRule(ctx, &powerscale.LookupNetworkRuleArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNetworkRuleDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetNetworkRuleArgs;\nimport com.pulumi.powerscale.inputs.GetNetworkRuleFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing network rules from PowerScale array.\n        // Returns a list of PowerScale network rules based on names and query parameters specified in the filter block.\n        final var test = PowerscaleFunctions.getNetworkRule(GetNetworkRuleArgs.builder()\n            .filter(GetNetworkRuleFilterArgs.builder()\n                .names(\"rule0\")\n                .groupnet(\"groupnet0\")\n                .subnet(\"subnet0\")\n                .pool(\"pool0\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleNetworkRule\", test);\n        // Returns all PowerScale network rules on PowerScale array\n        final var all = PowerscaleFunctions.getNetworkRule(GetNetworkRuleArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleNetworkRuleDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing network rules from PowerScale array.\n\n  # Returns a list of PowerScale network rules based on names and query parameters specified in the filter block.\n  test:\n    fn::invoke:\n      function: powerscale:getNetworkRule\n      arguments:\n        filter:\n          names:\n            - rule0\n          groupnet: groupnet0\n          subnet: subnet0\n          pool: pool0\n  # Returns all PowerScale network rules on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getNetworkRule\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_network_rule.test\n  powerscaleNetworkRule: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_network_rule.all\n  powerscaleNetworkRuleDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getNetworkRule.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNetworkRuleFilter:getNetworkRuleFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNetworkRule.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNetworkRuleFilter:getNetworkRuleFilter"},"id":{"description":"Unique identifier of the network rule.\n","type":"string"},"networkRules":{"description":"List of Network Rules.\n","items":{"$ref":"#/types/powerscale:index%2FgetNetworkRuleNetworkRule:getNetworkRuleNetworkRule"},"type":"array"}},"required":["id","networkRules"],"type":"object"}},"powerscale:index/getNetworkSettings:getNetworkSettings":{"description":"This datasource is used to query the Network Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n// Returns PowerScale network settings detail\nconst example = powerscale.getNetworkSettings({});\nexport const powerscaleNetworkSettingsOutput = example;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n# Returns PowerScale network settings detail\nexample = powerscale.get_network_settings()\npulumi.export(\"powerscaleNetworkSettingsOutput\", example)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n    // Returns PowerScale network settings detail\n    var example = Powerscale.GetNetworkSettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNetworkSettingsOutput\"] = example,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n\t\t// Returns PowerScale network settings detail\n\t\texample, err := powerscale.LookupNetworkSettings(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNetworkSettingsOutput\", example)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n        // Returns PowerScale network settings detail\n        final var example = PowerscaleFunctions.getNetworkSettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleNetworkSettingsOutput\", example);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n\n  # Returns PowerScale network settings detail\n  example:\n    fn::invoke:\n      function: powerscale:getNetworkSettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_network_settings.example\n  powerscaleNetworkSettingsOutput: ${example}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getNetworkSettings.\n","properties":{"defaultGroupnet":{"description":"Default client-side DNS settings for non-multitenancy aware programs.\n","type":"string"},"id":{"description":"Network Settings ID.\n","type":"string"},"scRebalanceDelay":{"description":"Delay in seconds for IP rebalance.\n","type":"number"},"sourceBasedRoutingEnabled":{"description":"Enable or disable Source Based Routing.\n","type":"boolean"},"tcpPorts":{"description":"List of client TCP ports.\n","items":{"type":"number"},"type":"array"}},"required":["defaultGroupnet","id","scRebalanceDelay","sourceBasedRoutingEnabled","tcpPorts"],"type":"object"}},"powerscale:index/getNetworkpool:getNetworkpool":{"description":"This datasource is used to query the existing network pools from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. You can add network interfaces to network pools to associate address ranges with a node or a group of nodes.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing network pools from PowerScale array.\n// Returns a list of PowerScale network pools based on names and query parameters specified in the filter block.\nconst test = powerscale.getNetworkpool({\n    filter: {\n        names: [\"pool0\"],\n    },\n});\nexport const powerscaleNetworkpool = test;\n// Returns all PowerScale network pools on PowerScale array\nconst all = powerscale.getNetworkpool({});\nexport const powerscaleNetworkpoolDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing network pools from PowerScale array.\n# Returns a list of PowerScale network pools based on names and query parameters specified in the filter block.\ntest = powerscale.get_networkpool(filter={\n    \"names\": [\"pool0\"],\n})\npulumi.export(\"powerscaleNetworkpool\", test)\n# Returns all PowerScale network pools on PowerScale array\nall = powerscale.get_networkpool()\npulumi.export(\"powerscaleNetworkpoolDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing network pools from PowerScale array.\n    // Returns a list of PowerScale network pools based on names and query parameters specified in the filter block.\n    var test = Powerscale.GetNetworkpool.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetNetworkpoolFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"pool0\",\n            },\n        },\n    });\n\n    // Returns all PowerScale network pools on PowerScale array\n    var all = Powerscale.GetNetworkpool.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNetworkpool\"] = test,\n        [\"powerscaleNetworkpoolDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing network pools from PowerScale array.\n\t\t// Returns a list of PowerScale network pools based on names and query parameters specified in the filter block.\n\t\ttest, err := powerscale.LookupNetworkpool(ctx, &powerscale.LookupNetworkpoolArgs{\n\t\t\tFilter: powerscale.GetNetworkpoolFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"pool0\",\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNetworkpool\", test)\n\t\t// Returns all PowerScale network pools on PowerScale array\n\t\tall, err := powerscale.LookupNetworkpool(ctx, &powerscale.LookupNetworkpoolArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNetworkpoolDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetNetworkpoolArgs;\nimport com.pulumi.powerscale.inputs.GetNetworkpoolFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing network pools from PowerScale array.\n        // Returns a list of PowerScale network pools based on names and query parameters specified in the filter block.\n        final var test = PowerscaleFunctions.getNetworkpool(GetNetworkpoolArgs.builder()\n            .filter(GetNetworkpoolFilterArgs.builder()\n                .names(\"pool0\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleNetworkpool\", test);\n        // Returns all PowerScale network pools on PowerScale array\n        final var all = PowerscaleFunctions.getNetworkpool(GetNetworkpoolArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleNetworkpoolDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing network pools from PowerScale array.\n\n  # Returns a list of PowerScale network pools based on names and query parameters specified in the filter block.\n  test:\n    fn::invoke:\n      function: powerscale:getNetworkpool\n      arguments:\n        filter:\n          names:\n            - pool0\n  # Returns all PowerScale network pools on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getNetworkpool\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_networkpool.test\n  powerscaleNetworkpool: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_networkpool.all\n  powerscaleNetworkpoolDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getNetworkpool.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNetworkpoolFilter:getNetworkpoolFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNetworkpool.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNetworkpoolFilter:getNetworkpoolFilter"},"id":{"description":"Unique identifier of the network pool instance.\n","type":"string"},"networkPoolsDetails":{"description":"List of Network Pools.\n","items":{"$ref":"#/types/powerscale:index%2FgetNetworkpoolNetworkPoolsDetail:getNetworkpoolNetworkPoolsDetail"},"type":"array"}},"required":["id","networkPoolsDetails"],"type":"object"}},"powerscale:index/getNfsAlias:getNfsAlias":{"description":"This datasource is used to query the existing NFS aliases from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale provides an NFS server so you can share files on your cluster\n\n","inputs":{"description":"A collection of arguments for invoking getNfsAlias.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsAliasFilter:getNfsAliasFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNfsAlias.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsAliasFilter:getNfsAliasFilter"},"id":{"description":"Identifier\n","type":"string"},"nfsAliases":{"description":"List of nfs aliases\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsAliasNfsAlias:getNfsAliasNfsAlias"},"type":"array"}},"required":["id","nfsAliases"],"type":"object"}},"powerscale:index/getNfsExport:getNfsExport":{"description":"This datasource is used to query the existing NFS exports from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale provides an NFS server so you can share files on your cluster\n\n","inputs":{"description":"A collection of arguments for invoking getNfsExport.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsExportFilter:getNfsExportFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNfsExport.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsExportFilter:getNfsExportFilter"},"id":{"description":"Identifier\n","type":"string"},"nfsExports":{"description":"List of nfs exports\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExport:getNfsExportNfsExport"},"type":"array"}},"required":["id","nfsExports"],"type":"object"}},"powerscale:index/getNfsExportSettings:getNfsExportSettings":{"description":"This datasource is used to query the NFS Export Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n","inputs":{"description":"A collection of arguments for invoking getNfsExportSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsFilter:getNfsExportSettingsFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNfsExportSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsFilter:getNfsExportSettingsFilter"},"id":{"description":"Identifier\n","type":"string"},"nfsExportSettings":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettings:getNfsExportSettingsNfsExportSettings","description":"NFS Export Settings\n"}},"required":["id","nfsExportSettings"],"type":"object"}},"powerscale:index/getNfsGlobalSettings:getNfsGlobalSettings":{"description":"This datasource is used to query the NFS Global Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Returns NFS global settings\nconst test = powerscale.getNfsGlobalSettings({});\nexport const powerscaleNfsGlobalSettings = test;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Returns NFS global settings\ntest = powerscale.get_nfs_global_settings()\npulumi.export(\"powerscaleNfsGlobalSettings\", test)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Returns NFS global settings\n    var test = Powerscale.GetNfsGlobalSettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNfsGlobalSettings\"] = test,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Returns NFS global settings\n\t\ttest, err := powerscale.LookupNfsGlobalSettings(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNfsGlobalSettings\", test)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Returns NFS global settings\n        final var test = PowerscaleFunctions.getNfsGlobalSettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleNfsGlobalSettings\", test);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Returns NFS global settings\n  test:\n    fn::invoke:\n      function: powerscale:getNfsGlobalSettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_nfs_global_settings.test\n  powerscaleNfsGlobalSettings: ${test}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getNfsGlobalSettings.\n","properties":{"id":{"description":"Id of NFS Global settings. Readonly.\n","type":"string"},"nfsv3Enabled":{"description":"True if NFSv3 is enabled.\n","type":"boolean"},"nfsv3RdmaEnabled":{"description":"True if the RDMA is enabled for NFSv3.\n","type":"boolean"},"nfsv4Enabled":{"description":"True if NFSv4 is enabled.\n","type":"boolean"},"rpcMaxthreads":{"description":"Specifies the maximum number of threads in the nfsd thread pool.\n","type":"number"},"rpcMinthreads":{"description":"Specifies the minimum number of threads in the nfsd thread pool.\n","type":"number"},"rquotaEnabled":{"description":"True if the rquota protocol is enabled.\n","type":"boolean"},"service":{"description":"True if the NFS service is enabled. When set to false, the NFS service is disabled.\n","type":"boolean"}},"required":["id","nfsv3Enabled","nfsv3RdmaEnabled","nfsv4Enabled","rpcMaxthreads","rpcMinthreads","rquotaEnabled","service"],"type":"object"}},"powerscale:index/getNfsZoneSettings:getNfsZoneSettings":{"description":"This datasource is used to query the NFS Zone Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Returns PowerScale NFS Zone Settings based on filter\nconst test = powerscale.getNfsZoneSettings({\n    filter: {\n        zone: \"System\",\n    },\n});\nexport const powerscaleNfsZoneSettingsTest = test;\n// Returns NFS Zone Settings\nconst all = powerscale.getNfsZoneSettings({});\nexport const powerscaleNfsZoneSettingsAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Returns PowerScale NFS Zone Settings based on filter\ntest = powerscale.get_nfs_zone_settings(filter={\n    \"zone\": \"System\",\n})\npulumi.export(\"powerscaleNfsZoneSettingsTest\", test)\n# Returns NFS Zone Settings\nall = powerscale.get_nfs_zone_settings()\npulumi.export(\"powerscaleNfsZoneSettingsAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Returns PowerScale NFS Zone Settings based on filter\n    var test = Powerscale.GetNfsZoneSettings.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetNfsZoneSettingsFilterInputArgs\n        {\n            Zone = \"System\",\n        },\n    });\n\n    // Returns NFS Zone Settings\n    var all = Powerscale.GetNfsZoneSettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNfsZoneSettingsTest\"] = test,\n        [\"powerscaleNfsZoneSettingsAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Returns PowerScale NFS Zone Settings based on filter\n\t\ttest, err := powerscale.LookupNfsZoneSettings(ctx, &powerscale.LookupNfsZoneSettingsArgs{\n\t\t\tFilter: powerscale.GetNfsZoneSettingsFilter{\n\t\t\t\tZone: pulumi.StringRef(\"System\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNfsZoneSettingsTest\", test)\n\t\t// Returns NFS Zone Settings\n\t\tall, err := powerscale.LookupNfsZoneSettings(ctx, &powerscale.LookupNfsZoneSettingsArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNfsZoneSettingsAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetNfsZoneSettingsArgs;\nimport com.pulumi.powerscale.inputs.GetNfsZoneSettingsFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Returns PowerScale NFS Zone Settings based on filter\n        final var test = PowerscaleFunctions.getNfsZoneSettings(GetNfsZoneSettingsArgs.builder()\n            .filter(GetNfsZoneSettingsFilterArgs.builder()\n                .zone(\"System\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleNfsZoneSettingsTest\", test);\n        // Returns NFS Zone Settings\n        final var all = PowerscaleFunctions.getNfsZoneSettings(GetNfsZoneSettingsArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleNfsZoneSettingsAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Returns PowerScale NFS Zone Settings based on filter\n  test:\n    fn::invoke:\n      function: powerscale:getNfsZoneSettings\n      arguments:\n        filter:\n          zone: System\n  # Returns NFS Zone Settings\n  all:\n    fn::invoke:\n      function: powerscale:getNfsZoneSettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_nfs_zone_settings.test\n  powerscaleNfsZoneSettingsTest: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_nfs_zone_settings.all\n  powerscaleNfsZoneSettingsAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getNfsZoneSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsZoneSettingsFilter:getNfsZoneSettingsFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNfsZoneSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNfsZoneSettingsFilter:getNfsZoneSettingsFilter"},"id":{"description":"ID of NFS Zone Settings. Value of ID will be same as the access zone.\n","type":"string"},"nfsZoneSettings":{"$ref":"#/types/powerscale:index%2FgetNfsZoneSettingsNfsZoneSettings:getNfsZoneSettingsNfsZoneSettings","description":"NFS Zone Settings\n"}},"required":["id","nfsZoneSettings"],"type":"object"}},"powerscale:index/getNtpserver:getNtpserver":{"description":"This datasource is used to query the existing NTP Servers from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. You can use NTP Servers to synchronize the system time\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing NTP servers from PowerScale array.\n// Returns a list of PowerScale NTP servers based on names specified in the filter block.\nconst test = powerscale.getNtpserver({\n    filter: {\n        names: [\"ntp_server_name_example\"],\n    },\n});\nexport const powerscaleNtpserver = test;\n// Returns all PowerScale NTP servers on PowerScale array\nconst all = powerscale.getNtpserver({});\nexport const powerscaleNtpserverDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing NTP servers from PowerScale array.\n# Returns a list of PowerScale NTP servers based on names specified in the filter block.\ntest = powerscale.get_ntpserver(filter={\n    \"names\": [\"ntp_server_name_example\"],\n})\npulumi.export(\"powerscaleNtpserver\", test)\n# Returns all PowerScale NTP servers on PowerScale array\nall = powerscale.get_ntpserver()\npulumi.export(\"powerscaleNtpserverDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing NTP servers from PowerScale array.\n    // Returns a list of PowerScale NTP servers based on names specified in the filter block.\n    var test = Powerscale.GetNtpserver.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetNtpserverFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"ntp_server_name_example\",\n            },\n        },\n    });\n\n    // Returns all PowerScale NTP servers on PowerScale array\n    var all = Powerscale.GetNtpserver.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNtpserver\"] = test,\n        [\"powerscaleNtpserverDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing NTP servers from PowerScale array.\n\t\t// Returns a list of PowerScale NTP servers based on names specified in the filter block.\n\t\ttest, err := powerscale.LookupNtpserver(ctx, &powerscale.LookupNtpserverArgs{\n\t\t\tFilter: powerscale.GetNtpserverFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"ntp_server_name_example\",\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNtpserver\", test)\n\t\t// Returns all PowerScale NTP servers on PowerScale array\n\t\tall, err := powerscale.LookupNtpserver(ctx, &powerscale.LookupNtpserverArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNtpserverDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetNtpserverArgs;\nimport com.pulumi.powerscale.inputs.GetNtpserverFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing NTP servers from PowerScale array.\n        // Returns a list of PowerScale NTP servers based on names specified in the filter block.\n        final var test = PowerscaleFunctions.getNtpserver(GetNtpserverArgs.builder()\n            .filter(GetNtpserverFilterArgs.builder()\n                .names(\"ntp_server_name_example\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleNtpserver\", test);\n        // Returns all PowerScale NTP servers on PowerScale array\n        final var all = PowerscaleFunctions.getNtpserver(GetNtpserverArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleNtpserverDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing NTP servers from PowerScale array.\n\n  # Returns a list of PowerScale NTP servers based on names specified in the filter block.\n  test:\n    fn::invoke:\n      function: powerscale:getNtpserver\n      arguments:\n        filter:\n          names:\n            - ntp_server_name_example\n  # Returns all PowerScale NTP servers on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getNtpserver\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_ntpserver.test\n  powerscaleNtpserver: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_ntpserver.all\n  powerscaleNtpserverDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getNtpserver.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNtpserverFilter:getNtpserverFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getNtpserver.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetNtpserverFilter:getNtpserverFilter"},"id":{"description":"Unique identifier of the NTP Server instance.\n","type":"string"},"ntpServersDetails":{"description":"List of NTP Servers.\n","items":{"$ref":"#/types/powerscale:index%2FgetNtpserverNtpServersDetail:getNtpserverNtpServersDetail"},"type":"array"}},"required":["id","ntpServersDetails"],"type":"object"}},"powerscale:index/getNtpsettings:getNtpsettings":{"description":"This datasource is used to query the NTP Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. You can use NTP Settings to change the settings of NTP Servers\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of the NTP settings from PowerScale array.\n// Returns the PowerScale NTP settings on PowerScale array\nconst all = powerscale.getNtpsettings({});\nexport const powerscaleNtpsettingsDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of the NTP settings from PowerScale array.\n# Returns the PowerScale NTP settings on PowerScale array\nall = powerscale.get_ntpsettings()\npulumi.export(\"powerscaleNtpsettingsDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of the NTP settings from PowerScale array.\n    // Returns the PowerScale NTP settings on PowerScale array\n    var all = Powerscale.GetNtpsettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleNtpsettingsDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of the NTP settings from PowerScale array.\n\t\t// Returns the PowerScale NTP settings on PowerScale array\n\t\tall, err := powerscale.LookupNtpsettings(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleNtpsettingsDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of the NTP settings from PowerScale array.\n        // Returns the PowerScale NTP settings on PowerScale array\n        final var all = PowerscaleFunctions.getNtpsettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleNtpsettingsDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of the NTP settings from PowerScale array.\n\n  # Returns the PowerScale NTP settings on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getNtpsettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_ntpsettings.all\n  powerscaleNtpsettingsDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getNtpsettings.\n","properties":{"chimers":{"description":"Number of nodes that will contact the NTP servers.\n","type":"number"},"excludeds":{"description":"Node number (LNN) for nodes excluded from chimer duty.\n","items":{"type":"string"},"type":"array"},"id":{"description":"The provider-assigned unique ID for this managed resource.","type":"string"},"keyFile":{"description":"Path to NTP key file within /ifs.\n","type":"string"}},"required":["chimers","excludeds","id","keyFile"],"type":"object"}},"powerscale:index/getQuota:getQuota":{"description":"This datasource is used to query the existing quotas from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. Quota module monitors and enforces administrator-defined storage limits\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// The SmartQuotas module is an optional quota-management tool that monitors and enforces administrator-defined storage limits.\n// Returns a list of PowerScale quotas based on filter block\nconst exampleQuotas = powerscale.getQuota({\n    filter: {},\n});\nexport const powerscaleQuota = exampleQuotas;\n// Returns all of the PowerScale Quotas in default zone\nconst all = powerscale.getQuota({});\nexport const powerscaleQuotaAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# The SmartQuotas module is an optional quota-management tool that monitors and enforces administrator-defined storage limits.\n# Returns a list of PowerScale quotas based on filter block\nexample_quotas = powerscale.get_quota(filter={})\npulumi.export(\"powerscaleQuota\", example_quotas)\n# Returns all of the PowerScale Quotas in default zone\nall = powerscale.get_quota()\npulumi.export(\"powerscaleQuotaAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // The SmartQuotas module is an optional quota-management tool that monitors and enforces administrator-defined storage limits.\n    // Returns a list of PowerScale quotas based on filter block\n    var exampleQuotas = Powerscale.GetQuota.Invoke(new()\n    {\n        Filter = null,\n    });\n\n    // Returns all of the PowerScale Quotas in default zone\n    var all = Powerscale.GetQuota.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleQuota\"] = exampleQuotas,\n        [\"powerscaleQuotaAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// The SmartQuotas module is an optional quota-management tool that monitors and enforces administrator-defined storage limits.\n\t\t// Returns a list of PowerScale quotas based on filter block\n\t\texampleQuotas, err := powerscale.LookupQuota(ctx, &powerscale.LookupQuotaArgs{\n\t\t\tFilter: powerscale.GetQuotaFilter{},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleQuota\", exampleQuotas)\n\t\t// Returns all of the PowerScale Quotas in default zone\n\t\tall, err := powerscale.LookupQuota(ctx, &powerscale.LookupQuotaArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleQuotaAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetQuotaArgs;\nimport com.pulumi.powerscale.inputs.GetQuotaFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // The SmartQuotas module is an optional quota-management tool that monitors and enforces administrator-defined storage limits.\n        // Returns a list of PowerScale quotas based on filter block\n        final var exampleQuotas = PowerscaleFunctions.getQuota(GetQuotaArgs.builder()\n            .filter(GetQuotaFilterArgs.builder()\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleQuota\", exampleQuotas);\n        // Returns all of the PowerScale Quotas in default zone\n        final var all = PowerscaleFunctions.getQuota(GetQuotaArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleQuotaAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # The SmartQuotas module is an optional quota-management tool that monitors and enforces administrator-defined storage limits.\n\n  # Returns a list of PowerScale quotas based on filter block\n  exampleQuotas:\n    fn::invoke:\n      function: powerscale:getQuota\n      arguments:\n        filter: {}\n  # Returns all of the PowerScale Quotas in default zone\n  all:\n    fn::invoke:\n      function: powerscale:getQuota\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_quota.example_quotas\n  powerscaleQuota: ${exampleQuotas}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_quota.all\n  powerscaleQuotaAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getQuota.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetQuotaFilter:getQuotaFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getQuota.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetQuotaFilter:getQuotaFilter"},"id":{"description":"Identifier\n","type":"string"},"quotas":{"description":"List of Quotas\n","items":{"$ref":"#/types/powerscale:index%2FgetQuotaQuota:getQuotaQuota"},"type":"array"}},"required":["id","quotas"],"type":"object"}},"powerscale:index/getRole:getRole":{"description":"This datasource is used to query the existing roles from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. You can permit and limit access to administrative areas of your cluster on a per-user basis through roles.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing Role from PowerScale array.\n// Returns a list of PowerScale Role based on the filters specified in the filter block.\nconst test = powerscale.getRole({\n    filter: {\n        names: [\"SystemAdmin\"],\n        zone: \"System\",\n    },\n});\nexport const powerscaleRole = test;\n// Returns all PowerScale Role on PowerScale array\nconst all = powerscale.getRole({});\nexport const powerscaleRoleDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing Role from PowerScale array.\n# Returns a list of PowerScale Role based on the filters specified in the filter block.\ntest = powerscale.get_role(filter={\n    \"names\": [\"SystemAdmin\"],\n    \"zone\": \"System\",\n})\npulumi.export(\"powerscaleRole\", test)\n# Returns all PowerScale Role on PowerScale array\nall = powerscale.get_role()\npulumi.export(\"powerscaleRoleDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing Role from PowerScale array.\n    // Returns a list of PowerScale Role based on the filters specified in the filter block.\n    var test = Powerscale.GetRole.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetRoleFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"SystemAdmin\",\n            },\n            Zone = \"System\",\n        },\n    });\n\n    // Returns all PowerScale Role on PowerScale array\n    var all = Powerscale.GetRole.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleRole\"] = test,\n        [\"powerscaleRoleDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing Role from PowerScale array.\n\t\t// Returns a list of PowerScale Role based on the filters specified in the filter block.\n\t\ttest, err := powerscale.LookupRole(ctx, &powerscale.LookupRoleArgs{\n\t\t\tFilter: powerscale.GetRoleFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"SystemAdmin\",\n\t\t\t\t},\n\t\t\t\tZone: pulumi.StringRef(\"System\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleRole\", test)\n\t\t// Returns all PowerScale Role on PowerScale array\n\t\tall, err := powerscale.LookupRole(ctx, &powerscale.LookupRoleArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleRoleDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetRoleArgs;\nimport com.pulumi.powerscale.inputs.GetRoleFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing Role from PowerScale array.\n        // Returns a list of PowerScale Role based on the filters specified in the filter block.\n        final var test = PowerscaleFunctions.getRole(GetRoleArgs.builder()\n            .filter(GetRoleFilterArgs.builder()\n                .names(\"SystemAdmin\")\n                .zone(\"System\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleRole\", test);\n        // Returns all PowerScale Role on PowerScale array\n        final var all = PowerscaleFunctions.getRole(GetRoleArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleRoleDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing Role from PowerScale array.\n\n  # Returns a list of PowerScale Role based on the filters specified in the filter block.\n  test:\n    fn::invoke:\n      function: powerscale:getRole\n      arguments:\n        filter:\n          names:\n            - SystemAdmin\n          zone: System\n  # Returns all PowerScale Role on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getRole\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_role.test\n  powerscaleRole: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_role.all\n  powerscaleRoleDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getRole.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetRoleFilter:getRoleFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getRole.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetRoleFilter:getRoleFilter"},"id":{"description":"Unique identifier of the network pool instance.\n","type":"string"},"rolesDetails":{"description":"List of Roles.\n","items":{"$ref":"#/types/powerscale:index%2FgetRoleRolesDetail:getRoleRolesDetail"},"type":"array"}},"required":["id","rolesDetails"],"type":"object"}},"powerscale:index/getRoleprivilege:getRoleprivilege":{"description":"This datasource is used to query the existing Role Privileges from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. You can designate certain privileges as no permission, read, execute, or write when adding the privilege to a role.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing role privileges from PowerScale array.\n// Returns a list of PowerScale role privileges based on names in the filter block.\nconst test = powerscale.getRoleprivilege({\n    filter: {\n        names: [\"Shutdown\"],\n    },\n});\nexport const powerscaleRoleprivilege = test;\n// Returns all PowerScale role privileges on PowerScale array\nconst all = powerscale.getRoleprivilege({});\nexport const powerscaleRoleprivilegeDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing role privileges from PowerScale array.\n# Returns a list of PowerScale role privileges based on names in the filter block.\ntest = powerscale.get_roleprivilege(filter={\n    \"names\": [\"Shutdown\"],\n})\npulumi.export(\"powerscaleRoleprivilege\", test)\n# Returns all PowerScale role privileges on PowerScale array\nall = powerscale.get_roleprivilege()\npulumi.export(\"powerscaleRoleprivilegeDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing role privileges from PowerScale array.\n    // Returns a list of PowerScale role privileges based on names in the filter block.\n    var test = Powerscale.GetRoleprivilege.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetRoleprivilegeFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"Shutdown\",\n            },\n        },\n    });\n\n    // Returns all PowerScale role privileges on PowerScale array\n    var all = Powerscale.GetRoleprivilege.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleRoleprivilege\"] = test,\n        [\"powerscaleRoleprivilegeDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing role privileges from PowerScale array.\n\t\t// Returns a list of PowerScale role privileges based on names in the filter block.\n\t\ttest, err := powerscale.GetRoleprivilege(ctx, &powerscale.GetRoleprivilegeArgs{\n\t\t\tFilter: powerscale.GetRoleprivilegeFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"Shutdown\",\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleRoleprivilege\", test)\n\t\t// Returns all PowerScale role privileges on PowerScale array\n\t\tall, err := powerscale.GetRoleprivilege(ctx, &powerscale.GetRoleprivilegeArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleRoleprivilegeDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetRoleprivilegeArgs;\nimport com.pulumi.powerscale.inputs.GetRoleprivilegeFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing role privileges from PowerScale array.\n        // Returns a list of PowerScale role privileges based on names in the filter block.\n        final var test = PowerscaleFunctions.getRoleprivilege(GetRoleprivilegeArgs.builder()\n            .filter(GetRoleprivilegeFilterArgs.builder()\n                .names(\"Shutdown\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleRoleprivilege\", test);\n        // Returns all PowerScale role privileges on PowerScale array\n        final var all = PowerscaleFunctions.getRoleprivilege(GetRoleprivilegeArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleRoleprivilegeDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing role privileges from PowerScale array.\n\n  # Returns a list of PowerScale role privileges based on names in the filter block.\n  test:\n    fn::invoke:\n      function: powerscale:getRoleprivilege\n      arguments:\n        filter:\n          names:\n            - Shutdown\n  # Returns all PowerScale role privileges on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getRoleprivilege\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_roleprivilege.test\n  powerscaleRoleprivilege: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_roleprivilege.all\n  powerscaleRoleprivilegeDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getRoleprivilege.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetRoleprivilegeFilter:getRoleprivilegeFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getRoleprivilege.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetRoleprivilegeFilter:getRoleprivilegeFilter"},"id":{"description":"Unique identifier of the Role Privilege instance.\n","type":"string"},"rolePrivilegesDetails":{"description":"List of Role Privileges.\n","items":{"$ref":"#/types/powerscale:index%2FgetRoleprivilegeRolePrivilegesDetail:getRoleprivilegeRolePrivilegesDetail"},"type":"array"}},"required":["id","rolePrivilegesDetails"],"type":"object"}},"powerscale:index/getS3Bucket:getS3Bucket":{"description":"Access S3 Buckets. This datasource is used to query the existing S3 Bucket from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale S3 Bucket map to the PowerScale file system as base directory for Objects.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing S3 Bucket from PowerScale array.\n// Returns a list of PowerScale s3 bucket based on filter block\nconst exampleS3Buckets = powerscale.getS3Bucket({\n    filter: {},\n});\nexport const powerscaleS3Bucket = exampleS3Buckets;\n// Returns all of the PowerScale S3 Bucket in default zone\nconst all = powerscale.getS3Bucket({});\nexport const powerscaleS3BucketAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing S3 Bucket from PowerScale array.\n# Returns a list of PowerScale s3 bucket based on filter block\nexample_s3_buckets = powerscale.get_s3_bucket(filter={})\npulumi.export(\"powerscaleS3Bucket\", example_s3_buckets)\n# Returns all of the PowerScale S3 Bucket in default zone\nall = powerscale.get_s3_bucket()\npulumi.export(\"powerscaleS3BucketAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing S3 Bucket from PowerScale array.\n    // Returns a list of PowerScale s3 bucket based on filter block\n    var exampleS3Buckets = Powerscale.GetS3Bucket.Invoke(new()\n    {\n        Filter = null,\n    });\n\n    // Returns all of the PowerScale S3 Bucket in default zone\n    var all = Powerscale.GetS3Bucket.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleS3Bucket\"] = exampleS3Buckets,\n        [\"powerscaleS3BucketAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing S3 Bucket from PowerScale array.\n\t\t// Returns a list of PowerScale s3 bucket based on filter block\n\t\texampleS3Buckets, err := powerscale.LookupS3Bucket(ctx, &powerscale.LookupS3BucketArgs{\n\t\t\tFilter: powerscale.GetS3BucketFilter{},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleS3Bucket\", exampleS3Buckets)\n\t\t// Returns all of the PowerScale S3 Bucket in default zone\n\t\tall, err := powerscale.LookupS3Bucket(ctx, &powerscale.LookupS3BucketArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleS3BucketAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetS3BucketArgs;\nimport com.pulumi.powerscale.inputs.GetS3BucketFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing S3 Bucket from PowerScale array.\n        // Returns a list of PowerScale s3 bucket based on filter block\n        final var exampleS3Buckets = PowerscaleFunctions.getS3Bucket(GetS3BucketArgs.builder()\n            .filter(GetS3BucketFilterArgs.builder()\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleS3Bucket\", exampleS3Buckets);\n        // Returns all of the PowerScale S3 Bucket in default zone\n        final var all = PowerscaleFunctions.getS3Bucket(GetS3BucketArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleS3BucketAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing S3 Bucket from PowerScale array.\n\n  # Returns a list of PowerScale s3 bucket based on filter block\n  exampleS3Buckets:\n    fn::invoke:\n      function: powerscale:getS3Bucket\n      arguments:\n        filter: {}\n  # Returns all of the PowerScale S3 Bucket in default zone\n  all:\n    fn::invoke:\n      function: powerscale:getS3Bucket\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_s3_bucket.example_s3_buckets\n  powerscaleS3Bucket: ${exampleS3Buckets}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_s3_bucket.all\n  powerscaleS3BucketAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getS3Bucket.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetS3BucketFilter:getS3BucketFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getS3Bucket.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetS3BucketFilter:getS3BucketFilter"},"id":{"description":"Identifier\n","type":"string"},"s3Buckets":{"description":"List of S3 Buckets\n","items":{"$ref":"#/types/powerscale:index%2FgetS3BucketS3Bucket:getS3BucketS3Bucket"},"type":"array"}},"required":["id","s3Buckets"],"type":"object"}},"powerscale:index/getSmartpoolSettings:getSmartpoolSettings":{"description":"This datasource is used to query the SmartPools settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale SmartPools settings provide the ability to configure SmartPools on the cluster.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Returns SmartPool settings\nconst settings = powerscale.getSmartpoolSettings({});\nexport const powerscaleSmartpoolSettings = settings;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Returns SmartPool settings\nsettings = powerscale.get_smartpool_settings()\npulumi.export(\"powerscaleSmartpoolSettings\", settings)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Returns SmartPool settings\n    var settings = Powerscale.GetSmartpoolSettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSmartpoolSettings\"] = settings,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Returns SmartPool settings\n\t\tsettings, err := powerscale.LookupSmartpoolSettings(ctx, &powerscale.LookupSmartpoolSettingsArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSmartpoolSettings\", settings)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetSmartpoolSettingsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Returns SmartPool settings\n        final var settings = PowerscaleFunctions.getSmartpoolSettings(GetSmartpoolSettingsArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleSmartpoolSettings\", settings);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Returns SmartPool settings\n  settings:\n    fn::invoke:\n      function: powerscale:getSmartpoolSettings\n      arguments: {}\noutputs:\n  powerscaleSmartpoolSettings: ${settings}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSmartpoolSettings.\n","properties":{"defaultTransferLimitPct":{"description":"Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met. The value must be between 0 and 100. Only available for PowerScale 9.5 and above.\n","type":"number"},"defaultTransferLimitState":{"description":"How the default transfer limit value is applied.Only available for PowerScale 9.5 and above.\n","type":"string"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSmartpoolSettings.\n","properties":{"defaultTransferLimitPct":{"description":"Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met. The value must be between 0 and 100. Only available for PowerScale 9.5 and above.\n","type":"number"},"defaultTransferLimitState":{"description":"How the default transfer limit value is applied.Only available for PowerScale 9.5 and above.\n","type":"string"},"globalNamespaceAccelerationEnabled":{"description":"Enable global namespace acceleration.\n","type":"boolean"},"globalNamespaceAccelerationState":{"description":"Whether or not namespace operation optimizations are currently in effect.\n","type":"string"},"id":{"description":"Id of SmartPools settings. Readonly. Fixed value of <span pulumi-lang-nodejs=\"\"smartpoolsSettings\"\" pulumi-lang-dotnet=\"\"SmartpoolsSettings\"\" pulumi-lang-go=\"\"smartpoolsSettings\"\" pulumi-lang-python=\"\"smartpools_settings\"\" pulumi-lang-yaml=\"\"smartpoolsSettings\"\" pulumi-lang-java=\"\"smartpoolsSettings\"\">\"smartpools_settings\"</span>\n","type":"string"},"manageIoOptimization":{"description":"Manage I/O optimization settings.\n","type":"boolean"},"manageIoOptimizationApplyToFiles":{"description":"Apply to files with manually-managed I/O optimization settings.\n","type":"boolean"},"manageProtection":{"description":"Manage protection settings.\n","type":"boolean"},"manageProtectionApplyToFiles":{"description":"Apply to files with manually-managed protection.\n","type":"boolean"},"protectDirectoriesOneLevelHigher":{"description":"Increase directory protection to a higher requested protection than its contents.\n","type":"boolean"},"spilloverEnabled":{"description":"Enable global spillover.\n","type":"boolean"},"spilloverTarget":{"$ref":"#/types/powerscale:index%2FgetSmartpoolSettingsSpilloverTarget:getSmartpoolSettingsSpilloverTarget","description":"Spillover data target.\n"},"ssdL3CacheDefaultEnabled":{"description":"Use SSDs as L3 cache by default for new node pools.\n","type":"boolean"},"ssdQabMirrors":{"description":"Controls number of mirrors of QAB blocks to place on SSDs.\n","type":"string"},"ssdSystemBtreeMirrors":{"description":"Controls number of mirrors of system B-tree blocks to place on SSDs.\n","type":"string"},"ssdSystemDeltaMirrors":{"description":"Controls number of mirrors of system delta blocks to place on SSDs.\n","type":"string"},"virtualHotSpareDenyWrites":{"description":"Deny data writes to reserved disk space\n","type":"boolean"},"virtualHotSpareHideSpare":{"description":"Subtract the space reserved for the virtual hot spare when calculating available free space\n","type":"boolean"},"virtualHotSpareLimitDrives":{"description":"The number of drives to reserve for the virtual hot spare, from 0-4.\n","type":"number"},"virtualHotSpareLimitPercent":{"description":"The percent space to reserve for the virtual hot spare, from 0-20.\n","type":"number"}},"required":["defaultTransferLimitPct","defaultTransferLimitState","globalNamespaceAccelerationEnabled","globalNamespaceAccelerationState","id","manageIoOptimization","manageIoOptimizationApplyToFiles","manageProtection","manageProtectionApplyToFiles","protectDirectoriesOneLevelHigher","spilloverEnabled","spilloverTarget","ssdL3CacheDefaultEnabled","ssdQabMirrors","ssdSystemBtreeMirrors","ssdSystemDeltaMirrors","virtualHotSpareDenyWrites","virtualHotSpareHideSpare","virtualHotSpareLimitDrives","virtualHotSpareLimitPercent"],"type":"object"}},"powerscale:index/getSmbServerSettings:getSmbServerSettings":{"description":"This datasource is used to query the SMB Server Settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Returns PowerScale SMB Server Settings based on filter\nconst test = powerscale.getSmbServerSettings({\n    filter: {\n        scope: \"effective\",\n    },\n});\nexport const powerscaleSmbServerSettingsTest = test;\n// Returns SMB Server Settings\nconst all = powerscale.getSmbServerSettings({});\nexport const powerscaleSmbServerSettingsAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Returns PowerScale SMB Server Settings based on filter\ntest = powerscale.get_smb_server_settings(filter={\n    \"scope\": \"effective\",\n})\npulumi.export(\"powerscaleSmbServerSettingsTest\", test)\n# Returns SMB Server Settings\nall = powerscale.get_smb_server_settings()\npulumi.export(\"powerscaleSmbServerSettingsAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Returns PowerScale SMB Server Settings based on filter\n    var test = Powerscale.GetSmbServerSettings.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetSmbServerSettingsFilterInputArgs\n        {\n            Scope = \"effective\",\n        },\n    });\n\n    // Returns SMB Server Settings\n    var all = Powerscale.GetSmbServerSettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSmbServerSettingsTest\"] = test,\n        [\"powerscaleSmbServerSettingsAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Returns PowerScale SMB Server Settings based on filter\n\t\ttest, err := powerscale.LookupSmbServerSettings(ctx, &powerscale.LookupSmbServerSettingsArgs{\n\t\t\tFilter: powerscale.GetSmbServerSettingsFilter{\n\t\t\t\tScope: pulumi.StringRef(\"effective\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSmbServerSettingsTest\", test)\n\t\t// Returns SMB Server Settings\n\t\tall, err := powerscale.LookupSmbServerSettings(ctx, &powerscale.LookupSmbServerSettingsArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSmbServerSettingsAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetSmbServerSettingsArgs;\nimport com.pulumi.powerscale.inputs.GetSmbServerSettingsFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Returns PowerScale SMB Server Settings based on filter\n        final var test = PowerscaleFunctions.getSmbServerSettings(GetSmbServerSettingsArgs.builder()\n            .filter(GetSmbServerSettingsFilterArgs.builder()\n                .scope(\"effective\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleSmbServerSettingsTest\", test);\n        // Returns SMB Server Settings\n        final var all = PowerscaleFunctions.getSmbServerSettings(GetSmbServerSettingsArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleSmbServerSettingsAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Returns PowerScale SMB Server Settings based on filter\n  test:\n    fn::invoke:\n      function: powerscale:getSmbServerSettings\n      arguments:\n        filter:\n          scope: effective\n  # Returns SMB Server Settings\n  all:\n    fn::invoke:\n      function: powerscale:getSmbServerSettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_smb_server_settings.test\n  powerscaleSmbServerSettingsTest: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_smb_server_settings.all\n  powerscaleSmbServerSettingsAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSmbServerSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSmbServerSettingsFilter:getSmbServerSettingsFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSmbServerSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSmbServerSettingsFilter:getSmbServerSettingsFilter"},"id":{"description":"ID of SMB Server Settings.\n","type":"string"},"smbServerSettings":{"$ref":"#/types/powerscale:index%2FgetSmbServerSettingsSmbServerSettings:getSmbServerSettingsSmbServerSettings","description":"SMB Server Settings\n"}},"required":["id","smbServerSettings"],"type":"object"}},"powerscale:index/getSmbShare:getSmbShare":{"description":"This datasource is used to query the existing SMB shares from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale SMB shares provide clients network access to file system resources on the cluster.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale SMB shares provide clients network access to file system resources on the cluster\n// Returns a list of PowerScale SMB shares based on name filter block\nconst exampleSmbShares = powerscale.getSmbShare({\n    filter: {\n        names: [\"tfacc_smb_share\"],\n    },\n});\nexport const powerscaleSmbShare = exampleSmbShares;\n// Returns all of the PowerScale SMB shares in default zone\nconst all = powerscale.getSmbShare({});\nexport const powerscaleSmbShareDataAll = allSmbShares;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale SMB shares provide clients network access to file system resources on the cluster\n# Returns a list of PowerScale SMB shares based on name filter block\nexample_smb_shares = powerscale.get_smb_share(filter={\n    \"names\": [\"tfacc_smb_share\"],\n})\npulumi.export(\"powerscaleSmbShare\", example_smb_shares)\n# Returns all of the PowerScale SMB shares in default zone\nall = powerscale.get_smb_share()\npulumi.export(\"powerscaleSmbShareDataAll\", all_smb_shares)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale SMB shares provide clients network access to file system resources on the cluster\n    // Returns a list of PowerScale SMB shares based on name filter block\n    var exampleSmbShares = Powerscale.GetSmbShare.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetSmbShareFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"tfacc_smb_share\",\n            },\n        },\n    });\n\n    // Returns all of the PowerScale SMB shares in default zone\n    var all = Powerscale.GetSmbShare.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSmbShare\"] = exampleSmbShares,\n        [\"powerscaleSmbShareDataAll\"] = allSmbShares,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale SMB shares provide clients network access to file system resources on the cluster\n\t\t// Returns a list of PowerScale SMB shares based on name filter block\n\t\texampleSmbShares, err := powerscale.LookupSmbShare(ctx, &powerscale.LookupSmbShareArgs{\n\t\t\tFilter: powerscale.GetSmbShareFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"tfacc_smb_share\",\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSmbShare\", exampleSmbShares)\n\t\t// Returns all of the PowerScale SMB shares in default zone\n\t\t_, err = powerscale.LookupSmbShare(ctx, &powerscale.LookupSmbShareArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSmbShareDataAll\", allSmbShares)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetSmbShareArgs;\nimport com.pulumi.powerscale.inputs.GetSmbShareFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale SMB shares provide clients network access to file system resources on the cluster\n        // Returns a list of PowerScale SMB shares based on name filter block\n        final var exampleSmbShares = PowerscaleFunctions.getSmbShare(GetSmbShareArgs.builder()\n            .filter(GetSmbShareFilterArgs.builder()\n                .names(\"tfacc_smb_share\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleSmbShare\", exampleSmbShares);\n        // Returns all of the PowerScale SMB shares in default zone\n        final var all = PowerscaleFunctions.getSmbShare(GetSmbShareArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleSmbShareDataAll\", allSmbShares);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale SMB shares provide clients network access to file system resources on the cluster\n\n  # Returns a list of PowerScale SMB shares based on name filter block\n  exampleSmbShares:\n    fn::invoke:\n      function: powerscale:getSmbShare\n      arguments:\n        filter:\n          names:\n            - tfacc_smb_share\n  # Returns all of the PowerScale SMB shares in default zone\n  all:\n    fn::invoke:\n      function: powerscale:getSmbShare\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_smb_share.example_smb_shares\n  powerscaleSmbShare: ${exampleSmbShares}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_smb_share.all_smb_shares\n  powerscaleSmbShareDataAll: ${allSmbShares}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSmbShare.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSmbShareFilter:getSmbShareFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSmbShare.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSmbShareFilter:getSmbShareFilter"},"id":{"description":"Identifier\n","type":"string"},"smbShares":{"description":"List of smb shares\n","items":{"$ref":"#/types/powerscale:index%2FgetSmbShareSmbShare:getSmbShareSmbShare"},"type":"array"}},"required":["id","smbShares"],"type":"object"}},"powerscale:index/getSmbShareSettings:getSmbShareSettings":{"description":"This datasource is used to query the existing SMB shares settings from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale SMB shares settings provide clients network access to file system resources on the cluster.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale SMB shares settings provide clients network access to file system resources on the cluster\n// Returns PowerScale SMB shares settings based on scope or zone filter\nconst test = powerscale.getSmbShareSettings({\n    filter: {\n        scope: \"effective\",\n        zone: \"tfaccAccessZone\",\n    },\n});\nexport const powerscaleSmbShareSettings = test;\n// Returns all of the PowerScale SMB shares settings in default zone\nconst all = powerscale.getSmbShareSettings({});\nexport const powerscaleSmbShareSettingsDataAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale SMB shares settings provide clients network access to file system resources on the cluster\n# Returns PowerScale SMB shares settings based on scope or zone filter\ntest = powerscale.get_smb_share_settings(filter={\n    \"scope\": \"effective\",\n    \"zone\": \"tfaccAccessZone\",\n})\npulumi.export(\"powerscaleSmbShareSettings\", test)\n# Returns all of the PowerScale SMB shares settings in default zone\nall = powerscale.get_smb_share_settings()\npulumi.export(\"powerscaleSmbShareSettingsDataAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale SMB shares settings provide clients network access to file system resources on the cluster\n    // Returns PowerScale SMB shares settings based on scope or zone filter\n    var test = Powerscale.GetSmbShareSettings.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetSmbShareSettingsFilterInputArgs\n        {\n            Scope = \"effective\",\n            Zone = \"tfaccAccessZone\",\n        },\n    });\n\n    // Returns all of the PowerScale SMB shares settings in default zone\n    var all = Powerscale.GetSmbShareSettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSmbShareSettings\"] = test,\n        [\"powerscaleSmbShareSettingsDataAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale SMB shares settings provide clients network access to file system resources on the cluster\n\t\t// Returns PowerScale SMB shares settings based on scope or zone filter\n\t\ttest, err := powerscale.LookupSmbShareSettings(ctx, &powerscale.LookupSmbShareSettingsArgs{\n\t\t\tFilter: powerscale.GetSmbShareSettingsFilter{\n\t\t\t\tScope: pulumi.StringRef(\"effective\"),\n\t\t\t\tZone:  pulumi.StringRef(\"tfaccAccessZone\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSmbShareSettings\", test)\n\t\t// Returns all of the PowerScale SMB shares settings in default zone\n\t\tall, err := powerscale.LookupSmbShareSettings(ctx, &powerscale.LookupSmbShareSettingsArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSmbShareSettingsDataAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetSmbShareSettingsArgs;\nimport com.pulumi.powerscale.inputs.GetSmbShareSettingsFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale SMB shares settings provide clients network access to file system resources on the cluster\n        // Returns PowerScale SMB shares settings based on scope or zone filter\n        final var test = PowerscaleFunctions.getSmbShareSettings(GetSmbShareSettingsArgs.builder()\n            .filter(GetSmbShareSettingsFilterArgs.builder()\n                .scope(\"effective\")\n                .zone(\"tfaccAccessZone\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleSmbShareSettings\", test);\n        // Returns all of the PowerScale SMB shares settings in default zone\n        final var all = PowerscaleFunctions.getSmbShareSettings(GetSmbShareSettingsArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleSmbShareSettingsDataAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale SMB shares settings provide clients network access to file system resources on the cluster\n\n  # Returns PowerScale SMB shares settings based on scope or zone filter\n  test:\n    fn::invoke:\n      function: powerscale:getSmbShareSettings\n      arguments:\n        filter:\n          scope: effective\n          zone: tfaccAccessZone\n  # Returns all of the PowerScale SMB shares settings in default zone\n  all:\n    fn::invoke:\n      function: powerscale:getSmbShareSettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_smb_share_settings.test\n  powerscaleSmbShareSettings: ${test}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_smb_share_settings.all\n  powerscaleSmbShareSettingsDataAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSmbShareSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSmbShareSettingsFilter:getSmbShareSettingsFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSmbShareSettings.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSmbShareSettingsFilter:getSmbShareSettingsFilter"},"id":{"description":"Identifier\n","type":"string"},"smbShareSettings":{"$ref":"#/types/powerscale:index%2FgetSmbShareSettingsSmbShareSettings:getSmbShareSettingsSmbShareSettings"}},"required":["id","smbShareSettings"],"type":"object"}},"powerscale:index/getSnapshot:getSnapshot":{"description":"This datasource is used to query the existing Snapshots from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\n\n","inputs":{"description":"A collection of arguments for invoking getSnapshot.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSnapshotFilter:getSnapshotFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSnapshot.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSnapshotFilter:getSnapshotFilter"},"id":{"description":"Identifier\n","type":"string"},"snapshotsDetails":{"description":"List of Snapshots\n","items":{"$ref":"#/types/powerscale:index%2FgetSnapshotSnapshotsDetail:getSnapshotSnapshotsDetail"},"type":"array"}},"required":["id","snapshotsDetails"],"type":"object"}},"powerscale:index/getSnapshotSchedule:getSnapshotSchedule":{"description":"This datasource is used to query the existing Snapshot Schedules from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. Uses are able to see information like duration, path, schedule, name etc. for the existing snapshot schedules\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale SMB shares provide clients network access to file system resources on the cluster\n// Returns a list of all the PowerScale Snapshot schedules\nconst exampleSnapshotScheduleAll = powerscale.getSnapshotSchedule({\n    filter: {},\n});\nexport const powerscaleSnapshotScheduleAll = exampleSnapshotScheduleAll;\n// Returns a list of PowerScale Snapshot schedules based on path filter block\nconst exampleSnapshotSchedule = powerscale.getSnapshotSchedule({\n    filter: {\n        names: [\"Snapshot schedule 370395356\"],\n    },\n});\nexport const powerscaleSnapshotSchedule = exampleSnapshotSchedule;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale SMB shares provide clients network access to file system resources on the cluster\n# Returns a list of all the PowerScale Snapshot schedules\nexample_snapshot_schedule_all = powerscale.get_snapshot_schedule(filter={})\npulumi.export(\"powerscaleSnapshotScheduleAll\", example_snapshot_schedule_all)\n# Returns a list of PowerScale Snapshot schedules based on path filter block\nexample_snapshot_schedule = powerscale.get_snapshot_schedule(filter={\n    \"names\": [\"Snapshot schedule 370395356\"],\n})\npulumi.export(\"powerscaleSnapshotSchedule\", example_snapshot_schedule)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale SMB shares provide clients network access to file system resources on the cluster\n    // Returns a list of all the PowerScale Snapshot schedules\n    var exampleSnapshotScheduleAll = Powerscale.GetSnapshotSchedule.Invoke(new()\n    {\n        Filter = null,\n    });\n\n    // Returns a list of PowerScale Snapshot schedules based on path filter block\n    var exampleSnapshotSchedule = Powerscale.GetSnapshotSchedule.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetSnapshotScheduleFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"Snapshot schedule 370395356\",\n            },\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSnapshotScheduleAll\"] = exampleSnapshotScheduleAll,\n        [\"powerscaleSnapshotSchedule\"] = exampleSnapshotSchedule,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale SMB shares provide clients network access to file system resources on the cluster\n\t\t// Returns a list of all the PowerScale Snapshot schedules\n\t\texampleSnapshotScheduleAll, err := powerscale.LookupSnapshotSchedule(ctx, &powerscale.LookupSnapshotScheduleArgs{\n\t\t\tFilter: powerscale.GetSnapshotScheduleFilter{},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSnapshotScheduleAll\", exampleSnapshotScheduleAll)\n\t\t// Returns a list of PowerScale Snapshot schedules based on path filter block\n\t\texampleSnapshotSchedule, err := powerscale.LookupSnapshotSchedule(ctx, &powerscale.LookupSnapshotScheduleArgs{\n\t\t\tFilter: powerscale.GetSnapshotScheduleFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"Snapshot schedule 370395356\",\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSnapshotSchedule\", exampleSnapshotSchedule)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetSnapshotScheduleArgs;\nimport com.pulumi.powerscale.inputs.GetSnapshotScheduleFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale SMB shares provide clients network access to file system resources on the cluster\n        // Returns a list of all the PowerScale Snapshot schedules\n        final var exampleSnapshotScheduleAll = PowerscaleFunctions.getSnapshotSchedule(GetSnapshotScheduleArgs.builder()\n            .filter(GetSnapshotScheduleFilterArgs.builder()\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleSnapshotScheduleAll\", exampleSnapshotScheduleAll);\n        // Returns a list of PowerScale Snapshot schedules based on path filter block\n        final var exampleSnapshotSchedule = PowerscaleFunctions.getSnapshotSchedule(GetSnapshotScheduleArgs.builder()\n            .filter(GetSnapshotScheduleFilterArgs.builder()\n                .names(\"Snapshot schedule 370395356\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleSnapshotSchedule\", exampleSnapshotSchedule);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale SMB shares provide clients network access to file system resources on the cluster\n\n  # Returns a list of all the PowerScale Snapshot schedules\n  exampleSnapshotScheduleAll:\n    fn::invoke:\n      function: powerscale:getSnapshotSchedule\n      arguments:\n        filter: {}\n  # Returns a list of PowerScale Snapshot schedules based on path filter block\n  exampleSnapshotSchedule:\n    fn::invoke:\n      function: powerscale:getSnapshotSchedule\n      arguments:\n        filter:\n          names:\n            - Snapshot schedule 370395356\noutputs:\n  powerscaleSnapshotScheduleAll: ${exampleSnapshotScheduleAll}\n  powerscaleSnapshotSchedule: ${exampleSnapshotSchedule}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSnapshotSchedule.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSnapshotScheduleFilter:getSnapshotScheduleFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSnapshotSchedule.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSnapshotScheduleFilter:getSnapshotScheduleFilter"},"id":{"description":"Identifier\n","type":"string"},"schedules":{"description":"List of snapshot schedules\n","items":{"$ref":"#/types/powerscale:index%2FgetSnapshotScheduleSchedule:getSnapshotScheduleSchedule"},"type":"array"}},"required":["id","schedules"],"type":"object"}},"powerscale:index/getStoragepoolTier:getStoragepoolTier":{"description":"This datasource is used to query the Storagepool tiers from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale Storagepool tiers provide the ability to configure Storagepool tiers on the cluster.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Returns a list of PowerScale Storage pool tier\nconst exampleStoragepoolTier = powerscale.getStoragepoolTier({});\nexport const powerscaleStoragepoolTier = exampleStoragepoolTier;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Returns a list of PowerScale Storage pool tier\nexample_storagepool_tier = powerscale.get_storagepool_tier()\npulumi.export(\"powerscaleStoragepoolTier\", example_storagepool_tier)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Returns a list of PowerScale Storage pool tier\n    var exampleStoragepoolTier = Powerscale.GetStoragepoolTier.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleStoragepoolTier\"] = exampleStoragepoolTier,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Returns a list of PowerScale Storage pool tier\n\t\texampleStoragepoolTier, err := powerscale.LookupStoragepoolTier(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleStoragepoolTier\", exampleStoragepoolTier)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Returns a list of PowerScale Storage pool tier\n        final var exampleStoragepoolTier = PowerscaleFunctions.getStoragepoolTier(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleStoragepoolTier\", exampleStoragepoolTier);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Returns a list of PowerScale Storage pool tier\n  exampleStoragepoolTier:\n    fn::invoke:\n      function: powerscale:getStoragepoolTier\n      arguments: {}\noutputs:\n  powerscaleStoragepoolTier: ${exampleStoragepoolTier}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getStoragepoolTier.\n","properties":{"id":{"description":"Id of Storagepool tiers. Readonly. Fixed value of <span pulumi-lang-nodejs=\"\"storagepoolTiers\"\" pulumi-lang-dotnet=\"\"StoragepoolTiers\"\" pulumi-lang-go=\"\"storagepoolTiers\"\" pulumi-lang-python=\"\"storagepool_tiers\"\" pulumi-lang-yaml=\"\"storagepoolTiers\"\" pulumi-lang-java=\"\"storagepoolTiers\"\">\"storagepool_tiers\"</span>\n","type":"string"},"storagepoolTiers":{"description":"List of Storagepool tiers\n","items":{"$ref":"#/types/powerscale:index%2FgetStoragepoolTierStoragepoolTier:getStoragepoolTierStoragepoolTier"},"type":"array"}},"required":["id","storagepoolTiers"],"type":"object"}},"powerscale:index/getSubnet:getSubnet":{"description":"This datasource is used to query the existing Subnets from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n","inputs":{"description":"A collection of arguments for invoking getSubnet.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSubnetFilter:getSubnetFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSubnet.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSubnetFilter:getSubnetFilter"},"id":{"description":"Unique identifier\n","type":"string"},"subnets":{"description":"List of subnets\n","items":{"$ref":"#/types/powerscale:index%2FgetSubnetSubnet:getSubnetSubnet"},"type":"array"}},"required":["id","subnets"],"type":"object"}},"powerscale:index/getSynciqGlobalSettings:getSynciqGlobalSettings":{"description":"This datasource is used to query the SyncIQ Global Settings from PowerScale array. The information fetched from this datasource can be used for getting the details.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of the SyncIQ Global Settings from PowerScale array.\n// Returns the PowerScale SyncIQ Global settings on PowerScale array\nconst all = powerscale.getSynciqGlobalSettings({});\nexport const powerscaleSynciqGlobalSettingsAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of the SyncIQ Global Settings from PowerScale array.\n# Returns the PowerScale SyncIQ Global settings on PowerScale array\nall = powerscale.get_synciq_global_settings()\npulumi.export(\"powerscaleSynciqGlobalSettingsAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of the SyncIQ Global Settings from PowerScale array.\n    // Returns the PowerScale SyncIQ Global settings on PowerScale array\n    var all = Powerscale.GetSynciqGlobalSettings.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSynciqGlobalSettingsAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of the SyncIQ Global Settings from PowerScale array.\n\t\t// Returns the PowerScale SyncIQ Global settings on PowerScale array\n\t\tall, err := powerscale.LookupSynciqGlobalSettings(ctx, map[string]interface{}{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSynciqGlobalSettingsAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of the SyncIQ Global Settings from PowerScale array.\n        // Returns the PowerScale SyncIQ Global settings on PowerScale array\n        final var all = PowerscaleFunctions.getSynciqGlobalSettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);\n\n        ctx.export(\"powerscaleSynciqGlobalSettingsAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of the SyncIQ Global Settings from PowerScale array.\n\n  # Returns the PowerScale SyncIQ Global settings on PowerScale array\n  all:\n    fn::invoke:\n      function: powerscale:getSynciqGlobalSettings\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_synciq_global_settings.all\n  powerscaleSynciqGlobalSettingsAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","outputs":{"description":"A collection of values returned by getSynciqGlobalSettings.\n","properties":{"bandwidthReservationReserveAbsolute":{"description":"The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidth*reservation*reserve_percentage.\n","type":"number"},"bandwidthReservationReservePercentage":{"description":"The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.\n","type":"number"},"clusterCertificateId":{"description":"The ID of this cluster's certificate being used for encryption.\n","type":"string"},"encryptionCipherList":{"description":"The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.\n","type":"string"},"encryptionRequired":{"description":"If true, requires all SyncIQ policies to utilize encrypted communications.\n","type":"boolean"},"forceInterface":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Default for the \"force*interface\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  Determines whether data is sent only through the subnet and pool specified in the \"source*network\" field. This option can be useful if there are multiple interfaces for the given source subnet.\n","type":"boolean"},"id":{"description":"The provider-assigned unique ID for this managed resource.","type":"string"},"maxConcurrentJobs":{"description":"The max concurrent jobs that SyncIQ can support. This number is based on the size of the current cluster and the current SyncIQ worker throttle rule.\n","type":"number"},"ocspAddress":{"description":"The address of the OCSP responder to which to connect.\n","type":"string"},"ocspIssuerCertificateId":{"description":"The ID of the certificate authority that issued the certificate whose revocation status is being checked.\n","type":"string"},"passwordSet":{"description":"Indicates if a password is set for authentication. Password value is not shown with GET.\n","type":"boolean"},"preferredRpoAlert":{"description":"If specified, display as default RPO Alert value for new policy creation via WebUI\n","type":"number"},"renegotiationPeriod":{"description":"If specified, the duration to persist encrypted connection before forcing a renegotiation.\n","type":"number"},"reportEmails":{"description":"Email sync reports to these addresses.\n","items":{"type":"string"},"type":"array"},"reportMaxAge":{"description":"The default length of time (in seconds) a policy report will be stored.\n","type":"number"},"reportMaxCount":{"description":"The default maximum number of reports to retain for a policy.\n","type":"number"},"restrictTargetNetwork":{"description":"Default for the \"restrict*target*network\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  If you specify true, and you specify a SmartConnect zone in the <span pulumi-lang-nodejs=\"\"targetHost\"\" pulumi-lang-dotnet=\"\"TargetHost\"\" pulumi-lang-go=\"\"targetHost\"\" pulumi-lang-python=\"\"target_host\"\" pulumi-lang-yaml=\"\"targetHost\"\" pulumi-lang-java=\"\"targetHost\"\">\"target_host\"</span> field, replication policies will connect only to nodes in the specified SmartConnect zone.  If you specify false, replication policies are not restricted to specific nodes on the target cluster.\n","type":"boolean"},"rpoAlerts":{"description":"If disabled, no RPO alerts will be generated.\n","type":"boolean"},"service":{"description":"Specifies if the SyncIQ service currently on, paused, or off.  If paused, all sync jobs will be paused.  If turned off, all jobs will be canceled.\n","type":"string"},"serviceHistoryMaxAge":{"description":"Maximum age of service information to maintain, in seconds.\n","type":"number"},"serviceHistoryMaxCount":{"description":"Maximum number of historical service information records to maintain.\n","type":"number"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FgetSynciqGlobalSettingsSourceNetwork:getSynciqGlobalSettingsSourceNetwork","description":"Restricts replication policies on the local cluster to running on the specified subnet and pool.\n"},"twChkptInterval":{"description":"The interval (in seconds) in which treewalk syncs are forced to checkpoint.\n","type":"number"},"useWorkersPerNode":{"description":"If enabled, SyncIQ will use the deprecated workers*per*node field with worker pools functionality and limit workers accordingly.\n","type":"boolean"}},"required":["bandwidthReservationReserveAbsolute","bandwidthReservationReservePercentage","clusterCertificateId","encryptionCipherList","encryptionRequired","forceInterface","id","maxConcurrentJobs","ocspAddress","ocspIssuerCertificateId","passwordSet","preferredRpoAlert","renegotiationPeriod","reportEmails","reportMaxAge","reportMaxCount","restrictTargetNetwork","rpoAlerts","service","serviceHistoryMaxAge","serviceHistoryMaxCount","sourceNetwork","twChkptInterval","useWorkersPerNode"],"type":"object"}},"powerscale:index/getSynciqPeerCertificate:getSynciqPeerCertificate":{"description":"This datasource is used to query the existing SyncIQ Peer Certificates from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale SyncIQ Certificate allows you to get a list of SyncIQ Peer Certificates or a peer certificate by its ID.\n// Returns a list of PowerScale SyncIQ Certificates\nconst allCertificates = powerscale.getSynciqPeerCertificate({});\n// Returns a the PowerScale SyncIQ Certificate with given ID\nconst oneCertificate = powerscale.getSynciqPeerCertificate({\n    id: \"g23j9a1f83h12n5j4\",\n});\n// Returns the PowerScale SyncIQ Certificate with given name\nconst oneCertificateByName = powerscale.getSynciqPeerCertificate({\n    filter: {\n        name: \"tfaccTest\",\n    },\n});\nexport const powerscaleSynciqAllCertificates = allCertificates.then(allCertificates => allCertificates.certificates);\nexport const certificateByID = oneCertificate.then(oneCertificate => oneCertificate.certificates?.[0]);\nexport const certificateByName = oneCertificateByName.then(oneCertificateByName => oneCertificateByName.certificates?.[0]);\nexport const certificatesByStatus = {\n    valid: allCertificates.then(allCertificates => .filter(certificate => certificate.status == \"valid\").map(certificate => (certificate))),\n    invalid: allCertificates.then(allCertificates => .filter(certificate => certificate.status == \"invalid\").map(certificate => (certificate))),\n    expired: allCertificates.then(allCertificates => .filter(certificate => certificate.status == \"expired\").map(certificate => (certificate))),\n    expiring: allCertificates.then(allCertificates => .filter(certificate => certificate.status == \"expiring\").map(certificate => (certificate))),\n};\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale SyncIQ Certificate allows you to get a list of SyncIQ Peer Certificates or a peer certificate by its ID.\n# Returns a list of PowerScale SyncIQ Certificates\nall_certificates = powerscale.get_synciq_peer_certificate()\n# Returns a the PowerScale SyncIQ Certificate with given ID\none_certificate = powerscale.get_synciq_peer_certificate(id=\"g23j9a1f83h12n5j4\")\n# Returns the PowerScale SyncIQ Certificate with given name\none_certificate_by_name = powerscale.get_synciq_peer_certificate(filter={\n    \"name\": \"tfaccTest\",\n})\npulumi.export(\"powerscaleSynciqAllCertificates\", all_certificates.certificates)\npulumi.export(\"certificateByID\", one_certificate.certificates[0])\npulumi.export(\"certificateByName\", one_certificate_by_name.certificates[0])\npulumi.export(\"certificatesByStatus\", {\n    \"valid\": [certificate for certificate in all_certificates.certificates if certificate.status == \"valid\"],\n    \"invalid\": [certificate for certificate in all_certificates.certificates if certificate.status == \"invalid\"],\n    \"expired\": [certificate for certificate in all_certificates.certificates if certificate.status == \"expired\"],\n    \"expiring\": [certificate for certificate in all_certificates.certificates if certificate.status == \"expiring\"],\n})\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale SyncIQ Certificate allows you to get a list of SyncIQ Peer Certificates or a peer certificate by its ID.\n    // Returns a list of PowerScale SyncIQ Certificates\n    var allCertificates = Powerscale.GetSynciqPeerCertificate.Invoke();\n\n    // Returns a the PowerScale SyncIQ Certificate with given ID\n    var oneCertificate = Powerscale.GetSynciqPeerCertificate.Invoke(new()\n    {\n        Id = \"g23j9a1f83h12n5j4\",\n    });\n\n    // Returns the PowerScale SyncIQ Certificate with given name\n    var oneCertificateByName = Powerscale.GetSynciqPeerCertificate.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetSynciqPeerCertificateFilterInputArgs\n        {\n            Name = \"tfaccTest\",\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSynciqAllCertificates\"] = allCertificates.Apply(getSynciqPeerCertificateResult => getSynciqPeerCertificateResult.Certificates),\n        [\"certificateByID\"] = oneCertificate.Apply(getSynciqPeerCertificateResult => getSynciqPeerCertificateResult.Certificates[0]),\n        [\"certificateByName\"] = oneCertificateByName.Apply(getSynciqPeerCertificateResult => getSynciqPeerCertificateResult.Certificates[0]),\n        [\"certificatesByStatus\"] = \n        {\n            { \"valid\", .Where(certificate => certificate.Status == \"valid\").Select(certificate => \n            {\n                return certificate;\n            }).ToList() },\n            { \"invalid\", .Where(certificate => certificate.Status == \"invalid\").Select(certificate => \n            {\n                return certificate;\n            }).ToList() },\n            { \"expired\", .Where(certificate => certificate.Status == \"expired\").Select(certificate => \n            {\n                return certificate;\n            }).ToList() },\n            { \"expiring\", .Where(certificate => certificate.Status == \"expiring\").Select(certificate => \n            {\n                return certificate;\n            }).ToList() },\n        },\n    };\n});\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSynciqPeerCertificate.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSynciqPeerCertificateFilter:getSynciqPeerCertificateFilter","description":"Filters for fetching SyncIQ Peer Certificate.\n"},"id":{"description":"ID of the SyncIQ Peer Certificate to be fetched. If not provided, all the certificates will be fetched.\n","type":"string"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSynciqPeerCertificate.\n","properties":{"certificates":{"description":"List of certificates fetched.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqPeerCertificateCertificate:getSynciqPeerCertificateCertificate"},"type":"array"},"filter":{"$ref":"#/types/powerscale:index%2FgetSynciqPeerCertificateFilter:getSynciqPeerCertificateFilter","description":"Filters for fetching SyncIQ Peer Certificate.\n"},"id":{"description":"ID of the SyncIQ Peer Certificate to be fetched. If not provided, all the certificates will be fetched.\n","type":"string"}},"required":["certificates","id"],"type":"object"}},"powerscale:index/getSynciqPolicy:getSynciqPolicy":{"description":"This datasource is used to query the existing SyncIQ Policies from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n","inputs":{"description":"A collection of arguments for invoking getSynciqPolicy.\n","properties":{"id":{"description":"ID\n","type":"string"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSynciqPolicy.\n","properties":{"id":{"description":"ID\n","type":"string"},"policies":{"description":"Policies\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqPolicyPolicy:getSynciqPolicyPolicy"},"type":"array"}},"required":["id","policies"],"type":"object"}},"powerscale:index/getSynciqReplicationJob:getSynciqReplicationJob":{"description":"This datasource is used to query the SyncIQ replication jobs from PowerScale array. The information fetched from this datasource can be used for getting the details.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale SyncIQ Replication Job datasource allows you to get a list of SyncIQ replication jobs.\n// Returns a list of PowerScale SyncIQ Replication Jobs \nconst allJobs = powerscale.getSynciqReplicationJob({});\n// Returns a list of PowerScale SyncIQ Replication Jobs with running state\nconst jobByState = powerscale.getSynciqReplicationJob({\n    filter: {\n        state: \"running\",\n    },\n});\nexport const powerscaleSynciqAllReplicationJobs = allJobs.then(allJobs => allJobs.synciqJobs);\nexport const replicationJobByState = jobByState.then(jobByState => jobByState.synciqJobs);\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale SyncIQ Replication Job datasource allows you to get a list of SyncIQ replication jobs.\n# Returns a list of PowerScale SyncIQ Replication Jobs \nall_jobs = powerscale.get_synciq_replication_job()\n# Returns a list of PowerScale SyncIQ Replication Jobs with running state\njob_by_state = powerscale.get_synciq_replication_job(filter={\n    \"state\": \"running\",\n})\npulumi.export(\"powerscaleSynciqAllReplicationJobs\", all_jobs.synciq_jobs)\npulumi.export(\"replicationJobByState\", job_by_state.synciq_jobs)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale SyncIQ Replication Job datasource allows you to get a list of SyncIQ replication jobs.\n    // Returns a list of PowerScale SyncIQ Replication Jobs \n    var allJobs = Powerscale.GetSynciqReplicationJob.Invoke();\n\n    // Returns a list of PowerScale SyncIQ Replication Jobs with running state\n    var jobByState = Powerscale.GetSynciqReplicationJob.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetSynciqReplicationJobFilterInputArgs\n        {\n            State = \"running\",\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSynciqAllReplicationJobs\"] = allJobs.Apply(getSynciqReplicationJobResult => getSynciqReplicationJobResult.SynciqJobs),\n        [\"replicationJobByState\"] = jobByState.Apply(getSynciqReplicationJobResult => getSynciqReplicationJobResult.SynciqJobs),\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale SyncIQ Replication Job datasource allows you to get a list of SyncIQ replication jobs.\n\t\t// Returns a list of PowerScale SyncIQ Replication Jobs\n\t\tallJobs, err := powerscale.LookupSynciqReplicationJob(ctx, &powerscale.LookupSynciqReplicationJobArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// Returns a list of PowerScale SyncIQ Replication Jobs with running state\n\t\tjobByState, err := powerscale.LookupSynciqReplicationJob(ctx, &powerscale.LookupSynciqReplicationJobArgs{\n\t\t\tFilter: powerscale.GetSynciqReplicationJobFilter{\n\t\t\t\tState: pulumi.StringRef(\"running\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSynciqAllReplicationJobs\", allJobs.SynciqJobs)\n\t\tctx.Export(\"replicationJobByState\", jobByState.SynciqJobs)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetSynciqReplicationJobArgs;\nimport com.pulumi.powerscale.inputs.GetSynciqReplicationJobFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale SyncIQ Replication Job datasource allows you to get a list of SyncIQ replication jobs.\n        // Returns a list of PowerScale SyncIQ Replication Jobs \n        final var allJobs = PowerscaleFunctions.getSynciqReplicationJob(GetSynciqReplicationJobArgs.builder()\n            .build());\n\n        // Returns a list of PowerScale SyncIQ Replication Jobs with running state\n        final var jobByState = PowerscaleFunctions.getSynciqReplicationJob(GetSynciqReplicationJobArgs.builder()\n            .filter(GetSynciqReplicationJobFilterArgs.builder()\n                .state(\"running\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleSynciqAllReplicationJobs\", allJobs.synciqJobs());\n        ctx.export(\"replicationJobByState\", jobByState.synciqJobs());\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale SyncIQ Replication Job datasource allows you to get a list of SyncIQ replication jobs.\n\n  # Returns a list of PowerScale SyncIQ Replication Jobs\n  allJobs:\n    fn::invoke:\n      function: powerscale:getSynciqReplicationJob\n      arguments: {}\n  # Returns a list of PowerScale SyncIQ Replication Jobs with running state\n  jobByState:\n    fn::invoke:\n      function: powerscale:getSynciqReplicationJob\n      arguments:\n        filter:\n          state: running\noutputs:\n  # Output value of above block by executing 'terraform output' command.\n  # The user can use the fetched information by the variable data.powerscale_synciq_replication_job.all_jobs.synciq_jobs\n  powerscaleSynciqAllReplicationJobs: ${allJobs.synciqJobs}\n  # The user can use the fetched information by the variable data.powerscale_synciq_replication_job.all_jobs.synciq_jobs\n  replicationJobByState: ${jobByState.synciqJobs}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSynciqReplicationJob.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobFilter:getSynciqReplicationJobFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSynciqReplicationJob.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobFilter:getSynciqReplicationJobFilter"},"id":{"description":"Identifier.\n","type":"string"},"synciqJobs":{"description":"List of user groups.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJob:getSynciqReplicationJobSynciqJob"},"type":"array"}},"required":["id","synciqJobs"],"type":"object"}},"powerscale:index/getSynciqReplicationReport:getSynciqReplicationReport":{"description":"## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// This Terraform DataSource is used to query the details of existing Replication Report from PowerScale array.\n// Returns the entire list of PowerScale replication report.\nconst all = powerscale.getSynciqReplicationReport({});\nexport const powerscaleSynciqReplicationReport = all;\n// Returns a list of PowerScale Replication Report based on the filters specified in the filter block.\nconst filtering = powerscale.getSynciqReplicationReport({\n    filter: {\n        policyName: \"Policy\",\n        reportsPerPolicy: 2,\n        sort: \"policy_name\",\n        dir: \"ASC\",\n    },\n});\nexport const powerscaleReplicationReportFilter = filtering;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# This Terraform DataSource is used to query the details of existing Replication Report from PowerScale array.\n# Returns the entire list of PowerScale replication report.\nall = powerscale.get_synciq_replication_report()\npulumi.export(\"powerscaleSynciqReplicationReport\", all)\n# Returns a list of PowerScale Replication Report based on the filters specified in the filter block.\nfiltering = powerscale.get_synciq_replication_report(filter={\n    \"policy_name\": \"Policy\",\n    \"reports_per_policy\": 2,\n    \"sort\": \"policy_name\",\n    \"dir\": \"ASC\",\n})\npulumi.export(\"powerscaleReplicationReportFilter\", filtering)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // This Terraform DataSource is used to query the details of existing Replication Report from PowerScale array.\n    // Returns the entire list of PowerScale replication report.\n    var all = Powerscale.GetSynciqReplicationReport.Invoke();\n\n    // Returns a list of PowerScale Replication Report based on the filters specified in the filter block.\n    var filtering = Powerscale.GetSynciqReplicationReport.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetSynciqReplicationReportFilterInputArgs\n        {\n            PolicyName = \"Policy\",\n            ReportsPerPolicy = 2,\n            Sort = \"policy_name\",\n            Dir = \"ASC\",\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSynciqReplicationReport\"] = all,\n        [\"powerscaleReplicationReportFilter\"] = filtering,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// This Terraform DataSource is used to query the details of existing Replication Report from PowerScale array.\n\t\t// Returns the entire list of PowerScale replication report.\n\t\tall, err := powerscale.GetSynciqReplicationReport(ctx, &powerscale.GetSynciqReplicationReportArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleSynciqReplicationReport\", all)\n\t\t// Returns a list of PowerScale Replication Report based on the filters specified in the filter block.\n\t\tfiltering, err := powerscale.GetSynciqReplicationReport(ctx, &powerscale.GetSynciqReplicationReportArgs{\n\t\t\tFilter: powerscale.GetSynciqReplicationReportFilter{\n\t\t\t\tPolicyName:       pulumi.StringRef(\"Policy\"),\n\t\t\t\tReportsPerPolicy: pulumi.Float64Ref(2),\n\t\t\t\tSort:             pulumi.StringRef(\"policy_name\"),\n\t\t\t\tDir:              pulumi.StringRef(\"ASC\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleReplicationReportFilter\", filtering)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetSynciqReplicationReportArgs;\nimport com.pulumi.powerscale.inputs.GetSynciqReplicationReportFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // This Terraform DataSource is used to query the details of existing Replication Report from PowerScale array.\n        // Returns the entire list of PowerScale replication report.\n        final var all = PowerscaleFunctions.getSynciqReplicationReport(GetSynciqReplicationReportArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleSynciqReplicationReport\", all);\n        // Returns a list of PowerScale Replication Report based on the filters specified in the filter block.\n        final var filtering = PowerscaleFunctions.getSynciqReplicationReport(GetSynciqReplicationReportArgs.builder()\n            .filter(GetSynciqReplicationReportFilterArgs.builder()\n                .policyName(\"Policy\")\n                .reportsPerPolicy(2)\n                .sort(\"policy_name\")\n                .dir(\"ASC\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleReplicationReportFilter\", filtering);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # This Terraform DataSource is used to query the details of existing Replication Report from PowerScale array.\n\n  # Returns the entire list of PowerScale replication report.\n  all:\n    fn::invoke:\n      function: powerscale:getSynciqReplicationReport\n      arguments: {}\n  # Returns a list of PowerScale Replication Report based on the filters specified in the filter block.\n  filtering:\n    fn::invoke:\n      function: powerscale:getSynciqReplicationReport\n      arguments:\n        filter:\n          policyName: Policy\n          reportsPerPolicy: 2\n          sort: policy_name\n          dir: ASC\noutputs:\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_synciq_replication_report.all\n  powerscaleSynciqReplicationReport: ${all}\n  # Output value of above block by executing 'terraform output' command\n  # You can use the the fetched information by the variable data.powerscale_synciq_replication_report.filtering\n  powerscaleReplicationReportFilter: ${filtering}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getSynciqReplicationReport.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportFilter:getSynciqReplicationReportFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSynciqReplicationReport.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportFilter:getSynciqReplicationReportFilter"},"id":{"description":"Unique identifier of the network pool instance.\n","type":"string"},"replicationReports":{"items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportReplicationReport:getSynciqReplicationReportReplicationReport"},"type":"array"}},"required":["id","replicationReports"],"type":"object"}},"powerscale:index/getSynciqRule:getSynciqRule":{"description":"This datasource is used to query the existing SyncIQ Replication Rules from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block.\n\n","inputs":{"description":"A collection of arguments for invoking getSynciqRule.\n","properties":{"id":{"description":"Unique identifier of the performance rule.\n","type":"string"}},"type":"object"},"outputs":{"description":"A collection of values returned by getSynciqRule.\n","properties":{"id":{"description":"Unique identifier of the performance rule.\n","type":"string"},"rules":{"items":{"$ref":"#/types/powerscale:index%2FgetSynciqRuleRule:getSynciqRuleRule"},"type":"array"}},"required":["id","rules"],"type":"object"}},"powerscale:index/getUser:getUser":{"description":"This datasource is used to query the existing Users from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n// Returns a list of PowerScale Users based on uid or name in names filter block. \nconst testUser = powerscale.getUser({\n    filter: {\n        names: [{\n            name: \"tfaccUserDatasource\",\n            uid: 10000,\n        }],\n        cached: false,\n        namePrefix: \"tfacc\",\n        memberOf: false,\n    },\n});\nexport const powerscaleUserFilter = testUser;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n# Returns a list of PowerScale Users based on uid or name in names filter block. \ntest_user = powerscale.get_user(filter={\n    \"names\": [{\n        \"name\": \"tfaccUserDatasource\",\n        \"uid\": 10000,\n    }],\n    \"cached\": False,\n    \"name_prefix\": \"tfacc\",\n    \"member_of\": False,\n})\npulumi.export(\"powerscaleUserFilter\", test_user)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n    // Returns a list of PowerScale Users based on uid or name in names filter block. \n    var testUser = Powerscale.GetUser.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetUserFilterInputArgs\n        {\n            Names = new[]\n            {\n                new Powerscale.Inputs.GetUserFilterNameInputArgs\n                {\n                    Name = \"tfaccUserDatasource\",\n                    Uid = 10000,\n                },\n            },\n            Cached = false,\n            NamePrefix = \"tfacc\",\n            MemberOf = false,\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleUserFilter\"] = testUser,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n\t\t// Returns a list of PowerScale Users based on uid or name in names filter block.\n\t\ttestUser, err := powerscale.LookupUser(ctx, &powerscale.LookupUserArgs{\n\t\t\tFilter: powerscale.GetUserFilter{\n\t\t\t\tNames: []powerscale.GetUserFilterName{\n\t\t\t\t\t{\n\t\t\t\t\t\tName: pulumi.StringRef(\"tfaccUserDatasource\"),\n\t\t\t\t\t\tUid:  pulumi.Float64Ref(10000),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tCached:     pulumi.BoolRef(false),\n\t\t\t\tNamePrefix: pulumi.StringRef(\"tfacc\"),\n\t\t\t\tMemberOf:   pulumi.BoolRef(false),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleUserFilter\", testUser)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetUserArgs;\nimport com.pulumi.powerscale.inputs.GetUserFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n        // Returns a list of PowerScale Users based on uid or name in names filter block. \n        final var testUser = PowerscaleFunctions.getUser(GetUserArgs.builder()\n            .filter(GetUserFilterArgs.builder()\n                .names(GetUserFilterNameArgs.builder()\n                    .name(\"tfaccUserDatasource\")\n                    .uid(10000)\n                    .build())\n                .cached(false)\n                .namePrefix(\"tfacc\")\n                .memberOf(false)\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleUserFilter\", testUser);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n\n  # Returns a list of PowerScale Users based on uid or name in names filter block.\n  testUser:\n    fn::invoke:\n      function: powerscale:getUser\n      arguments:\n        filter:\n          names:\n            - name: tfaccUserDatasource\n              uid: 10000\n          cached: false\n          namePrefix: tfacc\n          memberOf: false\noutputs:\n  # Output value of above block by executing 'terraform output' command.\n  # The user can use the fetched information by the variable data.powerscale_user.test_user\n  powerscaleUserFilter: ${testUser}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getUser.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetUserFilter:getUserFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getUser.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetUserFilter:getUserFilter"},"id":{"description":"Unique identifier of the user instance.\n","type":"string"},"users":{"description":"List of users.\n","items":{"$ref":"#/types/powerscale:index%2FgetUserUser:getUserUser"},"type":"array"}},"required":["id","users"],"type":"object"}},"powerscale:index/getUserGroup:getUserGroup":{"description":"This datasource is used to query the existing User Groups from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n// Returns a list of PowerScale User Groups based on gid or name in names filter block. \nconst testUserGroup = powerscale.getUserGroup({\n    filter: {\n        names: [{\n            name: \"tfaccUserGroupDatasource\",\n            gid: 10000,\n        }],\n        cached: false,\n        namePrefix: \"tfacc\",\n    },\n});\nexport const powerscaleUserGroupFilter = testUserGroup;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n# Returns a list of PowerScale User Groups based on gid or name in names filter block. \ntest_user_group = powerscale.get_user_group(filter={\n    \"names\": [{\n        \"name\": \"tfaccUserGroupDatasource\",\n        \"gid\": 10000,\n    }],\n    \"cached\": False,\n    \"name_prefix\": \"tfacc\",\n})\npulumi.export(\"powerscaleUserGroupFilter\", test_user_group)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n    // Returns a list of PowerScale User Groups based on gid or name in names filter block. \n    var testUserGroup = Powerscale.GetUserGroup.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetUserGroupFilterInputArgs\n        {\n            Names = new[]\n            {\n                new Powerscale.Inputs.GetUserGroupFilterNameInputArgs\n                {\n                    Name = \"tfaccUserGroupDatasource\",\n                    Gid = 10000,\n                },\n            },\n            Cached = false,\n            NamePrefix = \"tfacc\",\n        },\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleUserGroupFilter\"] = testUserGroup,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n\t\t// Returns a list of PowerScale User Groups based on gid or name in names filter block.\n\t\ttestUserGroup, err := powerscale.LookupUserGroup(ctx, &powerscale.LookupUserGroupArgs{\n\t\t\tFilter: powerscale.GetUserGroupFilter{\n\t\t\t\tNames: []powerscale.GetUserGroupFilterName{\n\t\t\t\t\t{\n\t\t\t\t\t\tName: pulumi.StringRef(\"tfaccUserGroupDatasource\"),\n\t\t\t\t\t\tGid:  pulumi.Float64Ref(10000),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tCached:     pulumi.BoolRef(false),\n\t\t\t\tNamePrefix: pulumi.StringRef(\"tfacc\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleUserGroupFilter\", testUserGroup)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetUserGroupArgs;\nimport com.pulumi.powerscale.inputs.GetUserGroupFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n        // Returns a list of PowerScale User Groups based on gid or name in names filter block. \n        final var testUserGroup = PowerscaleFunctions.getUserGroup(GetUserGroupArgs.builder()\n            .filter(GetUserGroupFilterArgs.builder()\n                .names(GetUserGroupFilterNameArgs.builder()\n                    .name(\"tfaccUserGroupDatasource\")\n                    .gid(10000)\n                    .build())\n                .cached(false)\n                .namePrefix(\"tfacc\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleUserGroupFilter\", testUserGroup);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n\n  # Returns a list of PowerScale User Groups based on gid or name in names filter block.\n  testUserGroup:\n    fn::invoke:\n      function: powerscale:getUserGroup\n      arguments:\n        filter:\n          names:\n            - name: tfaccUserGroupDatasource\n              gid: 10000\n          cached: false\n          namePrefix: tfacc\noutputs:\n  # Output value of above block by executing 'terraform output' command.\n  # The user can use the fetched information by the variable data.powerscale_user_group.test_user_group\n  powerscaleUserGroupFilter: ${testUserGroup}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getUserGroup.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetUserGroupFilter:getUserGroupFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getUserGroup.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetUserGroupFilter:getUserGroupFilter"},"id":{"description":"Unique identifier of the user group instance.\n","type":"string"},"userGroups":{"description":"List of user groups.\n","items":{"$ref":"#/types/powerscale:index%2FgetUserGroupUserGroup:getUserGroupUserGroup"},"type":"array"}},"required":["id","userGroups"],"type":"object"}},"powerscale:index/getUserMappingRules:getUserMappingRules":{"description":"This datasource is used to query the User Mapping Rules from PowerScale array. The information fetched from this datasource can be used for getting the details or for further processing in resource block. PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n// Returns a list of PowerScale User Mapping Rules based on names and zone filter block. \nconst testUserMappingRules = powerscale.getUserMappingRules({\n    filter: {\n        names: [\n            \"admin\",\n            \"Guest\",\n        ],\n        operators: [\n            \"append\",\n            \"union\",\n        ],\n        zone: \"System\",\n    },\n});\nexport const powerscaleUserMappingRulesFilter = testUserMappingRules;\n// Returns all of the PowerScale User Mapping Rules.\nconst all = powerscale.getUserMappingRules({});\nexport const powerscaleUserMappingRulesAll = all;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n# Returns a list of PowerScale User Mapping Rules based on names and zone filter block. \ntest_user_mapping_rules = powerscale.get_user_mapping_rules(filter={\n    \"names\": [\n        \"admin\",\n        \"Guest\",\n    ],\n    \"operators\": [\n        \"append\",\n        \"union\",\n    ],\n    \"zone\": \"System\",\n})\npulumi.export(\"powerscaleUserMappingRulesFilter\", test_user_mapping_rules)\n# Returns all of the PowerScale User Mapping Rules.\nall = powerscale.get_user_mapping_rules()\npulumi.export(\"powerscaleUserMappingRulesAll\", all)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n    // Returns a list of PowerScale User Mapping Rules based on names and zone filter block. \n    var testUserMappingRules = Powerscale.GetUserMappingRules.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetUserMappingRulesFilterInputArgs\n        {\n            Names = new[]\n            {\n                \"admin\",\n                \"Guest\",\n            },\n            Operators = new[]\n            {\n                \"append\",\n                \"union\",\n            },\n            Zone = \"System\",\n        },\n    });\n\n    // Returns all of the PowerScale User Mapping Rules.\n    var all = Powerscale.GetUserMappingRules.Invoke();\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleUserMappingRulesFilter\"] = testUserMappingRules,\n        [\"powerscaleUserMappingRulesAll\"] = all,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n\t\t// Returns a list of PowerScale User Mapping Rules based on names and zone filter block.\n\t\ttestUserMappingRules, err := powerscale.LookupUserMappingRules(ctx, &powerscale.LookupUserMappingRulesArgs{\n\t\t\tFilter: powerscale.GetUserMappingRulesFilter{\n\t\t\t\tNames: []string{\n\t\t\t\t\t\"admin\",\n\t\t\t\t\t\"Guest\",\n\t\t\t\t},\n\t\t\t\tOperators: []string{\n\t\t\t\t\t\"append\",\n\t\t\t\t\t\"union\",\n\t\t\t\t},\n\t\t\t\tZone: pulumi.StringRef(\"System\"),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleUserMappingRulesFilter\", testUserMappingRules)\n\t\t// Returns all of the PowerScale User Mapping Rules.\n\t\tall, err := powerscale.LookupUserMappingRules(ctx, &powerscale.LookupUserMappingRulesArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"powerscaleUserMappingRulesAll\", all)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetUserMappingRulesArgs;\nimport com.pulumi.powerscale.inputs.GetUserMappingRulesFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n        // Returns a list of PowerScale User Mapping Rules based on names and zone filter block. \n        final var testUserMappingRules = PowerscaleFunctions.getUserMappingRules(GetUserMappingRulesArgs.builder()\n            .filter(GetUserMappingRulesFilterArgs.builder()\n                .names(                \n                    \"admin\",\n                    \"Guest\")\n                .operators(                \n                    \"append\",\n                    \"union\")\n                .zone(\"System\")\n                .build())\n            .build());\n\n        ctx.export(\"powerscaleUserMappingRulesFilter\", testUserMappingRules);\n        // Returns all of the PowerScale User Mapping Rules.\n        final var all = PowerscaleFunctions.getUserMappingRules(GetUserMappingRulesArgs.builder()\n            .build());\n\n        ctx.export(\"powerscaleUserMappingRulesAll\", all);\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n\n  # Returns a list of PowerScale User Mapping Rules based on names and zone filter block.\n  testUserMappingRules:\n    fn::invoke:\n      function: powerscale:getUserMappingRules\n      arguments:\n        filter:\n          names:\n            - admin\n            - Guest\n          operators:\n            - append\n            - union\n          zone: System\n  # Returns all of the PowerScale User Mapping Rules.\n  all:\n    fn::invoke:\n      function: powerscale:getUserMappingRules\n      arguments: {}\noutputs:\n  # Output value of above block by executing 'terraform output' command.\n  # The user can use the fetched information by the variable data.powerscale_user_mapping_rules.testUserMappingRules\n  powerscaleUserMappingRulesFilter: ${testUserMappingRules}\n  # Output value of above block by executing 'terraform output' command\n  # The user can use the fetched information by the variable data.powerscale_user_mapping_rules.all\n  powerscaleUserMappingRulesAll: ${all}\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getUserMappingRules.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesFilter:getUserMappingRulesFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getUserMappingRules.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesFilter:getUserMappingRulesFilter"},"id":{"description":"User Mapping Rules ID.\n","type":"string"},"userMappingRules":{"description":"Specifies the list of user mapping rules.\n","items":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesUserMappingRule:getUserMappingRulesUserMappingRule"},"type":"array"},"userMappingRulesParameters":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesUserMappingRulesParameters:getUserMappingRulesUserMappingRulesParameters","description":"Specifies the parameters for user mapping rules.\n"}},"required":["id","userMappingRules","userMappingRulesParameters"],"type":"object"}},"powerscale:index/getWritableSnapshot:getWritableSnapshot":{"description":"## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// PowerScale Writable Snapshots allows you to get a list of Writable Snapshots or a Writable Snapshot by its Path which can be added in filters.\n// Returns a list of PowerScale Writable Snapshots \nconst allSnaps = powerscale.getWritableSnapshot({});\n// Returns a the PowerScale Writable Snapshot with given Path\nconst test = powerscale.getWritableSnapshot({\n    filter: {\n        path: \"/ifs/writable_snap\",\n        limit: 5,\n    },\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# PowerScale Writable Snapshots allows you to get a list of Writable Snapshots or a Writable Snapshot by its Path which can be added in filters.\n# Returns a list of PowerScale Writable Snapshots \nall_snaps = powerscale.get_writable_snapshot()\n# Returns a the PowerScale Writable Snapshot with given Path\ntest = powerscale.get_writable_snapshot(filter={\n    \"path\": \"/ifs/writable_snap\",\n    \"limit\": 5,\n})\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // PowerScale Writable Snapshots allows you to get a list of Writable Snapshots or a Writable Snapshot by its Path which can be added in filters.\n    // Returns a list of PowerScale Writable Snapshots \n    var allSnaps = Powerscale.GetWritableSnapshot.Invoke();\n\n    // Returns a the PowerScale Writable Snapshot with given Path\n    var test = Powerscale.GetWritableSnapshot.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetWritableSnapshotFilterInputArgs\n        {\n            Path = \"/ifs/writable_snap\",\n            Limit = 5,\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// PowerScale Writable Snapshots allows you to get a list of Writable Snapshots or a Writable Snapshot by its Path which can be added in filters.\n\t\t// Returns a list of PowerScale Writable Snapshots\n\t\t_, err := powerscale.LookupWritableSnapshot(ctx, &powerscale.LookupWritableSnapshotArgs{}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// Returns a the PowerScale Writable Snapshot with given Path\n\t\t_, err = powerscale.LookupWritableSnapshot(ctx, &powerscale.LookupWritableSnapshotArgs{\n\t\t\tFilter: powerscale.GetWritableSnapshotFilter{\n\t\t\t\tPath:  pulumi.StringRef(\"/ifs/writable_snap\"),\n\t\t\t\tLimit: pulumi.Float64Ref(5),\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetWritableSnapshotArgs;\nimport com.pulumi.powerscale.inputs.GetWritableSnapshotFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // PowerScale Writable Snapshots allows you to get a list of Writable Snapshots or a Writable Snapshot by its Path which can be added in filters.\n        // Returns a list of PowerScale Writable Snapshots \n        final var allSnaps = PowerscaleFunctions.getWritableSnapshot(GetWritableSnapshotArgs.builder()\n            .build());\n\n        // Returns a the PowerScale Writable Snapshot with given Path\n        final var test = PowerscaleFunctions.getWritableSnapshot(GetWritableSnapshotArgs.builder()\n            .filter(GetWritableSnapshotFilterArgs.builder()\n                .path(\"/ifs/writable_snap\")\n                .limit(5)\n                .build())\n            .build());\n\n    }\n}\n```\n```yaml\nvariables:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # PowerScale Writable Snapshots allows you to get a list of Writable Snapshots or a Writable Snapshot by its Path which can be added in filters.\n\n  # Returns a list of PowerScale Writable Snapshots\n  allSnaps:\n    fn::invoke:\n      function: powerscale:getWritableSnapshot\n      arguments: {}\n  # Returns a the PowerScale Writable Snapshot with given Path\n  test:\n    fn::invoke:\n      function: powerscale:getWritableSnapshot\n      arguments:\n        filter:\n          path: /ifs/writable_snap\n          limit: 5\n```\n<!--End PulumiCodeChooser -->\n","inputs":{"description":"A collection of arguments for invoking getWritableSnapshot.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetWritableSnapshotFilter:getWritableSnapshotFilter"}},"type":"object"},"outputs":{"description":"A collection of values returned by getWritableSnapshot.\n","properties":{"filter":{"$ref":"#/types/powerscale:index%2FgetWritableSnapshotFilter:getWritableSnapshotFilter"},"id":{"description":"Identifier\n","type":"string"},"writables":{"items":{"$ref":"#/types/powerscale:index%2FgetWritableSnapshotWritable:getWritableSnapshotWritable"},"type":"array"}},"required":["id","writables"],"type":"object"}},"pulumi:providers:powerscale/terraformConfig":{"description":"This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider.","inputs":{"properties":{"__self__":{"$ref":"#/resources/pulumi:providers:powerscale"}},"required":["__self__"],"type":"object"},"outputs":{"properties":{"result":{"additionalProperties":{"$ref":"pulumi.json#/Any"},"type":"object"}},"required":["result"],"type":"object"}}},"language":{"csharp":{"compatibility":"tfbridge20","liftSingleValueMethodReturns":true,"respectSchemaVersion":true},"go":{"generateExtraInputTypes":true,"importBasePath":"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale","liftSingleValueMethodReturns":true,"respectSchemaVersion":true,"rootPackageName":"powerscale"},"java":{"basePackage":"","buildFiles":"","gradleNexusPublishPluginVersion":"","gradleTest":""},"nodejs":{"compatibility":"tfbridge20","disableUnionOutputTypes":true,"liftSingleValueMethodReturns":true,"packageDescription":"A Pulumi provider dynamically bridged from powerscale.","readme":"> This provider is a derived work of the [Terraform Provider](https://github.com/dell/terraform-provider-powerscale)\n> distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n> please consult the source [`terraform-provider-powerscale` repo](https://github.com/dell/terraform-provider-powerscale/issues).","respectSchemaVersion":true},"python":{"compatibility":"tfbridge20","pyproject":{"enabled":true},"readme":"> This provider is a derived work of the [Terraform Provider](https://github.com/dell/terraform-provider-powerscale)\n> distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n> please consult the source [`terraform-provider-powerscale` repo](https://github.com/dell/terraform-provider-powerscale/issues).","respectSchemaVersion":true}},"meta":{"moduleFormat":"(.*)(?:/[^/]*)"},"name":"powerscale","parameterization":{"baseProvider":{"name":"terraform-provider","version":"1.0.1"},"parameter":"eyJyZW1vdGUiOnsidXJsIjoicmVnaXN0cnkub3BlbnRvZnUub3JnL2RlbGwvcG93ZXJzY2FsZSIsInZlcnNpb24iOiIxLjguMSJ9fQ=="},"provider":{"description":"The provider type for the powerscale package. By default, resources use package-wide configuration\nsettings, however an explicit `Provider` instance may be created and passed during resource\nconstruction to achieve fine-grained programmatic control over provider settings. See the\n[documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.\n","inputProperties":{"authType":{"description":"what should be the auth type, 0 for basic and 1 for session-based. This can also be set using the environment variable POWERSCALE_AUTH_TYPE","type":"number"},"endpoint":{"description":"The API endpoint, ex. https://172.17.177.230:8080. This can also be set using the environment variable POWERSCALE_ENDPOINT","type":"string"},"insecure":{"description":"whether to skip SSL validation. This can also be set using the environment variable POWERSCALE_INSECURE","type":"boolean"},"password":{"description":"The password. This can also be set using the environment variable POWERSCALE_PASSWORD","secret":true,"type":"string"},"timeout":{"description":"specifies a time limit for requests. This can also be set using the environment variable POWERSCALE_TIMEOUT","type":"number"},"username":{"description":"The username. This can also be set using the environment variable POWERSCALE_USERNAME","type":"string"}},"methods":{"terraformConfig":"pulumi:providers:powerscale/terraformConfig"},"properties":{"endpoint":{"description":"The API endpoint, ex. https://172.17.177.230:8080. This can also be set using the environment variable POWERSCALE_ENDPOINT","type":"string"},"password":{"description":"The password. This can also be set using the environment variable POWERSCALE_PASSWORD","secret":true,"type":"string"},"username":{"description":"The username. This can also be set using the environment variable POWERSCALE_USERNAME","type":"string"}},"type":"object"},"publisher":"dell","repository":"https://github.com/dell/terraform-provider-powerscale","resources":{"powerscale:index/accesszone:Accesszone":{"description":"This resource is used to manage the Access Zone entity of PowerScale Array. We can Create, Update and Delete the Access Zone using this resource. We can also import an existing Access Zone from PowerScale array. PowerScale access zones allow you to isolate data and control who can access data in each zone.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update (name, path, custom_auth_providers), Delete and Import\n// After `pulumi up` of this example file it will create a new access zone with the name set in `name` attribute on the PowerScale\n// PowerScale access zones allow you to isolate data and control who can access data in each zone.\nconst zone = new powerscale.Accesszone(\"zone\", {\n    name: \"testAccessZoneSample\",\n    groupnet: \"groupnet0\",\n    path: \"/ifs\",\n    customAuthProviders: [\n        \"localProviderName\",\n        \"lsa-local-provider:testAccessZoneSample\",\n        \"lsa-local-provider:localProviderName\",\n        \"lsa-file-provider:fileProviderName\",\n        \"lsa-activedirectory-provider:adsProviderName\",\n        \"lsa-ldap-provider:testProvider\",\n    ],\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update (name, path, custom_auth_providers), Delete and Import\n# After `pulumi up` of this example file it will create a new access zone with the name set in `name` attribute on the PowerScale\n# PowerScale access zones allow you to isolate data and control who can access data in each zone.\nzone = powerscale.Accesszone(\"zone\",\n    name=\"testAccessZoneSample\",\n    groupnet=\"groupnet0\",\n    path=\"/ifs\",\n    custom_auth_providers=[\n        \"localProviderName\",\n        \"lsa-local-provider:testAccessZoneSample\",\n        \"lsa-local-provider:localProviderName\",\n        \"lsa-file-provider:fileProviderName\",\n        \"lsa-activedirectory-provider:adsProviderName\",\n        \"lsa-ldap-provider:testProvider\",\n    ])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update (name, path, custom_auth_providers), Delete and Import\n    // After `pulumi up` of this example file it will create a new access zone with the name set in `name` attribute on the PowerScale\n    // PowerScale access zones allow you to isolate data and control who can access data in each zone.\n    var zone = new Powerscale.Accesszone(\"zone\", new()\n    {\n        Name = \"testAccessZoneSample\",\n        Groupnet = \"groupnet0\",\n        Path = \"/ifs\",\n        CustomAuthProviders = new[]\n        {\n            \"localProviderName\",\n            \"lsa-local-provider:testAccessZoneSample\",\n            \"lsa-local-provider:localProviderName\",\n            \"lsa-file-provider:fileProviderName\",\n            \"lsa-activedirectory-provider:adsProviderName\",\n            \"lsa-ldap-provider:testProvider\",\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update (name, path, custom_auth_providers), Delete and Import\n\t\t// After `pulumi up` of this example file it will create a new access zone with the name set in `name` attribute on the PowerScale\n\t\t// PowerScale access zones allow you to isolate data and control who can access data in each zone.\n\t\t_, err := powerscale.NewAccesszone(ctx, \"zone\", &powerscale.AccesszoneArgs{\n\t\t\tName:     pulumi.String(\"testAccessZoneSample\"),\n\t\t\tGroupnet: pulumi.String(\"groupnet0\"),\n\t\t\tPath:     pulumi.String(\"/ifs\"),\n\t\t\tCustomAuthProviders: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"localProviderName\"),\n\t\t\t\tpulumi.String(\"lsa-local-provider:testAccessZoneSample\"),\n\t\t\t\tpulumi.String(\"lsa-local-provider:localProviderName\"),\n\t\t\t\tpulumi.String(\"lsa-file-provider:fileProviderName\"),\n\t\t\t\tpulumi.String(\"lsa-activedirectory-provider:adsProviderName\"),\n\t\t\t\tpulumi.String(\"lsa-ldap-provider:testProvider\"),\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Accesszone;\nimport com.pulumi.powerscale.AccesszoneArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update (name, path, custom_auth_providers), Delete and Import\n        // After `pulumi up` of this example file it will create a new access zone with the name set in `name` attribute on the PowerScale\n        // PowerScale access zones allow you to isolate data and control who can access data in each zone.\n        var zone = new Accesszone(\"zone\", AccesszoneArgs.builder()\n            .name(\"testAccessZoneSample\")\n            .groupnet(\"groupnet0\")\n            .path(\"/ifs\")\n            .customAuthProviders(            \n                \"localProviderName\",\n                \"lsa-local-provider:testAccessZoneSample\",\n                \"lsa-local-provider:localProviderName\",\n                \"lsa-file-provider:fileProviderName\",\n                \"lsa-activedirectory-provider:adsProviderName\",\n                \"lsa-ldap-provider:testProvider\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update (name, path, custom_auth_providers), Delete and Import\n  # After `pulumi up` of this example file it will create a new access zone with the name set in `name` attribute on the PowerScale\n\n  # PowerScale access zones allow you to isolate data and control who can access data in each zone.\n  zone:\n    type: powerscale:Accesszone\n    properties:\n      name: testAccessZoneSample\n      groupnet: groupnet0\n      path: /ifs\n      customAuthProviders:\n        - localProviderName\n        - lsa-local-provider:testAccessZoneSample\n        - lsa-local-provider:localProviderName\n        - lsa-file-provider:fileProviderName\n        - lsa-activedirectory-provider:adsProviderName\n        - lsa-ldap-provider:testProvider\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/accesszone:Accesszone zone <id>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/accesszone:Accesszone zone access_zone\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"customAuthProviders":{"description":"An optional parameter which adds new<span pulumi-lang-nodejs=\" authProviders \" pulumi-lang-dotnet=\" AuthProviders \" pulumi-lang-go=\" authProviders \" pulumi-lang-python=\" auth_providers \" pulumi-lang-yaml=\" authProviders \" pulumi-lang-java=\" authProviders \"> auth_providers </span>to the access zone. A provider name should be of the form '[provider-type:]provider-name', the provider-type defaults to 'lsa-local-provider'.\n","items":{"type":"string"},"type":"array"},"groupnet":{"description":"Groupnet identifier. Cannot be updated.\n","type":"string"},"name":{"description":"Specifies the access zone name.\n","type":"string"},"path":{"description":"Specifies the access zone base directory path.\n","type":"string"}},"properties":{"alternateSystemProvider":{"description":"Specifies an alternate system provider.\n","type":"string"},"authProviders":{"description":"Specifies the list of authentication providers available on this access zone.\n","items":{"type":"string"},"type":"array"},"cacheEntryExpiry":{"description":"Specifies amount of time in seconds to cache a user/group.\n","type":"number"},"createPath":{"description":"Determines if a path is created when a path does not exist.\n","type":"boolean"},"customAuthProviders":{"description":"An optional parameter which adds new<span pulumi-lang-nodejs=\" authProviders \" pulumi-lang-dotnet=\" AuthProviders \" pulumi-lang-go=\" authProviders \" pulumi-lang-python=\" auth_providers \" pulumi-lang-yaml=\" authProviders \" pulumi-lang-java=\" authProviders \"> auth_providers </span>to the access zone. A provider name should be of the form '[provider-type:]provider-name', the provider-type defaults to 'lsa-local-provider'.\n","items":{"type":"string"},"type":"array"},"groupnet":{"description":"Groupnet identifier. Cannot be updated.\n","type":"string"},"homeDirectoryUmask":{"description":"Specifies the permissions set on automatically created user home directories.\n","type":"number"},"ifsRestricteds":{"description":"Specifies a list of users and groups that have read and write access to /ifs.\n","items":{"$ref":"#/types/powerscale:index%2FAccesszoneIfsRestricted:AccesszoneIfsRestricted"},"type":"array"},"mapUntrusted":{"description":"Maps untrusted domains to this NetBIOS domain during authentication.\n","type":"string"},"name":{"description":"Specifies the access zone name.\n","type":"string"},"negativeCacheEntryExpiry":{"description":"Specifies number of seconds the negative cache entry is valid.\n","type":"number"},"netbiosName":{"description":"Specifies the NetBIOS name.\n","type":"string"},"path":{"description":"Specifies the access zone base directory path.\n","type":"string"},"skeletonDirectory":{"description":"Specifies the skeleton directory that is used for user home directories.\n","type":"string"},"system":{"description":"True if the access zone is built-in.\n","type":"boolean"},"systemProvider":{"description":"Specifies the system provider for the access zone.\n","type":"string"},"userMappingRules":{"description":"Specifies the current ID mapping rules.\n","items":{"type":"string"},"type":"array"},"zoneId":{"description":"Specifies the access zone ID on the system.\n","type":"number"}},"required":["alternateSystemProvider","authProviders","cacheEntryExpiry","createPath","customAuthProviders","groupnet","homeDirectoryUmask","ifsRestricteds","mapUntrusted","name","negativeCacheEntryExpiry","netbiosName","path","skeletonDirectory","system","systemProvider","userMappingRules","zoneId"],"requiredInputs":["groupnet","path"],"stateInputs":{"description":"Input properties used for looking up and filtering Accesszone resources.\n","properties":{"alternateSystemProvider":{"description":"Specifies an alternate system provider.\n","type":"string"},"authProviders":{"description":"Specifies the list of authentication providers available on this access zone.\n","items":{"type":"string"},"type":"array"},"cacheEntryExpiry":{"description":"Specifies amount of time in seconds to cache a user/group.\n","type":"number"},"createPath":{"description":"Determines if a path is created when a path does not exist.\n","type":"boolean"},"customAuthProviders":{"description":"An optional parameter which adds new<span pulumi-lang-nodejs=\" authProviders \" pulumi-lang-dotnet=\" AuthProviders \" pulumi-lang-go=\" authProviders \" pulumi-lang-python=\" auth_providers \" pulumi-lang-yaml=\" authProviders \" pulumi-lang-java=\" authProviders \"> auth_providers </span>to the access zone. A provider name should be of the form '[provider-type:]provider-name', the provider-type defaults to 'lsa-local-provider'.\n","items":{"type":"string"},"type":"array"},"groupnet":{"description":"Groupnet identifier. Cannot be updated.\n","type":"string"},"homeDirectoryUmask":{"description":"Specifies the permissions set on automatically created user home directories.\n","type":"number"},"ifsRestricteds":{"description":"Specifies a list of users and groups that have read and write access to /ifs.\n","items":{"$ref":"#/types/powerscale:index%2FAccesszoneIfsRestricted:AccesszoneIfsRestricted"},"type":"array"},"mapUntrusted":{"description":"Maps untrusted domains to this NetBIOS domain during authentication.\n","type":"string"},"name":{"description":"Specifies the access zone name.\n","type":"string"},"negativeCacheEntryExpiry":{"description":"Specifies number of seconds the negative cache entry is valid.\n","type":"number"},"netbiosName":{"description":"Specifies the NetBIOS name.\n","type":"string"},"path":{"description":"Specifies the access zone base directory path.\n","type":"string"},"skeletonDirectory":{"description":"Specifies the skeleton directory that is used for user home directories.\n","type":"string"},"system":{"description":"True if the access zone is built-in.\n","type":"boolean"},"systemProvider":{"description":"Specifies the system provider for the access zone.\n","type":"string"},"userMappingRules":{"description":"Specifies the current ID mapping rules.\n","items":{"type":"string"},"type":"array"},"zoneId":{"description":"Specifies the access zone ID on the system.\n","type":"number"}},"type":"object"},"type":"object"},"powerscale:index/aclsettings:Aclsettings":{"description":"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.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load ACL Settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load ACL Settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting ACL Settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.\nconst exampleAclSettings = new powerscale.Aclsettings(\"example_acl_settings\", {});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load ACL Settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load ACL Settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting ACL Settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.\nexample_acl_settings = powerscale.Aclsettings(\"example_acl_settings\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load ACL Settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load ACL Settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting ACL Settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.\n    var exampleAclSettings = new Powerscale.Aclsettings(\"example_acl_settings\");\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load ACL Settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load ACL Settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting ACL Settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.\n\t\t_, err := powerscale.NewAclsettings(ctx, \"example_acl_settings\", nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Aclsettings;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load ACL Settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load ACL Settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting ACL Settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.\n        var exampleAclSettings = new Aclsettings(\"exampleAclSettings\");\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load ACL Settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load ACL Settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting ACL Settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale ACL Settings allow you to manage file and directory permissions, referred to as access rights.\n  exampleAclSettings:\n    type: powerscale:Aclsettings\n    name: example_acl_settings\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/aclsettings:Aclsettings example_acl_settings <anyString>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/aclsettings:Aclsettings example_acl_settings anyString\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"access":{"description":"Access checks (chmod, chown). Options: unix, windows\n","type":"string"},"calcmode":{"description":"Displayed mode bits. Options: approx, 777\n","type":"string"},"calcmodeGroup":{"description":"Approximate group mode bits when ACL exists. Options: group*aces, group*only\n","type":"string"},"calcmodeOwner":{"description":"Approximate owner mode bits when ACL exists. Options: owner*aces, owner*only\n","type":"string"},"calcmodeTraverse":{"description":"Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore\n","type":"string"},"chmod":{"description":"chmod on files with existing ACLs. Options: remove, replace, replace*users*and*groups, merge*with*ugo*priority, merge, deny, ignore\n","type":"string"},"chmod007":{"description":"chmod (007) on files with existing ACLs. Options: default, remove\n","type":"string"},"chmodInheritable":{"description":"ACLs created on directories by UNIX chmod. Options: yes, no\n","type":"string"},"chown":{"description":"chown/chgrp on files with existing ACLs. Options: owner*group*and*acl, owner*group_only, ignore\n","type":"string"},"createOverSmb":{"description":"ACL creation over SMB. Options: allow, disallow\n","type":"string"},"dosAttr":{"description":"Read only DOS attribute. Options: deny*smb, deny*smb*and*nfs\n","type":"string"},"groupOwnerInheritance":{"description":"Group owner inheritance. Options: native, parent, creator\n","type":"string"},"rwx":{"description":"Treatment of 'rwx' permissions. Options: retain, full_control\n","type":"string"},"syntheticDenies":{"description":"Synthetic 'deny' ACEs. Options: none, remove\n","type":"string"},"utimes":{"description":"Access check (utimes). Options: only*owner, owner*and_write\n","type":"string"}},"properties":{"access":{"description":"Access checks (chmod, chown). Options: unix, windows\n","type":"string"},"calcmode":{"description":"Displayed mode bits. Options: approx, 777\n","type":"string"},"calcmodeGroup":{"description":"Approximate group mode bits when ACL exists. Options: group*aces, group*only\n","type":"string"},"calcmodeOwner":{"description":"Approximate owner mode bits when ACL exists. Options: owner*aces, owner*only\n","type":"string"},"calcmodeTraverse":{"description":"Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore\n","type":"string"},"chmod":{"description":"chmod on files with existing ACLs. Options: remove, replace, replace*users*and*groups, merge*with*ugo*priority, merge, deny, ignore\n","type":"string"},"chmod007":{"description":"chmod (007) on files with existing ACLs. Options: default, remove\n","type":"string"},"chmodInheritable":{"description":"ACLs created on directories by UNIX chmod. Options: yes, no\n","type":"string"},"chown":{"description":"chown/chgrp on files with existing ACLs. Options: owner*group*and*acl, owner*group_only, ignore\n","type":"string"},"createOverSmb":{"description":"ACL creation over SMB. Options: allow, disallow\n","type":"string"},"dosAttr":{"description":"Read only DOS attribute. Options: deny*smb, deny*smb*and*nfs\n","type":"string"},"groupOwnerInheritance":{"description":"Group owner inheritance. Options: native, parent, creator\n","type":"string"},"rwx":{"description":"Treatment of 'rwx' permissions. Options: retain, full_control\n","type":"string"},"syntheticDenies":{"description":"Synthetic 'deny' ACEs. Options: none, remove\n","type":"string"},"utimes":{"description":"Access check (utimes). Options: only*owner, owner*and_write\n","type":"string"}},"required":["access","calcmode","calcmodeGroup","calcmodeOwner","calcmodeTraverse","chmod","chmod007","chmodInheritable","chown","createOverSmb","dosAttr","groupOwnerInheritance","rwx","syntheticDenies","utimes"],"stateInputs":{"description":"Input properties used for looking up and filtering Aclsettings resources.\n","properties":{"access":{"description":"Access checks (chmod, chown). Options: unix, windows\n","type":"string"},"calcmode":{"description":"Displayed mode bits. Options: approx, 777\n","type":"string"},"calcmodeGroup":{"description":"Approximate group mode bits when ACL exists. Options: group*aces, group*only\n","type":"string"},"calcmodeOwner":{"description":"Approximate owner mode bits when ACL exists. Options: owner*aces, owner*only\n","type":"string"},"calcmodeTraverse":{"description":"Require traverse rights in order to traverse directories with existing ACLs. Options: require, ignore\n","type":"string"},"chmod":{"description":"chmod on files with existing ACLs. Options: remove, replace, replace*users*and*groups, merge*with*ugo*priority, merge, deny, ignore\n","type":"string"},"chmod007":{"description":"chmod (007) on files with existing ACLs. Options: default, remove\n","type":"string"},"chmodInheritable":{"description":"ACLs created on directories by UNIX chmod. Options: yes, no\n","type":"string"},"chown":{"description":"chown/chgrp on files with existing ACLs. Options: owner*group*and*acl, owner*group_only, ignore\n","type":"string"},"createOverSmb":{"description":"ACL creation over SMB. Options: allow, disallow\n","type":"string"},"dosAttr":{"description":"Read only DOS attribute. Options: deny*smb, deny*smb*and*nfs\n","type":"string"},"groupOwnerInheritance":{"description":"Group owner inheritance. Options: native, parent, creator\n","type":"string"},"rwx":{"description":"Treatment of 'rwx' permissions. Options: retain, full_control\n","type":"string"},"syntheticDenies":{"description":"Synthetic 'deny' ACEs. Options: none, remove\n","type":"string"},"utimes":{"description":"Access check (utimes). Options: only*owner, owner*and_write\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/adsprovider:Adsprovider":{"description":"This resource is used to manage the ADS provider entity of PowerScale Array. We can Create, Update and Delete the ADS provider using this resource. We can also import an existing ADS provider from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file for the first time, you will create an ADS provider on the PowerScale\n// PowerScale ADS provider allows you to authenticate users and groups\nconst adsTest = new powerscale.Adsprovider(\"ads_test\", {\n    name: \"ADS.PROVIDER.EXAMPLE.COM\",\n    user: \"admin\",\n    password: \"password\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file for the first time, you will create an ADS provider on the PowerScale\n# PowerScale ADS provider allows you to authenticate users and groups\nads_test = powerscale.Adsprovider(\"ads_test\",\n    name=\"ADS.PROVIDER.EXAMPLE.COM\",\n    user=\"admin\",\n    password=\"password\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file for the first time, you will create an ADS provider on the PowerScale\n    // PowerScale ADS provider allows you to authenticate users and groups\n    var adsTest = new Powerscale.Adsprovider(\"ads_test\", new()\n    {\n        Name = \"ADS.PROVIDER.EXAMPLE.COM\",\n        User = \"admin\",\n        Password = \"password\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file for the first time, you will create an ADS provider on the PowerScale\n\t\t// PowerScale ADS provider allows you to authenticate users and groups\n\t\t_, err := powerscale.NewAdsprovider(ctx, \"ads_test\", &powerscale.AdsproviderArgs{\n\t\t\tName:     pulumi.String(\"ADS.PROVIDER.EXAMPLE.COM\"),\n\t\t\tUser:     pulumi.String(\"admin\"),\n\t\t\tPassword: pulumi.String(\"password\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Adsprovider;\nimport com.pulumi.powerscale.AdsproviderArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file for the first time, you will create an ADS provider on the PowerScale\n        // PowerScale ADS provider allows you to authenticate users and groups\n        var adsTest = new Adsprovider(\"adsTest\", AdsproviderArgs.builder()\n            .name(\"ADS.PROVIDER.EXAMPLE.COM\")\n            .user(\"admin\")\n            .password(\"password\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file for the first time, you will create an ADS provider on the PowerScale\n\n  # PowerScale ADS provider allows you to authenticate users and groups\n  adsTest:\n    type: powerscale:Adsprovider\n    name: ads_test\n    properties:\n      name: ADS.PROVIDER.EXAMPLE.COM\n      user: admin\n      password: password\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/adsprovider:Adsprovider ads_test <name>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/adsprovider:Adsprovider ads_test ads_id\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"adsproviderId":{"description":"Specifies the ID of the Active Directory provider instance.\n","type":"string"},"allocateGids":{"description":"Allocates an ID for an unmapped Active Directory (ADS) group. ADS groups without GIDs can be proactively assigned a GID by the ID mapper. If the ID mapper option is disabled, GIDs are not proactively assigned, and when a primary group for a user does not include a GID, the system may allocate one.\n","type":"boolean"},"allocateUids":{"description":"Allocates a user ID for an unmapped Active Directory (ADS) user. ADS users without UIDs can be proactively assigned a UID by the ID mapper. IF the ID mapper option is disabled, UIDs are not proactively assigned, and when an identify for a user does not include a UID, the system may allocate one.\n","type":"boolean"},"assumeDefaultDomain":{"description":"Enables lookup of unqualified user names in the primary domain.\n","type":"boolean"},"authentication":{"description":"Enables authentication and identity management through the authentication provider.\n","type":"boolean"},"checkDuplicates":{"description":"Check for duplicate SPNs registered in Active Directory.\n","type":"boolean"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"controllerTime":{"description":"Specifies the current time for the domain controllers.\n","type":"number"},"createHomeDirectory":{"description":"Automatically creates a home directory on the first login.\n","type":"boolean"},"dnsDomain":{"description":"Specifies the DNS search domain. Set this parameter if the DNS search domain has a unique name or address.\n","type":"string"},"domainController":{"description":"Specifies the domain controller to which the authentication service should send requests\n","type":"string"},"domainOfflineAlerts":{"description":"Sends an alert if the domain goes offline.\n","type":"boolean"},"extraExpectedSpns":{"description":"List of additional SPNs to expect beyond what automatic checking routines might find\n","items":{"type":"string"},"type":"array"},"findableGroups":{"description":"Sets list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Sets list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"groupnet":{"description":"Groupnet identifier.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"ignoreAllTrusts":{"description":"If set to true, ignores all trusted domains.\n","type":"boolean"},"ignoredTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to false.\n","items":{"type":"string"},"type":"array"},"includeTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to true.\n","items":{"type":"string"},"type":"array"},"instance":{"description":"Specifies Active Directory provider instance.\n","type":"string"},"kerberosHdfsSpn":{"description":"Determines if connecting through HDFS with Kerberos.\n","type":"boolean"},"kerberosNfsSpn":{"description":"Determines if connecting through NFS with Kerberos.\n","type":"boolean"},"ldapSignAndSeal":{"description":"Enables encryption and signing on LDAP requests.\n","type":"boolean"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"lookupDomains":{"description":"Limits user and group lookups to the specified domains.\n","items":{"type":"string"},"type":"array"},"lookupGroups":{"description":"Looks up AD groups in other providers before allocating a group ID.\n","type":"boolean"},"lookupNormalizeGroups":{"description":"Normalizes AD group names to lowercase before look up.\n","type":"boolean"},"lookupNormalizeUsers":{"description":"Normalize AD user names to lowercase before look up.\n","type":"boolean"},"lookupUsers":{"description":"Looks up AD users in other providers before allocating a user ID.\n","type":"boolean"},"machineAccount":{"description":"Specifies the machine account name when creating a SAM account with Active Directory.\n","type":"string"},"machinePasswordChanges":{"description":"Enables periodic changes of the machine password for security.\n","type":"boolean"},"machinePasswordLifespan":{"description":"Sets maximum age of a password in seconds.\n","type":"number"},"name":{"description":"Specifies the Active Directory provider name.\n","type":"string"},"nodeDcAffinity":{"description":"Specifies the domain controller for which the node has affinity.\n","type":"string"},"nodeDcAffinityTimeout":{"description":"Specifies the timeout for the domain controller for which the local node has affinity.\n","type":"number"},"nssEnumeration":{"description":"Enables the Active Directory provider to respond to 'getpwent' and 'getgrent' requests.\n","type":"boolean"},"organizationalUnit":{"description":"Specifies the organizational unit.\n","type":"string"},"password":{"description":"Specifies the password used during domain join.\n","secret":true,"type":"string"},"resetSchannel":{"description":"Resets the secure channel to the primary domain.\n","type":"boolean"},"restrictFindable":{"description":"Check the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"rpcCallTimeout":{"description":"The maximum amount of time (in seconds) an RPC call to Active Directory is allowed to take.\n","type":"number"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"serverRetryLimit":{"description":"The number of retries attempted when a call to Active Directory fails due to network error.\n","type":"number"},"sfuSupport":{"description":"Specifies whether to support RFC 2307 attributes on ADS domain controllers.\n","type":"string"},"spns":{"description":"Currently configured SPNs.\n","items":{"type":"string"},"type":"array"},"storeSfuMappings":{"description":"Stores SFU mappings permanently in the ID mapper.\n","type":"boolean"},"unfindableGroups":{"description":"Specifies groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"user":{"description":"Specifies the user name that has permission to join a machine to the given domain.\n","type":"string"}},"properties":{"adsproviderId":{"description":"Specifies the ID of the Active Directory provider instance.\n","type":"string"},"allocateGids":{"description":"Allocates an ID for an unmapped Active Directory (ADS) group. ADS groups without GIDs can be proactively assigned a GID by the ID mapper. If the ID mapper option is disabled, GIDs are not proactively assigned, and when a primary group for a user does not include a GID, the system may allocate one.\n","type":"boolean"},"allocateUids":{"description":"Allocates a user ID for an unmapped Active Directory (ADS) user. ADS users without UIDs can be proactively assigned a UID by the ID mapper. IF the ID mapper option is disabled, UIDs are not proactively assigned, and when an identify for a user does not include a UID, the system may allocate one.\n","type":"boolean"},"assumeDefaultDomain":{"description":"Enables lookup of unqualified user names in the primary domain.\n","type":"boolean"},"authentication":{"description":"Enables authentication and identity management through the authentication provider.\n","type":"boolean"},"checkDuplicates":{"description":"Check for duplicate SPNs registered in Active Directory.\n","type":"boolean"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"controllerTime":{"description":"Specifies the current time for the domain controllers.\n","type":"number"},"createHomeDirectory":{"description":"Automatically creates a home directory on the first login.\n","type":"boolean"},"dnsDomain":{"description":"Specifies the DNS search domain. Set this parameter if the DNS search domain has a unique name or address.\n","type":"string"},"domainController":{"description":"Specifies the domain controller to which the authentication service should send requests\n","type":"string"},"domainOfflineAlerts":{"description":"Sends an alert if the domain goes offline.\n","type":"boolean"},"dupSpns":{"description":"Get duplicate SPNs in the provider domain\n","items":{"type":"string"},"type":"array"},"extraExpectedSpns":{"description":"List of additional SPNs to expect beyond what automatic checking routines might find\n","items":{"type":"string"},"type":"array"},"findableGroups":{"description":"Sets list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Sets list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"forest":{"description":"Specifies the Active Directory forest.\n","type":"string"},"groupnet":{"description":"Groupnet identifier.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"hostname":{"description":"Specifies the fully qualified hostname stored in the machine account.\n","type":"string"},"ignoreAllTrusts":{"description":"If set to true, ignores all trusted domains.\n","type":"boolean"},"ignoredTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to false.\n","items":{"type":"string"},"type":"array"},"includeTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to true.\n","items":{"type":"string"},"type":"array"},"instance":{"description":"Specifies Active Directory provider instance.\n","type":"string"},"kerberosHdfsSpn":{"description":"Determines if connecting through HDFS with Kerberos.\n","type":"boolean"},"kerberosNfsSpn":{"description":"Determines if connecting through NFS with Kerberos.\n","type":"boolean"},"ldapSignAndSeal":{"description":"Enables encryption and signing on LDAP requests.\n","type":"boolean"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"lookupDomains":{"description":"Limits user and group lookups to the specified domains.\n","items":{"type":"string"},"type":"array"},"lookupGroups":{"description":"Looks up AD groups in other providers before allocating a group ID.\n","type":"boolean"},"lookupNormalizeGroups":{"description":"Normalizes AD group names to lowercase before look up.\n","type":"boolean"},"lookupNormalizeUsers":{"description":"Normalize AD user names to lowercase before look up.\n","type":"boolean"},"lookupUsers":{"description":"Looks up AD users in other providers before allocating a user ID.\n","type":"boolean"},"machineAccount":{"description":"Specifies the machine account name when creating a SAM account with Active Directory.\n","type":"string"},"machinePasswordChanges":{"description":"Enables periodic changes of the machine password for security.\n","type":"boolean"},"machinePasswordLifespan":{"description":"Sets maximum age of a password in seconds.\n","type":"number"},"name":{"description":"Specifies the Active Directory provider name.\n","type":"string"},"netbiosDomain":{"description":"Specifies the NetBIOS domain name associated with the machine account.\n","type":"string"},"nodeDcAffinity":{"description":"Specifies the domain controller for which the node has affinity.\n","type":"string"},"nodeDcAffinityTimeout":{"description":"Specifies the timeout for the domain controller for which the local node has affinity.\n","type":"number"},"nssEnumeration":{"description":"Enables the Active Directory provider to respond to 'getpwent' and 'getgrent' requests.\n","type":"boolean"},"organizationalUnit":{"description":"Specifies the organizational unit.\n","type":"string"},"password":{"description":"Specifies the password used during domain join.\n","secret":true,"type":"string"},"primaryDomain":{"description":"Specifies the AD domain to which the provider is joined.\n","type":"string"},"recommendedSpns":{"description":"Configuration recommended SPNs.\n","items":{"type":"string"},"type":"array"},"resetSchannel":{"description":"Resets the secure channel to the primary domain.\n","type":"boolean"},"restrictFindable":{"description":"Check the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"rpcCallTimeout":{"description":"The maximum amount of time (in seconds) an RPC call to Active Directory is allowed to take.\n","type":"number"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"serverRetryLimit":{"description":"The number of retries attempted when a call to Active Directory fails due to network error.\n","type":"number"},"sfuSupport":{"description":"Specifies whether to support RFC 2307 attributes on ADS domain controllers.\n","type":"string"},"site":{"description":"Specifies the site for the Active Directory.\n","type":"string"},"spns":{"description":"Currently configured SPNs.\n","items":{"type":"string"},"type":"array"},"status":{"description":"Specifies the status of the provider.\n","type":"string"},"storeSfuMappings":{"description":"Stores SFU mappings permanently in the ID mapper.\n","type":"boolean"},"system":{"description":"If set to true, indicates that this provider instance was created by OneFS and cannot be removed.\n","type":"boolean"},"unfindableGroups":{"description":"Specifies groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"user":{"description":"Specifies the user name that has permission to join a machine to the given domain.\n","type":"string"},"zoneName":{"description":"Specifies the name of the access zone in which this provider was created.\n","type":"string"}},"required":["adsproviderId","allocateGids","allocateUids","assumeDefaultDomain","authentication","checkOnlineInterval","controllerTime","createHomeDirectory","domainOfflineAlerts","dupSpns","extraExpectedSpns","findableGroups","findableUsers","forest","groupnet","homeDirectoryTemplate","hostname","ignoreAllTrusts","ignoredTrustedDomains","includeTrustedDomains","ldapSignAndSeal","loginShell","lookupDomains","lookupGroups","lookupNormalizeGroups","lookupNormalizeUsers","lookupUsers","machineAccount","machinePasswordChanges","machinePasswordLifespan","name","netbiosDomain","nodeDcAffinity","nodeDcAffinityTimeout","nssEnumeration","password","primaryDomain","recommendedSpns","restrictFindable","rpcCallTimeout","serverRetryLimit","sfuSupport","site","spns","status","storeSfuMappings","system","unfindableGroups","unfindableUsers","user","zoneName"],"requiredInputs":["password","user"],"stateInputs":{"description":"Input properties used for looking up and filtering Adsprovider resources.\n","properties":{"adsproviderId":{"description":"Specifies the ID of the Active Directory provider instance.\n","type":"string"},"allocateGids":{"description":"Allocates an ID for an unmapped Active Directory (ADS) group. ADS groups without GIDs can be proactively assigned a GID by the ID mapper. If the ID mapper option is disabled, GIDs are not proactively assigned, and when a primary group for a user does not include a GID, the system may allocate one.\n","type":"boolean"},"allocateUids":{"description":"Allocates a user ID for an unmapped Active Directory (ADS) user. ADS users without UIDs can be proactively assigned a UID by the ID mapper. IF the ID mapper option is disabled, UIDs are not proactively assigned, and when an identify for a user does not include a UID, the system may allocate one.\n","type":"boolean"},"assumeDefaultDomain":{"description":"Enables lookup of unqualified user names in the primary domain.\n","type":"boolean"},"authentication":{"description":"Enables authentication and identity management through the authentication provider.\n","type":"boolean"},"checkDuplicates":{"description":"Check for duplicate SPNs registered in Active Directory.\n","type":"boolean"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"controllerTime":{"description":"Specifies the current time for the domain controllers.\n","type":"number"},"createHomeDirectory":{"description":"Automatically creates a home directory on the first login.\n","type":"boolean"},"dnsDomain":{"description":"Specifies the DNS search domain. Set this parameter if the DNS search domain has a unique name or address.\n","type":"string"},"domainController":{"description":"Specifies the domain controller to which the authentication service should send requests\n","type":"string"},"domainOfflineAlerts":{"description":"Sends an alert if the domain goes offline.\n","type":"boolean"},"dupSpns":{"description":"Get duplicate SPNs in the provider domain\n","items":{"type":"string"},"type":"array"},"extraExpectedSpns":{"description":"List of additional SPNs to expect beyond what automatic checking routines might find\n","items":{"type":"string"},"type":"array"},"findableGroups":{"description":"Sets list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Sets list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"forest":{"description":"Specifies the Active Directory forest.\n","type":"string"},"groupnet":{"description":"Groupnet identifier.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"hostname":{"description":"Specifies the fully qualified hostname stored in the machine account.\n","type":"string"},"ignoreAllTrusts":{"description":"If set to true, ignores all trusted domains.\n","type":"boolean"},"ignoredTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to false.\n","items":{"type":"string"},"type":"array"},"includeTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to true.\n","items":{"type":"string"},"type":"array"},"instance":{"description":"Specifies Active Directory provider instance.\n","type":"string"},"kerberosHdfsSpn":{"description":"Determines if connecting through HDFS with Kerberos.\n","type":"boolean"},"kerberosNfsSpn":{"description":"Determines if connecting through NFS with Kerberos.\n","type":"boolean"},"ldapSignAndSeal":{"description":"Enables encryption and signing on LDAP requests.\n","type":"boolean"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"lookupDomains":{"description":"Limits user and group lookups to the specified domains.\n","items":{"type":"string"},"type":"array"},"lookupGroups":{"description":"Looks up AD groups in other providers before allocating a group ID.\n","type":"boolean"},"lookupNormalizeGroups":{"description":"Normalizes AD group names to lowercase before look up.\n","type":"boolean"},"lookupNormalizeUsers":{"description":"Normalize AD user names to lowercase before look up.\n","type":"boolean"},"lookupUsers":{"description":"Looks up AD users in other providers before allocating a user ID.\n","type":"boolean"},"machineAccount":{"description":"Specifies the machine account name when creating a SAM account with Active Directory.\n","type":"string"},"machinePasswordChanges":{"description":"Enables periodic changes of the machine password for security.\n","type":"boolean"},"machinePasswordLifespan":{"description":"Sets maximum age of a password in seconds.\n","type":"number"},"name":{"description":"Specifies the Active Directory provider name.\n","type":"string"},"netbiosDomain":{"description":"Specifies the NetBIOS domain name associated with the machine account.\n","type":"string"},"nodeDcAffinity":{"description":"Specifies the domain controller for which the node has affinity.\n","type":"string"},"nodeDcAffinityTimeout":{"description":"Specifies the timeout for the domain controller for which the local node has affinity.\n","type":"number"},"nssEnumeration":{"description":"Enables the Active Directory provider to respond to 'getpwent' and 'getgrent' requests.\n","type":"boolean"},"organizationalUnit":{"description":"Specifies the organizational unit.\n","type":"string"},"password":{"description":"Specifies the password used during domain join.\n","secret":true,"type":"string"},"primaryDomain":{"description":"Specifies the AD domain to which the provider is joined.\n","type":"string"},"recommendedSpns":{"description":"Configuration recommended SPNs.\n","items":{"type":"string"},"type":"array"},"resetSchannel":{"description":"Resets the secure channel to the primary domain.\n","type":"boolean"},"restrictFindable":{"description":"Check the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"rpcCallTimeout":{"description":"The maximum amount of time (in seconds) an RPC call to Active Directory is allowed to take.\n","type":"number"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"serverRetryLimit":{"description":"The number of retries attempted when a call to Active Directory fails due to network error.\n","type":"number"},"sfuSupport":{"description":"Specifies whether to support RFC 2307 attributes on ADS domain controllers.\n","type":"string"},"site":{"description":"Specifies the site for the Active Directory.\n","type":"string"},"spns":{"description":"Currently configured SPNs.\n","items":{"type":"string"},"type":"array"},"status":{"description":"Specifies the status of the provider.\n","type":"string"},"storeSfuMappings":{"description":"Stores SFU mappings permanently in the ID mapper.\n","type":"boolean"},"system":{"description":"If set to true, indicates that this provider instance was created by OneFS and cannot be removed.\n","type":"boolean"},"unfindableGroups":{"description":"Specifies groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"user":{"description":"Specifies the user name that has permission to join a machine to the given domain.\n","type":"string"},"zoneName":{"description":"Specifies the name of the access zone in which this provider was created.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/clusterEmail:ClusterEmail":{"description":"This resource is used to manage the Cluster Email Settings entity of PowerScale Array. PowerScale Cluster Email Settings provide the ability to configure email settings on the cluster.We can Create, Update and Delete the Cluster Email Settings using this resource. We can also import existing Cluster Email Settings from PowerScale array. Note that, Cluster Email Settings is the native functionality of PowerScale. When creating the resource, we actually load Cluster Email Settings from PowerScale to the resource state.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n// terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n// For more information, Please check the terraform state file.\nconst test = new powerscale.ClusterEmail(\"test\", {settings: {}});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n# terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n# For more information, Please check the terraform state file.\ntest = powerscale.ClusterEmail(\"test\", settings={})\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n    // terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    var test = new Powerscale.ClusterEmail(\"test\", new()\n    {\n        Settings = null,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n\t\t// terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t_, err := powerscale.NewClusterEmail(ctx, \"test\", &powerscale.ClusterEmailArgs{\n\t\t\tSettings: &powerscale.ClusterEmailSettingsArgs{},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.ClusterEmail;\nimport com.pulumi.powerscale.ClusterEmailArgs;\nimport com.pulumi.powerscale.inputs.ClusterEmailSettingsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n        // terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        var test = new ClusterEmail(\"test\", ClusterEmailArgs.builder()\n            .settings(ClusterEmailSettingsArgs.builder()\n                .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n  # terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n  # For more information, Please check the terraform state file.\n  test:\n    type: powerscale:ClusterEmail\n    properties:\n      settings: {}\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/clusterEmail:ClusterEmail email <anystring>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/clusterEmail:ClusterEmail email cluster_email\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"settings":{"$ref":"#/types/powerscale:index%2FClusterEmailSettings:ClusterEmailSettings","description":"Cluster email notification settings.\n"}},"properties":{"settings":{"$ref":"#/types/powerscale:index%2FClusterEmailSettings:ClusterEmailSettings","description":"Cluster email notification settings.\n"}},"required":["settings"],"requiredInputs":["settings"],"stateInputs":{"description":"Input properties used for looking up and filtering ClusterEmail resources.\n","properties":{"settings":{"$ref":"#/types/powerscale:index%2FClusterEmailSettings:ClusterEmailSettings","description":"Cluster email notification settings.\n"}},"type":"object"},"type":"object"},"powerscale:index/clusterIdentity:ClusterIdentity":{"description":"This resource is used to manage the Cluster Identity settings of PowerScale Array. We can Create, Update and Delete the Cluster Identity using this resource. We can also import the existing Cluster Identity settings from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load Cluster identity Settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load Cluster identity Settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting identity Settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale Cluster identity Settings allow you to change the settings of identity\nconst exampleIdentitySettings = new powerscale.ClusterIdentity(\"example_identity_settings\", {\n    name: \"cluster1\",\n    description: \"cluster1 description\",\n    logon: {\n        motd: \"motd\",\n        motdHeader: \"motd header\",\n    },\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load Cluster identity Settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load Cluster identity Settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting identity Settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale Cluster identity Settings allow you to change the settings of identity\nexample_identity_settings = powerscale.ClusterIdentity(\"example_identity_settings\",\n    name=\"cluster1\",\n    description=\"cluster1 description\",\n    logon={\n        \"motd\": \"motd\",\n        \"motd_header\": \"motd header\",\n    })\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load Cluster identity Settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load Cluster identity Settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting identity Settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale Cluster identity Settings allow you to change the settings of identity\n    var exampleIdentitySettings = new Powerscale.ClusterIdentity(\"example_identity_settings\", new()\n    {\n        Name = \"cluster1\",\n        Description = \"cluster1 description\",\n        Logon = new Powerscale.Inputs.ClusterIdentityLogonArgs\n        {\n            Motd = \"motd\",\n            MotdHeader = \"motd header\",\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load Cluster identity Settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load Cluster identity Settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting identity Settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale Cluster identity Settings allow you to change the settings of identity\n\t\t_, err := powerscale.NewClusterIdentity(ctx, \"example_identity_settings\", &powerscale.ClusterIdentityArgs{\n\t\t\tName:        pulumi.String(\"cluster1\"),\n\t\t\tDescription: pulumi.String(\"cluster1 description\"),\n\t\t\tLogon: &powerscale.ClusterIdentityLogonArgs{\n\t\t\t\tMotd:       pulumi.String(\"motd\"),\n\t\t\t\tMotdHeader: pulumi.String(\"motd header\"),\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.ClusterIdentity;\nimport com.pulumi.powerscale.ClusterIdentityArgs;\nimport com.pulumi.powerscale.inputs.ClusterIdentityLogonArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load Cluster identity Settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load Cluster identity Settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting identity Settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale Cluster identity Settings allow you to change the settings of identity\n        var exampleIdentitySettings = new ClusterIdentity(\"exampleIdentitySettings\", ClusterIdentityArgs.builder()\n            .name(\"cluster1\")\n            .description(\"cluster1 description\")\n            .logon(ClusterIdentityLogonArgs.builder()\n                .motd(\"motd\")\n                .motdHeader(\"motd header\")\n                .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load Cluster identity Settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load Cluster identity Settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting identity Settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale Cluster identity Settings allow you to change the settings of identity\n  exampleIdentitySettings:\n    type: powerscale:ClusterIdentity\n    name: example_identity_settings\n    properties:\n      name: cluster1\n      description: cluster1 description\n      logon:\n        motd: motd\n        motdHeader: motd header\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/clusterIdentity:ClusterIdentity example_identity_settings <anyString>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/clusterIdentity:ClusterIdentity example_identity_settings \"cluster_identity\"\n```\n\nafter running this command, populate fields as per your requirement in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"description":{"description":"A description of the cluster.\n","type":"string"},"logon":{"$ref":"#/types/powerscale:index%2FClusterIdentityLogon:ClusterIdentityLogon","description":"The information displayed when a user logs in to the cluster.\n"},"name":{"description":"A unique name for this cluster.\n","type":"string"}},"properties":{"description":{"description":"A description of the cluster.\n","type":"string"},"logon":{"$ref":"#/types/powerscale:index%2FClusterIdentityLogon:ClusterIdentityLogon","description":"The information displayed when a user logs in to the cluster.\n"},"name":{"description":"A unique name for this cluster.\n","type":"string"}},"required":["description","logon","name"],"stateInputs":{"description":"Input properties used for looking up and filtering ClusterIdentity resources.\n","properties":{"description":{"description":"A description of the cluster.\n","type":"string"},"logon":{"$ref":"#/types/powerscale:index%2FClusterIdentityLogon:ClusterIdentityLogon","description":"The information displayed when a user logs in to the cluster.\n"},"name":{"description":"A unique name for this cluster.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/clusterOwner:ClusterOwner":{"description":"This resource is used to manage the Cluster Owner Settings entity of PowerScale Array. PowerScale Cluster Owner Settings provide the ability to configure owner settings on the cluster.We can Create, Update and Delete the Cluster Owner Settings using this resource. We can also import existing Cluster Owner Settings from PowerScale array. Note that, Cluster Owner Settings is the native functionality of PowerScale. When creating the resource, we actually load Cluster Owner Settings from PowerScale to the resource state.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// If resource arguments are omitted, `pulumi up` will load Cluster Owner Details from PowerScale, and save to\n// terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load Cluster Owner Details (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Owner Details from PowerScale.\n// For more information, Please check the terraform state file.\nconst test = new powerscale.ClusterOwner(\"test\", {\n    company: \"company_name\",\n    location: \"location\",\n    primaryEmail: \"primary_email@example.com\",\n    primaryName: \"primary_name\",\n    primaryPhone1: \"+91-12345-67890\",\n    primaryPhone2: \"+1 123-456-7890\",\n    secondaryEmail: \"secondary_email@example.com\",\n    secondaryName: \"secondary_name\",\n    secondaryPhone1: \"+44 (20) 1234 5678\",\n    secondaryPhone2: \"+1 (800) 555-5555\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# If resource arguments are omitted, `pulumi up` will load Cluster Owner Details from PowerScale, and save to\n# terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load Cluster Owner Details (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Owner Details from PowerScale.\n# For more information, Please check the terraform state file.\ntest = powerscale.ClusterOwner(\"test\",\n    company=\"company_name\",\n    location=\"location\",\n    primary_email=\"primary_email@example.com\",\n    primary_name=\"primary_name\",\n    primary_phone1=\"+91-12345-67890\",\n    primary_phone2=\"+1 123-456-7890\",\n    secondary_email=\"secondary_email@example.com\",\n    secondary_name=\"secondary_name\",\n    secondary_phone1=\"+44 (20) 1234 5678\",\n    secondary_phone2=\"+1 (800) 555-5555\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // If resource arguments are omitted, `pulumi up` will load Cluster Owner Details from PowerScale, and save to\n    // terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load Cluster Owner Details (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Owner Details from PowerScale.\n    // For more information, Please check the terraform state file.\n    var test = new Powerscale.ClusterOwner(\"test\", new()\n    {\n        Company = \"company_name\",\n        Location = \"location\",\n        PrimaryEmail = \"primary_email@example.com\",\n        PrimaryName = \"primary_name\",\n        PrimaryPhone1 = \"+91-12345-67890\",\n        PrimaryPhone2 = \"+1 123-456-7890\",\n        SecondaryEmail = \"secondary_email@example.com\",\n        SecondaryName = \"secondary_name\",\n        SecondaryPhone1 = \"+44 (20) 1234 5678\",\n        SecondaryPhone2 = \"+1 (800) 555-5555\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// If resource arguments are omitted, `pulumi up` will load Cluster Owner Details from PowerScale, and save to\n\t\t// terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load Cluster Owner Details (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Owner Details from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t_, err := powerscale.NewClusterOwner(ctx, \"test\", &powerscale.ClusterOwnerArgs{\n\t\t\tCompany:         pulumi.String(\"company_name\"),\n\t\t\tLocation:        pulumi.String(\"location\"),\n\t\t\tPrimaryEmail:    pulumi.String(\"primary_email@example.com\"),\n\t\t\tPrimaryName:     pulumi.String(\"primary_name\"),\n\t\t\tPrimaryPhone1:   pulumi.String(\"+91-12345-67890\"),\n\t\t\tPrimaryPhone2:   pulumi.String(\"+1 123-456-7890\"),\n\t\t\tSecondaryEmail:  pulumi.String(\"secondary_email@example.com\"),\n\t\t\tSecondaryName:   pulumi.String(\"secondary_name\"),\n\t\t\tSecondaryPhone1: pulumi.String(\"+44 (20) 1234 5678\"),\n\t\t\tSecondaryPhone2: pulumi.String(\"+1 (800) 555-5555\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.ClusterOwner;\nimport com.pulumi.powerscale.ClusterOwnerArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // If resource arguments are omitted, `pulumi up` will load Cluster Owner Details from PowerScale, and save to\n        // terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load Cluster Owner Details (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Owner Details from PowerScale.\n        // For more information, Please check the terraform state file.\n        var test = new ClusterOwner(\"test\", ClusterOwnerArgs.builder()\n            .company(\"company_name\")\n            .location(\"location\")\n            .primaryEmail(\"primary_email@example.com\")\n            .primaryName(\"primary_name\")\n            .primaryPhone1(\"+91-12345-67890\")\n            .primaryPhone2(\"+1 123-456-7890\")\n            .secondaryEmail(\"secondary_email@example.com\")\n            .secondaryName(\"secondary_name\")\n            .secondaryPhone1(\"+44 (20) 1234 5678\")\n            .secondaryPhone2(\"+1 (800) 555-5555\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # If resource arguments are omitted, `pulumi up` will load Cluster Owner Details from PowerScale, and save to\n  # terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load Cluster Owner Details (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Owner Details from PowerScale.\n  # For more information, Please check the terraform state file.\n  test:\n    type: powerscale:ClusterOwner\n    properties:\n      company: company_name\n      location: location\n      primaryEmail: primary_email@example.com\n      primaryName: primary_name\n      primaryPhone1: +91-12345-67890\n      primaryPhone2: +1 123-456-7890\n      secondaryEmail: secondary_email@example.com\n      secondaryName: secondary_name\n      secondaryPhone1: +44 (20) 1234 5678\n      secondaryPhone2: +1 (800) 555-5555\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/clusterOwner:ClusterOwner owner <anystring>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/clusterOwner:ClusterOwner owner cluster_owner\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"company":{"description":"Company Name of the Cluster Owner Settings.\n","type":"string"},"location":{"description":"Location of the Cluster Owner Settings.\n","type":"string"},"primaryEmail":{"description":"Primary Email of the Cluster Owner Settings.\n","type":"string"},"primaryName":{"description":"Primary Name of the Cluster Owner Settings.\n","type":"string"},"primaryPhone1":{"description":"Primary Phone of the Cluster Owner Settings.\n","type":"string"},"primaryPhone2":{"description":"Primary Alternate Phone of the Cluster Owner Settings.\n","type":"string"},"secondaryEmail":{"description":"Secondary Email of the Cluster Owner Settings.\n","type":"string"},"secondaryName":{"description":"Secondary Name of the Cluster Owner Settings.\n","type":"string"},"secondaryPhone1":{"description":"Secondary Phone of the Cluster Owner Settings.\n","type":"string"},"secondaryPhone2":{"description":"Secondary Alternate Phone of the Cluster Owner Settings.\n","type":"string"}},"properties":{"company":{"description":"Company Name of the Cluster Owner Settings.\n","type":"string"},"location":{"description":"Location of the Cluster Owner Settings.\n","type":"string"},"primaryEmail":{"description":"Primary Email of the Cluster Owner Settings.\n","type":"string"},"primaryName":{"description":"Primary Name of the Cluster Owner Settings.\n","type":"string"},"primaryPhone1":{"description":"Primary Phone of the Cluster Owner Settings.\n","type":"string"},"primaryPhone2":{"description":"Primary Alternate Phone of the Cluster Owner Settings.\n","type":"string"},"secondaryEmail":{"description":"Secondary Email of the Cluster Owner Settings.\n","type":"string"},"secondaryName":{"description":"Secondary Name of the Cluster Owner Settings.\n","type":"string"},"secondaryPhone1":{"description":"Secondary Phone of the Cluster Owner Settings.\n","type":"string"},"secondaryPhone2":{"description":"Secondary Alternate Phone of the Cluster Owner Settings.\n","type":"string"}},"required":["company","location","primaryEmail","primaryName","primaryPhone1","primaryPhone2","secondaryEmail","secondaryName","secondaryPhone1","secondaryPhone2"],"stateInputs":{"description":"Input properties used for looking up and filtering ClusterOwner resources.\n","properties":{"company":{"description":"Company Name of the Cluster Owner Settings.\n","type":"string"},"location":{"description":"Location of the Cluster Owner Settings.\n","type":"string"},"primaryEmail":{"description":"Primary Email of the Cluster Owner Settings.\n","type":"string"},"primaryName":{"description":"Primary Name of the Cluster Owner Settings.\n","type":"string"},"primaryPhone1":{"description":"Primary Phone of the Cluster Owner Settings.\n","type":"string"},"primaryPhone2":{"description":"Primary Alternate Phone of the Cluster Owner Settings.\n","type":"string"},"secondaryEmail":{"description":"Secondary Email of the Cluster Owner Settings.\n","type":"string"},"secondaryName":{"description":"Secondary Name of the Cluster Owner Settings.\n","type":"string"},"secondaryPhone1":{"description":"Secondary Phone of the Cluster Owner Settings.\n","type":"string"},"secondaryPhone2":{"description":"Secondary Alternate Phone of the Cluster Owner Settings.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/clusterSnmp:ClusterSnmp":{"description":"This resource is used to manage the Cluster SNMP settings of PowerScale Array. We can Create, Update and Delete the Cluster SNMP using this resource. We can also import the existing Cluster SNMP settings from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load Cluster SNMP Settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load CLuster SNMP Settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting SNMP Settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale Cluster SNMP Settings allow you to change the settings of SNMP\nconst exampleSnmpSettings = new powerscale.ClusterSnmp(\"example_snmp_settings\", {enabled: true});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load Cluster SNMP Settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load CLuster SNMP Settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting SNMP Settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale Cluster SNMP Settings allow you to change the settings of SNMP\nexample_snmp_settings = powerscale.ClusterSnmp(\"example_snmp_settings\", enabled=True)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load Cluster SNMP Settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load CLuster SNMP Settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting SNMP Settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale Cluster SNMP Settings allow you to change the settings of SNMP\n    var exampleSnmpSettings = new Powerscale.ClusterSnmp(\"example_snmp_settings\", new()\n    {\n        Enabled = true,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load Cluster SNMP Settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load CLuster SNMP Settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting SNMP Settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale Cluster SNMP Settings allow you to change the settings of SNMP\n\t\t_, err := powerscale.NewClusterSnmp(ctx, \"example_snmp_settings\", &powerscale.ClusterSnmpArgs{\n\t\t\tEnabled: pulumi.Bool(true),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.ClusterSnmp;\nimport com.pulumi.powerscale.ClusterSnmpArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load Cluster SNMP Settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load CLuster SNMP Settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting SNMP Settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale Cluster SNMP Settings allow you to change the settings of SNMP\n        var exampleSnmpSettings = new ClusterSnmp(\"exampleSnmpSettings\", ClusterSnmpArgs.builder()\n            .enabled(true)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load Cluster SNMP Settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load CLuster SNMP Settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting SNMP Settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale Cluster SNMP Settings allow you to change the settings of SNMP\n  exampleSnmpSettings:\n    type: powerscale:ClusterSnmp\n    name: example_snmp_settings\n    properties:\n      enabled: true # read_only_community =\"Public\"\n      #   # snmp_v1_v2c_access = true\n      #   # snmp_v3_auth_protocol = \"SHA\"\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/clusterSnmp:ClusterSnmp example_snmp_settings <anyString>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/clusterSnmp:ClusterSnmp example_snmp_settings \"cluster_snmp\"\n```\n\nafter running this command, populate the enabled field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"enabled":{"description":"True if the Cluster SNMP is enabled. If true, either <span pulumi-lang-nodejs=\"`snmpV1v2Access`\" pulumi-lang-dotnet=\"`SnmpV1v2Access`\" pulumi-lang-go=\"`snmpV1v2Access`\" pulumi-lang-python=\"`snmp_v1v2_access`\" pulumi-lang-yaml=\"`snmpV1v2Access`\" pulumi-lang-java=\"`snmpV1v2Access`\">`snmp_v1v2_access`</span> or <span pulumi-lang-nodejs=\"`snmpV3Access`\" pulumi-lang-dotnet=\"`SnmpV3Access`\" pulumi-lang-go=\"`snmpV3Access`\" pulumi-lang-python=\"`snmp_v3_access`\" pulumi-lang-yaml=\"`snmpV3Access`\" pulumi-lang-java=\"`snmpV3Access`\">`snmp_v3_access`</span> is required.\n","type":"boolean"},"readOnlyCommunity":{"description":"The read-only community string for the Cluster SNMP.\n","type":"string"},"snmpV1V2cAccess":{"description":"The SNMPv1/v2c access for the Cluster SNMP. Also requires <span pulumi-lang-nodejs=\"`readOnlyCommunity`\" pulumi-lang-dotnet=\"`ReadOnlyCommunity`\" pulumi-lang-go=\"`readOnlyCommunity`\" pulumi-lang-python=\"`read_only_community`\" pulumi-lang-yaml=\"`readOnlyCommunity`\" pulumi-lang-java=\"`readOnlyCommunity`\">`read_only_community`</span>.\n","type":"boolean"},"snmpV3Access":{"description":"The SNMPv3 access for the Cluster SNMP. Also requires snmp*v3*password.\n","type":"boolean"},"snmpV3AuthProtocol":{"description":"The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are `MD5`and `SHA`.\n","type":"string"},"snmpV3Password":{"description":"The SNMPv3 authentication password for the Cluster SNMP.\n","type":"string"},"snmpV3PrivPassword":{"description":"The SNMPv3 privacy protocol password for the Cluster SNMP.\n","type":"string"},"snmpV3PrivProtocol":{"description":"The SNMPv3 privacy protocol for the Cluster SNMP.\n","type":"string"},"snmpV3ReadOnlyUser":{"description":"The SNMPv3 read-only user for the Cluster SNMP.\n","type":"string"},"snmpV3SecurityLevel":{"description":"The SNMPv3 security level for the Cluster SNMP.\n","type":"string"},"systemContact":{"description":"The system contact for the Cluster SNMP.\n","type":"string"},"systemLocation":{"description":"The system location for the Cluster SNMP.\n","type":"string"}},"properties":{"enabled":{"description":"True if the Cluster SNMP is enabled. If true, either <span pulumi-lang-nodejs=\"`snmpV1v2Access`\" pulumi-lang-dotnet=\"`SnmpV1v2Access`\" pulumi-lang-go=\"`snmpV1v2Access`\" pulumi-lang-python=\"`snmp_v1v2_access`\" pulumi-lang-yaml=\"`snmpV1v2Access`\" pulumi-lang-java=\"`snmpV1v2Access`\">`snmp_v1v2_access`</span> or <span pulumi-lang-nodejs=\"`snmpV3Access`\" pulumi-lang-dotnet=\"`SnmpV3Access`\" pulumi-lang-go=\"`snmpV3Access`\" pulumi-lang-python=\"`snmp_v3_access`\" pulumi-lang-yaml=\"`snmpV3Access`\" pulumi-lang-java=\"`snmpV3Access`\">`snmp_v3_access`</span> is required.\n","type":"boolean"},"readOnlyCommunity":{"description":"The read-only community string for the Cluster SNMP.\n","type":"string"},"snmpV1V2cAccess":{"description":"The SNMPv1/v2c access for the Cluster SNMP. Also requires <span pulumi-lang-nodejs=\"`readOnlyCommunity`\" pulumi-lang-dotnet=\"`ReadOnlyCommunity`\" pulumi-lang-go=\"`readOnlyCommunity`\" pulumi-lang-python=\"`read_only_community`\" pulumi-lang-yaml=\"`readOnlyCommunity`\" pulumi-lang-java=\"`readOnlyCommunity`\">`read_only_community`</span>.\n","type":"boolean"},"snmpV3Access":{"description":"The SNMPv3 access for the Cluster SNMP. Also requires snmp*v3*password.\n","type":"boolean"},"snmpV3AuthProtocol":{"description":"The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are `MD5`and `SHA`.\n","type":"string"},"snmpV3Password":{"description":"The SNMPv3 authentication password for the Cluster SNMP.\n","type":"string"},"snmpV3PrivPassword":{"description":"The SNMPv3 privacy protocol password for the Cluster SNMP.\n","type":"string"},"snmpV3PrivProtocol":{"description":"The SNMPv3 privacy protocol for the Cluster SNMP.\n","type":"string"},"snmpV3ReadOnlyUser":{"description":"The SNMPv3 read-only user for the Cluster SNMP.\n","type":"string"},"snmpV3SecurityLevel":{"description":"The SNMPv3 security level for the Cluster SNMP.\n","type":"string"},"systemContact":{"description":"The system contact for the Cluster SNMP.\n","type":"string"},"systemLocation":{"description":"The system location for the Cluster SNMP.\n","type":"string"}},"required":["enabled","readOnlyCommunity","snmpV1V2cAccess","snmpV3Access","snmpV3AuthProtocol","snmpV3Password","snmpV3PrivPassword","snmpV3PrivProtocol","snmpV3ReadOnlyUser","snmpV3SecurityLevel","systemContact","systemLocation"],"requiredInputs":["enabled"],"stateInputs":{"description":"Input properties used for looking up and filtering ClusterSnmp resources.\n","properties":{"enabled":{"description":"True if the Cluster SNMP is enabled. If true, either <span pulumi-lang-nodejs=\"`snmpV1v2Access`\" pulumi-lang-dotnet=\"`SnmpV1v2Access`\" pulumi-lang-go=\"`snmpV1v2Access`\" pulumi-lang-python=\"`snmp_v1v2_access`\" pulumi-lang-yaml=\"`snmpV1v2Access`\" pulumi-lang-java=\"`snmpV1v2Access`\">`snmp_v1v2_access`</span> or <span pulumi-lang-nodejs=\"`snmpV3Access`\" pulumi-lang-dotnet=\"`SnmpV3Access`\" pulumi-lang-go=\"`snmpV3Access`\" pulumi-lang-python=\"`snmp_v3_access`\" pulumi-lang-yaml=\"`snmpV3Access`\" pulumi-lang-java=\"`snmpV3Access`\">`snmp_v3_access`</span> is required.\n","type":"boolean"},"readOnlyCommunity":{"description":"The read-only community string for the Cluster SNMP.\n","type":"string"},"snmpV1V2cAccess":{"description":"The SNMPv1/v2c access for the Cluster SNMP. Also requires <span pulumi-lang-nodejs=\"`readOnlyCommunity`\" pulumi-lang-dotnet=\"`ReadOnlyCommunity`\" pulumi-lang-go=\"`readOnlyCommunity`\" pulumi-lang-python=\"`read_only_community`\" pulumi-lang-yaml=\"`readOnlyCommunity`\" pulumi-lang-java=\"`readOnlyCommunity`\">`read_only_community`</span>.\n","type":"boolean"},"snmpV3Access":{"description":"The SNMPv3 access for the Cluster SNMP. Also requires snmp*v3*password.\n","type":"boolean"},"snmpV3AuthProtocol":{"description":"The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are `MD5`and `SHA`.\n","type":"string"},"snmpV3Password":{"description":"The SNMPv3 authentication password for the Cluster SNMP.\n","type":"string"},"snmpV3PrivPassword":{"description":"The SNMPv3 privacy protocol password for the Cluster SNMP.\n","type":"string"},"snmpV3PrivProtocol":{"description":"The SNMPv3 privacy protocol for the Cluster SNMP.\n","type":"string"},"snmpV3ReadOnlyUser":{"description":"The SNMPv3 read-only user for the Cluster SNMP.\n","type":"string"},"snmpV3SecurityLevel":{"description":"The SNMPv3 security level for the Cluster SNMP.\n","type":"string"},"systemContact":{"description":"The system contact for the Cluster SNMP.\n","type":"string"},"systemLocation":{"description":"The system location for the Cluster SNMP.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/clusterTime:ClusterTime":{"description":"This resource is used to manage the Cluster Time settings of PowerScale Array. We can Create, Update and Delete the Cluster Time using this resource. We can also import an existing Cluster Time from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// If resource arguments are omitted, `pulumi up` will load Cluster Time Details from PowerScale, and save to\n// terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load Cluster Time Details (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Time Details from PowerScale.\n// For more information, Please check the terraform state file.\nconst test = new powerscale.ClusterTime(\"test\", {\n    date: \"01/12/2024\",\n    time: \"00:32\",\n    path: \"Asia/Kolkata\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# If resource arguments are omitted, `pulumi up` will load Cluster Time Details from PowerScale, and save to\n# terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load Cluster Time Details (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Time Details from PowerScale.\n# For more information, Please check the terraform state file.\ntest = powerscale.ClusterTime(\"test\",\n    date=\"01/12/2024\",\n    time=\"00:32\",\n    path=\"Asia/Kolkata\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // If resource arguments are omitted, `pulumi up` will load Cluster Time Details from PowerScale, and save to\n    // terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load Cluster Time Details (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Time Details from PowerScale.\n    // For more information, Please check the terraform state file.\n    var test = new Powerscale.ClusterTime(\"test\", new()\n    {\n        Date = \"01/12/2024\",\n        Time = \"00:32\",\n        Path = \"Asia/Kolkata\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// If resource arguments are omitted, `pulumi up` will load Cluster Time Details from PowerScale, and save to\n\t\t// terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load Cluster Time Details (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Time Details from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t_, err := powerscale.NewClusterTime(ctx, \"test\", &powerscale.ClusterTimeArgs{\n\t\t\tDate: pulumi.String(\"01/12/2024\"),\n\t\t\tTime: pulumi.String(\"00:32\"),\n\t\t\tPath: pulumi.String(\"Asia/Kolkata\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.ClusterTime;\nimport com.pulumi.powerscale.ClusterTimeArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // If resource arguments are omitted, `pulumi up` will load Cluster Time Details from PowerScale, and save to\n        // terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load Cluster Time Details (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Time Details from PowerScale.\n        // For more information, Please check the terraform state file.\n        var test = new ClusterTime(\"test\", ClusterTimeArgs.builder()\n            .date(\"01/12/2024\")\n            .time(\"00:32\")\n            .path(\"Asia/Kolkata\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # If resource arguments are omitted, `pulumi up` will load Cluster Time Details from PowerScale, and save to\n  # terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load Cluster Time Details (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting Cluster Time Details from PowerScale.\n  # For more information, Please check the terraform state file.\n  test:\n    type: powerscale:ClusterTime\n    properties:\n      date: 01/12/2024\n      time: 00:32\n      path: Asia/Kolkata\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/clusterTime:ClusterTime time <anystring>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/clusterTime:ClusterTime time cluster_time\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"date":{"description":"Date of the Cluster Time Settings, Please follow format MM/dd/yyyy\n","type":"string"},"path":{"description":"Timezone hierarchical name.\n","type":"string"},"time":{"description":"Time of the Cluster Time Settings, Please follow format HH:mm\n","type":"string"}},"properties":{"abbreviation":{"description":"Timezone abbreviation.\n","type":"string"},"date":{"description":"Date of the Cluster Time Settings, Please follow format MM/dd/yyyy\n","type":"string"},"path":{"description":"Timezone hierarchical name.\n","type":"string"},"time":{"description":"Time of the Cluster Time Settings, Please follow format HH:mm\n","type":"string"},"timeMillis":{"description":"Time in Miliseconds of the Cluster\n","type":"number"}},"required":["abbreviation","date","path","time","timeMillis"],"stateInputs":{"description":"Input properties used for looking up and filtering ClusterTime resources.\n","properties":{"abbreviation":{"description":"Timezone abbreviation.\n","type":"string"},"date":{"description":"Date of the Cluster Time Settings, Please follow format MM/dd/yyyy\n","type":"string"},"path":{"description":"Timezone hierarchical name.\n","type":"string"},"time":{"description":"Time of the Cluster Time Settings, Please follow format HH:mm\n","type":"string"},"timeMillis":{"description":"Time in Miliseconds of the Cluster\n","type":"number"}},"type":"object"},"type":"object"},"powerscale:index/filepoolPolicy:FilepoolPolicy":{"description":"This resource is used to manage the File Pool Policy entity of PowerScale Array. We can Create, Update and Delete the File Pool Policy using this resource. We can also import an existing File Pool Policy from PowerScale array. PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// After `pulumi up` of this example file it will create a new file pool policy with the name set in `name` attribute on the PowerScale.\n// PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\nconst exampleFilepoolPolicy = new powerscale.FilepoolPolicy(\"example_filepool_policy\", {\n    name: \"filePoolPolicySample\",\n    isDefaultPolicy: false,\n    fileMatchingPattern: {\n        orCriterias: [\n            {\n                andCriterias: [\n                    {\n                        operator: \">\",\n                        type: \"size\",\n                        units: \"B\",\n                        value: \"1073741824\",\n                    },\n                    {\n                        operator: \">\",\n                        type: \"birth_time\",\n                        useRelativeTime: true,\n                        value: \"20\",\n                    },\n                    {\n                        operator: \">\",\n                        type: \"metadata_changed_time\",\n                        useRelativeTime: false,\n                        value: \"1704742200\",\n                    },\n                    {\n                        operator: \"<\",\n                        type: \"accessed_time\",\n                        useRelativeTime: true,\n                        value: \"20\",\n                    },\n                ],\n            },\n            {\n                andCriterias: [\n                    {\n                        operator: \"<\",\n                        type: \"changed_time\",\n                        useRelativeTime: false,\n                        value: \"1704820500\",\n                    },\n                    {\n                        attributeExists: false,\n                        field: \"test\",\n                        type: \"custom_attribute\",\n                        value: \"\",\n                    },\n                    {\n                        operator: \"!=\",\n                        type: \"file_type\",\n                        value: \"directory\",\n                    },\n                    {\n                        beginsWith: false,\n                        caseSensitive: true,\n                        operator: \"!=\",\n                        type: \"path\",\n                        value: \"test\",\n                    },\n                    {\n                        caseSensitive: true,\n                        operator: \"!=\",\n                        type: \"name\",\n                        value: \"test\",\n                    },\n                ],\n            },\n        ],\n    },\n    actions: [\n        {\n            dataAccessPatternAction: \"concurrency\",\n            actionType: \"set_data_access_pattern\",\n        },\n        {\n            dataStoragePolicyAction: {\n                ssdStrategy: \"metadata\",\n                storagepool: \"anywhere\",\n            },\n            actionType: \"apply_data_storage_policy\",\n        },\n        {\n            snapshotStoragePolicyAction: {\n                ssdStrategy: \"metadata\",\n                storagepool: \"anywhere\",\n            },\n            actionType: \"apply_snapshot_storage_policy\",\n        },\n        {\n            requestedProtectionAction: \"default\",\n            actionType: \"set_requested_protection\",\n        },\n        {\n            enableCoalescerAction: true,\n            actionType: \"enable_coalescer\",\n        },\n        {\n            enablePackingAction: true,\n            actionType: \"enable_packing\",\n        },\n        {\n            actionType: \"set_cloudpool_policy\",\n            cloudpoolPolicyAction: {\n                archiveSnapshotFiles: true,\n                cache: {\n                    expiration: 86400,\n                    readAhead: \"partial\",\n                    type: \"cached\",\n                },\n                compression: true,\n                dataRetention: 604800,\n                encryption: true,\n                fullBackupRetention: 145152000,\n                incrementalBackupRetention: 145152000,\n                pool: \"cloudPool_policy\",\n                writebackFrequency: 32400,\n            },\n        },\n    ],\n    description: \"filePoolPolicySample description\",\n    applyOrder: 1,\n});\n// PowerScale Default File Pool Policy applies to all files not selected by higher-priority and can specify storage operations for these files.\nconst exampleDefaultPolicy = new powerscale.FilepoolPolicy(\"example_default_policy\", {\n    name: \"Default policy\",\n    isDefaultPolicy: true,\n    actions: [\n        {\n            dataAccessPatternAction: \"concurrency\",\n            actionType: \"set_data_access_pattern\",\n        },\n        {\n            dataStoragePolicyAction: {\n                ssdStrategy: \"metadata\",\n                storagepool: \"anywhere\",\n            },\n            actionType: \"apply_data_storage_policy\",\n        },\n        {\n            snapshotStoragePolicyAction: {\n                ssdStrategy: \"metadata\",\n                storagepool: \"anywhere\",\n            },\n            actionType: \"apply_snapshot_storage_policy\",\n        },\n        {\n            requestedProtectionAction: \"default\",\n            actionType: \"set_requested_protection\",\n        },\n        {\n            enableCoalescerAction: true,\n            actionType: \"enable_coalescer\",\n        },\n        {\n            enablePackingAction: true,\n            actionType: \"enable_packing\",\n        },\n    ],\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# After `pulumi up` of this example file it will create a new file pool policy with the name set in `name` attribute on the PowerScale.\n# PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\nexample_filepool_policy = powerscale.FilepoolPolicy(\"example_filepool_policy\",\n    name=\"filePoolPolicySample\",\n    is_default_policy=False,\n    file_matching_pattern={\n        \"or_criterias\": [\n            {\n                \"and_criterias\": [\n                    {\n                        \"operator\": \">\",\n                        \"type\": \"size\",\n                        \"units\": \"B\",\n                        \"value\": \"1073741824\",\n                    },\n                    {\n                        \"operator\": \">\",\n                        \"type\": \"birth_time\",\n                        \"use_relative_time\": True,\n                        \"value\": \"20\",\n                    },\n                    {\n                        \"operator\": \">\",\n                        \"type\": \"metadata_changed_time\",\n                        \"use_relative_time\": False,\n                        \"value\": \"1704742200\",\n                    },\n                    {\n                        \"operator\": \"<\",\n                        \"type\": \"accessed_time\",\n                        \"use_relative_time\": True,\n                        \"value\": \"20\",\n                    },\n                ],\n            },\n            {\n                \"and_criterias\": [\n                    {\n                        \"operator\": \"<\",\n                        \"type\": \"changed_time\",\n                        \"use_relative_time\": False,\n                        \"value\": \"1704820500\",\n                    },\n                    {\n                        \"attribute_exists\": False,\n                        \"field\": \"test\",\n                        \"type\": \"custom_attribute\",\n                        \"value\": \"\",\n                    },\n                    {\n                        \"operator\": \"!=\",\n                        \"type\": \"file_type\",\n                        \"value\": \"directory\",\n                    },\n                    {\n                        \"begins_with\": False,\n                        \"case_sensitive\": True,\n                        \"operator\": \"!=\",\n                        \"type\": \"path\",\n                        \"value\": \"test\",\n                    },\n                    {\n                        \"case_sensitive\": True,\n                        \"operator\": \"!=\",\n                        \"type\": \"name\",\n                        \"value\": \"test\",\n                    },\n                ],\n            },\n        ],\n    },\n    actions=[\n        {\n            \"data_access_pattern_action\": \"concurrency\",\n            \"action_type\": \"set_data_access_pattern\",\n        },\n        {\n            \"data_storage_policy_action\": {\n                \"ssd_strategy\": \"metadata\",\n                \"storagepool\": \"anywhere\",\n            },\n            \"action_type\": \"apply_data_storage_policy\",\n        },\n        {\n            \"snapshot_storage_policy_action\": {\n                \"ssd_strategy\": \"metadata\",\n                \"storagepool\": \"anywhere\",\n            },\n            \"action_type\": \"apply_snapshot_storage_policy\",\n        },\n        {\n            \"requested_protection_action\": \"default\",\n            \"action_type\": \"set_requested_protection\",\n        },\n        {\n            \"enable_coalescer_action\": True,\n            \"action_type\": \"enable_coalescer\",\n        },\n        {\n            \"enable_packing_action\": True,\n            \"action_type\": \"enable_packing\",\n        },\n        {\n            \"action_type\": \"set_cloudpool_policy\",\n            \"cloudpool_policy_action\": {\n                \"archive_snapshot_files\": True,\n                \"cache\": {\n                    \"expiration\": 86400,\n                    \"read_ahead\": \"partial\",\n                    \"type\": \"cached\",\n                },\n                \"compression\": True,\n                \"data_retention\": 604800,\n                \"encryption\": True,\n                \"full_backup_retention\": 145152000,\n                \"incremental_backup_retention\": 145152000,\n                \"pool\": \"cloudPool_policy\",\n                \"writeback_frequency\": 32400,\n            },\n        },\n    ],\n    description=\"filePoolPolicySample description\",\n    apply_order=1)\n# PowerScale Default File Pool Policy applies to all files not selected by higher-priority and can specify storage operations for these files.\nexample_default_policy = powerscale.FilepoolPolicy(\"example_default_policy\",\n    name=\"Default policy\",\n    is_default_policy=True,\n    actions=[\n        {\n            \"data_access_pattern_action\": \"concurrency\",\n            \"action_type\": \"set_data_access_pattern\",\n        },\n        {\n            \"data_storage_policy_action\": {\n                \"ssd_strategy\": \"metadata\",\n                \"storagepool\": \"anywhere\",\n            },\n            \"action_type\": \"apply_data_storage_policy\",\n        },\n        {\n            \"snapshot_storage_policy_action\": {\n                \"ssd_strategy\": \"metadata\",\n                \"storagepool\": \"anywhere\",\n            },\n            \"action_type\": \"apply_snapshot_storage_policy\",\n        },\n        {\n            \"requested_protection_action\": \"default\",\n            \"action_type\": \"set_requested_protection\",\n        },\n        {\n            \"enable_coalescer_action\": True,\n            \"action_type\": \"enable_coalescer\",\n        },\n        {\n            \"enable_packing_action\": True,\n            \"action_type\": \"enable_packing\",\n        },\n    ])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // After `pulumi up` of this example file it will create a new file pool policy with the name set in `name` attribute on the PowerScale.\n    // PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n    var exampleFilepoolPolicy = new Powerscale.FilepoolPolicy(\"example_filepool_policy\", new()\n    {\n        Name = \"filePoolPolicySample\",\n        IsDefaultPolicy = false,\n        FileMatchingPattern = new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternArgs\n        {\n            OrCriterias = new[]\n            {\n                new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaArgs\n                {\n                    AndCriterias = new[]\n                    {\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Operator = \">\",\n                            Type = \"size\",\n                            Units = \"B\",\n                            Value = \"1073741824\",\n                        },\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Operator = \">\",\n                            Type = \"birth_time\",\n                            UseRelativeTime = true,\n                            Value = \"20\",\n                        },\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Operator = \">\",\n                            Type = \"metadata_changed_time\",\n                            UseRelativeTime = false,\n                            Value = \"1704742200\",\n                        },\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Operator = \"<\",\n                            Type = \"accessed_time\",\n                            UseRelativeTime = true,\n                            Value = \"20\",\n                        },\n                    },\n                },\n                new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaArgs\n                {\n                    AndCriterias = new[]\n                    {\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Operator = \"<\",\n                            Type = \"changed_time\",\n                            UseRelativeTime = false,\n                            Value = \"1704820500\",\n                        },\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            AttributeExists = false,\n                            Field = \"test\",\n                            Type = \"custom_attribute\",\n                            Value = \"\",\n                        },\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Operator = \"!=\",\n                            Type = \"file_type\",\n                            Value = \"directory\",\n                        },\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            BeginsWith = false,\n                            CaseSensitive = true,\n                            Operator = \"!=\",\n                            Type = \"path\",\n                            Value = \"test\",\n                        },\n                        new Powerscale.Inputs.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            CaseSensitive = true,\n                            Operator = \"!=\",\n                            Type = \"name\",\n                            Value = \"test\",\n                        },\n                    },\n                },\n            },\n        },\n        Actions = new[]\n        {\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                DataAccessPatternAction = \"concurrency\",\n                ActionType = \"set_data_access_pattern\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                DataStoragePolicyAction = new Powerscale.Inputs.FilepoolPolicyActionDataStoragePolicyActionArgs\n                {\n                    SsdStrategy = \"metadata\",\n                    Storagepool = \"anywhere\",\n                },\n                ActionType = \"apply_data_storage_policy\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                SnapshotStoragePolicyAction = new Powerscale.Inputs.FilepoolPolicyActionSnapshotStoragePolicyActionArgs\n                {\n                    SsdStrategy = \"metadata\",\n                    Storagepool = \"anywhere\",\n                },\n                ActionType = \"apply_snapshot_storage_policy\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                RequestedProtectionAction = \"default\",\n                ActionType = \"set_requested_protection\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                EnableCoalescerAction = true,\n                ActionType = \"enable_coalescer\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                EnablePackingAction = true,\n                ActionType = \"enable_packing\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                ActionType = \"set_cloudpool_policy\",\n                CloudpoolPolicyAction = new Powerscale.Inputs.FilepoolPolicyActionCloudpoolPolicyActionArgs\n                {\n                    ArchiveSnapshotFiles = true,\n                    Cache = new Powerscale.Inputs.FilepoolPolicyActionCloudpoolPolicyActionCacheArgs\n                    {\n                        Expiration = 86400,\n                        ReadAhead = \"partial\",\n                        Type = \"cached\",\n                    },\n                    Compression = true,\n                    DataRetention = 604800,\n                    Encryption = true,\n                    FullBackupRetention = 145152000,\n                    IncrementalBackupRetention = 145152000,\n                    Pool = \"cloudPool_policy\",\n                    WritebackFrequency = 32400,\n                },\n            },\n        },\n        Description = \"filePoolPolicySample description\",\n        ApplyOrder = 1,\n    });\n\n    // PowerScale Default File Pool Policy applies to all files not selected by higher-priority and can specify storage operations for these files.\n    var exampleDefaultPolicy = new Powerscale.FilepoolPolicy(\"example_default_policy\", new()\n    {\n        Name = \"Default policy\",\n        IsDefaultPolicy = true,\n        Actions = new[]\n        {\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                DataAccessPatternAction = \"concurrency\",\n                ActionType = \"set_data_access_pattern\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                DataStoragePolicyAction = new Powerscale.Inputs.FilepoolPolicyActionDataStoragePolicyActionArgs\n                {\n                    SsdStrategy = \"metadata\",\n                    Storagepool = \"anywhere\",\n                },\n                ActionType = \"apply_data_storage_policy\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                SnapshotStoragePolicyAction = new Powerscale.Inputs.FilepoolPolicyActionSnapshotStoragePolicyActionArgs\n                {\n                    SsdStrategy = \"metadata\",\n                    Storagepool = \"anywhere\",\n                },\n                ActionType = \"apply_snapshot_storage_policy\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                RequestedProtectionAction = \"default\",\n                ActionType = \"set_requested_protection\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                EnableCoalescerAction = true,\n                ActionType = \"enable_coalescer\",\n            },\n            new Powerscale.Inputs.FilepoolPolicyActionArgs\n            {\n                EnablePackingAction = true,\n                ActionType = \"enable_packing\",\n            },\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// After `pulumi up` of this example file it will create a new file pool policy with the name set in `name` attribute on the PowerScale.\n\t\t// PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n\t\t_, err := powerscale.NewFilepoolPolicy(ctx, \"example_filepool_policy\", &powerscale.FilepoolPolicyArgs{\n\t\t\tName:            pulumi.String(\"filePoolPolicySample\"),\n\t\t\tIsDefaultPolicy: pulumi.Bool(false),\n\t\t\tFileMatchingPattern: &powerscale.FilepoolPolicyFileMatchingPatternArgs{\n\t\t\t\tOrCriterias: powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaArray{\n\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaArgs{\n\t\t\t\t\t\tAndCriterias: powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArray{\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tOperator: pulumi.String(\">\"),\n\t\t\t\t\t\t\t\tType:     pulumi.String(\"size\"),\n\t\t\t\t\t\t\t\tUnits:    pulumi.String(\"B\"),\n\t\t\t\t\t\t\t\tValue:    pulumi.String(\"1073741824\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tOperator:        pulumi.String(\">\"),\n\t\t\t\t\t\t\t\tType:            pulumi.String(\"birth_time\"),\n\t\t\t\t\t\t\t\tUseRelativeTime: pulumi.Bool(true),\n\t\t\t\t\t\t\t\tValue:           pulumi.String(\"20\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tOperator:        pulumi.String(\">\"),\n\t\t\t\t\t\t\t\tType:            pulumi.String(\"metadata_changed_time\"),\n\t\t\t\t\t\t\t\tUseRelativeTime: pulumi.Bool(false),\n\t\t\t\t\t\t\t\tValue:           pulumi.String(\"1704742200\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tOperator:        pulumi.String(\"<\"),\n\t\t\t\t\t\t\t\tType:            pulumi.String(\"accessed_time\"),\n\t\t\t\t\t\t\t\tUseRelativeTime: pulumi.Bool(true),\n\t\t\t\t\t\t\t\tValue:           pulumi.String(\"20\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaArgs{\n\t\t\t\t\t\tAndCriterias: powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArray{\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tOperator:        pulumi.String(\"<\"),\n\t\t\t\t\t\t\t\tType:            pulumi.String(\"changed_time\"),\n\t\t\t\t\t\t\t\tUseRelativeTime: pulumi.Bool(false),\n\t\t\t\t\t\t\t\tValue:           pulumi.String(\"1704820500\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tAttributeExists: pulumi.Bool(false),\n\t\t\t\t\t\t\t\tField:           pulumi.String(\"test\"),\n\t\t\t\t\t\t\t\tType:            pulumi.String(\"custom_attribute\"),\n\t\t\t\t\t\t\t\tValue:           pulumi.String(\"\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tOperator: pulumi.String(\"!=\"),\n\t\t\t\t\t\t\t\tType:     pulumi.String(\"file_type\"),\n\t\t\t\t\t\t\t\tValue:    pulumi.String(\"directory\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tBeginsWith:    pulumi.Bool(false),\n\t\t\t\t\t\t\t\tCaseSensitive: pulumi.Bool(true),\n\t\t\t\t\t\t\t\tOperator:      pulumi.String(\"!=\"),\n\t\t\t\t\t\t\t\tType:          pulumi.String(\"path\"),\n\t\t\t\t\t\t\t\tValue:         pulumi.String(\"test\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t&powerscale.FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tCaseSensitive: pulumi.Bool(true),\n\t\t\t\t\t\t\t\tOperator:      pulumi.String(\"!=\"),\n\t\t\t\t\t\t\t\tType:          pulumi.String(\"name\"),\n\t\t\t\t\t\t\t\tValue:         pulumi.String(\"test\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tActions: powerscale.FilepoolPolicyActionArray{\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tDataAccessPatternAction: pulumi.String(\"concurrency\"),\n\t\t\t\t\tActionType:              pulumi.String(\"set_data_access_pattern\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tDataStoragePolicyAction: &powerscale.FilepoolPolicyActionDataStoragePolicyActionArgs{\n\t\t\t\t\t\tSsdStrategy: pulumi.String(\"metadata\"),\n\t\t\t\t\t\tStoragepool: pulumi.String(\"anywhere\"),\n\t\t\t\t\t},\n\t\t\t\t\tActionType: pulumi.String(\"apply_data_storage_policy\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tSnapshotStoragePolicyAction: &powerscale.FilepoolPolicyActionSnapshotStoragePolicyActionArgs{\n\t\t\t\t\t\tSsdStrategy: pulumi.String(\"metadata\"),\n\t\t\t\t\t\tStoragepool: pulumi.String(\"anywhere\"),\n\t\t\t\t\t},\n\t\t\t\t\tActionType: pulumi.String(\"apply_snapshot_storage_policy\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tRequestedProtectionAction: pulumi.String(\"default\"),\n\t\t\t\t\tActionType:                pulumi.String(\"set_requested_protection\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tEnableCoalescerAction: pulumi.Bool(true),\n\t\t\t\t\tActionType:            pulumi.String(\"enable_coalescer\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tEnablePackingAction: pulumi.Bool(true),\n\t\t\t\t\tActionType:          pulumi.String(\"enable_packing\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tActionType: pulumi.String(\"set_cloudpool_policy\"),\n\t\t\t\t\tCloudpoolPolicyAction: &powerscale.FilepoolPolicyActionCloudpoolPolicyActionArgs{\n\t\t\t\t\t\tArchiveSnapshotFiles: pulumi.Bool(true),\n\t\t\t\t\t\tCache: &powerscale.FilepoolPolicyActionCloudpoolPolicyActionCacheArgs{\n\t\t\t\t\t\t\tExpiration: pulumi.Float64(86400),\n\t\t\t\t\t\t\tReadAhead:  pulumi.String(\"partial\"),\n\t\t\t\t\t\t\tType:       pulumi.String(\"cached\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\tCompression:                pulumi.Bool(true),\n\t\t\t\t\t\tDataRetention:              pulumi.Float64(604800),\n\t\t\t\t\t\tEncryption:                 pulumi.Bool(true),\n\t\t\t\t\t\tFullBackupRetention:        pulumi.Float64(145152000),\n\t\t\t\t\t\tIncrementalBackupRetention: pulumi.Float64(145152000),\n\t\t\t\t\t\tPool:                       pulumi.String(\"cloudPool_policy\"),\n\t\t\t\t\t\tWritebackFrequency:         pulumi.Float64(32400),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tDescription: pulumi.String(\"filePoolPolicySample description\"),\n\t\t\tApplyOrder:  pulumi.Float64(1),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// PowerScale Default File Pool Policy applies to all files not selected by higher-priority and can specify storage operations for these files.\n\t\t_, err = powerscale.NewFilepoolPolicy(ctx, \"example_default_policy\", &powerscale.FilepoolPolicyArgs{\n\t\t\tName:            pulumi.String(\"Default policy\"),\n\t\t\tIsDefaultPolicy: pulumi.Bool(true),\n\t\t\tActions: powerscale.FilepoolPolicyActionArray{\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tDataAccessPatternAction: pulumi.String(\"concurrency\"),\n\t\t\t\t\tActionType:              pulumi.String(\"set_data_access_pattern\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tDataStoragePolicyAction: &powerscale.FilepoolPolicyActionDataStoragePolicyActionArgs{\n\t\t\t\t\t\tSsdStrategy: pulumi.String(\"metadata\"),\n\t\t\t\t\t\tStoragepool: pulumi.String(\"anywhere\"),\n\t\t\t\t\t},\n\t\t\t\t\tActionType: pulumi.String(\"apply_data_storage_policy\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tSnapshotStoragePolicyAction: &powerscale.FilepoolPolicyActionSnapshotStoragePolicyActionArgs{\n\t\t\t\t\t\tSsdStrategy: pulumi.String(\"metadata\"),\n\t\t\t\t\t\tStoragepool: pulumi.String(\"anywhere\"),\n\t\t\t\t\t},\n\t\t\t\t\tActionType: pulumi.String(\"apply_snapshot_storage_policy\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tRequestedProtectionAction: pulumi.String(\"default\"),\n\t\t\t\t\tActionType:                pulumi.String(\"set_requested_protection\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tEnableCoalescerAction: pulumi.Bool(true),\n\t\t\t\t\tActionType:            pulumi.String(\"enable_coalescer\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.FilepoolPolicyActionArgs{\n\t\t\t\t\tEnablePackingAction: pulumi.Bool(true),\n\t\t\t\t\tActionType:          pulumi.String(\"enable_packing\"),\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.FilepoolPolicy;\nimport com.pulumi.powerscale.FilepoolPolicyArgs;\nimport com.pulumi.powerscale.inputs.FilepoolPolicyFileMatchingPatternArgs;\nimport com.pulumi.powerscale.inputs.FilepoolPolicyActionArgs;\nimport com.pulumi.powerscale.inputs.FilepoolPolicyActionDataStoragePolicyActionArgs;\nimport com.pulumi.powerscale.inputs.FilepoolPolicyActionSnapshotStoragePolicyActionArgs;\nimport com.pulumi.powerscale.inputs.FilepoolPolicyActionCloudpoolPolicyActionArgs;\nimport com.pulumi.powerscale.inputs.FilepoolPolicyActionCloudpoolPolicyActionCacheArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // After `pulumi up` of this example file it will create a new file pool policy with the name set in `name` attribute on the PowerScale.\n        // PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n        var exampleFilepoolPolicy = new FilepoolPolicy(\"exampleFilepoolPolicy\", FilepoolPolicyArgs.builder()\n            .name(\"filePoolPolicySample\")\n            .isDefaultPolicy(false)\n            .fileMatchingPattern(FilepoolPolicyFileMatchingPatternArgs.builder()\n                .orCriterias(                \n                    FilepoolPolicyFileMatchingPatternOrCriteriaArgs.builder()\n                        .andCriterias(                        \n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .operator(\">\")\n                                .type(\"size\")\n                                .units(\"B\")\n                                .value(\"1073741824\")\n                                .build(),\n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .operator(\">\")\n                                .type(\"birth_time\")\n                                .useRelativeTime(true)\n                                .value(\"20\")\n                                .build(),\n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .operator(\">\")\n                                .type(\"metadata_changed_time\")\n                                .useRelativeTime(false)\n                                .value(\"1704742200\")\n                                .build(),\n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .operator(\"<\")\n                                .type(\"accessed_time\")\n                                .useRelativeTime(true)\n                                .value(\"20\")\n                                .build())\n                        .build(),\n                    FilepoolPolicyFileMatchingPatternOrCriteriaArgs.builder()\n                        .andCriterias(                        \n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .operator(\"<\")\n                                .type(\"changed_time\")\n                                .useRelativeTime(false)\n                                .value(\"1704820500\")\n                                .build(),\n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .attributeExists(false)\n                                .field(\"test\")\n                                .type(\"custom_attribute\")\n                                .value(\"\")\n                                .build(),\n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .operator(\"!=\")\n                                .type(\"file_type\")\n                                .value(\"directory\")\n                                .build(),\n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .beginsWith(false)\n                                .caseSensitive(true)\n                                .operator(\"!=\")\n                                .type(\"path\")\n                                .value(\"test\")\n                                .build(),\n                            FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                                .caseSensitive(true)\n                                .operator(\"!=\")\n                                .type(\"name\")\n                                .value(\"test\")\n                                .build())\n                        .build())\n                .build())\n            .actions(            \n                FilepoolPolicyActionArgs.builder()\n                    .dataAccessPatternAction(\"concurrency\")\n                    .actionType(\"set_data_access_pattern\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .dataStoragePolicyAction(FilepoolPolicyActionDataStoragePolicyActionArgs.builder()\n                        .ssdStrategy(\"metadata\")\n                        .storagepool(\"anywhere\")\n                        .build())\n                    .actionType(\"apply_data_storage_policy\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .snapshotStoragePolicyAction(FilepoolPolicyActionSnapshotStoragePolicyActionArgs.builder()\n                        .ssdStrategy(\"metadata\")\n                        .storagepool(\"anywhere\")\n                        .build())\n                    .actionType(\"apply_snapshot_storage_policy\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .requestedProtectionAction(\"default\")\n                    .actionType(\"set_requested_protection\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .enableCoalescerAction(true)\n                    .actionType(\"enable_coalescer\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .enablePackingAction(true)\n                    .actionType(\"enable_packing\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .actionType(\"set_cloudpool_policy\")\n                    .cloudpoolPolicyAction(FilepoolPolicyActionCloudpoolPolicyActionArgs.builder()\n                        .archiveSnapshotFiles(true)\n                        .cache(FilepoolPolicyActionCloudpoolPolicyActionCacheArgs.builder()\n                            .expiration(86400.0)\n                            .readAhead(\"partial\")\n                            .type(\"cached\")\n                            .build())\n                        .compression(true)\n                        .dataRetention(604800.0)\n                        .encryption(true)\n                        .fullBackupRetention(145152000.0)\n                        .incrementalBackupRetention(145152000.0)\n                        .pool(\"cloudPool_policy\")\n                        .writebackFrequency(32400.0)\n                        .build())\n                    .build())\n            .description(\"filePoolPolicySample description\")\n            .applyOrder(1.0)\n            .build());\n\n        // PowerScale Default File Pool Policy applies to all files not selected by higher-priority and can specify storage operations for these files.\n        var exampleDefaultPolicy = new FilepoolPolicy(\"exampleDefaultPolicy\", FilepoolPolicyArgs.builder()\n            .name(\"Default policy\")\n            .isDefaultPolicy(true)\n            .actions(            \n                FilepoolPolicyActionArgs.builder()\n                    .dataAccessPatternAction(\"concurrency\")\n                    .actionType(\"set_data_access_pattern\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .dataStoragePolicyAction(FilepoolPolicyActionDataStoragePolicyActionArgs.builder()\n                        .ssdStrategy(\"metadata\")\n                        .storagepool(\"anywhere\")\n                        .build())\n                    .actionType(\"apply_data_storage_policy\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .snapshotStoragePolicyAction(FilepoolPolicyActionSnapshotStoragePolicyActionArgs.builder()\n                        .ssdStrategy(\"metadata\")\n                        .storagepool(\"anywhere\")\n                        .build())\n                    .actionType(\"apply_snapshot_storage_policy\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .requestedProtectionAction(\"default\")\n                    .actionType(\"set_requested_protection\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .enableCoalescerAction(true)\n                    .actionType(\"enable_coalescer\")\n                    .build(),\n                FilepoolPolicyActionArgs.builder()\n                    .enablePackingAction(true)\n                    .actionType(\"enable_packing\")\n                    .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # After `pulumi up` of this example file it will create a new file pool policy with the name set in `name` attribute on the PowerScale.\n\n  # PowerScale File Pool Policy can identify logical groups of files and specify storage operations for these files.\n  exampleFilepoolPolicy:\n    type: powerscale:FilepoolPolicy\n    name: example_filepool_policy\n    properties:\n      name: filePoolPolicySample\n      isDefaultPolicy: false # Optional params for creating and updating.\n      #   # Specifies the file matching rules for determining which files will be managed by this policy. (Update Supported)\n      fileMatchingPattern:\n        orCriterias:\n          - andCriterias:\n              - operator: '>'\n                type: size\n                units: B\n                value: '1073741824'\n              - operator: '>'\n                type: birth_time\n                useRelativeTime: true\n                value: '20'\n              - operator: '>'\n                type: metadata_changed_time\n                useRelativeTime: false\n                value: '1704742200'\n              - operator: <\n                type: accessed_time\n                useRelativeTime: true\n                value: '20'\n          - andCriterias:\n              - operator: <\n                type: changed_time\n                useRelativeTime: false\n                value: '1704820500'\n              - attributeExists: false\n                field: test\n                type: custom_attribute\n                value: \"\"\n              - operator: '!='\n                type: file_type\n                value: directory\n              - beginsWith: false\n                caseSensitive: true\n                operator: '!='\n                type: path\n                value: test\n              - caseSensitive: true\n                operator: '!='\n                type: name\n                value: test\n      actions:\n        - dataAccessPatternAction: concurrency\n          actionType: set_data_access_pattern\n        - dataStoragePolicyAction:\n            ssdStrategy: metadata\n            storagepool: anywhere\n          actionType: apply_data_storage_policy\n        - snapshotStoragePolicyAction:\n            ssdStrategy: metadata\n            storagepool: anywhere\n          actionType: apply_snapshot_storage_policy\n        - requestedProtectionAction: default\n          actionType: set_requested_protection\n        - enableCoalescerAction: true\n          actionType: enable_coalescer\n        - enablePackingAction: true\n          actionType: enable_packing\n        - actionType: set_cloudpool_policy\n          cloudpoolPolicyAction:\n            archiveSnapshotFiles: true\n            cache:\n              expiration: 86400\n              readAhead: partial\n              type: cached\n            compression: true\n            dataRetention: 604800\n            encryption: true\n            fullBackupRetention: 1.45152e+08\n            incrementalBackupRetention: 1.45152e+08\n            pool: cloudPool_policy\n            writebackFrequency: 32400\n      description: filePoolPolicySample description\n      applyOrder: 1\n  # PowerScale Default File Pool Policy applies to all files not selected by higher-priority and can specify storage operations for these files.\n  exampleDefaultPolicy:\n    type: powerscale:FilepoolPolicy\n    name: example_default_policy\n    properties:\n      name: Default policy\n      isDefaultPolicy: true # Optional actions when creating and updating.\n      #   # A list of actions to be taken for matching files. (Update Supported)\n      actions:\n        - dataAccessPatternAction: concurrency\n          actionType: set_data_access_pattern\n        - dataStoragePolicyAction:\n            ssdStrategy: metadata\n            storagepool: anywhere\n          actionType: apply_data_storage_policy\n        - snapshotStoragePolicyAction:\n            ssdStrategy: metadata\n            storagepool: anywhere\n          actionType: apply_snapshot_storage_policy\n        - requestedProtectionAction: default\n          actionType: set_requested_protection\n        - enableCoalescerAction: true\n          actionType: enable_coalescer\n        - enablePackingAction: true\n          actionType: enable_packing\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/filepoolPolicy:FilepoolPolicy example_filepool_policy <policyID>\n```\n\nExample1:\n\n```sh\n$ pulumi import powerscale:index/filepoolPolicy:FilepoolPolicy example_filepool_policy filePoolPolicySample\n```\n\nExample2, for default policy, policyID should be \"is_default_policy=true\":\n\n```sh\n$ pulumi import powerscale:index/filepoolPolicy:FilepoolPolicy example_filepool_policy is_default_policy=true\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"actions":{"description":"A list of actions to be taken for matching files.\n","items":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyAction:FilepoolPolicyAction"},"type":"array"},"applyOrder":{"description":"The order in which this policy should be applied (relative to other policies).\n","type":"number"},"description":{"description":"A description for this File Pool Policy.\n","type":"string"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyFileMatchingPattern:FilepoolPolicyFileMatchingPattern","description":"Specifies the file matching rules for determining which files will be managed by this policy.\n"},"isDefaultPolicy":{"description":"Specifies if the policy is default policy. Default policy applies to all files not selected by higher-priority policies. Cannot be updated.\n","type":"boolean"},"name":{"description":"A unique name for this policy. If the policy is default policy, its name should be \"Default policy\".\n","type":"string"}},"properties":{"actions":{"description":"A list of actions to be taken for matching files.\n","items":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyAction:FilepoolPolicyAction"},"type":"array"},"applyOrder":{"description":"The order in which this policy should be applied (relative to other policies).\n","type":"number"},"birthClusterId":{"description":"The guid assigned to the cluster on which the policy was created.\n","type":"string"},"description":{"description":"A description for this File Pool Policy.\n","type":"string"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyFileMatchingPattern:FilepoolPolicyFileMatchingPattern","description":"Specifies the file matching rules for determining which files will be managed by this policy.\n"},"isDefaultPolicy":{"description":"Specifies if the policy is default policy. Default policy applies to all files not selected by higher-priority policies. Cannot be updated.\n","type":"boolean"},"name":{"description":"A unique name for this policy. If the policy is default policy, its name should be \"Default policy\".\n","type":"string"},"state":{"description":"Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\").\n","type":"string"},"stateDetails":{"description":"Gives further information to describe the state of this policy.\n","type":"string"}},"required":["applyOrder","birthClusterId","description","name","state","stateDetails"],"stateInputs":{"description":"Input properties used for looking up and filtering FilepoolPolicy resources.\n","properties":{"actions":{"description":"A list of actions to be taken for matching files.\n","items":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyAction:FilepoolPolicyAction"},"type":"array"},"applyOrder":{"description":"The order in which this policy should be applied (relative to other policies).\n","type":"number"},"birthClusterId":{"description":"The guid assigned to the cluster on which the policy was created.\n","type":"string"},"description":{"description":"A description for this File Pool Policy.\n","type":"string"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyFileMatchingPattern:FilepoolPolicyFileMatchingPattern","description":"Specifies the file matching rules for determining which files will be managed by this policy.\n"},"isDefaultPolicy":{"description":"Specifies if the policy is default policy. Default policy applies to all files not selected by higher-priority policies. Cannot be updated.\n","type":"boolean"},"name":{"description":"A unique name for this policy. If the policy is default policy, its name should be \"Default policy\".\n","type":"string"},"state":{"description":"Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\").\n","type":"string"},"stateDetails":{"description":"Gives further information to describe the state of this policy.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/filesystem:Filesystem":{"description":"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.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update (owner, group, access_control), Delete and Import existing FileSystem(Namespace directory) from Powerscale array.\n// After `pulumi up` of this example file it will create a new FileSystem(Namespace directory) with the name set in `name` attribute in the directory path provided in `directory_path`on the PowerScale array\n// PowerScale FileSystem Resource allows you to manage the Namespace Directory on the Powerscale array\nconst fileSystemTest = new powerscale.Filesystem(\"file_system_test\", {\n    name: \"DirTf\",\n    group: {\n        id: \"GID:0\",\n        name: \"wheel\",\n        type: \"group\",\n    },\n    owner: {\n        id: \"UID:1501\",\n        name: \"Guest\",\n        type: \"user\",\n    },\n    recursive: true,\n    overwrite: false,\n});\n// Steps to create a file system using the SID.\n// First use the user datasource to get the UID using the SID.\nconst getUserWithSID = powerscale.getUser({\n    filter: {\n        names: [{\n            name: \"Guest\",\n            sid: \"S-1-5-21-3219966720-1480896164-796802738-501\",\n        }],\n    },\n});\n// Once you get the UID using the datasource , use that UID while creating your fileystem.\nconst ifsTestdir = new powerscale.Filesystem(\"ifs_testdir\", {\n    accessControl: \"0770\",\n    directoryPath: \"/ifs\",\n    fullPath: \"/ifs/new-fs\",\n    group: {\n        id: \"GID:1800\",\n        name: \"Isilon Users\",\n        type: \"group\",\n    },\n    name: \"new-fs\",\n    overwrite: false,\n    owner: {\n        id: getUserWithSID.then(getUserWithSID => getUserWithSID.users?.[0]?.uid),\n        name: \"Guest\",\n        type: \"user\",\n    },\n    recursive: true,\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update (owner, group, access_control), Delete and Import existing FileSystem(Namespace directory) from Powerscale array.\n# After `pulumi up` of this example file it will create a new FileSystem(Namespace directory) with the name set in `name` attribute in the directory path provided in `directory_path`on the PowerScale array\n# PowerScale FileSystem Resource allows you to manage the Namespace Directory on the Powerscale array\nfile_system_test = powerscale.Filesystem(\"file_system_test\",\n    name=\"DirTf\",\n    group={\n        \"id\": \"GID:0\",\n        \"name\": \"wheel\",\n        \"type\": \"group\",\n    },\n    owner={\n        \"id\": \"UID:1501\",\n        \"name\": \"Guest\",\n        \"type\": \"user\",\n    },\n    recursive=True,\n    overwrite=False)\n# Steps to create a file system using the SID.\n# First use the user datasource to get the UID using the SID.\nget_user_with_sid = powerscale.get_user(filter={\n    \"names\": [{\n        \"name\": \"Guest\",\n        \"sid\": \"S-1-5-21-3219966720-1480896164-796802738-501\",\n    }],\n})\n# Once you get the UID using the datasource , use that UID while creating your fileystem.\nifs_testdir = powerscale.Filesystem(\"ifs_testdir\",\n    access_control=\"0770\",\n    directory_path=\"/ifs\",\n    full_path=\"/ifs/new-fs\",\n    group={\n        \"id\": \"GID:1800\",\n        \"name\": \"Isilon Users\",\n        \"type\": \"group\",\n    },\n    name=\"new-fs\",\n    overwrite=False,\n    owner={\n        \"id\": get_user_with_sid.users[0].uid,\n        \"name\": \"Guest\",\n        \"type\": \"user\",\n    },\n    recursive=True)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update (owner, group, access_control), Delete and Import existing FileSystem(Namespace directory) from Powerscale array.\n    // After `pulumi up` of this example file it will create a new FileSystem(Namespace directory) with the name set in `name` attribute in the directory path provided in `directory_path`on the PowerScale array\n    // PowerScale FileSystem Resource allows you to manage the Namespace Directory on the Powerscale array\n    var fileSystemTest = new Powerscale.Filesystem(\"file_system_test\", new()\n    {\n        Name = \"DirTf\",\n        Group = new Powerscale.Inputs.FilesystemGroupArgs\n        {\n            Id = \"GID:0\",\n            Name = \"wheel\",\n            Type = \"group\",\n        },\n        Owner = new Powerscale.Inputs.FilesystemOwnerArgs\n        {\n            Id = \"UID:1501\",\n            Name = \"Guest\",\n            Type = \"user\",\n        },\n        Recursive = true,\n        Overwrite = false,\n    });\n\n    // Steps to create a file system using the SID.\n    // First use the user datasource to get the UID using the SID.\n    var getUserWithSID = Powerscale.GetUser.Invoke(new()\n    {\n        Filter = new Powerscale.Inputs.GetUserFilterInputArgs\n        {\n            Names = new[]\n            {\n                new Powerscale.Inputs.GetUserFilterNameInputArgs\n                {\n                    Name = \"Guest\",\n                    Sid = \"S-1-5-21-3219966720-1480896164-796802738-501\",\n                },\n            },\n        },\n    });\n\n    // Once you get the UID using the datasource , use that UID while creating your fileystem.\n    var ifsTestdir = new Powerscale.Filesystem(\"ifs_testdir\", new()\n    {\n        AccessControl = \"0770\",\n        DirectoryPath = \"/ifs\",\n        FullPath = \"/ifs/new-fs\",\n        Group = new Powerscale.Inputs.FilesystemGroupArgs\n        {\n            Id = \"GID:1800\",\n            Name = \"Isilon Users\",\n            Type = \"group\",\n        },\n        Name = \"new-fs\",\n        Overwrite = false,\n        Owner = new Powerscale.Inputs.FilesystemOwnerArgs\n        {\n            Id = getUserWithSID.Apply(getUserResult => getUserResult.Users[0]?.Uid),\n            Name = \"Guest\",\n            Type = \"user\",\n        },\n        Recursive = true,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update (owner, group, access_control), Delete and Import existing FileSystem(Namespace directory) from Powerscale array.\n\t\t// After `pulumi up` of this example file it will create a new FileSystem(Namespace directory) with the name set in `name` attribute in the directory path provided in `directory_path`on the PowerScale array\n\t\t// PowerScale FileSystem Resource allows you to manage the Namespace Directory on the Powerscale array\n\t\t_, err := powerscale.NewFilesystem(ctx, \"file_system_test\", &powerscale.FilesystemArgs{\n\t\t\tName: pulumi.String(\"DirTf\"),\n\t\t\tGroup: &powerscale.FilesystemGroupArgs{\n\t\t\t\tId:   pulumi.String(\"GID:0\"),\n\t\t\t\tName: pulumi.String(\"wheel\"),\n\t\t\t\tType: pulumi.String(\"group\"),\n\t\t\t},\n\t\t\tOwner: &powerscale.FilesystemOwnerArgs{\n\t\t\t\tId:   pulumi.String(\"UID:1501\"),\n\t\t\t\tName: pulumi.String(\"Guest\"),\n\t\t\t\tType: pulumi.String(\"user\"),\n\t\t\t},\n\t\t\tRecursive: pulumi.Bool(true),\n\t\t\tOverwrite: pulumi.Bool(false),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// First use the user datasource to get the UID using the SID.\n\t\tgetUserWithSID, err := powerscale.LookupUser(ctx, &powerscale.LookupUserArgs{\n\t\t\tFilter: powerscale.GetUserFilter{\n\t\t\t\tNames: []powerscale.GetUserFilterName{\n\t\t\t\t\t{\n\t\t\t\t\t\tName: pulumi.StringRef(\"Guest\"),\n\t\t\t\t\t\tSid:  pulumi.StringRef(\"S-1-5-21-3219966720-1480896164-796802738-501\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// Once you get the UID using the datasource , use that UID while creating your fileystem.\n\t\t_, err = powerscale.NewFilesystem(ctx, \"ifs_testdir\", &powerscale.FilesystemArgs{\n\t\t\tAccessControl: pulumi.String(\"0770\"),\n\t\t\tDirectoryPath: pulumi.String(\"/ifs\"),\n\t\t\tFullPath:      pulumi.String(\"/ifs/new-fs\"),\n\t\t\tGroup: &powerscale.FilesystemGroupArgs{\n\t\t\t\tId:   pulumi.String(\"GID:1800\"),\n\t\t\t\tName: pulumi.String(\"Isilon Users\"),\n\t\t\t\tType: pulumi.String(\"group\"),\n\t\t\t},\n\t\t\tName:      pulumi.String(\"new-fs\"),\n\t\t\tOverwrite: pulumi.Bool(false),\n\t\t\tOwner: &powerscale.FilesystemOwnerArgs{\n\t\t\t\tId:   pulumi.String(getUserWithSID.Users[0].Uid),\n\t\t\t\tName: pulumi.String(\"Guest\"),\n\t\t\t\tType: pulumi.String(\"user\"),\n\t\t\t},\n\t\t\tRecursive: pulumi.Bool(true),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Filesystem;\nimport com.pulumi.powerscale.FilesystemArgs;\nimport com.pulumi.powerscale.inputs.FilesystemGroupArgs;\nimport com.pulumi.powerscale.inputs.FilesystemOwnerArgs;\nimport com.pulumi.powerscale.PowerscaleFunctions;\nimport com.pulumi.powerscale.inputs.GetUserArgs;\nimport com.pulumi.powerscale.inputs.GetUserFilterArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update (owner, group, access_control), Delete and Import existing FileSystem(Namespace directory) from Powerscale array.\n        // After `pulumi up` of this example file it will create a new FileSystem(Namespace directory) with the name set in `name` attribute in the directory path provided in `directory_path`on the PowerScale array\n        // PowerScale FileSystem Resource allows you to manage the Namespace Directory on the Powerscale array\n        var fileSystemTest = new Filesystem(\"fileSystemTest\", FilesystemArgs.builder()\n            .name(\"DirTf\")\n            .group(FilesystemGroupArgs.builder()\n                .id(\"GID:0\")\n                .name(\"wheel\")\n                .type(\"group\")\n                .build())\n            .owner(FilesystemOwnerArgs.builder()\n                .id(\"UID:1501\")\n                .name(\"Guest\")\n                .type(\"user\")\n                .build())\n            .recursive(true)\n            .overwrite(false)\n            .build());\n\n        // Steps to create a file system using the SID.\n        // First use the user datasource to get the UID using the SID.\n        final var getUserWithSID = PowerscaleFunctions.getUser(GetUserArgs.builder()\n            .filter(GetUserFilterArgs.builder()\n                .names(GetUserFilterNameArgs.builder()\n                    .name(\"Guest\")\n                    .sid(\"S-1-5-21-3219966720-1480896164-796802738-501\")\n                    .build())\n                .build())\n            .build());\n\n        // Once you get the UID using the datasource , use that UID while creating your fileystem.\n        var ifsTestdir = new Filesystem(\"ifsTestdir\", FilesystemArgs.builder()\n            .accessControl(\"0770\")\n            .directoryPath(\"/ifs\")\n            .fullPath(\"/ifs/new-fs\")\n            .group(FilesystemGroupArgs.builder()\n                .id(\"GID:1800\")\n                .name(\"Isilon Users\")\n                .type(\"group\")\n                .build())\n            .name(\"new-fs\")\n            .overwrite(false)\n            .owner(FilesystemOwnerArgs.builder()\n                .id(getUserWithSID.users()[0].uid())\n                .name(\"Guest\")\n                .type(\"user\")\n                .build())\n            .recursive(true)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update (owner, group, access_control), Delete and Import existing FileSystem(Namespace directory) from Powerscale array.\n  # After `pulumi up` of this example file it will create a new FileSystem(Namespace directory) with the name set in `name` attribute in the directory path provided in `directory_path`on the PowerScale array\n\n  # PowerScale FileSystem Resource allows you to manage the Namespace Directory on the Powerscale array\n  fileSystemTest: # Steps to create a file system using the SID.\n    type: powerscale:Filesystem\n    name: file_system_test\n    properties:\n      name: DirTf\n      group:\n        id: GID:0\n        name: wheel\n        type: group\n      owner:\n        id: UID:1501\n        name: Guest\n        type: user\n      recursive: true # Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes and ACLS, when set to true.\n      overwrite: false # access_control = \"0777\"\n  # Once you get the UID using the datasource , use that UID while creating your fileystem.\n  ifsTestdir:\n    type: powerscale:Filesystem\n    name: ifs_testdir\n    properties:\n      accessControl: '0770'\n      directoryPath: /ifs\n      fullPath: /ifs/new-fs\n      group:\n        id: GID:1800\n        name: Isilon Users\n        type: group\n      name: new-fs\n      overwrite: false\n      owner:\n        id: ${getUserWithSID.users[0].uid}\n        name: Guest\n        type: user\n      recursive: true\nvariables:\n  # First use the user datasource to get the UID using the SID.\n  getUserWithSID:\n    fn::invoke:\n      function: powerscale:getUser\n      arguments:\n        filter:\n          names:\n            - name: Guest\n              sid: S-1-5-21-3219966720-1480896164-796802738-501\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/filesystem:Filesystem file_system_test <name>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/filesystem:Filesystem file_system_test ifs/DirTf\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"accessControl":{"description":"The ACL value for the directory. Users can either provide access rights input such as 'private*read' , 'private' ,\n\t\t\t'public*read', 'public*read*write', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700).\n\t\t\t(Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)\n","type":"string"},"directoryPath":{"description":"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.\n","type":"string"},"filesystemId":{"description":"FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)\n","type":"string"},"fullPath":{"description":"The full path of the FileSystem\n","type":"string"},"group":{"$ref":"#/types/powerscale:index%2FFilesystemGroup:FilesystemGroup","description":"The group of the Filesystem.(Update Supported)\n"},"name":{"description":"FileSystem directory name\n","type":"string"},"overwrite":{"description":"Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.\n","type":"boolean"},"owner":{"$ref":"#/types/powerscale:index%2FFilesystemOwner:FilesystemOwner","description":"The owner of the Filesystem.(Update Supported)\n"},"queryZone":{"description":"Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.\n","type":"string"},"recursive":{"description":"Creates intermediate folders recursively when set to true.\n","type":"boolean"}},"properties":{"accessControl":{"description":"The ACL value for the directory. Users can either provide access rights input such as 'private*read' , 'private' ,\n\t\t\t'public*read', 'public*read*write', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700).\n\t\t\t(Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)\n","type":"string"},"authoritative":{"description":"If the directory has access rights set, then this field returns acl. Otherwise it returns mode.\n","type":"string"},"creationTime":{"description":"File System Resource Creation time\n","type":"string"},"directoryPath":{"description":"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.\n","type":"string"},"filesystemId":{"description":"FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)\n","type":"string"},"fullPath":{"description":"The full path of the FileSystem\n","type":"string"},"group":{"$ref":"#/types/powerscale:index%2FFilesystemGroup:FilesystemGroup","description":"The group of the Filesystem.(Update Supported)\n"},"mode":{"description":"Acl mode\n","type":"string"},"name":{"description":"FileSystem directory name\n","type":"string"},"overwrite":{"description":"Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.\n","type":"boolean"},"owner":{"$ref":"#/types/powerscale:index%2FFilesystemOwner:FilesystemOwner","description":"The owner of the Filesystem.(Update Supported)\n"},"queryZone":{"description":"Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.\n","type":"string"},"recursive":{"description":"Creates intermediate folders recursively when set to true.\n","type":"boolean"},"type":{"description":"File System Resource type\n","type":"string"}},"required":["authoritative","creationTime","directoryPath","filesystemId","fullPath","group","mode","name","overwrite","owner","recursive","type"],"requiredInputs":["group","owner"],"stateInputs":{"description":"Input properties used for looking up and filtering Filesystem resources.\n","properties":{"accessControl":{"description":"The ACL value for the directory. Users can either provide access rights input such as 'private*read' , 'private' ,\n\t\t\t'public*read', 'public*read*write', 'public' or permissions in POSIX format as '0550', '0770', '0775','0777' or 0700. The Default value is (0700).\n\t\t\t(Update Supported but Modification of ACL is only supported from POSIX to POSIX mode)\n","type":"string"},"authoritative":{"description":"If the directory has access rights set, then this field returns acl. Otherwise it returns mode.\n","type":"string"},"creationTime":{"description":"File System Resource Creation time\n","type":"string"},"directoryPath":{"description":"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.\n","type":"string"},"filesystemId":{"description":"FileSystem identifier. Unique identifier for the FileSystem(Namespace directory)\n","type":"string"},"fullPath":{"description":"The full path of the FileSystem\n","type":"string"},"group":{"$ref":"#/types/powerscale:index%2FFilesystemGroup:FilesystemGroup","description":"The group of the Filesystem.(Update Supported)\n"},"mode":{"description":"Acl mode\n","type":"string"},"name":{"description":"FileSystem directory name\n","type":"string"},"overwrite":{"description":"Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes if set to true.\n","type":"boolean"},"owner":{"$ref":"#/types/powerscale:index%2FFilesystemOwner:FilesystemOwner","description":"The owner of the Filesystem.(Update Supported)\n"},"queryZone":{"description":"Specifies the zone that the object belongs to. Optional and will default to the default access zone if one is not set.\n","type":"string"},"recursive":{"description":"Creates intermediate folders recursively when set to true.\n","type":"boolean"},"type":{"description":"File System Resource type\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/groupnet:Groupnet":{"description":"This resource is used to manage the Groupnet entity of PowerScale Array. We can Create, Update and Delete the Groupnet using this resource. We can also import an existing Groupnet from PowerScale array. PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// After `pulumi up` of this example file it will create a new groupnet with the name set in `name` attribute on the PowerScale.\n// PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\nconst exampleGroupnet = new powerscale.Groupnet(\"example_groupnet\", {name: \"testGroupnetResourceSample\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# After `pulumi up` of this example file it will create a new groupnet with the name set in `name` attribute on the PowerScale.\n# PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\nexample_groupnet = powerscale.Groupnet(\"example_groupnet\", name=\"testGroupnetResourceSample\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // After `pulumi up` of this example file it will create a new groupnet with the name set in `name` attribute on the PowerScale.\n    // PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\n    var exampleGroupnet = new Powerscale.Groupnet(\"example_groupnet\", new()\n    {\n        Name = \"testGroupnetResourceSample\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// After `pulumi up` of this example file it will create a new groupnet with the name set in `name` attribute on the PowerScale.\n\t\t// PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\n\t\t_, err := powerscale.NewGroupnet(ctx, \"example_groupnet\", &powerscale.GroupnetArgs{\n\t\t\tName: pulumi.String(\"testGroupnetResourceSample\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Groupnet;\nimport com.pulumi.powerscale.GroupnetArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // After `pulumi up` of this example file it will create a new groupnet with the name set in `name` attribute on the PowerScale.\n        // PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\n        var exampleGroupnet = new Groupnet(\"exampleGroupnet\", GroupnetArgs.builder()\n            .name(\"testGroupnetResourceSample\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # After `pulumi up` of this example file it will create a new groupnet with the name set in `name` attribute on the PowerScale.\n\n  # PowerScale Groupnet sits above subnets and pools and allows separate Access Zones to contain distinct DNS settings.\n  exampleGroupnet:\n    type: powerscale:Groupnet\n    name: example_groupnet\n    properties:\n      name: testGroupnetResourceSample\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/groupnet:Groupnet example_groupnet <groupnetName>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/groupnet:Groupnet example_groupnet groupnetName\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"allowWildcardSubdomains":{"description":"If enabled, SmartConnect treats subdomains of known dns zones as the known dns zone. This is required for S3 Virtual Host domains. Defaults to True.\n","type":"boolean"},"description":{"description":"A description of the groupnet.\n","type":"string"},"dnsCacheEnabled":{"description":"DNS caching is enabled or disabled. Defaults to True.\n","type":"boolean"},"dnsResolverRotate":{"description":"Enable or disable DNS resolver rotate. Defaults to False.\n","type":"boolean"},"dnsSearches":{"description":"List of DNS search suffixes.\n","items":{"type":"string"},"type":"array"},"dnsServers":{"description":"List of Domain Name Server IP addresses.\n","items":{"type":"string"},"type":"array"},"name":{"description":"The name of the groupnet.\n","type":"string"},"serverSideDnsSearch":{"description":"Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. Defaults to True.\n","type":"boolean"}},"properties":{"allowWildcardSubdomains":{"description":"If enabled, SmartConnect treats subdomains of known dns zones as the known dns zone. This is required for S3 Virtual Host domains. Defaults to True.\n","type":"boolean"},"description":{"description":"A description of the groupnet.\n","type":"string"},"dnsCacheEnabled":{"description":"DNS caching is enabled or disabled. Defaults to True.\n","type":"boolean"},"dnsResolverRotate":{"description":"Enable or disable DNS resolver rotate. Defaults to False.\n","type":"boolean"},"dnsSearches":{"description":"List of DNS search suffixes.\n","items":{"type":"string"},"type":"array"},"dnsServers":{"description":"List of Domain Name Server IP addresses.\n","items":{"type":"string"},"type":"array"},"name":{"description":"The name of the groupnet.\n","type":"string"},"serverSideDnsSearch":{"description":"Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. Defaults to True.\n","type":"boolean"},"subnets":{"description":"Name of the subnets in the groupnet.\n","items":{"type":"string"},"type":"array"}},"required":["allowWildcardSubdomains","dnsCacheEnabled","dnsResolverRotate","name","serverSideDnsSearch","subnets"],"stateInputs":{"description":"Input properties used for looking up and filtering Groupnet resources.\n","properties":{"allowWildcardSubdomains":{"description":"If enabled, SmartConnect treats subdomains of known dns zones as the known dns zone. This is required for S3 Virtual Host domains. Defaults to True.\n","type":"boolean"},"description":{"description":"A description of the groupnet.\n","type":"string"},"dnsCacheEnabled":{"description":"DNS caching is enabled or disabled. Defaults to True.\n","type":"boolean"},"dnsResolverRotate":{"description":"Enable or disable DNS resolver rotate. Defaults to False.\n","type":"boolean"},"dnsSearches":{"description":"List of DNS search suffixes.\n","items":{"type":"string"},"type":"array"},"dnsServers":{"description":"List of Domain Name Server IP addresses.\n","items":{"type":"string"},"type":"array"},"name":{"description":"The name of the groupnet.\n","type":"string"},"serverSideDnsSearch":{"description":"Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. Defaults to True.\n","type":"boolean"},"subnets":{"description":"Name of the subnets in the groupnet.\n","items":{"type":"string"},"type":"array"}},"type":"object"},"type":"object"},"powerscale:index/ldapProvider:LdapProvider":{"description":"This resource is used to manage the LDAP provider entity of PowerScale Array. We can Create, Update and Delete the LDAP provider using this resource. We can also import an existing LDAP provider from PowerScale array. PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// After `pulumi up` of this example file it will create a new LDAP provider with the name set in `name` attribute on the PowerScale.\n// PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\nconst exampleLdapProvider = new powerscale.LdapProvider(\"example_ldap_provider\", {\n    name: \"ldap_provider_test\",\n    baseDn: \"dc=tthe,dc=testLdap,dc=com\",\n    serverUris: [\"ldap://10.225.108.54\"],\n    ignoreUnresolvableServerUrls: false,\n    groupnet: \"groupnet0\",\n    alternateSecurityIdentitiesAttribute: \"altSecurityIdentities\",\n    authentication: true,\n    balanceServers: true,\n    bindDn: \"\",\n    bindMechanism: \"simple\",\n    bindTimeout: 10,\n    certificateAuthorityFile: \"\",\n    checkOnlineInterval: 100,\n    cnAttribute: \"cn\",\n    createHomeDirectory: false,\n    cryptPasswordAttribute: \"\",\n    emailAttribute: \"mail\",\n    enabled: true,\n    enumerateGroups: true,\n    enumerateUsers: true,\n    findableGroups: [],\n    findableUsers: [],\n    gecosAttribute: \"gecos\",\n    gidAttribute: \"gidNumber\",\n    groupBaseDn: \"\",\n    groupDomain: \"LDAP_GROUPS\",\n    groupFilter: \"(objectClass=posixGroup)\",\n    groupMembersAttribute: \"memberUid\",\n    groupSearchScope: \"default\",\n    homeDirectoryTemplate: \"\",\n    homedirAttribute: \"homeDirectory\",\n    ignoreTlsErrors: false,\n    listableGroups: [],\n    listableUsers: [],\n    loginShell: \"/bin/bash\",\n    memberLookupMethod: \"default\",\n    memberOfAttribute: \"\",\n    nameAttribute: \"uid\",\n    netgroupBaseDn: \"\",\n    netgroupFilter: \"(objectClass=nisNetgroup)\",\n    netgroupMembersAttribute: \"memberNisNetgroup\",\n    netgroupSearchScope: \"default\",\n    netgroupTripleAttribute: \"nisNetgroupTriple\",\n    normalizeGroups: false,\n    normalizeUsers: false,\n    ntPasswordAttribute: \"\",\n    ntlmSupport: \"all\",\n    providerDomain: \"\",\n    requireSecureConnection: false,\n    restrictFindable: true,\n    restrictListable: false,\n    searchScope: \"subtree\",\n    searchTimeout: 100,\n    shadowExpireAttribute: \"shadowExpire\",\n    shadowFlagAttribute: \"shadowFlag\",\n    shadowInactiveAttribute: \"shadowInactive\",\n    shadowLastChangeAttribute: \"shadowLastChange\",\n    shadowMaxAttribute: \"shadowMax\",\n    shadowMinAttribute: \"shadowMin\",\n    shadowUserFilter: \"(objectClass=shadowAccount)\",\n    shadowWarningAttribute: \"shadowWarning\",\n    shellAttribute: \"loginShell\",\n    sshPublicKeyAttribute: \"sshPublicKey\",\n    status: \"online\",\n    system: false,\n    tlsProtocolMin: \"1.2\",\n    uidAttribute: \"uidNumber\",\n    unfindableGroups: [\n        \"wheel\",\n        \"0\",\n        \"insightiq\",\n        \"15\",\n        \"isdmgmt\",\n        \"16\",\n    ],\n    unfindableUsers: [\n        \"root\",\n        \"0\",\n        \"insightiq\",\n        \"15\",\n        \"isdmgmt\",\n        \"16\",\n    ],\n    uniqueGroupMembersAttribute: \"\",\n    unlistableGroups: [],\n    unlistableUsers: [],\n    userBaseDn: \"\",\n    userDomain: \"LDAP_USERS\",\n    userFilter: \"(objectClass=posixAccount)\",\n    userSearchScope: \"default\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# After `pulumi up` of this example file it will create a new LDAP provider with the name set in `name` attribute on the PowerScale.\n# PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\nexample_ldap_provider = powerscale.LdapProvider(\"example_ldap_provider\",\n    name=\"ldap_provider_test\",\n    base_dn=\"dc=tthe,dc=testLdap,dc=com\",\n    server_uris=[\"ldap://10.225.108.54\"],\n    ignore_unresolvable_server_urls=False,\n    groupnet=\"groupnet0\",\n    alternate_security_identities_attribute=\"altSecurityIdentities\",\n    authentication=True,\n    balance_servers=True,\n    bind_dn=\"\",\n    bind_mechanism=\"simple\",\n    bind_timeout=10,\n    certificate_authority_file=\"\",\n    check_online_interval=100,\n    cn_attribute=\"cn\",\n    create_home_directory=False,\n    crypt_password_attribute=\"\",\n    email_attribute=\"mail\",\n    enabled=True,\n    enumerate_groups=True,\n    enumerate_users=True,\n    findable_groups=[],\n    findable_users=[],\n    gecos_attribute=\"gecos\",\n    gid_attribute=\"gidNumber\",\n    group_base_dn=\"\",\n    group_domain=\"LDAP_GROUPS\",\n    group_filter=\"(objectClass=posixGroup)\",\n    group_members_attribute=\"memberUid\",\n    group_search_scope=\"default\",\n    home_directory_template=\"\",\n    homedir_attribute=\"homeDirectory\",\n    ignore_tls_errors=False,\n    listable_groups=[],\n    listable_users=[],\n    login_shell=\"/bin/bash\",\n    member_lookup_method=\"default\",\n    member_of_attribute=\"\",\n    name_attribute=\"uid\",\n    netgroup_base_dn=\"\",\n    netgroup_filter=\"(objectClass=nisNetgroup)\",\n    netgroup_members_attribute=\"memberNisNetgroup\",\n    netgroup_search_scope=\"default\",\n    netgroup_triple_attribute=\"nisNetgroupTriple\",\n    normalize_groups=False,\n    normalize_users=False,\n    nt_password_attribute=\"\",\n    ntlm_support=\"all\",\n    provider_domain=\"\",\n    require_secure_connection=False,\n    restrict_findable=True,\n    restrict_listable=False,\n    search_scope=\"subtree\",\n    search_timeout=100,\n    shadow_expire_attribute=\"shadowExpire\",\n    shadow_flag_attribute=\"shadowFlag\",\n    shadow_inactive_attribute=\"shadowInactive\",\n    shadow_last_change_attribute=\"shadowLastChange\",\n    shadow_max_attribute=\"shadowMax\",\n    shadow_min_attribute=\"shadowMin\",\n    shadow_user_filter=\"(objectClass=shadowAccount)\",\n    shadow_warning_attribute=\"shadowWarning\",\n    shell_attribute=\"loginShell\",\n    ssh_public_key_attribute=\"sshPublicKey\",\n    status=\"online\",\n    system=False,\n    tls_protocol_min=\"1.2\",\n    uid_attribute=\"uidNumber\",\n    unfindable_groups=[\n        \"wheel\",\n        \"0\",\n        \"insightiq\",\n        \"15\",\n        \"isdmgmt\",\n        \"16\",\n    ],\n    unfindable_users=[\n        \"root\",\n        \"0\",\n        \"insightiq\",\n        \"15\",\n        \"isdmgmt\",\n        \"16\",\n    ],\n    unique_group_members_attribute=\"\",\n    unlistable_groups=[],\n    unlistable_users=[],\n    user_base_dn=\"\",\n    user_domain=\"LDAP_USERS\",\n    user_filter=\"(objectClass=posixAccount)\",\n    user_search_scope=\"default\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // After `pulumi up` of this example file it will create a new LDAP provider with the name set in `name` attribute on the PowerScale.\n    // PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n    var exampleLdapProvider = new Powerscale.LdapProvider(\"example_ldap_provider\", new()\n    {\n        Name = \"ldap_provider_test\",\n        BaseDn = \"dc=tthe,dc=testLdap,dc=com\",\n        ServerUris = new[]\n        {\n            \"ldap://10.225.108.54\",\n        },\n        IgnoreUnresolvableServerUrls = false,\n        Groupnet = \"groupnet0\",\n        AlternateSecurityIdentitiesAttribute = \"altSecurityIdentities\",\n        Authentication = true,\n        BalanceServers = true,\n        BindDn = \"\",\n        BindMechanism = \"simple\",\n        BindTimeout = 10,\n        CertificateAuthorityFile = \"\",\n        CheckOnlineInterval = 100,\n        CnAttribute = \"cn\",\n        CreateHomeDirectory = false,\n        CryptPasswordAttribute = \"\",\n        EmailAttribute = \"mail\",\n        Enabled = true,\n        EnumerateGroups = true,\n        EnumerateUsers = true,\n        FindableGroups = new[] {},\n        FindableUsers = new[] {},\n        GecosAttribute = \"gecos\",\n        GidAttribute = \"gidNumber\",\n        GroupBaseDn = \"\",\n        GroupDomain = \"LDAP_GROUPS\",\n        GroupFilter = \"(objectClass=posixGroup)\",\n        GroupMembersAttribute = \"memberUid\",\n        GroupSearchScope = \"default\",\n        HomeDirectoryTemplate = \"\",\n        HomedirAttribute = \"homeDirectory\",\n        IgnoreTlsErrors = false,\n        ListableGroups = new[] {},\n        ListableUsers = new[] {},\n        LoginShell = \"/bin/bash\",\n        MemberLookupMethod = \"default\",\n        MemberOfAttribute = \"\",\n        NameAttribute = \"uid\",\n        NetgroupBaseDn = \"\",\n        NetgroupFilter = \"(objectClass=nisNetgroup)\",\n        NetgroupMembersAttribute = \"memberNisNetgroup\",\n        NetgroupSearchScope = \"default\",\n        NetgroupTripleAttribute = \"nisNetgroupTriple\",\n        NormalizeGroups = false,\n        NormalizeUsers = false,\n        NtPasswordAttribute = \"\",\n        NtlmSupport = \"all\",\n        ProviderDomain = \"\",\n        RequireSecureConnection = false,\n        RestrictFindable = true,\n        RestrictListable = false,\n        SearchScope = \"subtree\",\n        SearchTimeout = 100,\n        ShadowExpireAttribute = \"shadowExpire\",\n        ShadowFlagAttribute = \"shadowFlag\",\n        ShadowInactiveAttribute = \"shadowInactive\",\n        ShadowLastChangeAttribute = \"shadowLastChange\",\n        ShadowMaxAttribute = \"shadowMax\",\n        ShadowMinAttribute = \"shadowMin\",\n        ShadowUserFilter = \"(objectClass=shadowAccount)\",\n        ShadowWarningAttribute = \"shadowWarning\",\n        ShellAttribute = \"loginShell\",\n        SshPublicKeyAttribute = \"sshPublicKey\",\n        Status = \"online\",\n        System = false,\n        TlsProtocolMin = \"1.2\",\n        UidAttribute = \"uidNumber\",\n        UnfindableGroups = new[]\n        {\n            \"wheel\",\n            \"0\",\n            \"insightiq\",\n            \"15\",\n            \"isdmgmt\",\n            \"16\",\n        },\n        UnfindableUsers = new[]\n        {\n            \"root\",\n            \"0\",\n            \"insightiq\",\n            \"15\",\n            \"isdmgmt\",\n            \"16\",\n        },\n        UniqueGroupMembersAttribute = \"\",\n        UnlistableGroups = new[] {},\n        UnlistableUsers = new[] {},\n        UserBaseDn = \"\",\n        UserDomain = \"LDAP_USERS\",\n        UserFilter = \"(objectClass=posixAccount)\",\n        UserSearchScope = \"default\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// After `pulumi up` of this example file it will create a new LDAP provider with the name set in `name` attribute on the PowerScale.\n\t\t// PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n\t\t_, err := powerscale.NewLdapProvider(ctx, \"example_ldap_provider\", &powerscale.LdapProviderArgs{\n\t\t\tName:   pulumi.String(\"ldap_provider_test\"),\n\t\t\tBaseDn: pulumi.String(\"dc=tthe,dc=testLdap,dc=com\"),\n\t\t\tServerUris: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"ldap://10.225.108.54\"),\n\t\t\t},\n\t\t\tIgnoreUnresolvableServerUrls:         pulumi.Bool(false),\n\t\t\tGroupnet:                             pulumi.String(\"groupnet0\"),\n\t\t\tAlternateSecurityIdentitiesAttribute: pulumi.String(\"altSecurityIdentities\"),\n\t\t\tAuthentication:                       pulumi.Bool(true),\n\t\t\tBalanceServers:                       pulumi.Bool(true),\n\t\t\tBindDn:                               pulumi.String(\"\"),\n\t\t\tBindMechanism:                        pulumi.String(\"simple\"),\n\t\t\tBindTimeout:                          pulumi.Float64(10),\n\t\t\tCertificateAuthorityFile:             pulumi.String(\"\"),\n\t\t\tCheckOnlineInterval:                  pulumi.Float64(100),\n\t\t\tCnAttribute:                          pulumi.String(\"cn\"),\n\t\t\tCreateHomeDirectory:                  pulumi.Bool(false),\n\t\t\tCryptPasswordAttribute:               pulumi.String(\"\"),\n\t\t\tEmailAttribute:                       pulumi.String(\"mail\"),\n\t\t\tEnabled:                              pulumi.Bool(true),\n\t\t\tEnumerateGroups:                      pulumi.Bool(true),\n\t\t\tEnumerateUsers:                       pulumi.Bool(true),\n\t\t\tFindableGroups:                       pulumi.StringArray{},\n\t\t\tFindableUsers:                        pulumi.StringArray{},\n\t\t\tGecosAttribute:                       pulumi.String(\"gecos\"),\n\t\t\tGidAttribute:                         pulumi.String(\"gidNumber\"),\n\t\t\tGroupBaseDn:                          pulumi.String(\"\"),\n\t\t\tGroupDomain:                          pulumi.String(\"LDAP_GROUPS\"),\n\t\t\tGroupFilter:                          pulumi.String(\"(objectClass=posixGroup)\"),\n\t\t\tGroupMembersAttribute:                pulumi.String(\"memberUid\"),\n\t\t\tGroupSearchScope:                     pulumi.String(\"default\"),\n\t\t\tHomeDirectoryTemplate:                pulumi.String(\"\"),\n\t\t\tHomedirAttribute:                     pulumi.String(\"homeDirectory\"),\n\t\t\tIgnoreTlsErrors:                      pulumi.Bool(false),\n\t\t\tListableGroups:                       pulumi.StringArray{},\n\t\t\tListableUsers:                        pulumi.StringArray{},\n\t\t\tLoginShell:                           pulumi.String(\"/bin/bash\"),\n\t\t\tMemberLookupMethod:                   pulumi.String(\"default\"),\n\t\t\tMemberOfAttribute:                    pulumi.String(\"\"),\n\t\t\tNameAttribute:                        pulumi.String(\"uid\"),\n\t\t\tNetgroupBaseDn:                       pulumi.String(\"\"),\n\t\t\tNetgroupFilter:                       pulumi.String(\"(objectClass=nisNetgroup)\"),\n\t\t\tNetgroupMembersAttribute:             pulumi.String(\"memberNisNetgroup\"),\n\t\t\tNetgroupSearchScope:                  pulumi.String(\"default\"),\n\t\t\tNetgroupTripleAttribute:              pulumi.String(\"nisNetgroupTriple\"),\n\t\t\tNormalizeGroups:                      pulumi.Bool(false),\n\t\t\tNormalizeUsers:                       pulumi.Bool(false),\n\t\t\tNtPasswordAttribute:                  pulumi.String(\"\"),\n\t\t\tNtlmSupport:                          pulumi.String(\"all\"),\n\t\t\tProviderDomain:                       pulumi.String(\"\"),\n\t\t\tRequireSecureConnection:              pulumi.Bool(false),\n\t\t\tRestrictFindable:                     pulumi.Bool(true),\n\t\t\tRestrictListable:                     pulumi.Bool(false),\n\t\t\tSearchScope:                          pulumi.String(\"subtree\"),\n\t\t\tSearchTimeout:                        pulumi.Float64(100),\n\t\t\tShadowExpireAttribute:                pulumi.String(\"shadowExpire\"),\n\t\t\tShadowFlagAttribute:                  pulumi.String(\"shadowFlag\"),\n\t\t\tShadowInactiveAttribute:              pulumi.String(\"shadowInactive\"),\n\t\t\tShadowLastChangeAttribute:            pulumi.String(\"shadowLastChange\"),\n\t\t\tShadowMaxAttribute:                   pulumi.String(\"shadowMax\"),\n\t\t\tShadowMinAttribute:                   pulumi.String(\"shadowMin\"),\n\t\t\tShadowUserFilter:                     pulumi.String(\"(objectClass=shadowAccount)\"),\n\t\t\tShadowWarningAttribute:               pulumi.String(\"shadowWarning\"),\n\t\t\tShellAttribute:                       pulumi.String(\"loginShell\"),\n\t\t\tSshPublicKeyAttribute:                pulumi.String(\"sshPublicKey\"),\n\t\t\tStatus:                               pulumi.String(\"online\"),\n\t\t\tSystem:                               pulumi.Bool(false),\n\t\t\tTlsProtocolMin:                       pulumi.String(\"1.2\"),\n\t\t\tUidAttribute:                         pulumi.String(\"uidNumber\"),\n\t\t\tUnfindableGroups: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"wheel\"),\n\t\t\t\tpulumi.String(\"0\"),\n\t\t\t\tpulumi.String(\"insightiq\"),\n\t\t\t\tpulumi.String(\"15\"),\n\t\t\t\tpulumi.String(\"isdmgmt\"),\n\t\t\t\tpulumi.String(\"16\"),\n\t\t\t},\n\t\t\tUnfindableUsers: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"root\"),\n\t\t\t\tpulumi.String(\"0\"),\n\t\t\t\tpulumi.String(\"insightiq\"),\n\t\t\t\tpulumi.String(\"15\"),\n\t\t\t\tpulumi.String(\"isdmgmt\"),\n\t\t\t\tpulumi.String(\"16\"),\n\t\t\t},\n\t\t\tUniqueGroupMembersAttribute: pulumi.String(\"\"),\n\t\t\tUnlistableGroups:            pulumi.StringArray{},\n\t\t\tUnlistableUsers:             pulumi.StringArray{},\n\t\t\tUserBaseDn:                  pulumi.String(\"\"),\n\t\t\tUserDomain:                  pulumi.String(\"LDAP_USERS\"),\n\t\t\tUserFilter:                  pulumi.String(\"(objectClass=posixAccount)\"),\n\t\t\tUserSearchScope:             pulumi.String(\"default\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.LdapProvider;\nimport com.pulumi.powerscale.LdapProviderArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // After `pulumi up` of this example file it will create a new LDAP provider with the name set in `name` attribute on the PowerScale.\n        // PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n        var exampleLdapProvider = new LdapProvider(\"exampleLdapProvider\", LdapProviderArgs.builder()\n            .name(\"ldap_provider_test\")\n            .baseDn(\"dc=tthe,dc=testLdap,dc=com\")\n            .serverUris(\"ldap://10.225.108.54\")\n            .ignoreUnresolvableServerUrls(false)\n            .groupnet(\"groupnet0\")\n            .alternateSecurityIdentitiesAttribute(\"altSecurityIdentities\")\n            .authentication(true)\n            .balanceServers(true)\n            .bindDn(\"\")\n            .bindMechanism(\"simple\")\n            .bindTimeout(10.0)\n            .certificateAuthorityFile(\"\")\n            .checkOnlineInterval(100.0)\n            .cnAttribute(\"cn\")\n            .createHomeDirectory(false)\n            .cryptPasswordAttribute(\"\")\n            .emailAttribute(\"mail\")\n            .enabled(true)\n            .enumerateGroups(true)\n            .enumerateUsers(true)\n            .findableGroups()\n            .findableUsers()\n            .gecosAttribute(\"gecos\")\n            .gidAttribute(\"gidNumber\")\n            .groupBaseDn(\"\")\n            .groupDomain(\"LDAP_GROUPS\")\n            .groupFilter(\"(objectClass=posixGroup)\")\n            .groupMembersAttribute(\"memberUid\")\n            .groupSearchScope(\"default\")\n            .homeDirectoryTemplate(\"\")\n            .homedirAttribute(\"homeDirectory\")\n            .ignoreTlsErrors(false)\n            .listableGroups()\n            .listableUsers()\n            .loginShell(\"/bin/bash\")\n            .memberLookupMethod(\"default\")\n            .memberOfAttribute(\"\")\n            .nameAttribute(\"uid\")\n            .netgroupBaseDn(\"\")\n            .netgroupFilter(\"(objectClass=nisNetgroup)\")\n            .netgroupMembersAttribute(\"memberNisNetgroup\")\n            .netgroupSearchScope(\"default\")\n            .netgroupTripleAttribute(\"nisNetgroupTriple\")\n            .normalizeGroups(false)\n            .normalizeUsers(false)\n            .ntPasswordAttribute(\"\")\n            .ntlmSupport(\"all\")\n            .providerDomain(\"\")\n            .requireSecureConnection(false)\n            .restrictFindable(true)\n            .restrictListable(false)\n            .searchScope(\"subtree\")\n            .searchTimeout(100.0)\n            .shadowExpireAttribute(\"shadowExpire\")\n            .shadowFlagAttribute(\"shadowFlag\")\n            .shadowInactiveAttribute(\"shadowInactive\")\n            .shadowLastChangeAttribute(\"shadowLastChange\")\n            .shadowMaxAttribute(\"shadowMax\")\n            .shadowMinAttribute(\"shadowMin\")\n            .shadowUserFilter(\"(objectClass=shadowAccount)\")\n            .shadowWarningAttribute(\"shadowWarning\")\n            .shellAttribute(\"loginShell\")\n            .sshPublicKeyAttribute(\"sshPublicKey\")\n            .status(\"online\")\n            .system(false)\n            .tlsProtocolMin(\"1.2\")\n            .uidAttribute(\"uidNumber\")\n            .unfindableGroups(            \n                \"wheel\",\n                \"0\",\n                \"insightiq\",\n                \"15\",\n                \"isdmgmt\",\n                \"16\")\n            .unfindableUsers(            \n                \"root\",\n                \"0\",\n                \"insightiq\",\n                \"15\",\n                \"isdmgmt\",\n                \"16\")\n            .uniqueGroupMembersAttribute(\"\")\n            .unlistableGroups()\n            .unlistableUsers()\n            .userBaseDn(\"\")\n            .userDomain(\"LDAP_USERS\")\n            .userFilter(\"(objectClass=posixAccount)\")\n            .userSearchScope(\"default\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # After `pulumi up` of this example file it will create a new LDAP provider with the name set in `name` attribute on the PowerScale.\n\n  # PowerScale LDAP provider enables you to define, query, and modify directory services and resources.\n  exampleLdapProvider:\n    type: powerscale:LdapProvider\n    name: example_ldap_provider\n    properties:\n      name: ldap_provider_test\n      baseDn: dc=tthe,dc=testLdap,dc=com\n      serverUris:\n        - ldap://10.225.108.54\n      ignoreUnresolvableServerUrls: false # Optional groupnet for creating. Specifies the groupnet identifier.\n      groupnet: groupnet0\n      alternateSecurityIdentitiesAttribute: altSecurityIdentities\n      authentication: true # If true, connects the provider to a random server.\n      balanceServers: true # Specifies the distinguished name for binding to the LDAP server.\n      bindDn: \"\"\n      bindMechanism: simple\n      bindTimeout: 10 # Specifies the path to the root certificates file.\n      certificateAuthorityFile: \"\"\n      checkOnlineInterval: 100 # Specifies the canonical name.\n      cnAttribute: cn\n      createHomeDirectory: false # Specifies the hashed password value.\n      cryptPasswordAttribute: \"\"\n      emailAttribute: mail\n      enabled: true # If true, allows the provider to enumerate groups.\n      enumerateGroups: true # If true, allows the provider to enumerate users.\n      enumerateUsers: true # Specifies the list of groups that can be resolved.\n      findableGroups: []\n      findableUsers: []\n      gecosAttribute: gecos\n      gidAttribute: gidNumber\n      groupBaseDn: \"\"\n      groupDomain: LDAP_GROUPS\n      groupFilter: (objectClass=posixGroup)\n      groupMembersAttribute: memberUid\n      groupSearchScope: default\n      homeDirectoryTemplate: \"\"\n      homedirAttribute: homeDirectory\n      ignoreTlsErrors: false # Specifies the groups that can be viewed in the provider.\n      listableGroups: []\n      listableUsers: []\n      loginShell: /bin/bash\n      memberLookupMethod: default\n      memberOfAttribute: \"\"\n      nameAttribute: uid\n      netgroupBaseDn: \"\"\n      netgroupFilter: (objectClass=nisNetgroup)\n      netgroupMembersAttribute: memberNisNetgroup\n      netgroupSearchScope: default\n      netgroupTripleAttribute: nisNetgroupTriple\n      normalizeGroups: false # Normalizes user names to lowercase before look up.\n      normalizeUsers: false # Specifies the LDAP NT Password attribute.\n      ntPasswordAttribute: \"\"\n      ntlmSupport: all\n      providerDomain: \"\"\n      requireSecureConnection: false # If true, checks the provider for filtered lists of findable and unfindable users and groups.\n      restrictFindable: true # If true, checks the provider for filtered lists of listable and unlistable users and groups.\n      restrictListable: false # Specifies the default depth from the base DN to perform LDAP searches.\n      #   # Acceptable values: base, onelevel, subtree, children.\n      searchScope: subtree\n      searchTimeout: 100 # Sets the attribute name that indicates the absolute date to expire the account.\n      shadowExpireAttribute: shadowExpire\n      shadowFlagAttribute: shadowFlag\n      shadowInactiveAttribute: shadowInactive\n      shadowLastChangeAttribute: shadowLastChange\n      shadowMaxAttribute: shadowMax\n      shadowMinAttribute: shadowMin\n      shadowUserFilter: (objectClass=shadowAccount)\n      shadowWarningAttribute: shadowWarning\n      shellAttribute: loginShell\n      sshPublicKeyAttribute: sshPublicKey\n      status: online\n      system: false # Specifies the minimum TLS protocol version.\n      tlsProtocolMin: '1.2'\n      uidAttribute: uidNumber\n      unfindableGroups:\n        - wheel\n        - '0'\n        - insightiq\n        - '15'\n        - isdmgmt\n        - '16'\n      unfindableUsers:\n        - root\n        - '0'\n        - insightiq\n        - '15'\n        - isdmgmt\n        - '16'\n      uniqueGroupMembersAttribute: \"\"\n      unlistableGroups: []\n      unlistableUsers: []\n      userBaseDn: \"\"\n      userDomain: LDAP_USERS\n      userFilter: (objectClass=posixAccount)\n      userSearchScope: default\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/ldapProvider:LdapProvider example_ldap_provider <ldapProviderName>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/ldapProvider:LdapProvider example_ldap_provider ldapProviderName\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"alternateSecurityIdentitiesAttribute":{"description":"Specifies the attribute name used when searching for alternate security identities.\n","type":"string"},"authentication":{"description":"If true, enables authentication and identity management through the authentication provider.\n","type":"boolean"},"balanceServers":{"description":"If true, connects the provider to a random server.\n","type":"boolean"},"baseDn":{"description":"Specifies the root of the tree in which to search identities.\n","type":"string"},"bindDn":{"description":"Specifies the distinguished name for binding to the LDAP server.\n","type":"string"},"bindMechanism":{"description":"Specifies which bind mechanism to use when connecting to an LDAP server. The only supported option is the 'simple' value.\n","type":"string"},"bindTimeout":{"description":"Specifies the timeout in seconds when binding to an LDAP server.\n","type":"number"},"certificateAuthorityFile":{"description":"Specifies the path to the root certificates file.\n","type":"string"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"cnAttribute":{"description":"Specifies the canonical name.\n","type":"string"},"createHomeDirectory":{"description":"Automatically create the home directory on the first login.\n","type":"boolean"},"cryptPasswordAttribute":{"description":"Specifies the hashed password value.\n","type":"string"},"emailAttribute":{"description":"Specifies the LDAP Email attribute.\n","type":"string"},"enabled":{"description":"If true, enables the LDAP provider.\n","type":"boolean"},"enumerateGroups":{"description":"If true, allows the provider to enumerate groups.\n","type":"boolean"},"enumerateUsers":{"description":"If true, allows the provider to enumerate users.\n","type":"boolean"},"findableGroups":{"description":"Specifies the list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Specifies the list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"gecosAttribute":{"description":"Specifies the LDAP GECOS attribute.\n","type":"string"},"gidAttribute":{"description":"Specifies the LDAP GID attribute.\n","type":"string"},"groupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for groups are started.\n","type":"string"},"groupDomain":{"description":"Specifies the domain for this provider through which groups are qualified.\n","type":"string"},"groupFilter":{"description":"Specifies the LDAP filter for group objects.\n","type":"string"},"groupMembersAttribute":{"description":"Specifies the LDAP Group Members attribute.\n","type":"string"},"groupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"groupnet":{"description":"Groupnet identifier. Cannot be updated.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"homedirAttribute":{"description":"Specifies the LDAP Homedir attribute.\n","type":"string"},"ignoreTlsErrors":{"description":"If true, continues over secure connections even if identity checks fail.\n","type":"boolean"},"ignoreUnresolvableServerUrls":{"description":"Ignore unresolvable server URIs when creating and updating.\n","type":"boolean"},"listableGroups":{"description":"Specifies the groups that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"listableUsers":{"description":"Specifies the users that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"memberLookupMethod":{"description":"Sets the method by which group member lookups are performed. Use caution when changing this option directly. Acceptable values: \"default\", \"rfc2307bis\".\n","type":"string"},"memberOfAttribute":{"description":"Specifies the LDAP Query Member Of attribute, which performs reverse membership queries.\n","type":"string"},"name":{"description":"Specifies the name of the LDAP provider.\n","type":"string"},"nameAttribute":{"description":"Specifies the LDAP UID attribute, which is used as the login name.\n","type":"string"},"netgroupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for netgroups are started.\n","type":"string"},"netgroupFilter":{"description":"Specifies the LDAP filter for netgroup objects.\n","type":"string"},"netgroupMembersAttribute":{"description":"Specifies the LDAP Netgroup Members attribute.\n","type":"string"},"netgroupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"netgroupTripleAttribute":{"description":"Specifies the LDAP Netgroup Triple attribute.\n","type":"string"},"normalizeGroups":{"description":"Normalizes group names to lowercase before look up.\n","type":"boolean"},"normalizeUsers":{"description":"Normalizes user names to lowercase before look up.\n","type":"boolean"},"ntPasswordAttribute":{"description":"Specifies the LDAP NT Password attribute.\n","type":"string"},"ntlmSupport":{"description":"Specifies which NTLM versions to support for users with NTLM-compatible credentials. Acceptable values: \"all\", \"v2only\", \"none\".\n","type":"string"},"ocspServerUris":{"description":"Specifies the OCSP server URIs. Only available for PowerScale 9.5 and above.\n","items":{"type":"string"},"type":"array"},"providerDomain":{"description":"Specifies the provider domain.\n","type":"string"},"requireSecureConnection":{"description":"Determines whether to continue over a non-TLS connection.\n","type":"boolean"},"restrictFindable":{"description":"If true, checks the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"restrictListable":{"description":"If true, checks the provider for filtered lists of listable and unlistable users and groups.\n","type":"boolean"},"searchScope":{"description":"Specifies the default depth from the base DN to perform LDAP searches. Acceptable values: \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"searchTimeout":{"description":"Specifies the search timeout period in seconds.\n","type":"number"},"serverUris":{"description":"Specifies the server URIs.\n","items":{"type":"string"},"type":"array"},"shadowExpireAttribute":{"description":"Sets the attribute name that indicates the absolute date to expire the account.\n","type":"string"},"shadowFlagAttribute":{"description":"Sets the attribute name that indicates the section of the shadow map that is used to store the flag value.\n","type":"string"},"shadowInactiveAttribute":{"description":"Sets the attribute name that indicates the number of days of inactivity that is allowed for the user.\n","type":"string"},"shadowLastChangeAttribute":{"description":"Sets the attribute name that indicates the last change of the shadow information.\n","type":"string"},"shadowMaxAttribute":{"description":"Sets the attribute name that indicates the maximum number of days a password can be valid.\n","type":"string"},"shadowMinAttribute":{"description":"Sets the attribute name that indicates the minimum number of days between shadow changes.\n","type":"string"},"shadowUserFilter":{"description":"Sets LDAP filter for shadow user objects.\n","type":"string"},"shadowWarningAttribute":{"description":"Sets the attribute name that indicates the number of days before the password expires to warn the user.\n","type":"string"},"shellAttribute":{"description":"Specifies the LDAP Shell attribute.\n","type":"string"},"sshPublicKeyAttribute":{"description":"Sets the attribute name that indicates the SSH Public Key for the user.\n","type":"string"},"status":{"description":"Specifies the status of the provider.\n","type":"string"},"system":{"description":"If true, indicates that this provider instance was created by OneFS and cannot be removed.\n","type":"boolean"},"tlsProtocolMin":{"description":"Specifies the minimum TLS protocol version.\n","type":"string"},"tlsRevocationCheckLevel":{"description":"This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. Acceptable values: \"none\", \"allowNoData\", \"allowNoSrc\", \"strict\". Only available for PowerScale 9.5 and above.\n","type":"string"},"uidAttribute":{"description":"Specifies the LDAP UID Number attribute.\n","type":"string"},"unfindableGroups":{"description":"Specifies the groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"uniqueGroupMembersAttribute":{"description":"Sets the LDAP Unique Group Members attribute.\n","type":"string"},"unlistableGroups":{"description":"Specifies a group that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"unlistableUsers":{"description":"Specifies a user that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"userBaseDn":{"description":"Specifies the distinguished name of the entry at which to start LDAP searches for users.\n","type":"string"},"userDomain":{"description":"Specifies the domain for this provider through which users are qualified.\n","type":"string"},"userFilter":{"description":"Specifies the LDAP filter for user objects.\n","type":"string"},"userSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"}},"properties":{"alternateSecurityIdentitiesAttribute":{"description":"Specifies the attribute name used when searching for alternate security identities.\n","type":"string"},"authentication":{"description":"If true, enables authentication and identity management through the authentication provider.\n","type":"boolean"},"balanceServers":{"description":"If true, connects the provider to a random server.\n","type":"boolean"},"baseDn":{"description":"Specifies the root of the tree in which to search identities.\n","type":"string"},"bindDn":{"description":"Specifies the distinguished name for binding to the LDAP server.\n","type":"string"},"bindMechanism":{"description":"Specifies which bind mechanism to use when connecting to an LDAP server. The only supported option is the 'simple' value.\n","type":"string"},"bindTimeout":{"description":"Specifies the timeout in seconds when binding to an LDAP server.\n","type":"number"},"certificateAuthorityFile":{"description":"Specifies the path to the root certificates file.\n","type":"string"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"cnAttribute":{"description":"Specifies the canonical name.\n","type":"string"},"createHomeDirectory":{"description":"Automatically create the home directory on the first login.\n","type":"boolean"},"cryptPasswordAttribute":{"description":"Specifies the hashed password value.\n","type":"string"},"emailAttribute":{"description":"Specifies the LDAP Email attribute.\n","type":"string"},"enabled":{"description":"If true, enables the LDAP provider.\n","type":"boolean"},"enumerateGroups":{"description":"If true, allows the provider to enumerate groups.\n","type":"boolean"},"enumerateUsers":{"description":"If true, allows the provider to enumerate users.\n","type":"boolean"},"findableGroups":{"description":"Specifies the list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Specifies the list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"gecosAttribute":{"description":"Specifies the LDAP GECOS attribute.\n","type":"string"},"gidAttribute":{"description":"Specifies the LDAP GID attribute.\n","type":"string"},"groupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for groups are started.\n","type":"string"},"groupDomain":{"description":"Specifies the domain for this provider through which groups are qualified.\n","type":"string"},"groupFilter":{"description":"Specifies the LDAP filter for group objects.\n","type":"string"},"groupMembersAttribute":{"description":"Specifies the LDAP Group Members attribute.\n","type":"string"},"groupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"groupnet":{"description":"Groupnet identifier. Cannot be updated.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"homedirAttribute":{"description":"Specifies the LDAP Homedir attribute.\n","type":"string"},"ignoreTlsErrors":{"description":"If true, continues over secure connections even if identity checks fail.\n","type":"boolean"},"ignoreUnresolvableServerUrls":{"description":"Ignore unresolvable server URIs when creating and updating.\n","type":"boolean"},"listableGroups":{"description":"Specifies the groups that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"listableUsers":{"description":"Specifies the users that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"memberLookupMethod":{"description":"Sets the method by which group member lookups are performed. Use caution when changing this option directly. Acceptable values: \"default\", \"rfc2307bis\".\n","type":"string"},"memberOfAttribute":{"description":"Specifies the LDAP Query Member Of attribute, which performs reverse membership queries.\n","type":"string"},"name":{"description":"Specifies the name of the LDAP provider.\n","type":"string"},"nameAttribute":{"description":"Specifies the LDAP UID attribute, which is used as the login name.\n","type":"string"},"netgroupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for netgroups are started.\n","type":"string"},"netgroupFilter":{"description":"Specifies the LDAP filter for netgroup objects.\n","type":"string"},"netgroupMembersAttribute":{"description":"Specifies the LDAP Netgroup Members attribute.\n","type":"string"},"netgroupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"netgroupTripleAttribute":{"description":"Specifies the LDAP Netgroup Triple attribute.\n","type":"string"},"normalizeGroups":{"description":"Normalizes group names to lowercase before look up.\n","type":"boolean"},"normalizeUsers":{"description":"Normalizes user names to lowercase before look up.\n","type":"boolean"},"ntPasswordAttribute":{"description":"Specifies the LDAP NT Password attribute.\n","type":"string"},"ntlmSupport":{"description":"Specifies which NTLM versions to support for users with NTLM-compatible credentials. Acceptable values: \"all\", \"v2only\", \"none\".\n","type":"string"},"ocspServerUris":{"description":"Specifies the OCSP server URIs. Only available for PowerScale 9.5 and above.\n","items":{"type":"string"},"type":"array"},"providerDomain":{"description":"Specifies the provider domain.\n","type":"string"},"requireSecureConnection":{"description":"Determines whether to continue over a non-TLS connection.\n","type":"boolean"},"restrictFindable":{"description":"If true, checks the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"restrictListable":{"description":"If true, checks the provider for filtered lists of listable and unlistable users and groups.\n","type":"boolean"},"searchScope":{"description":"Specifies the default depth from the base DN to perform LDAP searches. Acceptable values: \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"searchTimeout":{"description":"Specifies the search timeout period in seconds.\n","type":"number"},"serverUris":{"description":"Specifies the server URIs.\n","items":{"type":"string"},"type":"array"},"shadowExpireAttribute":{"description":"Sets the attribute name that indicates the absolute date to expire the account.\n","type":"string"},"shadowFlagAttribute":{"description":"Sets the attribute name that indicates the section of the shadow map that is used to store the flag value.\n","type":"string"},"shadowInactiveAttribute":{"description":"Sets the attribute name that indicates the number of days of inactivity that is allowed for the user.\n","type":"string"},"shadowLastChangeAttribute":{"description":"Sets the attribute name that indicates the last change of the shadow information.\n","type":"string"},"shadowMaxAttribute":{"description":"Sets the attribute name that indicates the maximum number of days a password can be valid.\n","type":"string"},"shadowMinAttribute":{"description":"Sets the attribute name that indicates the minimum number of days between shadow changes.\n","type":"string"},"shadowUserFilter":{"description":"Sets LDAP filter for shadow user objects.\n","type":"string"},"shadowWarningAttribute":{"description":"Sets the attribute name that indicates the number of days before the password expires to warn the user.\n","type":"string"},"shellAttribute":{"description":"Specifies the LDAP Shell attribute.\n","type":"string"},"sshPublicKeyAttribute":{"description":"Sets the attribute name that indicates the SSH Public Key for the user.\n","type":"string"},"status":{"description":"Specifies the status of the provider.\n","type":"string"},"system":{"description":"If true, indicates that this provider instance was created by OneFS and cannot be removed.\n","type":"boolean"},"tlsProtocolMin":{"description":"Specifies the minimum TLS protocol version.\n","type":"string"},"tlsRevocationCheckLevel":{"description":"This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. Acceptable values: \"none\", \"allowNoData\", \"allowNoSrc\", \"strict\". Only available for PowerScale 9.5 and above.\n","type":"string"},"uidAttribute":{"description":"Specifies the LDAP UID Number attribute.\n","type":"string"},"unfindableGroups":{"description":"Specifies the groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"uniqueGroupMembersAttribute":{"description":"Sets the LDAP Unique Group Members attribute.\n","type":"string"},"unlistableGroups":{"description":"Specifies a group that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"unlistableUsers":{"description":"Specifies a user that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"userBaseDn":{"description":"Specifies the distinguished name of the entry at which to start LDAP searches for users.\n","type":"string"},"userDomain":{"description":"Specifies the domain for this provider through which users are qualified.\n","type":"string"},"userFilter":{"description":"Specifies the LDAP filter for user objects.\n","type":"string"},"userSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"zoneName":{"description":"Specifies the name of the access zone in which this provider was created.\n","type":"string"}},"required":["alternateSecurityIdentitiesAttribute","authentication","balanceServers","baseDn","bindDn","bindMechanism","bindTimeout","certificateAuthorityFile","checkOnlineInterval","cnAttribute","createHomeDirectory","cryptPasswordAttribute","emailAttribute","enabled","enumerateGroups","enumerateUsers","findableGroups","findableUsers","gecosAttribute","gidAttribute","groupBaseDn","groupDomain","groupFilter","groupMembersAttribute","groupSearchScope","groupnet","homeDirectoryTemplate","homedirAttribute","ignoreTlsErrors","listableGroups","listableUsers","loginShell","memberLookupMethod","memberOfAttribute","name","nameAttribute","netgroupBaseDn","netgroupFilter","netgroupMembersAttribute","netgroupSearchScope","netgroupTripleAttribute","normalizeGroups","normalizeUsers","ntPasswordAttribute","ntlmSupport","ocspServerUris","providerDomain","requireSecureConnection","restrictFindable","restrictListable","searchScope","searchTimeout","serverUris","shadowExpireAttribute","shadowFlagAttribute","shadowInactiveAttribute","shadowLastChangeAttribute","shadowMaxAttribute","shadowMinAttribute","shadowUserFilter","shadowWarningAttribute","shellAttribute","sshPublicKeyAttribute","status","system","tlsProtocolMin","tlsRevocationCheckLevel","uidAttribute","unfindableGroups","unfindableUsers","uniqueGroupMembersAttribute","unlistableGroups","unlistableUsers","userBaseDn","userDomain","userFilter","userSearchScope","zoneName"],"requiredInputs":["baseDn","serverUris"],"stateInputs":{"description":"Input properties used for looking up and filtering LdapProvider resources.\n","properties":{"alternateSecurityIdentitiesAttribute":{"description":"Specifies the attribute name used when searching for alternate security identities.\n","type":"string"},"authentication":{"description":"If true, enables authentication and identity management through the authentication provider.\n","type":"boolean"},"balanceServers":{"description":"If true, connects the provider to a random server.\n","type":"boolean"},"baseDn":{"description":"Specifies the root of the tree in which to search identities.\n","type":"string"},"bindDn":{"description":"Specifies the distinguished name for binding to the LDAP server.\n","type":"string"},"bindMechanism":{"description":"Specifies which bind mechanism to use when connecting to an LDAP server. The only supported option is the 'simple' value.\n","type":"string"},"bindTimeout":{"description":"Specifies the timeout in seconds when binding to an LDAP server.\n","type":"number"},"certificateAuthorityFile":{"description":"Specifies the path to the root certificates file.\n","type":"string"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"cnAttribute":{"description":"Specifies the canonical name.\n","type":"string"},"createHomeDirectory":{"description":"Automatically create the home directory on the first login.\n","type":"boolean"},"cryptPasswordAttribute":{"description":"Specifies the hashed password value.\n","type":"string"},"emailAttribute":{"description":"Specifies the LDAP Email attribute.\n","type":"string"},"enabled":{"description":"If true, enables the LDAP provider.\n","type":"boolean"},"enumerateGroups":{"description":"If true, allows the provider to enumerate groups.\n","type":"boolean"},"enumerateUsers":{"description":"If true, allows the provider to enumerate users.\n","type":"boolean"},"findableGroups":{"description":"Specifies the list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Specifies the list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"gecosAttribute":{"description":"Specifies the LDAP GECOS attribute.\n","type":"string"},"gidAttribute":{"description":"Specifies the LDAP GID attribute.\n","type":"string"},"groupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for groups are started.\n","type":"string"},"groupDomain":{"description":"Specifies the domain for this provider through which groups are qualified.\n","type":"string"},"groupFilter":{"description":"Specifies the LDAP filter for group objects.\n","type":"string"},"groupMembersAttribute":{"description":"Specifies the LDAP Group Members attribute.\n","type":"string"},"groupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"groupnet":{"description":"Groupnet identifier. Cannot be updated.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"homedirAttribute":{"description":"Specifies the LDAP Homedir attribute.\n","type":"string"},"ignoreTlsErrors":{"description":"If true, continues over secure connections even if identity checks fail.\n","type":"boolean"},"ignoreUnresolvableServerUrls":{"description":"Ignore unresolvable server URIs when creating and updating.\n","type":"boolean"},"listableGroups":{"description":"Specifies the groups that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"listableUsers":{"description":"Specifies the users that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"memberLookupMethod":{"description":"Sets the method by which group member lookups are performed. Use caution when changing this option directly. Acceptable values: \"default\", \"rfc2307bis\".\n","type":"string"},"memberOfAttribute":{"description":"Specifies the LDAP Query Member Of attribute, which performs reverse membership queries.\n","type":"string"},"name":{"description":"Specifies the name of the LDAP provider.\n","type":"string"},"nameAttribute":{"description":"Specifies the LDAP UID attribute, which is used as the login name.\n","type":"string"},"netgroupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for netgroups are started.\n","type":"string"},"netgroupFilter":{"description":"Specifies the LDAP filter for netgroup objects.\n","type":"string"},"netgroupMembersAttribute":{"description":"Specifies the LDAP Netgroup Members attribute.\n","type":"string"},"netgroupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"netgroupTripleAttribute":{"description":"Specifies the LDAP Netgroup Triple attribute.\n","type":"string"},"normalizeGroups":{"description":"Normalizes group names to lowercase before look up.\n","type":"boolean"},"normalizeUsers":{"description":"Normalizes user names to lowercase before look up.\n","type":"boolean"},"ntPasswordAttribute":{"description":"Specifies the LDAP NT Password attribute.\n","type":"string"},"ntlmSupport":{"description":"Specifies which NTLM versions to support for users with NTLM-compatible credentials. Acceptable values: \"all\", \"v2only\", \"none\".\n","type":"string"},"ocspServerUris":{"description":"Specifies the OCSP server URIs. Only available for PowerScale 9.5 and above.\n","items":{"type":"string"},"type":"array"},"providerDomain":{"description":"Specifies the provider domain.\n","type":"string"},"requireSecureConnection":{"description":"Determines whether to continue over a non-TLS connection.\n","type":"boolean"},"restrictFindable":{"description":"If true, checks the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"restrictListable":{"description":"If true, checks the provider for filtered lists of listable and unlistable users and groups.\n","type":"boolean"},"searchScope":{"description":"Specifies the default depth from the base DN to perform LDAP searches. Acceptable values: \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"searchTimeout":{"description":"Specifies the search timeout period in seconds.\n","type":"number"},"serverUris":{"description":"Specifies the server URIs.\n","items":{"type":"string"},"type":"array"},"shadowExpireAttribute":{"description":"Sets the attribute name that indicates the absolute date to expire the account.\n","type":"string"},"shadowFlagAttribute":{"description":"Sets the attribute name that indicates the section of the shadow map that is used to store the flag value.\n","type":"string"},"shadowInactiveAttribute":{"description":"Sets the attribute name that indicates the number of days of inactivity that is allowed for the user.\n","type":"string"},"shadowLastChangeAttribute":{"description":"Sets the attribute name that indicates the last change of the shadow information.\n","type":"string"},"shadowMaxAttribute":{"description":"Sets the attribute name that indicates the maximum number of days a password can be valid.\n","type":"string"},"shadowMinAttribute":{"description":"Sets the attribute name that indicates the minimum number of days between shadow changes.\n","type":"string"},"shadowUserFilter":{"description":"Sets LDAP filter for shadow user objects.\n","type":"string"},"shadowWarningAttribute":{"description":"Sets the attribute name that indicates the number of days before the password expires to warn the user.\n","type":"string"},"shellAttribute":{"description":"Specifies the LDAP Shell attribute.\n","type":"string"},"sshPublicKeyAttribute":{"description":"Sets the attribute name that indicates the SSH Public Key for the user.\n","type":"string"},"status":{"description":"Specifies the status of the provider.\n","type":"string"},"system":{"description":"If true, indicates that this provider instance was created by OneFS and cannot be removed.\n","type":"boolean"},"tlsProtocolMin":{"description":"Specifies the minimum TLS protocol version.\n","type":"string"},"tlsRevocationCheckLevel":{"description":"This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. Acceptable values: \"none\", \"allowNoData\", \"allowNoSrc\", \"strict\". Only available for PowerScale 9.5 and above.\n","type":"string"},"uidAttribute":{"description":"Specifies the LDAP UID Number attribute.\n","type":"string"},"unfindableGroups":{"description":"Specifies the groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"uniqueGroupMembersAttribute":{"description":"Sets the LDAP Unique Group Members attribute.\n","type":"string"},"unlistableGroups":{"description":"Specifies a group that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"unlistableUsers":{"description":"Specifies a user that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"userBaseDn":{"description":"Specifies the distinguished name of the entry at which to start LDAP searches for users.\n","type":"string"},"userDomain":{"description":"Specifies the domain for this provider through which users are qualified.\n","type":"string"},"userFilter":{"description":"Specifies the LDAP filter for user objects.\n","type":"string"},"userSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"zoneName":{"description":"Specifies the name of the access zone in which this provider was created.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/namespaceAcl:NamespaceAcl":{"description":"This resource is used to manage the Namespace ACL on PowerScale Array. We can Create, Update and Delete the Namespace ACL using this resource. We can also import the existing Namespace ACL from PowerScale array. Note that, when creating the resource, we actually load Namespace ACL from PowerScale to the resource state.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If only namespace is provided, `pulumi up` will load Namespace ACL from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load Namespace ACL (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting Namespace ACL from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale Namespace ACL allow you to manage the access control list for a namespace.\nconst exampleNamespaceAcl = new powerscale.NamespaceAcl(\"example_namespace_acl\", {namespace: \"ifs/example\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If only namespace is provided, `pulumi up` will load Namespace ACL from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load Namespace ACL (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting Namespace ACL from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale Namespace ACL allow you to manage the access control list for a namespace.\nexample_namespace_acl = powerscale.NamespaceAcl(\"example_namespace_acl\", namespace=\"ifs/example\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If only namespace is provided, `pulumi up` will load Namespace ACL from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load Namespace ACL (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting Namespace ACL from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale Namespace ACL allow you to manage the access control list for a namespace.\n    var exampleNamespaceAcl = new Powerscale.NamespaceAcl(\"example_namespace_acl\", new()\n    {\n        Namespace = \"ifs/example\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If only namespace is provided, `pulumi up` will load Namespace ACL from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load Namespace ACL (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting Namespace ACL from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale Namespace ACL allow you to manage the access control list for a namespace.\n\t\t_, err := powerscale.NewNamespaceAcl(ctx, \"example_namespace_acl\", &powerscale.NamespaceAclArgs{\n\t\t\tNamespace: pulumi.String(\"ifs/example\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NamespaceAcl;\nimport com.pulumi.powerscale.NamespaceAclArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If only namespace is provided, `pulumi up` will load Namespace ACL from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load Namespace ACL (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting Namespace ACL from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale Namespace ACL allow you to manage the access control list for a namespace.\n        var exampleNamespaceAcl = new NamespaceAcl(\"exampleNamespaceAcl\", NamespaceAclArgs.builder()\n            .namespace(\"ifs/example\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If only namespace is provided, `pulumi up` will load Namespace ACL from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load Namespace ACL (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting Namespace ACL from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale Namespace ACL allow you to manage the access control list for a namespace.\n  exampleNamespaceAcl:\n    type: powerscale:NamespaceAcl\n    name: example_namespace_acl\n    properties:\n      namespace: ifs/example\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/namespaceAcl:NamespaceAcl namespace_acl_test <namespace_path>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/namespaceAcl:NamespaceAcl namespace_acl_test namespace_path\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"aclCustoms":{"description":"Customer's raw configuration of the JSON array of access rights.\n","items":{"$ref":"#/types/powerscale:index%2FNamespaceAclAclCustom:NamespaceAclAclCustom"},"type":"array"},"group":{"$ref":"#/types/powerscale:index%2FNamespaceAclGroup:NamespaceAclGroup","description":"Provides the JSON object for the group persona of the owner.\n"},"namespace":{"description":"Indicate the namespace to set/get acl.\n","type":"string"},"nsaccess":{"description":"Indicates that the operation is on the access point instead of the store path.\n","type":"boolean"},"owner":{"$ref":"#/types/powerscale:index%2FNamespaceAclOwner:NamespaceAclOwner","description":"Provides the JSON object for the group persona of the owner.\n"},"zone":{"description":"Indicates the zone of the namespace.\n","type":"string"}},"properties":{"aclCustoms":{"description":"Customer's raw configuration of the JSON array of access rights.\n","items":{"$ref":"#/types/powerscale:index%2FNamespaceAclAclCustom:NamespaceAclAclCustom"},"type":"array"},"acls":{"description":"Array effective configuration of the JSON array of access rights.\n","items":{"$ref":"#/types/powerscale:index%2FNamespaceAclAcl:NamespaceAclAcl"},"type":"array"},"authoritative":{"description":"If the directory has access rights set, then this field is returned as acl. If the directory has POSIX permissions set, then this field is returned as mode.\n","type":"string"},"group":{"$ref":"#/types/powerscale:index%2FNamespaceAclGroup:NamespaceAclGroup","description":"Provides the JSON object for the group persona of the owner.\n"},"mode":{"description":"Provides the POSIX mode.\n","type":"string"},"namespace":{"description":"Indicate the namespace to set/get acl.\n","type":"string"},"nsaccess":{"description":"Indicates that the operation is on the access point instead of the store path.\n","type":"boolean"},"owner":{"$ref":"#/types/powerscale:index%2FNamespaceAclOwner:NamespaceAclOwner","description":"Provides the JSON object for the group persona of the owner.\n"},"zone":{"description":"Indicates the zone of the namespace.\n","type":"string"}},"required":["acls","authoritative","group","mode","namespace","owner"],"requiredInputs":["namespace"],"stateInputs":{"description":"Input properties used for looking up and filtering NamespaceAcl resources.\n","properties":{"aclCustoms":{"description":"Customer's raw configuration of the JSON array of access rights.\n","items":{"$ref":"#/types/powerscale:index%2FNamespaceAclAclCustom:NamespaceAclAclCustom"},"type":"array"},"acls":{"description":"Array effective configuration of the JSON array of access rights.\n","items":{"$ref":"#/types/powerscale:index%2FNamespaceAclAcl:NamespaceAclAcl"},"type":"array"},"authoritative":{"description":"If the directory has access rights set, then this field is returned as acl. If the directory has POSIX permissions set, then this field is returned as mode.\n","type":"string"},"group":{"$ref":"#/types/powerscale:index%2FNamespaceAclGroup:NamespaceAclGroup","description":"Provides the JSON object for the group persona of the owner.\n"},"mode":{"description":"Provides the POSIX mode.\n","type":"string"},"namespace":{"description":"Indicate the namespace to set/get acl.\n","type":"string"},"nsaccess":{"description":"Indicates that the operation is on the access point instead of the store path.\n","type":"boolean"},"owner":{"$ref":"#/types/powerscale:index%2FNamespaceAclOwner:NamespaceAclOwner","description":"Provides the JSON object for the group persona of the owner.\n"},"zone":{"description":"Indicates the zone of the namespace.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/networkRule:NetworkRule":{"description":"This resource is used to manage the Network Rule entity on PowerScale array. We can Create, Update and Delete the Network Rule using this resource. We can also import an existing Network Rule from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file for the first time, you will create a network rule on the PowerScale\n// PowerScale network rule allows you to manage the network rule on the Powerscale array\nconst rule = new powerscale.NetworkRule(\"rule\", {\n    name: \"tfacc_rule\",\n    groupnet: \"groupnet0\",\n    subnet: \"subnet0\",\n    pool: \"pool0\",\n    iface: \"ext-2\",\n    description: \"tfacc_rule\",\n    nodeType: \"any\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file for the first time, you will create a network rule on the PowerScale\n# PowerScale network rule allows you to manage the network rule on the Powerscale array\nrule = powerscale.NetworkRule(\"rule\",\n    name=\"tfacc_rule\",\n    groupnet=\"groupnet0\",\n    subnet=\"subnet0\",\n    pool=\"pool0\",\n    iface=\"ext-2\",\n    description=\"tfacc_rule\",\n    node_type=\"any\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file for the first time, you will create a network rule on the PowerScale\n    // PowerScale network rule allows you to manage the network rule on the Powerscale array\n    var rule = new Powerscale.NetworkRule(\"rule\", new()\n    {\n        Name = \"tfacc_rule\",\n        Groupnet = \"groupnet0\",\n        Subnet = \"subnet0\",\n        Pool = \"pool0\",\n        Iface = \"ext-2\",\n        Description = \"tfacc_rule\",\n        NodeType = \"any\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file for the first time, you will create a network rule on the PowerScale\n\t\t// PowerScale network rule allows you to manage the network rule on the Powerscale array\n\t\t_, err := powerscale.NewNetworkRule(ctx, \"rule\", &powerscale.NetworkRuleArgs{\n\t\t\tName:        pulumi.String(\"tfacc_rule\"),\n\t\t\tGroupnet:    pulumi.String(\"groupnet0\"),\n\t\t\tSubnet:      pulumi.String(\"subnet0\"),\n\t\t\tPool:        pulumi.String(\"pool0\"),\n\t\t\tIface:       pulumi.String(\"ext-2\"),\n\t\t\tDescription: pulumi.String(\"tfacc_rule\"),\n\t\t\tNodeType:    pulumi.String(\"any\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NetworkRule;\nimport com.pulumi.powerscale.NetworkRuleArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file for the first time, you will create a network rule on the PowerScale\n        // PowerScale network rule allows you to manage the network rule on the Powerscale array\n        var rule = new NetworkRule(\"rule\", NetworkRuleArgs.builder()\n            .name(\"tfacc_rule\")\n            .groupnet(\"groupnet0\")\n            .subnet(\"subnet0\")\n            .pool(\"pool0\")\n            .iface(\"ext-2\")\n            .description(\"tfacc_rule\")\n            .nodeType(\"any\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file for the first time, you will create a network rule on the PowerScale\n\n  # PowerScale network rule allows you to manage the network rule on the Powerscale array\n  rule:\n    type: powerscale:NetworkRule\n    properties:\n      name: tfacc_rule\n      groupnet: groupnet0\n      subnet: subnet0\n      pool: pool0\n      iface: ext-2\n      description: tfacc_rule\n      nodeType: any\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/networkRule:NetworkRule rule groupnet_name.subnet_name.pool_name.rule_name\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/networkRule:NetworkRule rule groupnet0.subnet0.pool0.rule_name\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"description":{"description":"Description for the provisioning rule.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this rule belongs to\n","type":"string"},"iface":{"description":"Interface name the provisioning rule applies to.\n","type":"string"},"name":{"description":"Name of the provisioning rule.\n","type":"string"},"nodeType":{"description":"Node type the provisioning rule applies to.\n","type":"string"},"pool":{"description":"Name of the pool this rule belongs to.\n","type":"string"},"subnet":{"description":"Name of the subnet this rule belongs to.\n","type":"string"}},"properties":{"description":{"description":"Description for the provisioning rule.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this rule belongs to\n","type":"string"},"iface":{"description":"Interface name the provisioning rule applies to.\n","type":"string"},"name":{"description":"Name of the provisioning rule.\n","type":"string"},"nodeType":{"description":"Node type the provisioning rule applies to.\n","type":"string"},"pool":{"description":"Name of the pool this rule belongs to.\n","type":"string"},"subnet":{"description":"Name of the subnet this rule belongs to.\n","type":"string"}},"required":["description","groupnet","iface","name","nodeType","pool","subnet"],"requiredInputs":["groupnet","iface","pool","subnet"],"stateInputs":{"description":"Input properties used for looking up and filtering NetworkRule resources.\n","properties":{"description":{"description":"Description for the provisioning rule.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this rule belongs to\n","type":"string"},"iface":{"description":"Interface name the provisioning rule applies to.\n","type":"string"},"name":{"description":"Name of the provisioning rule.\n","type":"string"},"nodeType":{"description":"Node type the provisioning rule applies to.\n","type":"string"},"pool":{"description":"Name of the pool this rule belongs to.\n","type":"string"},"subnet":{"description":"Name of the subnet this rule belongs to.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/networkSettings:NetworkSettings":{"description":"This resource is used to manage the Network Settings entity of PowerScale Array. PowerScale Network Settings provide the ability to configure external network configuration on the cluster.We can Create, Update and Delete the Network Settings using this resource. We can also import an existing Network Settings from PowerScale array. Note that, Network Settings is the native functionality of PowerScale. When creating the resource, we actually load Network Settings from PowerScale to the resource state.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load Network Settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load Network Settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting Network Settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\nconst exampleNetworkSettings = new powerscale.NetworkSettings(\"example_network_settings\", {});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load Network Settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load Network Settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting Network Settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\nexample_network_settings = powerscale.NetworkSettings(\"example_network_settings\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load Network Settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load Network Settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting Network Settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n    var exampleNetworkSettings = new Powerscale.NetworkSettings(\"example_network_settings\");\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load Network Settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load Network Settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting Network Settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n\t\t_, err := powerscale.NewNetworkSettings(ctx, \"example_network_settings\", nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NetworkSettings;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load Network Settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load Network Settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting Network Settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n        var exampleNetworkSettings = new NetworkSettings(\"exampleNetworkSettings\");\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load Network Settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load Network Settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting Network Settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale Network Settings provide the ability to configure external network configuration on the cluster.\n  exampleNetworkSettings:\n    type: powerscale:NetworkSettings\n    name: example_network_settings\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/networkSettings:NetworkSettings example_network_settings <anyString>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/networkSettings:NetworkSettings example_network_settings anyString\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"scRebalanceDelay":{"description":"Delay in seconds for IP rebalance.\n","type":"number"},"sourceBasedRoutingEnabled":{"description":"Enable or disable Source Based Routing.\n","type":"boolean"},"tcpPorts":{"description":"List of client TCP ports.\n","items":{"type":"number"},"type":"array"}},"properties":{"defaultGroupnet":{"description":"Default client-side DNS settings for non-multitenancy aware programs.\n","type":"string"},"scRebalanceDelay":{"description":"Delay in seconds for IP rebalance.\n","type":"number"},"sourceBasedRoutingEnabled":{"description":"Enable or disable Source Based Routing.\n","type":"boolean"},"tcpPorts":{"description":"List of client TCP ports.\n","items":{"type":"number"},"type":"array"}},"required":["defaultGroupnet","scRebalanceDelay","sourceBasedRoutingEnabled","tcpPorts"],"stateInputs":{"description":"Input properties used for looking up and filtering NetworkSettings resources.\n","properties":{"defaultGroupnet":{"description":"Default client-side DNS settings for non-multitenancy aware programs.\n","type":"string"},"scRebalanceDelay":{"description":"Delay in seconds for IP rebalance.\n","type":"number"},"sourceBasedRoutingEnabled":{"description":"Enable or disable Source Based Routing.\n","type":"boolean"},"tcpPorts":{"description":"List of client TCP ports.\n","items":{"type":"number"},"type":"array"}},"type":"object"},"type":"object"},"powerscale:index/networkpool:Networkpool":{"description":"This resource is used to manage the network pool entity of PowerScale Array. We can Create, Update and Delete the network pool using this resource. We can also import an existing network pool from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file for the first time, you will create a network pool on the PowerScale\n// PowerScale network pool allows you to add network interfaces to network pools to associate address ranges with a node or a group of nodes.\nconst poolTest = new powerscale.Networkpool(\"pool_test\", {\n    name: \"pool_test\",\n    subnet: \"subnet0\",\n    groupnet: \"groupnet0\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file for the first time, you will create a network pool on the PowerScale\n# PowerScale network pool allows you to add network interfaces to network pools to associate address ranges with a node or a group of nodes.\npool_test = powerscale.Networkpool(\"pool_test\",\n    name=\"pool_test\",\n    subnet=\"subnet0\",\n    groupnet=\"groupnet0\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file for the first time, you will create a network pool on the PowerScale\n    // PowerScale network pool allows you to add network interfaces to network pools to associate address ranges with a node or a group of nodes.\n    var poolTest = new Powerscale.Networkpool(\"pool_test\", new()\n    {\n        Name = \"pool_test\",\n        Subnet = \"subnet0\",\n        Groupnet = \"groupnet0\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file for the first time, you will create a network pool on the PowerScale\n\t\t// PowerScale network pool allows you to add network interfaces to network pools to associate address ranges with a node or a group of nodes.\n\t\t_, err := powerscale.NewNetworkpool(ctx, \"pool_test\", &powerscale.NetworkpoolArgs{\n\t\t\tName:     pulumi.String(\"pool_test\"),\n\t\t\tSubnet:   pulumi.String(\"subnet0\"),\n\t\t\tGroupnet: pulumi.String(\"groupnet0\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Networkpool;\nimport com.pulumi.powerscale.NetworkpoolArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file for the first time, you will create a network pool on the PowerScale\n        // PowerScale network pool allows you to add network interfaces to network pools to associate address ranges with a node or a group of nodes.\n        var poolTest = new Networkpool(\"poolTest\", NetworkpoolArgs.builder()\n            .name(\"pool_test\")\n            .subnet(\"subnet0\")\n            .groupnet(\"groupnet0\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file for the first time, you will create a network pool on the PowerScale\n\n  # PowerScale network pool allows you to add network interfaces to network pools to associate address ranges with a node or a group of nodes.\n  poolTest:\n    type: powerscale:Networkpool\n    name: pool_test\n    properties:\n      name: pool_test\n      subnet: subnet0\n      groupnet: groupnet0\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/networkpool:Networkpool pool_test groupnet_name.subnet_name.pool_name\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/networkpool:Networkpool pool_test groupnet0.subnet0.pool_test\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"accessZone":{"description":"Name of a valid access zone to map IP address pool to the zone.\n","type":"string"},"aggregationMode":{"description":"OneFS supports the following NIC aggregation modes.\n","type":"string"},"allocMethod":{"description":"Specifies how IP address allocation is done among pool members.\n","type":"string"},"description":{"description":"A description of the pool.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this pool belongs to. Cannot be modified once designated\n","type":"string"},"ifaces":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolIface:NetworkpoolIface"},"type":"array"},"name":{"description":"The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method.\n","type":"string"},"nfsv3RroceOnly":{"description":"Indicates that pool contains only RDMA RRoCE capable interfaces.\n","type":"boolean"},"ranges":{"description":"List of IP address ranges in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolRange:NetworkpoolRange"},"type":"array"},"rebalancePolicy":{"description":"Rebalance policy..\n","type":"string"},"scAutoUnsuspendDelay":{"description":"Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones.\n","type":"number"},"scConnectPolicy":{"description":"SmartConnect client connection balancing policy.\n","type":"string"},"scDnsZone":{"description":"SmartConnect zone name for the pool.\n","type":"string"},"scDnsZoneAliases":{"description":"List of SmartConnect zone aliases (DNS names) to the pool.\n","items":{"type":"string"},"type":"array"},"scFailoverPolicy":{"description":"SmartConnect IP failover policy.\n","type":"string"},"scSubnet":{"description":"Name of SmartConnect service subnet for this pool.\n","type":"string"},"scTtl":{"description":"Time to live value for SmartConnect DNS query responses in seconds.\n","type":"number"},"staticRoutes":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolStaticRoute:NetworkpoolStaticRoute"},"type":"array"},"subnet":{"description":"The name of the subnet. Cannot be modified once designated\n","type":"string"}},"properties":{"accessZone":{"description":"Name of a valid access zone to map IP address pool to the zone.\n","type":"string"},"addrFamily":{"description":"IP address format.\n","type":"string"},"aggregationMode":{"description":"OneFS supports the following NIC aggregation modes.\n","type":"string"},"allocMethod":{"description":"Specifies how IP address allocation is done among pool members.\n","type":"string"},"description":{"description":"A description of the pool.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this pool belongs to. Cannot be modified once designated\n","type":"string"},"ifaces":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolIface:NetworkpoolIface"},"type":"array"},"name":{"description":"The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method.\n","type":"string"},"nfsv3RroceOnly":{"description":"Indicates that pool contains only RDMA RRoCE capable interfaces.\n","type":"boolean"},"ranges":{"description":"List of IP address ranges in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolRange:NetworkpoolRange"},"type":"array"},"rebalancePolicy":{"description":"Rebalance policy..\n","type":"string"},"rules":{"description":"Names of the rules in this pool.\n","items":{"type":"string"},"type":"array"},"scAutoUnsuspendDelay":{"description":"Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones.\n","type":"number"},"scConnectPolicy":{"description":"SmartConnect client connection balancing policy.\n","type":"string"},"scDnsZone":{"description":"SmartConnect zone name for the pool.\n","type":"string"},"scDnsZoneAliases":{"description":"List of SmartConnect zone aliases (DNS names) to the pool.\n","items":{"type":"string"},"type":"array"},"scFailoverPolicy":{"description":"SmartConnect IP failover policy.\n","type":"string"},"scSubnet":{"description":"Name of SmartConnect service subnet for this pool.\n","type":"string"},"scSuspendedNodes":{"description":"List of LNNs showing currently suspended nodes in SmartConnect.\n","items":{"type":"number"},"type":"array"},"scTtl":{"description":"Time to live value for SmartConnect DNS query responses in seconds.\n","type":"number"},"staticRoutes":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolStaticRoute:NetworkpoolStaticRoute"},"type":"array"},"subnet":{"description":"The name of the subnet. Cannot be modified once designated\n","type":"string"}},"required":["accessZone","addrFamily","aggregationMode","allocMethod","description","groupnet","ifaces","name","nfsv3RroceOnly","ranges","rebalancePolicy","rules","scAutoUnsuspendDelay","scConnectPolicy","scDnsZone","scDnsZoneAliases","scFailoverPolicy","scSubnet","scSuspendedNodes","scTtl","staticRoutes","subnet"],"requiredInputs":["groupnet","subnet"],"stateInputs":{"description":"Input properties used for looking up and filtering Networkpool resources.\n","properties":{"accessZone":{"description":"Name of a valid access zone to map IP address pool to the zone.\n","type":"string"},"addrFamily":{"description":"IP address format.\n","type":"string"},"aggregationMode":{"description":"OneFS supports the following NIC aggregation modes.\n","type":"string"},"allocMethod":{"description":"Specifies how IP address allocation is done among pool members.\n","type":"string"},"description":{"description":"A description of the pool.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this pool belongs to. Cannot be modified once designated\n","type":"string"},"ifaces":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolIface:NetworkpoolIface"},"type":"array"},"name":{"description":"The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method.\n","type":"string"},"nfsv3RroceOnly":{"description":"Indicates that pool contains only RDMA RRoCE capable interfaces.\n","type":"boolean"},"ranges":{"description":"List of IP address ranges in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolRange:NetworkpoolRange"},"type":"array"},"rebalancePolicy":{"description":"Rebalance policy..\n","type":"string"},"rules":{"description":"Names of the rules in this pool.\n","items":{"type":"string"},"type":"array"},"scAutoUnsuspendDelay":{"description":"Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones.\n","type":"number"},"scConnectPolicy":{"description":"SmartConnect client connection balancing policy.\n","type":"string"},"scDnsZone":{"description":"SmartConnect zone name for the pool.\n","type":"string"},"scDnsZoneAliases":{"description":"List of SmartConnect zone aliases (DNS names) to the pool.\n","items":{"type":"string"},"type":"array"},"scFailoverPolicy":{"description":"SmartConnect IP failover policy.\n","type":"string"},"scSubnet":{"description":"Name of SmartConnect service subnet for this pool.\n","type":"string"},"scSuspendedNodes":{"description":"List of LNNs showing currently suspended nodes in SmartConnect.\n","items":{"type":"number"},"type":"array"},"scTtl":{"description":"Time to live value for SmartConnect DNS query responses in seconds.\n","type":"number"},"staticRoutes":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FNetworkpoolStaticRoute:NetworkpoolStaticRoute"},"type":"array"},"subnet":{"description":"The name of the subnet. Cannot be modified once designated\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/nfsAlias:NfsAlias":{"description":"This resource is used to manage the NFS Alias entity of PowerScale Array. We can Create, Update and Delete the NFS Aliases using this resource. We can also import an existing NFS Alias from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// After `pulumi up` of this example file will create the nfs alias on the PowerScale array with the attributes set in the config.\n// For update, only name and path is supported. Zone Cannot be updated.\nconst example = new powerscale.NfsAlias(\"example\", {\n    name: \"/testNfs\",\n    path: \"/ifs/data\",\n    zone: \"dev-tcz\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# After `pulumi up` of this example file will create the nfs alias on the PowerScale array with the attributes set in the config.\n# For update, only name and path is supported. Zone Cannot be updated.\nexample = powerscale.NfsAlias(\"example\",\n    name=\"/testNfs\",\n    path=\"/ifs/data\",\n    zone=\"dev-tcz\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // After `pulumi up` of this example file will create the nfs alias on the PowerScale array with the attributes set in the config.\n    // For update, only name and path is supported. Zone Cannot be updated.\n    var example = new Powerscale.NfsAlias(\"example\", new()\n    {\n        Name = \"/testNfs\",\n        Path = \"/ifs/data\",\n        Zone = \"dev-tcz\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// After `pulumi up` of this example file will create the nfs alias on the PowerScale array with the attributes set in the config.\n\t\t// For update, only name and path is supported. Zone Cannot be updated.\n\t\t_, err := powerscale.NewNfsAlias(ctx, \"example\", &powerscale.NfsAliasArgs{\n\t\t\tName: pulumi.String(\"/testNfs\"),\n\t\t\tPath: pulumi.String(\"/ifs/data\"),\n\t\t\tZone: pulumi.String(\"dev-tcz\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NfsAlias;\nimport com.pulumi.powerscale.NfsAliasArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // After `pulumi up` of this example file will create the nfs alias on the PowerScale array with the attributes set in the config.\n        // For update, only name and path is supported. Zone Cannot be updated.\n        var example = new NfsAlias(\"example\", NfsAliasArgs.builder()\n            .name(\"/testNfs\")\n            .path(\"/ifs/data\")\n            .zone(\"dev-tcz\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # After `pulumi up` of this example file will create the nfs alias on the PowerScale array with the attributes set in the config.\n  # For update, only name and path is supported. Zone Cannot be updated.\n  example:\n    type: powerscale:NfsAlias\n    properties:\n      name: /testNfs\n      path: /ifs/data\n      zone: dev-tcz\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/nfsAlias:NfsAlias example [<zoneID>]:<name>\n```\n\nExample 1:  <zoneID> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/nfsAlias:NfsAlias example \"alias\"\n```\n\nExample 2:\n\n```sh\n$ pulumi import powerscale:index/nfsAlias:NfsAlias example zoneID:alias\n```\n\nafter running this command, populate parameters in the config file to start managing this resource.\n\nNote: running \"terraform show\" after importing shows the current config/state of the resource.\n\n","inputProperties":{"name":{"description":"Specifies the name by which the alias can be referenced.\n","type":"string"},"path":{"description":"Specifies the path to which the alias points.\n","type":"string"},"zone":{"description":"Specifies the zone in which the alias is valid.\n","type":"string"}},"properties":{"health":{"description":"Specifies whether the alias is usable.\n","type":"string"},"name":{"description":"Specifies the name by which the alias can be referenced.\n","type":"string"},"path":{"description":"Specifies the path to which the alias points.\n","type":"string"},"zone":{"description":"Specifies the zone in which the alias is valid.\n","type":"string"}},"required":["health","name","path","zone"],"requiredInputs":["path"],"stateInputs":{"description":"Input properties used for looking up and filtering NfsAlias resources.\n","properties":{"health":{"description":"Specifies whether the alias is usable.\n","type":"string"},"name":{"description":"Specifies the name by which the alias can be referenced.\n","type":"string"},"path":{"description":"Specifies the path to which the alias points.\n","type":"string"},"zone":{"description":"Specifies the zone in which the alias is valid.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/nfsExport:NfsExport":{"description":"This resource is used to manage the NFS export entity of PowerScale Array. PowerScale provides an NFS server so you can share files on your cluster. We can Create, Update and Delete the NFS export using this resource. We can also import an existing NFS export from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale\n// PowerScale provides an NFS server so you can share files on your cluster\nconst exampleExport = new powerscale.NfsExport(\"example_export\", {paths: [\"/ifs/example_export\"]});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale\n# PowerScale provides an NFS server so you can share files on your cluster\nexample_export = powerscale.NfsExport(\"example_export\", paths=[\"/ifs/example_export\"])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale\n    // PowerScale provides an NFS server so you can share files on your cluster\n    var exampleExport = new Powerscale.NfsExport(\"example_export\", new()\n    {\n        Paths = new[]\n        {\n            \"/ifs/example_export\",\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale\n\t\t// PowerScale provides an NFS server so you can share files on your cluster\n\t\t_, err := powerscale.NewNfsExport(ctx, \"example_export\", &powerscale.NfsExportArgs{\n\t\t\tPaths: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"/ifs/example_export\"),\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NfsExport;\nimport com.pulumi.powerscale.NfsExportArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale\n        // PowerScale provides an NFS server so you can share files on your cluster\n        var exampleExport = new NfsExport(\"exampleExport\", NfsExportArgs.builder()\n            .paths(\"/ifs/example_export\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale\n\n  # PowerScale provides an NFS server so you can share files on your cluster\n  exampleExport:\n    type: powerscale:NfsExport\n    name: example_export\n    properties:\n      paths: # Computed attributes, can be updated\n      #   # all_dirs = false\n      #   # block_size = 8192\n      #   # can_set_time = true\n      #   # case_insensitive = true\n      #   # case_preserving = false\n      #   # chown_restricted = false\n      #   # clients = [\"client1\"]\n      #   # commit_asynchronous = false\n      #   # conflicting_paths = [\"/ifs/conflicting_path\"]\n      #   # description = \"Example path\"\n      #   # directory_transfer_size = 131072\n      #   # encoding = \"DEFAULT\"\n      #   # link_max = 32767\n      #   # map_all = {\n      #   #   enabled = false,\n      #   #   primary_group = {\n      #   #       id = \"GROUP:nobody\"\n      #   #   }\n      #   #   secondary_groups = [\n      #   #     {\n      #   #       id   = \"GROUP:Users\"\n      #   #     }\n      #   #   ]\n      #   #   user = {\n      #   #       id = \"USER:nobody\"\n      #   #   }\n      #   # }\n      #   # map_failure = {}\n      #   # map_full = true\n      #   # map_lookup_uid = false\n      #   # map_non_root = {}\n      #   # map_retry = true\n      #   # map_root = {}\n      #   # max_file_size = 9223372036854775807\n      #   # name_max_size = 255\n      #   # no_truncate = false\n      #   # read_only = false\n      #   # read_only_clients = []\n      #   # read_transfer_max_size = 1048576\n      #   # read_transfer_multiple = 4194304\n      #   # read_transfer_size = 131072\n      #   # read_write_clients = []\n      #   # readdirplus = true\n      #   # readdirplus_prefetch = 10\n      #   # return_32bit_file_ids = false\n      #   # root_clients = []\n      #   # security_flavors = [\"unix\"]\n      #   # setattr_asynchronous = false\n      #   # snapshot = \"-\"\n      #   # symlinks = true\n      #   # time_delta = 0.0000000009999999717180685\n      #   # unresolved_clients = []\n      #   # write_datasync_action = \"DATASYNC\"\n      #   # write_datasync_reply = \"DATASYNC\"\n      #   # write_filesync_action = \"FILESYNC\"\n      #   # write_filesync_reply = \"FILESYNC\"\n      #   # write_transfer_max_size = 1048576\n      #   # write_transfer_multiple = 512\n      #   # write_transfer_size = 524288\n      #   # write_unstable_action = \"UNSTABLE\"\n      #   # write_unstable_reply = \"UNSTABLE\"\n        - /ifs/example_export\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/nfsExport:NfsExport example_export [<zoneID>]:<name>\n```\n\nExample 1:  <zoneID> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/nfsExport:NfsExport example_export example_export\n```\n\nExample 2:\n\n```sh\n$ pulumi import powerscale:index/nfsExport:NfsExport example_export zone_id:example_export\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"clients":{"description":"Specifies the clients with root access to the export.\n","items":{"type":"string"},"type":"array"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"conflictingPaths":{"description":"Reports the paths that conflict with another export.\n","items":{"type":"string"},"type":"array"},"description":{"description":"Specifies the user-defined string that is used to identify the export.\n","type":"string"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"force":{"description":"If true, the export will be created even if it conflicts with another export.\n","type":"boolean"},"ignoreBadAuth":{"description":"Ignore invalid users.\n","type":"boolean"},"ignoreBadPaths":{"description":"Ignore nonexistent or otherwise bad paths.\n","type":"boolean"},"ignoreConflicts":{"description":"Ignore conflicts with existing exports.\n","type":"boolean"},"ignoreUnresolvableHosts":{"description":"Ignore unresolvable hosts.\n","type":"boolean"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FNfsExportMapAll:NfsExportMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FNfsExportMapFailure:NfsExportMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FNfsExportMapNonRoot:NfsExportMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FNfsExportMapRoot:NfsExportMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"paths":{"description":"Specifies the paths under /ifs that are exported.\n","items":{"type":"string"},"type":"array"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readOnlyClients":{"description":"Specifies the clients with read-only access to the export.\n","items":{"type":"string"},"type":"array"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readWriteClients":{"description":"Specifies the clients with both read and write access to the export, even when the export is set to read-only.\n","items":{"type":"string"},"type":"array"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"rootClients":{"description":"Clients that have root access to the export.\n","items":{"type":"string"},"type":"array"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid. Cannot be changed once set\n","type":"string"}},"properties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"clients":{"description":"Specifies the clients with root access to the export.\n","items":{"type":"string"},"type":"array"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"conflictingPaths":{"description":"Reports the paths that conflict with another export.\n","items":{"type":"string"},"type":"array"},"description":{"description":"Specifies the user-defined string that is used to identify the export.\n","type":"string"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"force":{"description":"If true, the export will be created even if it conflicts with another export.\n","type":"boolean"},"ignoreBadAuth":{"description":"Ignore invalid users.\n","type":"boolean"},"ignoreBadPaths":{"description":"Ignore nonexistent or otherwise bad paths.\n","type":"boolean"},"ignoreConflicts":{"description":"Ignore conflicts with existing exports.\n","type":"boolean"},"ignoreUnresolvableHosts":{"description":"Ignore unresolvable hosts.\n","type":"boolean"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FNfsExportMapAll:NfsExportMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FNfsExportMapFailure:NfsExportMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FNfsExportMapNonRoot:NfsExportMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FNfsExportMapRoot:NfsExportMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nfsExportId":{"description":"Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"paths":{"description":"Specifies the paths under /ifs that are exported.\n","items":{"type":"string"},"type":"array"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readOnlyClients":{"description":"Specifies the clients with read-only access to the export.\n","items":{"type":"string"},"type":"array"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readWriteClients":{"description":"Specifies the clients with both read and write access to the export, even when the export is set to read-only.\n","items":{"type":"string"},"type":"array"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"rootClients":{"description":"Clients that have root access to the export.\n","items":{"type":"string"},"type":"array"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"unresolvedClients":{"description":"Reports clients that cannot be resolved.\n","items":{"type":"string"},"type":"array"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid. Cannot be changed once set\n","type":"string"}},"required":["allDirs","blockSize","canSetTime","caseInsensitive","casePreserving","chownRestricted","clients","commitAsynchronous","conflictingPaths","description","directoryTransferSize","encoding","linkMax","mapFailure","mapFull","mapLookupUid","mapNonRoot","mapRetry","mapRoot","maxFileSize","nameMaxSize","nfsExportId","noTruncate","paths","readOnly","readOnlyClients","readTransferMaxSize","readTransferMultiple","readTransferSize","readWriteClients","readdirplus","readdirplusPrefetch","return32bitFileIds","rootClients","securityFlavors","setattrAsynchronous","snapshot","symlinks","timeDelta","unresolvedClients","writeDatasyncAction","writeDatasyncReply","writeFilesyncAction","writeFilesyncReply","writeTransferMaxSize","writeTransferMultiple","writeTransferSize","writeUnstableAction","writeUnstableReply","zone"],"requiredInputs":["paths"],"stateInputs":{"description":"Input properties used for looking up and filtering NfsExport resources.\n","properties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"clients":{"description":"Specifies the clients with root access to the export.\n","items":{"type":"string"},"type":"array"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"conflictingPaths":{"description":"Reports the paths that conflict with another export.\n","items":{"type":"string"},"type":"array"},"description":{"description":"Specifies the user-defined string that is used to identify the export.\n","type":"string"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"force":{"description":"If true, the export will be created even if it conflicts with another export.\n","type":"boolean"},"ignoreBadAuth":{"description":"Ignore invalid users.\n","type":"boolean"},"ignoreBadPaths":{"description":"Ignore nonexistent or otherwise bad paths.\n","type":"boolean"},"ignoreConflicts":{"description":"Ignore conflicts with existing exports.\n","type":"boolean"},"ignoreUnresolvableHosts":{"description":"Ignore unresolvable hosts.\n","type":"boolean"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FNfsExportMapAll:NfsExportMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FNfsExportMapFailure:NfsExportMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FNfsExportMapNonRoot:NfsExportMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FNfsExportMapRoot:NfsExportMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nfsExportId":{"description":"Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"paths":{"description":"Specifies the paths under /ifs that are exported.\n","items":{"type":"string"},"type":"array"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readOnlyClients":{"description":"Specifies the clients with read-only access to the export.\n","items":{"type":"string"},"type":"array"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readWriteClients":{"description":"Specifies the clients with both read and write access to the export, even when the export is set to read-only.\n","items":{"type":"string"},"type":"array"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"rootClients":{"description":"Clients that have root access to the export.\n","items":{"type":"string"},"type":"array"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"unresolvedClients":{"description":"Reports clients that cannot be resolved.\n","items":{"type":"string"},"type":"array"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid. Cannot be changed once set\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/nfsExportSettings:NfsExportSettings":{"description":"This resource is used to manage the NFS Export Settings of PowerScale Array. We can Create, Update and Delete the NFS Export Settings using this resource.  \nNote that, NFS Export Settings is the native functionality of PowerScale. When creating the resource, we actually load NFS Export Settings from PowerScale to the resource.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load NFS export settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load NFS export settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting NFS export settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale NFS Export Settings allow you to configure NFS export settings on PowerScale.\nconst example = new powerscale.NfsExportSettings(\"example\", {});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load NFS export settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load NFS export settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting NFS export settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale NFS Export Settings allow you to configure NFS export settings on PowerScale.\nexample = powerscale.NfsExportSettings(\"example\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load NFS export settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load NFS export settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting NFS export settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale NFS Export Settings allow you to configure NFS export settings on PowerScale.\n    var example = new Powerscale.NfsExportSettings(\"example\");\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load NFS export settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load NFS export settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting NFS export settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale NFS Export Settings allow you to configure NFS export settings on PowerScale.\n\t\t_, err := powerscale.NewNfsExportSettings(ctx, \"example\", nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NfsExportSettings;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load NFS export settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load NFS export settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting NFS export settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale NFS Export Settings allow you to configure NFS export settings on PowerScale.\n        var example = new NfsExportSettings(\"example\");\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load NFS export settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load NFS export settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting NFS export settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale NFS Export Settings allow you to configure NFS export settings on PowerScale.\n  example:\n    type: powerscale:NfsExportSettings\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/nfsExportSettings:NfsExportSettings example <zoneName>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/nfsExportSettings:NfsExportSettings example zoneName\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapAll:NfsExportSettingsMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapFailure:NfsExportSettingsMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapNonRoot:NfsExportSettingsMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapRoot:NfsExportSettingsMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts. Use \"-\" to set to default value.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid.\n","type":"string"}},"properties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapAll:NfsExportSettingsMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapFailure:NfsExportSettingsMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapNonRoot:NfsExportSettingsMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapRoot:NfsExportSettingsMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts. Use \"-\" to set to default value.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid.\n","type":"string"}},"required":["allDirs","blockSize","canSetTime","caseInsensitive","casePreserving","chownRestricted","commitAsynchronous","directoryTransferSize","encoding","linkMax","mapAll","mapFailure","mapFull","mapLookupUid","mapNonRoot","mapRetry","mapRoot","maxFileSize","nameMaxSize","noTruncate","readOnly","readTransferMaxSize","readTransferMultiple","readTransferSize","readdirplus","readdirplusPrefetch","return32bitFileIds","securityFlavors","setattrAsynchronous","snapshot","symlinks","timeDelta","writeDatasyncAction","writeDatasyncReply","writeFilesyncAction","writeFilesyncReply","writeTransferMaxSize","writeTransferMultiple","writeTransferSize","writeUnstableAction","writeUnstableReply","zone"],"stateInputs":{"description":"Input properties used for looking up and filtering NfsExportSettings resources.\n","properties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapAll:NfsExportSettingsMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapFailure:NfsExportSettingsMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapNonRoot:NfsExportSettingsMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapRoot:NfsExportSettingsMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts. Use \"-\" to set to default value.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/nfsGlobalSettings:NfsGlobalSettings":{"description":"This resource is used to manage the NFS Global Settings of PowerScale Array. We can Create, Update and Delete the NFS Global Settings using this resource.  \nNote that, NFS Global Settings is the native functionality of PowerScale. When creating the resource, we actually load NFS Global Settings from PowerScale to the resource.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load NFS global settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load NFS global settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting NFS global settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale NFS Global Settings allow you to configure NFS global settings on PowerScale.\nconst example = new powerscale.NfsGlobalSettings(\"example\", {});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load NFS global settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load NFS global settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting NFS global settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale NFS Global Settings allow you to configure NFS global settings on PowerScale.\nexample = powerscale.NfsGlobalSettings(\"example\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load NFS global settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load NFS global settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting NFS global settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale NFS Global Settings allow you to configure NFS global settings on PowerScale.\n    var example = new Powerscale.NfsGlobalSettings(\"example\");\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load NFS global settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load NFS global settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting NFS global settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale NFS Global Settings allow you to configure NFS global settings on PowerScale.\n\t\t_, err := powerscale.NewNfsGlobalSettings(ctx, \"example\", nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NfsGlobalSettings;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load NFS global settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load NFS global settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting NFS global settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale NFS Global Settings allow you to configure NFS global settings on PowerScale.\n        var example = new NfsGlobalSettings(\"example\");\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load NFS global settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load NFS global settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting NFS global settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale NFS Global Settings allow you to configure NFS global settings on PowerScale.\n  example:\n    type: powerscale:NfsGlobalSettings\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/nfsGlobalSettings:NfsGlobalSettings example <anyString>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/nfsGlobalSettings:NfsGlobalSettings example anyString\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"nfsv3Enabled":{"description":"True if NFSv3 is enabled.\n","type":"boolean"},"nfsv3RdmaEnabled":{"description":"True if the RDMA is enabled for NFSv3.\n","type":"boolean"},"nfsv4Enabled":{"description":"True if NFSv4 is enabled.\n","type":"boolean"},"rpcMaxthreads":{"description":"Specifies the maximum number of threads in the nfsd thread pool.\n","type":"number"},"rpcMinthreads":{"description":"Specifies the minimum number of threads in the nfsd thread pool.\n","type":"number"},"rquotaEnabled":{"description":"True if the rquota protocol is enabled.\n","type":"boolean"},"service":{"description":"True if the NFS service is enabled. When set to false, the NFS service is disabled.\n","type":"boolean"}},"properties":{"nfsv3Enabled":{"description":"True if NFSv3 is enabled.\n","type":"boolean"},"nfsv3RdmaEnabled":{"description":"True if the RDMA is enabled for NFSv3.\n","type":"boolean"},"nfsv4Enabled":{"description":"True if NFSv4 is enabled.\n","type":"boolean"},"rpcMaxthreads":{"description":"Specifies the maximum number of threads in the nfsd thread pool.\n","type":"number"},"rpcMinthreads":{"description":"Specifies the minimum number of threads in the nfsd thread pool.\n","type":"number"},"rquotaEnabled":{"description":"True if the rquota protocol is enabled.\n","type":"boolean"},"service":{"description":"True if the NFS service is enabled. When set to false, the NFS service is disabled.\n","type":"boolean"}},"required":["nfsv3Enabled","nfsv3RdmaEnabled","nfsv4Enabled","rpcMaxthreads","rpcMinthreads","rquotaEnabled","service"],"stateInputs":{"description":"Input properties used for looking up and filtering NfsGlobalSettings resources.\n","properties":{"nfsv3Enabled":{"description":"True if NFSv3 is enabled.\n","type":"boolean"},"nfsv3RdmaEnabled":{"description":"True if the RDMA is enabled for NFSv3.\n","type":"boolean"},"nfsv4Enabled":{"description":"True if NFSv4 is enabled.\n","type":"boolean"},"rpcMaxthreads":{"description":"Specifies the maximum number of threads in the nfsd thread pool.\n","type":"number"},"rpcMinthreads":{"description":"Specifies the minimum number of threads in the nfsd thread pool.\n","type":"number"},"rquotaEnabled":{"description":"True if the rquota protocol is enabled.\n","type":"boolean"},"service":{"description":"True if the NFS service is enabled. When set to false, the NFS service is disabled.\n","type":"boolean"}},"type":"object"},"type":"object"},"powerscale:index/nfsZoneSettings:NfsZoneSettings":{"description":"This resource is used to manage the NFS Zone Settings of PowerScale Array. We can Create, Update and Delete the NFS Zone Settings using this resource.  \n\t\tNote that, NFS Zone Settings is the native functionality of PowerScale. When creating the resource, we actually load NFS Zone Settings from PowerScale to the resource.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load NFS zone settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load NFS zone settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting NFS zone settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale NFS zone settings allow you to configure NFS zone settings on PowerScale.\nconst example = new powerscale.NfsZoneSettings(\"example\", {zone: \"tfaccAccessZone\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load NFS zone settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load NFS zone settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting NFS zone settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale NFS zone settings allow you to configure NFS zone settings on PowerScale.\nexample = powerscale.NfsZoneSettings(\"example\", zone=\"tfaccAccessZone\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load NFS zone settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load NFS zone settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting NFS zone settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale NFS zone settings allow you to configure NFS zone settings on PowerScale.\n    var example = new Powerscale.NfsZoneSettings(\"example\", new()\n    {\n        Zone = \"tfaccAccessZone\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load NFS zone settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load NFS zone settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting NFS zone settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale NFS zone settings allow you to configure NFS zone settings on PowerScale.\n\t\t_, err := powerscale.NewNfsZoneSettings(ctx, \"example\", &powerscale.NfsZoneSettingsArgs{\n\t\t\tZone: pulumi.String(\"tfaccAccessZone\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.NfsZoneSettings;\nimport com.pulumi.powerscale.NfsZoneSettingsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load NFS zone settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load NFS zone settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting NFS zone settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale NFS zone settings allow you to configure NFS zone settings on PowerScale.\n        var example = new NfsZoneSettings(\"example\", NfsZoneSettingsArgs.builder()\n            .zone(\"tfaccAccessZone\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load NFS zone settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load NFS zone settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting NFS zone settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale NFS zone settings allow you to configure NFS zone settings on PowerScale.\n  example:\n    type: powerscale:NfsZoneSettings\n    properties:\n      zone: tfaccAccessZone\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/nfsZoneSettings:NfsZoneSettings example zone\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/nfsZoneSettings:NfsZoneSettings example tfaccAccessZone\n```\n\nafter running this command, populate the zone field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"nfsv4AllowNumericIds":{"description":"If true, sends owners and groups as UIDs and GIDs when look up fails or if the 'nfsv4*no*name' property is set to 1.\n","type":"boolean"},"nfsv4Domain":{"description":"Specifies the domain or realm through which users and groups are associated.\n","type":"string"},"nfsv4NoDomain":{"description":"If true, sends owners and groups without a domain name.\n","type":"boolean"},"nfsv4NoDomainUids":{"description":"If true, sends UIDs and GIDs without a domain name.\n","type":"boolean"},"nfsv4NoNames":{"description":"If true, sends owners and groups as UIDs and GIDs.\n","type":"boolean"},"nfsv4ReplaceDomain":{"description":"If true, replaces the owner or group domain with an NFS domain name.\n","type":"boolean"},"zone":{"description":"Access zone\n","type":"string"}},"properties":{"nfsv4AllowNumericIds":{"description":"If true, sends owners and groups as UIDs and GIDs when look up fails or if the 'nfsv4*no*name' property is set to 1.\n","type":"boolean"},"nfsv4Domain":{"description":"Specifies the domain or realm through which users and groups are associated.\n","type":"string"},"nfsv4NoDomain":{"description":"If true, sends owners and groups without a domain name.\n","type":"boolean"},"nfsv4NoDomainUids":{"description":"If true, sends UIDs and GIDs without a domain name.\n","type":"boolean"},"nfsv4NoNames":{"description":"If true, sends owners and groups as UIDs and GIDs.\n","type":"boolean"},"nfsv4ReplaceDomain":{"description":"If true, replaces the owner or group domain with an NFS domain name.\n","type":"boolean"},"zone":{"description":"Access zone\n","type":"string"}},"required":["nfsv4AllowNumericIds","nfsv4Domain","nfsv4NoDomain","nfsv4NoDomainUids","nfsv4NoNames","nfsv4ReplaceDomain","zone"],"requiredInputs":["zone"],"stateInputs":{"description":"Input properties used for looking up and filtering NfsZoneSettings resources.\n","properties":{"nfsv4AllowNumericIds":{"description":"If true, sends owners and groups as UIDs and GIDs when look up fails or if the 'nfsv4*no*name' property is set to 1.\n","type":"boolean"},"nfsv4Domain":{"description":"Specifies the domain or realm through which users and groups are associated.\n","type":"string"},"nfsv4NoDomain":{"description":"If true, sends owners and groups without a domain name.\n","type":"boolean"},"nfsv4NoDomainUids":{"description":"If true, sends UIDs and GIDs without a domain name.\n","type":"boolean"},"nfsv4NoNames":{"description":"If true, sends owners and groups as UIDs and GIDs.\n","type":"boolean"},"nfsv4ReplaceDomain":{"description":"If true, replaces the owner or group domain with an NFS domain name.\n","type":"boolean"},"zone":{"description":"Access zone\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/ntpserver:Ntpserver":{"description":"This resource is used to manage the NTP Server entity of PowerScale Array. We can Create, Update and Delete the NTP Server using this resource. We can also import an existing NTP Server from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file for the first time, you will create a NTP Server on the PowerScale\n// PowerScale NTP Server allows you to synchronize the system time\nconst ntpServerTest = new powerscale.Ntpserver(\"ntp_server_test\", {\n    name: \"ntp_server_example\",\n    key: \"ntp_server_key_example\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file for the first time, you will create a NTP Server on the PowerScale\n# PowerScale NTP Server allows you to synchronize the system time\nntp_server_test = powerscale.Ntpserver(\"ntp_server_test\",\n    name=\"ntp_server_example\",\n    key=\"ntp_server_key_example\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file for the first time, you will create a NTP Server on the PowerScale\n    // PowerScale NTP Server allows you to synchronize the system time\n    var ntpServerTest = new Powerscale.Ntpserver(\"ntp_server_test\", new()\n    {\n        Name = \"ntp_server_example\",\n        Key = \"ntp_server_key_example\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file for the first time, you will create a NTP Server on the PowerScale\n\t\t// PowerScale NTP Server allows you to synchronize the system time\n\t\t_, err := powerscale.NewNtpserver(ctx, \"ntp_server_test\", &powerscale.NtpserverArgs{\n\t\t\tName: pulumi.String(\"ntp_server_example\"),\n\t\t\tKey:  pulumi.String(\"ntp_server_key_example\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Ntpserver;\nimport com.pulumi.powerscale.NtpserverArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file for the first time, you will create a NTP Server on the PowerScale\n        // PowerScale NTP Server allows you to synchronize the system time\n        var ntpServerTest = new Ntpserver(\"ntpServerTest\", NtpserverArgs.builder()\n            .name(\"ntp_server_example\")\n            .key(\"ntp_server_key_example\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file for the first time, you will create a NTP Server on the PowerScale\n\n  # PowerScale NTP Server allows you to synchronize the system time\n  ntpServerTest:\n    type: powerscale:Ntpserver\n    name: ntp_server_test\n    properties:\n      name: ntp_server_example\n      key: ntp_server_key_example\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/ntpserver:Ntpserver ntp_server_test <name>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/ntpserver:Ntpserver ntp_server_test ntp_server_id\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"key":{"description":"Key value from<span pulumi-lang-nodejs=\" keyFile \" pulumi-lang-dotnet=\" KeyFile \" pulumi-lang-go=\" keyFile \" pulumi-lang-python=\" key_file \" pulumi-lang-yaml=\" keyFile \" pulumi-lang-java=\" keyFile \"> key_file </span>that maps to this server.\n","type":"string"},"name":{"description":"NTP server name.\n","type":"string"}},"properties":{"key":{"description":"Key value from<span pulumi-lang-nodejs=\" keyFile \" pulumi-lang-dotnet=\" KeyFile \" pulumi-lang-go=\" keyFile \" pulumi-lang-python=\" key_file \" pulumi-lang-yaml=\" keyFile \" pulumi-lang-java=\" keyFile \"> key_file </span>that maps to this server.\n","type":"string"},"name":{"description":"NTP server name.\n","type":"string"}},"required":["key","name"],"stateInputs":{"description":"Input properties used for looking up and filtering Ntpserver resources.\n","properties":{"key":{"description":"Key value from<span pulumi-lang-nodejs=\" keyFile \" pulumi-lang-dotnet=\" KeyFile \" pulumi-lang-go=\" keyFile \" pulumi-lang-python=\" key_file \" pulumi-lang-yaml=\" keyFile \" pulumi-lang-java=\" keyFile \"> key_file </span>that maps to this server.\n","type":"string"},"name":{"description":"NTP server name.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/ntpsettings:Ntpsettings":{"description":"This resource is used to manage the NTP Settings entity of PowerScale Array. We can Create, Update and Delete the NTP Settings using this resource. We can also import the existing NTP Settings from PowerScale array. Note that, NTP Settings is the native functionality of PowerScale. When creating the resource, we actually load NTP Settings from PowerScale to the resource state.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load NTP Settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load NTP Settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting NTP Settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale NTP Settings allow you to change the settings of NTP Servers\nconst exampleNtpSettings = new powerscale.Ntpsettings(\"example_ntp_settings\", {});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load NTP Settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load NTP Settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting NTP Settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale NTP Settings allow you to change the settings of NTP Servers\nexample_ntp_settings = powerscale.Ntpsettings(\"example_ntp_settings\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load NTP Settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load NTP Settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting NTP Settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale NTP Settings allow you to change the settings of NTP Servers\n    var exampleNtpSettings = new Powerscale.Ntpsettings(\"example_ntp_settings\");\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load NTP Settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load NTP Settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting NTP Settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale NTP Settings allow you to change the settings of NTP Servers\n\t\t_, err := powerscale.NewNtpsettings(ctx, \"example_ntp_settings\", nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Ntpsettings;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load NTP Settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load NTP Settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting NTP Settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale NTP Settings allow you to change the settings of NTP Servers\n        var exampleNtpSettings = new Ntpsettings(\"exampleNtpSettings\");\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load NTP Settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load NTP Settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting NTP Settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale NTP Settings allow you to change the settings of NTP Servers\n  exampleNtpSettings:\n    type: powerscale:Ntpsettings\n    name: example_ntp_settings\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/ntpsettings:Ntpsettings example_ntp_settings <anyString>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/ntpsettings:Ntpsettings example_ntp_settings anyString\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"chimers":{"description":"Number of nodes that will contact the NTP servers.\n","type":"number"},"excludeds":{"description":"Node number (LNN) for nodes excluded from chimer duty.\n","items":{"type":"string"},"type":"array"},"keyFile":{"description":"Path to NTP key file within /ifs.\n","type":"string"}},"properties":{"chimers":{"description":"Number of nodes that will contact the NTP servers.\n","type":"number"},"excludeds":{"description":"Node number (LNN) for nodes excluded from chimer duty.\n","items":{"type":"string"},"type":"array"},"keyFile":{"description":"Path to NTP key file within /ifs.\n","type":"string"}},"required":["chimers","excludeds","keyFile"],"stateInputs":{"description":"Input properties used for looking up and filtering Ntpsettings resources.\n","properties":{"chimers":{"description":"Number of nodes that will contact the NTP servers.\n","type":"number"},"excludeds":{"description":"Node number (LNN) for nodes excluded from chimer duty.\n","items":{"type":"string"},"type":"array"},"keyFile":{"description":"Path to NTP key file within /ifs.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/quota:Quota":{"description":"This resource is used to manage the Quota entity of PowerScale Array. Quota module monitors and enforces administrator-defined storage limits. We can Create, Update and Delete the Quota using this resource. We can also import an existing Quota from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will create Quota on specified paths on the PowerScale Array.\n// For more information, Please check the terraform state file.\n// PowerScale Quota module monitors and enforces administrator-defined storage limits.\nconst quotaTest = new powerscale.Quota(\"quota_test\", {\n    path: \"/ifs/example_quota\",\n    type: \"user\",\n    includeSnapshots: false,\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will create Quota on specified paths on the PowerScale Array.\n# For more information, Please check the terraform state file.\n# PowerScale Quota module monitors and enforces administrator-defined storage limits.\nquota_test = powerscale.Quota(\"quota_test\",\n    path=\"/ifs/example_quota\",\n    type=\"user\",\n    include_snapshots=False)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will create Quota on specified paths on the PowerScale Array.\n    // For more information, Please check the terraform state file.\n    // PowerScale Quota module monitors and enforces administrator-defined storage limits.\n    var quotaTest = new Powerscale.Quota(\"quota_test\", new()\n    {\n        Path = \"/ifs/example_quota\",\n        Type = \"user\",\n        IncludeSnapshots = false,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will create Quota on specified paths on the PowerScale Array.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale Quota module monitors and enforces administrator-defined storage limits.\n\t\t_, err := powerscale.NewQuota(ctx, \"quota_test\", &powerscale.QuotaArgs{\n\t\t\tPath:             pulumi.String(\"/ifs/example_quota\"),\n\t\t\tType:             pulumi.String(\"user\"),\n\t\t\tIncludeSnapshots: pulumi.Bool(false),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Quota;\nimport com.pulumi.powerscale.QuotaArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will create Quota on specified paths on the PowerScale Array.\n        // For more information, Please check the terraform state file.\n        // PowerScale Quota module monitors and enforces administrator-defined storage limits.\n        var quotaTest = new Quota(\"quotaTest\", QuotaArgs.builder()\n            .path(\"/ifs/example_quota\")\n            .type(\"user\")\n            .includeSnapshots(false)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will create Quota on specified paths on the PowerScale Array.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale Quota module monitors and enforces administrator-defined storage limits.\n  quotaTest:\n    type: powerscale:Quota\n    name: quota_test\n    properties:\n      path: /ifs/example_quota\n      type: user\n      includeSnapshots: 'false'\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/quota:Quota quota_example [<zoneID>]:<id>\n```\n\nExample 1: <zoneID> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/quota:Quota quota_example example_quota_id\n```\n\nExample 2:\n\n```sh\n$ pulumi import powerscale:index/quota:Quota quota_example zone_id:example_quota_id\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"container":{"description":"If true, quotas using the quota directory see the quota thresholds as share size.\n","type":"boolean"},"enforced":{"description":"True if the quota provides enforcement, otherwise an accounting quota.\n","type":"boolean"},"force":{"description":"Force creation of quotas on the root of /ifs or percent based quotas.\n","type":"boolean"},"ignoreLimitChecks":{"description":"If true, skip child quota's threshold comparison with parent quota path.\n","type":"boolean"},"includeSnapshots":{"description":"If true, quota governs snapshot data as well as head data.\n","type":"boolean"},"linked":{"description":"For user, group and directory quotas, true if the quota is linked and controlled by a parent default-* quota. Linked quotas cannot be modified until they are unlinked. Set linked as true or false to link or unlink quota\n","type":"boolean"},"path":{"description":"The ifs path governed.\n","type":"string"},"persona":{"$ref":"#/types/powerscale:index%2FQuotaPersona:QuotaPersona","description":"Specifies the persona of the file group. persona is required for user and group type.\n"},"thresholds":{"$ref":"#/types/powerscale:index%2FQuotaThresholds:QuotaThresholds","description":"The thresholds of quota. To clear any threshold, set it to <span pulumi-lang-nodejs=\"`0`\" pulumi-lang-dotnet=\"`0`\" pulumi-lang-go=\"`0`\" pulumi-lang-python=\"`0`\" pulumi-lang-yaml=\"`0`\" pulumi-lang-java=\"`0`\">`0`</span>.\n"},"thresholdsOn":{"description":"Thresholds apply on quota accounting metric.\n","type":"string"},"type":{"description":"The type of quota.\n","type":"string"},"zone":{"description":"Optional named zone to use for user and group resolution.\n","type":"string"}},"properties":{"container":{"description":"If true, quotas using the quota directory see the quota thresholds as share size.\n","type":"boolean"},"efficiencyRatio":{"description":"Represents the ratio of logical space provided to physical space used. This accounts for protection overhead, metadata, and compression ratios for the data.\n","type":"number"},"enforced":{"description":"True if the quota provides enforcement, otherwise an accounting quota.\n","type":"boolean"},"force":{"description":"Force creation of quotas on the root of /ifs or percent based quotas.\n","type":"boolean"},"ignoreLimitChecks":{"description":"If true, skip child quota's threshold comparison with parent quota path.\n","type":"boolean"},"includeSnapshots":{"description":"If true, quota governs snapshot data as well as head data.\n","type":"boolean"},"linked":{"description":"For user, group and directory quotas, true if the quota is linked and controlled by a parent default-* quota. Linked quotas cannot be modified until they are unlinked. Set linked as true or false to link or unlink quota\n","type":"boolean"},"notifications":{"description":"Summary of notifications: 'custom' indicates one or more notification rules available from the notifications sub-resource; 'default' indicates system default rules are used; 'disabled' indicates that no notifications will be used for this quota.; 'badmap' indicates that notification rule has problem in rule map.\n","type":"string"},"path":{"description":"The ifs path governed.\n","type":"string"},"persona":{"$ref":"#/types/powerscale:index%2FQuotaPersona:QuotaPersona","description":"Specifies the persona of the file group. persona is required for user and group type.\n"},"ready":{"description":"True if the default resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"reductionRatio":{"description":"Represents the ratio of logical space provided to physical data space used. This accounts for compression and data deduplication effects.\n","type":"number"},"thresholds":{"$ref":"#/types/powerscale:index%2FQuotaThresholds:QuotaThresholds","description":"The thresholds of quota. To clear any threshold, set it to <span pulumi-lang-nodejs=\"`0`\" pulumi-lang-dotnet=\"`0`\" pulumi-lang-go=\"`0`\" pulumi-lang-python=\"`0`\" pulumi-lang-yaml=\"`0`\" pulumi-lang-java=\"`0`\">`0`</span>.\n"},"thresholdsOn":{"description":"Thresholds apply on quota accounting metric.\n","type":"string"},"type":{"description":"The type of quota.\n","type":"string"},"usage":{"$ref":"#/types/powerscale:index%2FQuotaUsage:QuotaUsage","description":"The usage of quota\n"},"zone":{"description":"Optional named zone to use for user and group resolution.\n","type":"string"}},"required":["container","efficiencyRatio","enforced","includeSnapshots","linked","notifications","path","ready","reductionRatio","thresholds","thresholdsOn","type","usage"],"requiredInputs":["includeSnapshots","path","type"],"stateInputs":{"description":"Input properties used for looking up and filtering Quota resources.\n","properties":{"container":{"description":"If true, quotas using the quota directory see the quota thresholds as share size.\n","type":"boolean"},"efficiencyRatio":{"description":"Represents the ratio of logical space provided to physical space used. This accounts for protection overhead, metadata, and compression ratios for the data.\n","type":"number"},"enforced":{"description":"True if the quota provides enforcement, otherwise an accounting quota.\n","type":"boolean"},"force":{"description":"Force creation of quotas on the root of /ifs or percent based quotas.\n","type":"boolean"},"ignoreLimitChecks":{"description":"If true, skip child quota's threshold comparison with parent quota path.\n","type":"boolean"},"includeSnapshots":{"description":"If true, quota governs snapshot data as well as head data.\n","type":"boolean"},"linked":{"description":"For user, group and directory quotas, true if the quota is linked and controlled by a parent default-* quota. Linked quotas cannot be modified until they are unlinked. Set linked as true or false to link or unlink quota\n","type":"boolean"},"notifications":{"description":"Summary of notifications: 'custom' indicates one or more notification rules available from the notifications sub-resource; 'default' indicates system default rules are used; 'disabled' indicates that no notifications will be used for this quota.; 'badmap' indicates that notification rule has problem in rule map.\n","type":"string"},"path":{"description":"The ifs path governed.\n","type":"string"},"persona":{"$ref":"#/types/powerscale:index%2FQuotaPersona:QuotaPersona","description":"Specifies the persona of the file group. persona is required for user and group type.\n"},"ready":{"description":"True if the default resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"reductionRatio":{"description":"Represents the ratio of logical space provided to physical data space used. This accounts for compression and data deduplication effects.\n","type":"number"},"thresholds":{"$ref":"#/types/powerscale:index%2FQuotaThresholds:QuotaThresholds","description":"The thresholds of quota. To clear any threshold, set it to <span pulumi-lang-nodejs=\"`0`\" pulumi-lang-dotnet=\"`0`\" pulumi-lang-go=\"`0`\" pulumi-lang-python=\"`0`\" pulumi-lang-yaml=\"`0`\" pulumi-lang-java=\"`0`\">`0`</span>.\n"},"thresholdsOn":{"description":"Thresholds apply on quota accounting metric.\n","type":"string"},"type":{"description":"The type of quota.\n","type":"string"},"usage":{"$ref":"#/types/powerscale:index%2FQuotaUsage:QuotaUsage","description":"The usage of quota\n"},"zone":{"description":"Optional named zone to use for user and group resolution.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/role:Role":{"description":"This resource is used to manage the role entity of PowerScale Array. We can Create, Update and Delete the role using this resource. We can also import an existing role from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file for the first time, you will create a role on the PowerScale\n// PowerScale role allows you to permit and limit access to administrative areas of your cluster on a per-user basis through roles.\nconst roleTest = new powerscale.Role(\"role_test\", {\n    name: \"role_test\",\n    zone: \"System\",\n    description: \"role_test_description\",\n    members: [\n        {\n            id: \"UID:10\",\n        },\n        {\n            id: \"UID:0\",\n        },\n        {\n            id: \"GID:31\",\n        },\n    ],\n    privileges: [\n        {\n            id: \"ISI_PRIV_SYS_SUPPORT\",\n            permission: \"r\",\n        },\n        {\n            id: \"ISI_PRIV_SYS_SHUTDOWN\",\n            permission: \"r\",\n        },\n    ],\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file for the first time, you will create a role on the PowerScale\n# PowerScale role allows you to permit and limit access to administrative areas of your cluster on a per-user basis through roles.\nrole_test = powerscale.Role(\"role_test\",\n    name=\"role_test\",\n    zone=\"System\",\n    description=\"role_test_description\",\n    members=[\n        {\n            \"id\": \"UID:10\",\n        },\n        {\n            \"id\": \"UID:0\",\n        },\n        {\n            \"id\": \"GID:31\",\n        },\n    ],\n    privileges=[\n        {\n            \"id\": \"ISI_PRIV_SYS_SUPPORT\",\n            \"permission\": \"r\",\n        },\n        {\n            \"id\": \"ISI_PRIV_SYS_SHUTDOWN\",\n            \"permission\": \"r\",\n        },\n    ])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file for the first time, you will create a role on the PowerScale\n    // PowerScale role allows you to permit and limit access to administrative areas of your cluster on a per-user basis through roles.\n    var roleTest = new Powerscale.Role(\"role_test\", new()\n    {\n        Name = \"role_test\",\n        Zone = \"System\",\n        Description = \"role_test_description\",\n        Members = new[]\n        {\n            new Powerscale.Inputs.RoleMemberArgs\n            {\n                Id = \"UID:10\",\n            },\n            new Powerscale.Inputs.RoleMemberArgs\n            {\n                Id = \"UID:0\",\n            },\n            new Powerscale.Inputs.RoleMemberArgs\n            {\n                Id = \"GID:31\",\n            },\n        },\n        Privileges = new[]\n        {\n            new Powerscale.Inputs.RolePrivilegeArgs\n            {\n                Id = \"ISI_PRIV_SYS_SUPPORT\",\n                Permission = \"r\",\n            },\n            new Powerscale.Inputs.RolePrivilegeArgs\n            {\n                Id = \"ISI_PRIV_SYS_SHUTDOWN\",\n                Permission = \"r\",\n            },\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file for the first time, you will create a role on the PowerScale\n\t\t// PowerScale role allows you to permit and limit access to administrative areas of your cluster on a per-user basis through roles.\n\t\t_, err := powerscale.NewRole(ctx, \"role_test\", &powerscale.RoleArgs{\n\t\t\tName:        pulumi.String(\"role_test\"),\n\t\t\tZone:        pulumi.String(\"System\"),\n\t\t\tDescription: pulumi.String(\"role_test_description\"),\n\t\t\tMembers: powerscale.RoleMemberArray{\n\t\t\t\t&powerscale.RoleMemberArgs{\n\t\t\t\t\tId: pulumi.String(\"UID:10\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.RoleMemberArgs{\n\t\t\t\t\tId: pulumi.String(\"UID:0\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.RoleMemberArgs{\n\t\t\t\t\tId: pulumi.String(\"GID:31\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\tPrivileges: powerscale.RolePrivilegeArray{\n\t\t\t\t&powerscale.RolePrivilegeArgs{\n\t\t\t\t\tId:         pulumi.String(\"ISI_PRIV_SYS_SUPPORT\"),\n\t\t\t\t\tPermission: pulumi.String(\"r\"),\n\t\t\t\t},\n\t\t\t\t&powerscale.RolePrivilegeArgs{\n\t\t\t\t\tId:         pulumi.String(\"ISI_PRIV_SYS_SHUTDOWN\"),\n\t\t\t\t\tPermission: pulumi.String(\"r\"),\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Role;\nimport com.pulumi.powerscale.RoleArgs;\nimport com.pulumi.powerscale.inputs.RoleMemberArgs;\nimport com.pulumi.powerscale.inputs.RolePrivilegeArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file for the first time, you will create a role on the PowerScale\n        // PowerScale role allows you to permit and limit access to administrative areas of your cluster on a per-user basis through roles.\n        var roleTest = new Role(\"roleTest\", RoleArgs.builder()\n            .name(\"role_test\")\n            .zone(\"System\")\n            .description(\"role_test_description\")\n            .members(            \n                RoleMemberArgs.builder()\n                    .id(\"UID:10\")\n                    .build(),\n                RoleMemberArgs.builder()\n                    .id(\"UID:0\")\n                    .build(),\n                RoleMemberArgs.builder()\n                    .id(\"GID:31\")\n                    .build())\n            .privileges(            \n                RolePrivilegeArgs.builder()\n                    .id(\"ISI_PRIV_SYS_SUPPORT\")\n                    .permission(\"r\")\n                    .build(),\n                RolePrivilegeArgs.builder()\n                    .id(\"ISI_PRIV_SYS_SHUTDOWN\")\n                    .permission(\"r\")\n                    .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file for the first time, you will create a role on the PowerScale\n\n  # PowerScale role allows you to permit and limit access to administrative areas of your cluster on a per-user basis through roles.\n  roleTest:\n    type: powerscale:Role\n    name: role_test\n    properties:\n      name: role_test\n      zone: System\n      description: role_test_description\n      members:\n        - id: UID:10\n        - id: UID:0\n        - id: GID:31\n      privileges:\n        - id: ISI_PRIV_SYS_SUPPORT\n          permission: r\n        - id: ISI_PRIV_SYS_SHUTDOWN\n          permission: r\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/role:Role role_test [<zone_id>:]<role_id>\n```\n\nExample1, <zone_id> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/role:Role role_test role_id\n```\n\nExample2:\n\n```sh\n$ pulumi import powerscale:index/role:Role role_test zone_id:role_id\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"description":{"description":"Specifies the description of the role.\n","type":"string"},"members":{"description":"Specifies the users or groups that have this role.\n","items":{"$ref":"#/types/powerscale:index%2FRoleMember:RoleMember"},"type":"array"},"name":{"description":"Specifies the name of the role.\n","type":"string"},"privileges":{"description":"Specifies the privileges granted by this role.\n","items":{"$ref":"#/types/powerscale:index%2FRolePrivilege:RolePrivilege"},"type":"array"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"properties":{"description":{"description":"Specifies the description of the role.\n","type":"string"},"members":{"description":"Specifies the users or groups that have this role.\n","items":{"$ref":"#/types/powerscale:index%2FRoleMember:RoleMember"},"type":"array"},"name":{"description":"Specifies the name of the role.\n","type":"string"},"privileges":{"description":"Specifies the privileges granted by this role.\n","items":{"$ref":"#/types/powerscale:index%2FRolePrivilege:RolePrivilege"},"type":"array"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"required":["description","members","name","privileges"],"stateInputs":{"description":"Input properties used for looking up and filtering Role resources.\n","properties":{"description":{"description":"Specifies the description of the role.\n","type":"string"},"members":{"description":"Specifies the users or groups that have this role.\n","items":{"$ref":"#/types/powerscale:index%2FRoleMember:RoleMember"},"type":"array"},"name":{"description":"Specifies the name of the role.\n","type":"string"},"privileges":{"description":"Specifies the privileges granted by this role.\n","items":{"$ref":"#/types/powerscale:index%2FRolePrivilege:RolePrivilege"},"type":"array"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/s3Bucket:S3Bucket":{"description":"This resource is used to manage the S3 Bucket entity of PowerScale Array. PowerScale S3 Bucket map to the PowerScale file system as base directory for Objects. We can Create, Update and Delete the S3 Bucket using this resource. We can also import an existing S3 Bucket from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will create S3 Bucket on specified paths on the PowerScale Array.\n// For more information, Please check the terraform state file.\n// PowerScale S3 Bucket enables access to file-based data that is stored on OneFS clusters as objects.\nconst s3BucketExample = new powerscale.S3Bucket(\"s3_bucket_example\", {\n    name: \"s3-bucket-example\",\n    path: \"/ifs/s3_bucket_example\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will create S3 Bucket on specified paths on the PowerScale Array.\n# For more information, Please check the terraform state file.\n# PowerScale S3 Bucket enables access to file-based data that is stored on OneFS clusters as objects.\ns3_bucket_example = powerscale.S3Bucket(\"s3_bucket_example\",\n    name=\"s3-bucket-example\",\n    path=\"/ifs/s3_bucket_example\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will create S3 Bucket on specified paths on the PowerScale Array.\n    // For more information, Please check the terraform state file.\n    // PowerScale S3 Bucket enables access to file-based data that is stored on OneFS clusters as objects.\n    var s3BucketExample = new Powerscale.S3Bucket(\"s3_bucket_example\", new()\n    {\n        Name = \"s3-bucket-example\",\n        Path = \"/ifs/s3_bucket_example\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will create S3 Bucket on specified paths on the PowerScale Array.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale S3 Bucket enables access to file-based data that is stored on OneFS clusters as objects.\n\t\t_, err := powerscale.NewS3Bucket(ctx, \"s3_bucket_example\", &powerscale.S3BucketArgs{\n\t\t\tName: pulumi.String(\"s3-bucket-example\"),\n\t\t\tPath: pulumi.String(\"/ifs/s3_bucket_example\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.S3Bucket;\nimport com.pulumi.powerscale.S3BucketArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will create S3 Bucket on specified paths on the PowerScale Array.\n        // For more information, Please check the terraform state file.\n        // PowerScale S3 Bucket enables access to file-based data that is stored on OneFS clusters as objects.\n        var s3BucketExample = new S3Bucket(\"s3BucketExample\", S3BucketArgs.builder()\n            .name(\"s3-bucket-example\")\n            .path(\"/ifs/s3_bucket_example\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will create S3 Bucket on specified paths on the PowerScale Array.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale S3 Bucket enables access to file-based data that is stored on OneFS clusters as objects.\n  s3BucketExample:\n    type: powerscale:S3Bucket\n    name: s3_bucket_example\n    properties:\n      name: s3-bucket-example\n      path: /ifs/s3_bucket_example\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/s3Bucket:S3Bucket s3_bucket_example [<zoneID>]:<id>\n```\n\nExample 1: <zoneID> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/s3Bucket:S3Bucket s3_bucket_example example_s3_bucket_id\n```\n\nExample 2:\n\n```sh\n$ pulumi import powerscale:index/s3Bucket:S3Bucket s3_bucket_example zone_id:example_s3_bucket_id\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"acls":{"description":"Specifies properties for an S3 Access Control Entry.\n","items":{"$ref":"#/types/powerscale:index%2FS3BucketAcl:S3BucketAcl"},"type":"array"},"createPath":{"description":"Create path if does not exist.\n","type":"boolean"},"description":{"description":"Description for this S3 bucket.\n","type":"string"},"name":{"description":"Bucket name.\n","type":"string"},"objectAclPolicy":{"description":"Set behavior of modifying object acls.\n","type":"string"},"owner":{"description":"Specifies the name of the owner.\n","type":"string"},"path":{"description":"Path of bucket within /ifs.\n","type":"string"},"zone":{"description":"Zone Name.\n","type":"string"}},"properties":{"acls":{"description":"Specifies properties for an S3 Access Control Entry.\n","items":{"$ref":"#/types/powerscale:index%2FS3BucketAcl:S3BucketAcl"},"type":"array"},"createPath":{"description":"Create path if does not exist.\n","type":"boolean"},"description":{"description":"Description for this S3 bucket.\n","type":"string"},"name":{"description":"Bucket name.\n","type":"string"},"objectAclPolicy":{"description":"Set behavior of modifying object acls.\n","type":"string"},"owner":{"description":"Specifies the name of the owner.\n","type":"string"},"path":{"description":"Path of bucket within /ifs.\n","type":"string"},"zid":{"description":"Zone ID.\n","type":"number"},"zone":{"description":"Zone Name.\n","type":"string"}},"required":["acls","description","name","objectAclPolicy","owner","path","zid"],"requiredInputs":["path"],"stateInputs":{"description":"Input properties used for looking up and filtering S3Bucket resources.\n","properties":{"acls":{"description":"Specifies properties for an S3 Access Control Entry.\n","items":{"$ref":"#/types/powerscale:index%2FS3BucketAcl:S3BucketAcl"},"type":"array"},"createPath":{"description":"Create path if does not exist.\n","type":"boolean"},"description":{"description":"Description for this S3 bucket.\n","type":"string"},"name":{"description":"Bucket name.\n","type":"string"},"objectAclPolicy":{"description":"Set behavior of modifying object acls.\n","type":"string"},"owner":{"description":"Specifies the name of the owner.\n","type":"string"},"path":{"description":"Path of bucket within /ifs.\n","type":"string"},"zid":{"description":"Zone ID.\n","type":"number"},"zone":{"description":"Zone Name.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/s3GlobalSettings:S3GlobalSettings":{"description":"This resource is used to manage the S3 Global Setting entity of PowerScale Array. PowerScale S3 Global Setting map to the PowerScale file system as base directory for Objects. We can Create, Update and Delete the S3 Global Setting using this resource. We can also import an existing S3 Global Setting from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will modify S3 Global Settings on  the PowerScale Array.\n// For more information, Please check the terraform state file.\n// PowerScale S3 global settings allows you to configure S3 global settings on PowerScale.\nconst s3GlobalSetting = new powerscale.S3GlobalSettings(\"s3_global_setting\", {\n    service: true,\n    httpsOnly: false,\n    httpPort: 9097,\n    httpsPort: 9098,\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will modify S3 Global Settings on  the PowerScale Array.\n# For more information, Please check the terraform state file.\n# PowerScale S3 global settings allows you to configure S3 global settings on PowerScale.\ns3_global_setting = powerscale.S3GlobalSettings(\"s3_global_setting\",\n    service=True,\n    https_only=False,\n    http_port=9097,\n    https_port=9098)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will modify S3 Global Settings on  the PowerScale Array.\n    // For more information, Please check the terraform state file.\n    // PowerScale S3 global settings allows you to configure S3 global settings on PowerScale.\n    var s3GlobalSetting = new Powerscale.S3GlobalSettings(\"s3_global_setting\", new()\n    {\n        Service = true,\n        HttpsOnly = false,\n        HttpPort = 9097,\n        HttpsPort = 9098,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will modify S3 Global Settings on  the PowerScale Array.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale S3 global settings allows you to configure S3 global settings on PowerScale.\n\t\t_, err := powerscale.NewS3GlobalSettings(ctx, \"s3_global_setting\", &powerscale.S3GlobalSettingsArgs{\n\t\t\tService:   pulumi.Bool(true),\n\t\t\tHttpsOnly: pulumi.Bool(false),\n\t\t\tHttpPort:  pulumi.Float64(9097),\n\t\t\tHttpsPort: pulumi.Float64(9098),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.S3GlobalSettings;\nimport com.pulumi.powerscale.S3GlobalSettingsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will modify S3 Global Settings on  the PowerScale Array.\n        // For more information, Please check the terraform state file.\n        // PowerScale S3 global settings allows you to configure S3 global settings on PowerScale.\n        var s3GlobalSetting = new S3GlobalSettings(\"s3GlobalSetting\", S3GlobalSettingsArgs.builder()\n            .service(true)\n            .httpsOnly(false)\n            .httpPort(9097.0)\n            .httpsPort(9098.0)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will modify S3 Global Settings on  the PowerScale Array.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale S3 global settings allows you to configure S3 global settings on PowerScale.\n  s3GlobalSetting:\n    type: powerscale:S3GlobalSettings\n    name: s3_global_setting\n    properties:\n      service: true\n      httpsOnly: false\n      httpPort: 9097\n      httpsPort: 9098\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/s3GlobalSettings:S3GlobalSettings s3_global_settings_example <any string>\n```\n\n```sh\n$ pulumi import powerscale:index/s3GlobalSettings:S3GlobalSettings s3_global_settings_example \"\"\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"httpPort":{"description":"Specifies the HTTP port.\n","type":"number"},"httpsOnly":{"description":"Specifies if the service is HTTPS only.\n","type":"boolean"},"httpsPort":{"description":"Specifies the HTTPS port.\n","type":"number"},"service":{"description":"Specifies if the service is enabled.\n","type":"boolean"}},"properties":{"httpPort":{"description":"Specifies the HTTP port.\n","type":"number"},"httpsOnly":{"description":"Specifies if the service is HTTPS only.\n","type":"boolean"},"httpsPort":{"description":"Specifies the HTTPS port.\n","type":"number"},"service":{"description":"Specifies if the service is enabled.\n","type":"boolean"}},"required":["httpPort","httpsOnly","httpsPort","service"],"stateInputs":{"description":"Input properties used for looking up and filtering S3GlobalSettings resources.\n","properties":{"httpPort":{"description":"Specifies the HTTP port.\n","type":"number"},"httpsOnly":{"description":"Specifies if the service is HTTPS only.\n","type":"boolean"},"httpsPort":{"description":"Specifies the HTTPS port.\n","type":"number"},"service":{"description":"Specifies if the service is enabled.\n","type":"boolean"}},"type":"object"},"type":"object"},"powerscale:index/s3Key:S3Key":{"description":"This resource is used to manage the S3 Key Entity of PowerScale Array. PowerScale S3 keys are used to sign the requests you send to the S3 protocol. We can Create, Update and Delete the S3 Key using this resource.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update and Delete\n// After `pulumi up` of this example file it will generate the s3 key for the user.\n// For more information, Please check the terraform state file.\n// PowerScale S3 key to generate the keys for users to sign the requests you send to the S3 protocol.\nconst skm = new powerscale.S3Key(\"skm\", {\n    user: \"tf_user\",\n    zone: \"System\",\n    existingKeyExpiryTime: 10,\n});\nexport const key = skm;\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update and Delete\n# After `pulumi up` of this example file it will generate the s3 key for the user.\n# For more information, Please check the terraform state file.\n# PowerScale S3 key to generate the keys for users to sign the requests you send to the S3 protocol.\nskm = powerscale.S3Key(\"skm\",\n    user=\"tf_user\",\n    zone=\"System\",\n    existing_key_expiry_time=10)\npulumi.export(\"key\", skm)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update and Delete\n    // After `pulumi up` of this example file it will generate the s3 key for the user.\n    // For more information, Please check the terraform state file.\n    // PowerScale S3 key to generate the keys for users to sign the requests you send to the S3 protocol.\n    var skm = new Powerscale.S3Key(\"skm\", new()\n    {\n        User = \"tf_user\",\n        Zone = \"System\",\n        ExistingKeyExpiryTime = 10,\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"key\"] = skm,\n    };\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update and Delete\n\t\t// After `pulumi up` of this example file it will generate the s3 key for the user.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale S3 key to generate the keys for users to sign the requests you send to the S3 protocol.\n\t\tskm, err := powerscale.NewS3Key(ctx, \"skm\", &powerscale.S3KeyArgs{\n\t\t\tUser:                  pulumi.String(\"tf_user\"),\n\t\t\tZone:                  pulumi.String(\"System\"),\n\t\t\tExistingKeyExpiryTime: pulumi.Float64(10),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx.Export(\"key\", skm)\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.S3Key;\nimport com.pulumi.powerscale.S3KeyArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update and Delete\n        // After `pulumi up` of this example file it will generate the s3 key for the user.\n        // For more information, Please check the terraform state file.\n        // PowerScale S3 key to generate the keys for users to sign the requests you send to the S3 protocol.\n        var skm = new S3Key(\"skm\", S3KeyArgs.builder()\n            .user(\"tf_user\")\n            .zone(\"System\")\n            .existingKeyExpiryTime(10.0)\n            .build());\n\n        ctx.export(\"key\", skm);\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update and Delete\n  # After `pulumi up` of this example file it will generate the s3 key for the user.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale S3 key to generate the keys for users to sign the requests you send to the S3 protocol.\n  skm:\n    type: powerscale:S3Key\n    properties:\n      user: tf_user\n      zone: System\n      existingKeyExpiryTime: 10\noutputs:\n  key: ${skm}\n```\n<!--End PulumiCodeChooser -->\n","inputProperties":{"existingKeyExpiryTime":{"description":"The expiry of the old secret key in minutes. Optional. It will be applicable only if old*secret*key is exist.\n","type":"number"},"user":{"description":"The username to create the S3 key. This resource will be recreated if the value of this field is changed.\n","type":"string"},"zone":{"description":"The zone of the user. This resource will be recreated if the value of this field is changed.\n","type":"string"}},"properties":{"accessId":{"description":"Unique identifier of the S3 key.\n","type":"string"},"existingKeyExpiryTime":{"description":"The expiry of the old secret key in minutes. Optional. It will be applicable only if old*secret*key is exist.\n","type":"number"},"oldKeyExpiry":{"description":"The expiry of the old key. Computed.\n","type":"number"},"oldKeyTimestamp":{"description":"The timestamp of the old key. Computed.\n","type":"number"},"oldSecretKey":{"description":"The secret key of the old key. Computed.\n","type":"string"},"secretKey":{"description":"The secret key of the key. Computed.\n","type":"string"},"secretKeyTimestamp":{"description":"The timestamp of the secret key. Computed.\n","type":"number"},"user":{"description":"The username to create the S3 key. This resource will be recreated if the value of this field is changed.\n","type":"string"},"zone":{"description":"The zone of the user. This resource will be recreated if the value of this field is changed.\n","type":"string"}},"required":["accessId","oldKeyExpiry","oldKeyTimestamp","oldSecretKey","secretKey","secretKeyTimestamp","user","zone"],"requiredInputs":["user","zone"],"stateInputs":{"description":"Input properties used for looking up and filtering S3Key resources.\n","properties":{"accessId":{"description":"Unique identifier of the S3 key.\n","type":"string"},"existingKeyExpiryTime":{"description":"The expiry of the old secret key in minutes. Optional. It will be applicable only if old*secret*key is exist.\n","type":"number"},"oldKeyExpiry":{"description":"The expiry of the old key. Computed.\n","type":"number"},"oldKeyTimestamp":{"description":"The timestamp of the old key. Computed.\n","type":"number"},"oldSecretKey":{"description":"The secret key of the old key. Computed.\n","type":"string"},"secretKey":{"description":"The secret key of the key. Computed.\n","type":"string"},"secretKeyTimestamp":{"description":"The timestamp of the secret key. Computed.\n","type":"number"},"user":{"description":"The username to create the S3 key. This resource will be recreated if the value of this field is changed.\n","type":"string"},"zone":{"description":"The zone of the user. This resource will be recreated if the value of this field is changed.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/s3ZoneSettings:S3ZoneSettings":{"description":"This resource is used to manage the S3 Zone Settings entity of the PowerScale Array. PowerScale S3 Zone Setting map to access zone configuration which provide default location for creating s3 buckets. We can Create, Update and Delete the S3 Zone Setting using this resource. We can also import an existing S3 Zone Settings from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will modify S3 Zone Settings on  the PowerScale Array.\n// For more information, Please check the terraform state file.\n// PowerScale S3 Zone settings allows you to configure S3 Zone settings on PowerScale.\nconst s3ZoneSetting = new powerscale.S3ZoneSettings(\"s3_zone_setting\", {\n    zone: \"tfacc-test\",\n    rootPath: \"/ifs/\",\n    baseDomain: \"dell.com\",\n    bucketDirectoryCreateMode: 511,\n    objectAclPolicy: \"deny\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will modify S3 Zone Settings on  the PowerScale Array.\n# For more information, Please check the terraform state file.\n# PowerScale S3 Zone settings allows you to configure S3 Zone settings on PowerScale.\ns3_zone_setting = powerscale.S3ZoneSettings(\"s3_zone_setting\",\n    zone=\"tfacc-test\",\n    root_path=\"/ifs/\",\n    base_domain=\"dell.com\",\n    bucket_directory_create_mode=511,\n    object_acl_policy=\"deny\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will modify S3 Zone Settings on  the PowerScale Array.\n    // For more information, Please check the terraform state file.\n    // PowerScale S3 Zone settings allows you to configure S3 Zone settings on PowerScale.\n    var s3ZoneSetting = new Powerscale.S3ZoneSettings(\"s3_zone_setting\", new()\n    {\n        Zone = \"tfacc-test\",\n        RootPath = \"/ifs/\",\n        BaseDomain = \"dell.com\",\n        BucketDirectoryCreateMode = 511,\n        ObjectAclPolicy = \"deny\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will modify S3 Zone Settings on  the PowerScale Array.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale S3 Zone settings allows you to configure S3 Zone settings on PowerScale.\n\t\t_, err := powerscale.NewS3ZoneSettings(ctx, \"s3_zone_setting\", &powerscale.S3ZoneSettingsArgs{\n\t\t\tZone:                      pulumi.String(\"tfacc-test\"),\n\t\t\tRootPath:                  pulumi.String(\"/ifs/\"),\n\t\t\tBaseDomain:                pulumi.String(\"dell.com\"),\n\t\t\tBucketDirectoryCreateMode: pulumi.Float64(511),\n\t\t\tObjectAclPolicy:           pulumi.String(\"deny\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.S3ZoneSettings;\nimport com.pulumi.powerscale.S3ZoneSettingsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will modify S3 Zone Settings on  the PowerScale Array.\n        // For more information, Please check the terraform state file.\n        // PowerScale S3 Zone settings allows you to configure S3 Zone settings on PowerScale.\n        var s3ZoneSetting = new S3ZoneSettings(\"s3ZoneSetting\", S3ZoneSettingsArgs.builder()\n            .zone(\"tfacc-test\")\n            .rootPath(\"/ifs/\")\n            .baseDomain(\"dell.com\")\n            .bucketDirectoryCreateMode(511.0)\n            .objectAclPolicy(\"deny\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will modify S3 Zone Settings on  the PowerScale Array.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale S3 Zone settings allows you to configure S3 Zone settings on PowerScale.\n  s3ZoneSetting:\n    type: powerscale:S3ZoneSettings\n    name: s3_zone_setting\n    properties:\n      zone: tfacc-test\n      rootPath: /ifs/\n      baseDomain: dell.com\n      bucketDirectoryCreateMode: 511\n      objectAclPolicy: deny\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nS3 Zone Settings can be imported by the name of the S3 Zone\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/s3ZoneSettings:S3ZoneSettings s3_zone_settings_example <S3 zone name>\n```\n\n```sh\n$ pulumi import powerscale:index/s3ZoneSettings:S3ZoneSettings s3_zone_settings_example \"System\"\n```\n\nafter running this command, populate the zone field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"baseDomain":{"description":"Base Domain for S3 zone\n","type":"string"},"bucketDirectoryCreateMode":{"description":"The permission mode for creating bucket directories.\n","type":"number"},"objectAclPolicy":{"description":"The default policy for object access control lists (ACLs), which can be either <span pulumi-lang-nodejs=\"`replace`\" pulumi-lang-dotnet=\"`Replace`\" pulumi-lang-go=\"`replace`\" pulumi-lang-python=\"`replace`\" pulumi-lang-yaml=\"`replace`\" pulumi-lang-java=\"`replace`\">`replace`</span> or <span pulumi-lang-nodejs=\"`deny`\" pulumi-lang-dotnet=\"`Deny`\" pulumi-lang-go=\"`deny`\" pulumi-lang-python=\"`deny`\" pulumi-lang-yaml=\"`deny`\" pulumi-lang-java=\"`deny`\">`deny`</span>.\n","type":"string"},"rootPath":{"description":"The root path for the S3 bucket.\n","type":"string"},"zone":{"type":"string"}},"properties":{"baseDomain":{"description":"Base Domain for S3 zone\n","type":"string"},"bucketDirectoryCreateMode":{"description":"The permission mode for creating bucket directories.\n","type":"number"},"objectAclPolicy":{"description":"The default policy for object access control lists (ACLs), which can be either <span pulumi-lang-nodejs=\"`replace`\" pulumi-lang-dotnet=\"`Replace`\" pulumi-lang-go=\"`replace`\" pulumi-lang-python=\"`replace`\" pulumi-lang-yaml=\"`replace`\" pulumi-lang-java=\"`replace`\">`replace`</span> or <span pulumi-lang-nodejs=\"`deny`\" pulumi-lang-dotnet=\"`Deny`\" pulumi-lang-go=\"`deny`\" pulumi-lang-python=\"`deny`\" pulumi-lang-yaml=\"`deny`\" pulumi-lang-java=\"`deny`\">`deny`</span>.\n","type":"string"},"rootPath":{"description":"The root path for the S3 bucket.\n","type":"string"},"zone":{"type":"string"}},"required":["baseDomain","bucketDirectoryCreateMode","objectAclPolicy","rootPath","zone"],"requiredInputs":["zone"],"stateInputs":{"description":"Input properties used for looking up and filtering S3ZoneSettings resources.\n","properties":{"baseDomain":{"description":"Base Domain for S3 zone\n","type":"string"},"bucketDirectoryCreateMode":{"description":"The permission mode for creating bucket directories.\n","type":"number"},"objectAclPolicy":{"description":"The default policy for object access control lists (ACLs), which can be either <span pulumi-lang-nodejs=\"`replace`\" pulumi-lang-dotnet=\"`Replace`\" pulumi-lang-go=\"`replace`\" pulumi-lang-python=\"`replace`\" pulumi-lang-yaml=\"`replace`\" pulumi-lang-java=\"`replace`\">`replace`</span> or <span pulumi-lang-nodejs=\"`deny`\" pulumi-lang-dotnet=\"`Deny`\" pulumi-lang-go=\"`deny`\" pulumi-lang-python=\"`deny`\" pulumi-lang-yaml=\"`deny`\" pulumi-lang-java=\"`deny`\">`deny`</span>.\n","type":"string"},"rootPath":{"description":"The root path for the S3 bucket.\n","type":"string"},"zone":{"type":"string"}},"type":"object"},"type":"object"},"powerscale:index/smartpoolSettings:SmartpoolSettings":{"description":"This resource is used to manage the SmartPools Settings of PowerScale Array. We can Create, Update and Delete the SmartPools Settings using this resource.  \nNote that, SmartPools Settings is the native functionality of PowerScale. When creating the resource, we actually load SmartPools Settings from PowerScale to the resource.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n// terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n// For more information, Please check the terraform state file.\nconst settings = new powerscale.SmartpoolSettings(\"settings\", {});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n# terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n# For more information, Please check the terraform state file.\nsettings = powerscale.SmartpoolSettings(\"settings\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n    // terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    var settings = new Powerscale.SmartpoolSettings(\"settings\");\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n\t\t// terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t_, err := powerscale.NewSmartpoolSettings(ctx, \"settings\", nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SmartpoolSettings;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n        // terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        var settings = new SmartpoolSettings(\"settings\");\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # If resource arguments are omitted, `pulumi up` will load SmartPools Settings from PowerScale, and save to\n  # terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load SmartPools Settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting SmartPools Settings from PowerScale.\n  # For more information, Please check the terraform state file.\n  settings:\n    type: powerscale:SmartpoolSettings\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/smartpoolSettings:SmartpoolSettings settings <anystring>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/smartpoolSettings:SmartpoolSettings settings smartpools_settings\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"defaultTransferLimitPct":{"description":"Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met. The value must be between 0 and 100. Only available for PowerScale 9.5 and above.\n","type":"number"},"defaultTransferLimitState":{"description":"How the default transfer limit value is applied. Only available for PowerScale 9.5 and above.\n","type":"string"},"globalNamespaceAccelerationEnabled":{"description":"Enable global namespace acceleration.\n","type":"boolean"},"manageIoOptimization":{"description":"Manage I/O optimization settings.\n","type":"boolean"},"manageIoOptimizationApplyToFiles":{"description":"Apply to files with manually-managed I/O optimization settings.\n","type":"boolean"},"manageProtection":{"description":"Manage protection settings.\n","type":"boolean"},"manageProtectionApplyToFiles":{"description":"Apply to files with manually-managed protection.\n","type":"boolean"},"protectDirectoriesOneLevelHigher":{"description":"Increase directory protection to a higher requested protection than its contents.\n","type":"boolean"},"spilloverEnabled":{"description":"Enable global spillover.\n","type":"boolean"},"spilloverTarget":{"$ref":"#/types/powerscale:index%2FSmartpoolSettingsSpilloverTarget:SmartpoolSettingsSpilloverTarget","description":"Spillover data target.\n"},"ssdL3CacheDefaultEnabled":{"description":"Use SSDs as L3 cache by default for new node pools.\n","type":"boolean"},"ssdQabMirrors":{"description":"Controls number of mirrors of QAB blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"ssdSystemBtreeMirrors":{"description":"Controls number of mirrors of system B-tree blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"ssdSystemDeltaMirrors":{"description":"Controls number of mirrors of system delta blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"virtualHotSpareDenyWrites":{"description":"Deny data writes to reserved disk space\n","type":"boolean"},"virtualHotSpareHideSpare":{"description":"Subtract the space reserved for the virtual hot spare when calculating available free space\n","type":"boolean"},"virtualHotSpareLimitDrives":{"description":"The number of drives to reserve for the virtual hot spare, from 0-4.\n","type":"number"},"virtualHotSpareLimitPercent":{"description":"The percent space to reserve for the virtual hot spare, from 0-20.\n","type":"number"}},"properties":{"defaultTransferLimitPct":{"description":"Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met. The value must be between 0 and 100. Only available for PowerScale 9.5 and above.\n","type":"number"},"defaultTransferLimitState":{"description":"How the default transfer limit value is applied. Only available for PowerScale 9.5 and above.\n","type":"string"},"globalNamespaceAccelerationEnabled":{"description":"Enable global namespace acceleration.\n","type":"boolean"},"globalNamespaceAccelerationState":{"description":"Whether or not namespace operation optimizations are currently in effect.\n","type":"string"},"manageIoOptimization":{"description":"Manage I/O optimization settings.\n","type":"boolean"},"manageIoOptimizationApplyToFiles":{"description":"Apply to files with manually-managed I/O optimization settings.\n","type":"boolean"},"manageProtection":{"description":"Manage protection settings.\n","type":"boolean"},"manageProtectionApplyToFiles":{"description":"Apply to files with manually-managed protection.\n","type":"boolean"},"protectDirectoriesOneLevelHigher":{"description":"Increase directory protection to a higher requested protection than its contents.\n","type":"boolean"},"spilloverEnabled":{"description":"Enable global spillover.\n","type":"boolean"},"spilloverTarget":{"$ref":"#/types/powerscale:index%2FSmartpoolSettingsSpilloverTarget:SmartpoolSettingsSpilloverTarget","description":"Spillover data target.\n"},"ssdL3CacheDefaultEnabled":{"description":"Use SSDs as L3 cache by default for new node pools.\n","type":"boolean"},"ssdQabMirrors":{"description":"Controls number of mirrors of QAB blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"ssdSystemBtreeMirrors":{"description":"Controls number of mirrors of system B-tree blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"ssdSystemDeltaMirrors":{"description":"Controls number of mirrors of system delta blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"virtualHotSpareDenyWrites":{"description":"Deny data writes to reserved disk space\n","type":"boolean"},"virtualHotSpareHideSpare":{"description":"Subtract the space reserved for the virtual hot spare when calculating available free space\n","type":"boolean"},"virtualHotSpareLimitDrives":{"description":"The number of drives to reserve for the virtual hot spare, from 0-4.\n","type":"number"},"virtualHotSpareLimitPercent":{"description":"The percent space to reserve for the virtual hot spare, from 0-20.\n","type":"number"}},"required":["defaultTransferLimitPct","defaultTransferLimitState","globalNamespaceAccelerationEnabled","globalNamespaceAccelerationState","manageIoOptimization","manageIoOptimizationApplyToFiles","manageProtection","manageProtectionApplyToFiles","protectDirectoriesOneLevelHigher","spilloverEnabled","spilloverTarget","ssdL3CacheDefaultEnabled","ssdQabMirrors","ssdSystemBtreeMirrors","ssdSystemDeltaMirrors","virtualHotSpareDenyWrites","virtualHotSpareHideSpare","virtualHotSpareLimitDrives","virtualHotSpareLimitPercent"],"stateInputs":{"description":"Input properties used for looking up and filtering SmartpoolSettings resources.\n","properties":{"defaultTransferLimitPct":{"description":"Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met. The value must be between 0 and 100. Only available for PowerScale 9.5 and above.\n","type":"number"},"defaultTransferLimitState":{"description":"How the default transfer limit value is applied. Only available for PowerScale 9.5 and above.\n","type":"string"},"globalNamespaceAccelerationEnabled":{"description":"Enable global namespace acceleration.\n","type":"boolean"},"globalNamespaceAccelerationState":{"description":"Whether or not namespace operation optimizations are currently in effect.\n","type":"string"},"manageIoOptimization":{"description":"Manage I/O optimization settings.\n","type":"boolean"},"manageIoOptimizationApplyToFiles":{"description":"Apply to files with manually-managed I/O optimization settings.\n","type":"boolean"},"manageProtection":{"description":"Manage protection settings.\n","type":"boolean"},"manageProtectionApplyToFiles":{"description":"Apply to files with manually-managed protection.\n","type":"boolean"},"protectDirectoriesOneLevelHigher":{"description":"Increase directory protection to a higher requested protection than its contents.\n","type":"boolean"},"spilloverEnabled":{"description":"Enable global spillover.\n","type":"boolean"},"spilloverTarget":{"$ref":"#/types/powerscale:index%2FSmartpoolSettingsSpilloverTarget:SmartpoolSettingsSpilloverTarget","description":"Spillover data target.\n"},"ssdL3CacheDefaultEnabled":{"description":"Use SSDs as L3 cache by default for new node pools.\n","type":"boolean"},"ssdQabMirrors":{"description":"Controls number of mirrors of QAB blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"ssdSystemBtreeMirrors":{"description":"Controls number of mirrors of system B-tree blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"ssdSystemDeltaMirrors":{"description":"Controls number of mirrors of system delta blocks to place on SSDs. Acceptable values: one, all\n","type":"string"},"virtualHotSpareDenyWrites":{"description":"Deny data writes to reserved disk space\n","type":"boolean"},"virtualHotSpareHideSpare":{"description":"Subtract the space reserved for the virtual hot spare when calculating available free space\n","type":"boolean"},"virtualHotSpareLimitDrives":{"description":"The number of drives to reserve for the virtual hot spare, from 0-4.\n","type":"number"},"virtualHotSpareLimitPercent":{"description":"The percent space to reserve for the virtual hot spare, from 0-20.\n","type":"number"}},"type":"object"},"type":"object"},"powerscale:index/smbServerSettings:SmbServerSettings":{"description":"This resource is used to manage the SMB Server Settings of PowerScale Array. We can Create, Update and Delete the SMB Server Settings using this resource.  \n\t\tNote that, SMB Server Settings is the native functionality of PowerScale. When creating the resource, we actually load SMB Server Settings from PowerScale to the resource.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load SMB server settings from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load SMB server settings (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting SMB server settings from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale SMB server settings allow you to configure SMB server settings on PowerScale.\nconst example = new powerscale.SmbServerSettings(\"example\", {scope: \"effective\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load SMB server settings from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load SMB server settings (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting SMB server settings from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale SMB server settings allow you to configure SMB server settings on PowerScale.\nexample = powerscale.SmbServerSettings(\"example\", scope=\"effective\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load SMB server settings from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load SMB server settings (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting SMB server settings from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale SMB server settings allow you to configure SMB server settings on PowerScale.\n    var example = new Powerscale.SmbServerSettings(\"example\", new()\n    {\n        Scope = \"effective\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load SMB server settings from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load SMB server settings (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting SMB server settings from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale SMB server settings allow you to configure SMB server settings on PowerScale.\n\t\t_, err := powerscale.NewSmbServerSettings(ctx, \"example\", &powerscale.SmbServerSettingsArgs{\n\t\t\tScope: pulumi.String(\"effective\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SmbServerSettings;\nimport com.pulumi.powerscale.SmbServerSettingsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load SMB server settings from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load SMB server settings (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting SMB server settings from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale SMB server settings allow you to configure SMB server settings on PowerScale.\n        var example = new SmbServerSettings(\"example\", SmbServerSettingsArgs.builder()\n            .scope(\"effective\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load SMB server settings from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load SMB server settings (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting SMB server settings from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale SMB server settings allow you to configure SMB server settings on PowerScale.\n  example:\n    type: powerscale:SmbServerSettings\n    properties:\n      scope: effective\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/smbServerSettings:SmbServerSettings example scope\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/smbServerSettings:SmbServerSettings example effective\n```\n\nafter running this command, populate the scope field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"accessBasedShareEnum":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"auditFileshare":{"description":"Specify level of file share audit events to log.\n","type":"string"},"auditLogon":{"description":"Specify the level of logon audit events to log.\n","type":"string"},"dotSnapAccessibleChild":{"description":"Allow access to .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapAccessibleRoot":{"description":"Allow access to the .snapshot directory in the root of the share.\n","type":"boolean"},"dotSnapVisibleChild":{"description":"Show .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapVisibleRoot":{"description":"Show the .snapshot directory in the root of a share.\n","type":"boolean"},"enableSecuritySignatures":{"description":"Indicates whether the server supports signed SMB packets.\n","type":"boolean"},"guestUser":{"description":"Specifies the fully-qualified user to use for guest access.\n","type":"string"},"ignoreEas":{"description":"Specify whether to ignore EAs on files.\n","type":"boolean"},"onefsCpuMultiplier":{"description":"Specify the number of OneFS driver worker threads per CPU.\n","type":"number"},"onefsNumWorkers":{"description":"Set the maximum number of OneFS driver worker threads.\n","type":"number"},"rejectUnencryptedAccess":{"description":"If SMB3 encryption is enabled, reject unencrypted access from clients.\n","type":"boolean"},"requireSecuritySignatures":{"description":"Indicates whether the server requires signed SMB packets.\n","type":"boolean"},"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned.  If specified as \"user\", only fields with non-default values are shown.  If specified as \"default\", the original values are returned.\n","type":"string"},"serverSideCopy":{"description":"Enable Server Side Copy.\n","type":"boolean"},"serverString":{"description":"Provides a description of the server.\n","type":"string"},"service":{"description":"Specify whether service is enabled.\n","type":"boolean"},"srvCpuMultiplier":{"description":"Specify the number of SRV service worker threads per CPU.\n","type":"number"},"srvNumWorkers":{"description":"Set the maximum number of SRV service worker threads.\n","type":"number"},"supportMultichannel":{"description":"Support multichannel.\n","type":"boolean"},"supportNetbios":{"description":"Support NetBIOS.\n","type":"boolean"},"supportSmb2":{"description":"Support the SMB2 protocol on the server.\n","type":"boolean"},"supportSmb3Encryption":{"description":"Support the SMB3 encryption on the server.\n","type":"boolean"}},"properties":{"accessBasedShareEnum":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"auditFileshare":{"description":"Specify level of file share audit events to log.\n","type":"string"},"auditLogon":{"description":"Specify the level of logon audit events to log.\n","type":"string"},"dotSnapAccessibleChild":{"description":"Allow access to .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapAccessibleRoot":{"description":"Allow access to the .snapshot directory in the root of the share.\n","type":"boolean"},"dotSnapVisibleChild":{"description":"Show .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapVisibleRoot":{"description":"Show the .snapshot directory in the root of a share.\n","type":"boolean"},"enableSecuritySignatures":{"description":"Indicates whether the server supports signed SMB packets.\n","type":"boolean"},"guestUser":{"description":"Specifies the fully-qualified user to use for guest access.\n","type":"string"},"ignoreEas":{"description":"Specify whether to ignore EAs on files.\n","type":"boolean"},"onefsCpuMultiplier":{"description":"Specify the number of OneFS driver worker threads per CPU.\n","type":"number"},"onefsNumWorkers":{"description":"Set the maximum number of OneFS driver worker threads.\n","type":"number"},"rejectUnencryptedAccess":{"description":"If SMB3 encryption is enabled, reject unencrypted access from clients.\n","type":"boolean"},"requireSecuritySignatures":{"description":"Indicates whether the server requires signed SMB packets.\n","type":"boolean"},"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned.  If specified as \"user\", only fields with non-default values are shown.  If specified as \"default\", the original values are returned.\n","type":"string"},"serverSideCopy":{"description":"Enable Server Side Copy.\n","type":"boolean"},"serverString":{"description":"Provides a description of the server.\n","type":"string"},"service":{"description":"Specify whether service is enabled.\n","type":"boolean"},"srvCpuMultiplier":{"description":"Specify the number of SRV service worker threads per CPU.\n","type":"number"},"srvNumWorkers":{"description":"Set the maximum number of SRV service worker threads.\n","type":"number"},"supportMultichannel":{"description":"Support multichannel.\n","type":"boolean"},"supportNetbios":{"description":"Support NetBIOS.\n","type":"boolean"},"supportSmb2":{"description":"Support the SMB2 protocol on the server.\n","type":"boolean"},"supportSmb3Encryption":{"description":"Support the SMB3 encryption on the server.\n","type":"boolean"}},"required":["accessBasedShareEnum","auditFileshare","auditLogon","dotSnapAccessibleChild","dotSnapAccessibleRoot","dotSnapVisibleChild","dotSnapVisibleRoot","enableSecuritySignatures","guestUser","ignoreEas","onefsCpuMultiplier","onefsNumWorkers","rejectUnencryptedAccess","requireSecuritySignatures","scope","serverSideCopy","serverString","service","srvCpuMultiplier","srvNumWorkers","supportMultichannel","supportNetbios","supportSmb2","supportSmb3Encryption"],"stateInputs":{"description":"Input properties used for looking up and filtering SmbServerSettings resources.\n","properties":{"accessBasedShareEnum":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"auditFileshare":{"description":"Specify level of file share audit events to log.\n","type":"string"},"auditLogon":{"description":"Specify the level of logon audit events to log.\n","type":"string"},"dotSnapAccessibleChild":{"description":"Allow access to .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapAccessibleRoot":{"description":"Allow access to the .snapshot directory in the root of the share.\n","type":"boolean"},"dotSnapVisibleChild":{"description":"Show .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapVisibleRoot":{"description":"Show the .snapshot directory in the root of a share.\n","type":"boolean"},"enableSecuritySignatures":{"description":"Indicates whether the server supports signed SMB packets.\n","type":"boolean"},"guestUser":{"description":"Specifies the fully-qualified user to use for guest access.\n","type":"string"},"ignoreEas":{"description":"Specify whether to ignore EAs on files.\n","type":"boolean"},"onefsCpuMultiplier":{"description":"Specify the number of OneFS driver worker threads per CPU.\n","type":"number"},"onefsNumWorkers":{"description":"Set the maximum number of OneFS driver worker threads.\n","type":"number"},"rejectUnencryptedAccess":{"description":"If SMB3 encryption is enabled, reject unencrypted access from clients.\n","type":"boolean"},"requireSecuritySignatures":{"description":"Indicates whether the server requires signed SMB packets.\n","type":"boolean"},"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned.  If specified as \"user\", only fields with non-default values are shown.  If specified as \"default\", the original values are returned.\n","type":"string"},"serverSideCopy":{"description":"Enable Server Side Copy.\n","type":"boolean"},"serverString":{"description":"Provides a description of the server.\n","type":"string"},"service":{"description":"Specify whether service is enabled.\n","type":"boolean"},"srvCpuMultiplier":{"description":"Specify the number of SRV service worker threads per CPU.\n","type":"number"},"srvNumWorkers":{"description":"Set the maximum number of SRV service worker threads.\n","type":"number"},"supportMultichannel":{"description":"Support multichannel.\n","type":"boolean"},"supportNetbios":{"description":"Support NetBIOS.\n","type":"boolean"},"supportSmb2":{"description":"Support the SMB2 protocol on the server.\n","type":"boolean"},"supportSmb3Encryption":{"description":"Support the SMB3 encryption on the server.\n","type":"boolean"}},"type":"object"},"type":"object"},"powerscale:index/smbShare:SmbShare":{"description":"This resource is used to manage the SMB share entity on PowerScale array. PowerScale SMB shares provide clients network access to file system resources on the cluster. We can Create, Update and Delete the SMB share using this resource. We can also import an existing SMB Share from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n// For more information, Please check the terraform state file.\n// PowerScale SMB shares provide clients network access to file system resources on the cluster\nconst shareExample = new powerscale.SmbShare(\"share_example\", {\n    name: \"smb_share_example\",\n    path: \"/ifs/smb_share_example\",\n    permissions: [{\n        permission: \"full\",\n        permissionType: \"allow\",\n        trustee: {\n            id: \"SID:S-1-1-0\",\n            name: \"Everyone\",\n            type: \"wellknown\",\n        },\n    }],\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n# For more information, Please check the terraform state file.\n# PowerScale SMB shares provide clients network access to file system resources on the cluster\nshare_example = powerscale.SmbShare(\"share_example\",\n    name=\"smb_share_example\",\n    path=\"/ifs/smb_share_example\",\n    permissions=[{\n        \"permission\": \"full\",\n        \"permission_type\": \"allow\",\n        \"trustee\": {\n            \"id\": \"SID:S-1-1-0\",\n            \"name\": \"Everyone\",\n            \"type\": \"wellknown\",\n        },\n    }])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n    // For more information, Please check the terraform state file.\n    // PowerScale SMB shares provide clients network access to file system resources on the cluster\n    var shareExample = new Powerscale.SmbShare(\"share_example\", new()\n    {\n        Name = \"smb_share_example\",\n        Path = \"/ifs/smb_share_example\",\n        Permissions = new[]\n        {\n            new Powerscale.Inputs.SmbSharePermissionArgs\n            {\n                Permission = \"full\",\n                PermissionType = \"allow\",\n                Trustee = new Powerscale.Inputs.SmbSharePermissionTrusteeArgs\n                {\n                    Id = \"SID:S-1-1-0\",\n                    Name = \"Everyone\",\n                    Type = \"wellknown\",\n                },\n            },\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale SMB shares provide clients network access to file system resources on the cluster\n\t\t_, err := powerscale.NewSmbShare(ctx, \"share_example\", &powerscale.SmbShareArgs{\n\t\t\tName: pulumi.String(\"smb_share_example\"),\n\t\t\tPath: pulumi.String(\"/ifs/smb_share_example\"),\n\t\t\tPermissions: powerscale.SmbSharePermissionArray{\n\t\t\t\t&powerscale.SmbSharePermissionArgs{\n\t\t\t\t\tPermission:     pulumi.String(\"full\"),\n\t\t\t\t\tPermissionType: pulumi.String(\"allow\"),\n\t\t\t\t\tTrustee: &powerscale.SmbSharePermissionTrusteeArgs{\n\t\t\t\t\t\tId:   pulumi.String(\"SID:S-1-1-0\"),\n\t\t\t\t\t\tName: pulumi.String(\"Everyone\"),\n\t\t\t\t\t\tType: pulumi.String(\"wellknown\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SmbShare;\nimport com.pulumi.powerscale.SmbShareArgs;\nimport com.pulumi.powerscale.inputs.SmbSharePermissionArgs;\nimport com.pulumi.powerscale.inputs.SmbSharePermissionTrusteeArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n        // For more information, Please check the terraform state file.\n        // PowerScale SMB shares provide clients network access to file system resources on the cluster\n        var shareExample = new SmbShare(\"shareExample\", SmbShareArgs.builder()\n            .name(\"smb_share_example\")\n            .path(\"/ifs/smb_share_example\")\n            .permissions(SmbSharePermissionArgs.builder()\n                .permission(\"full\")\n                .permissionType(\"allow\")\n                .trustee(SmbSharePermissionTrusteeArgs.builder()\n                    .id(\"SID:S-1-1-0\")\n                    .name(\"Everyone\")\n                    .type(\"wellknown\")\n                    .build())\n                .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale SMB shares provide clients network access to file system resources on the cluster\n  shareExample:\n    type: powerscale:SmbShare\n    name: share_example\n    properties:\n      name: smb_share_example\n      path: /ifs/smb_share_example\n      permissions: # zid should be computed according to zone\n      #   # zid = 1\n        - permission: full\n          permissionType: allow\n          trustee:\n            id: SID:S-1-1-0\n            name: Everyone\n            type: wellknown\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/smbShare:SmbShare share_example [<zoneID>]:<name>\n```\n\nExample 1: <zoneID> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/smbShare:SmbShare share_example example_share\n```\n\nExample 2:\n\n```sh\n$ pulumi import powerscale:index/smbShare:SmbShare share_example zone_id:example_share\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"allowVariableExpansion":{"description":"Allow automatic expansion of variables for home directories.\n","type":"boolean"},"autoCreateDirectory":{"description":"Automatically create home directories.\n","type":"boolean"},"browsable":{"description":"Share is visible in net view and the browse list.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares.\n","type":"string"},"changeNotify":{"description":"Level of change notification alerts on the share.\n","type":"string"},"createPath":{"description":"Create path if does not exist.\n","type":"boolean"},"createPermissions":{"description":"Create permissions for new files and directories in share.\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares.\n","type":"string"},"description":{"description":"Description for this SMB share.\n","type":"string"},"directoryCreateMask":{"description":"Directory create mask bits.\n","type":"number"},"directoryCreateMode":{"description":"Directory create mode bits.\n","type":"number"},"fileCreateMask":{"description":"File create mask bits.\n","type":"number"},"fileCreateMode":{"description":"File create mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on this zone.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account.\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"inheritablePathAcl":{"description":"Set the inheritable ACL on the share path.\n","type":"boolean"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Share name.\n","type":"string"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Support oplocks.\n","type":"boolean"},"path":{"description":"Path of share within /ifs.\n","type":"string"},"permissions":{"description":"Specifies an ordered list of permission modifications.\n","items":{"$ref":"#/types/powerscale:index%2FSmbSharePermission:SmbSharePermission"},"type":"array"},"runAsRoots":{"description":"Allow account to run as root.\n","items":{"$ref":"#/types/powerscale:index%2FSmbShareRunAsRoot:SmbShareRunAsRoot"},"type":"array"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zone":{"description":"Name of the access zone to which to move this SMB share.\n","type":"string"}},"properties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"allowVariableExpansion":{"description":"Allow automatic expansion of variables for home directories.\n","type":"boolean"},"autoCreateDirectory":{"description":"Automatically create home directories.\n","type":"boolean"},"browsable":{"description":"Share is visible in net view and the browse list.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares.\n","type":"string"},"changeNotify":{"description":"Level of change notification alerts on the share.\n","type":"string"},"continuouslyAvailable":{"description":"Specify if persistent opens are allowed on the share.\n","type":"boolean"},"createPath":{"description":"Create path if does not exist.\n","type":"boolean"},"createPermissions":{"description":"Create permissions for new files and directories in share.\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares.\n","type":"string"},"description":{"description":"Description for this SMB share.\n","type":"string"},"directoryCreateMask":{"description":"Directory create mask bits.\n","type":"number"},"directoryCreateMode":{"description":"Directory create mode bits.\n","type":"number"},"fileCreateMask":{"description":"File create mask bits.\n","type":"number"},"fileCreateMode":{"description":"File create mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on this zone.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account.\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"inheritablePathAcl":{"description":"Set the inheritable ACL on the share path.\n","type":"boolean"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Share name.\n","type":"string"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Support oplocks.\n","type":"boolean"},"path":{"description":"Path of share within /ifs.\n","type":"string"},"permissions":{"description":"Specifies an ordered list of permission modifications.\n","items":{"$ref":"#/types/powerscale:index%2FSmbSharePermission:SmbSharePermission"},"type":"array"},"runAsRoots":{"description":"Allow account to run as root.\n","items":{"$ref":"#/types/powerscale:index%2FSmbShareRunAsRoot:SmbShareRunAsRoot"},"type":"array"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zid":{"description":"Numeric ID of the access zone which contains this SMB share.\n","type":"number"},"zone":{"description":"Name of the access zone to which to move this SMB share.\n","type":"string"}},"required":["accessBasedEnumeration","accessBasedEnumerationRootOnly","allowDeleteReadonly","allowExecuteAlways","allowVariableExpansion","autoCreateDirectory","browsable","caTimeout","caWriteIntegrity","changeNotify","continuouslyAvailable","createPermissions","cscPolicy","description","directoryCreateMask","directoryCreateMode","fileCreateMask","fileCreateMode","fileFilterExtensions","fileFilterType","fileFilteringEnabled","hideDotFiles","hostAcls","impersonateGuest","impersonateUser","inheritablePathAcl","mangleByteStart","mangleMaps","name","ntfsAclSupport","oplocks","path","permissions","runAsRoots","smb3EncryptionEnabled","sparseFile","strictCaLockout","strictFlush","strictLocking","zid"],"requiredInputs":["path","permissions"],"stateInputs":{"description":"Input properties used for looking up and filtering SmbShare resources.\n","properties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"allowVariableExpansion":{"description":"Allow automatic expansion of variables for home directories.\n","type":"boolean"},"autoCreateDirectory":{"description":"Automatically create home directories.\n","type":"boolean"},"browsable":{"description":"Share is visible in net view and the browse list.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares.\n","type":"string"},"changeNotify":{"description":"Level of change notification alerts on the share.\n","type":"string"},"continuouslyAvailable":{"description":"Specify if persistent opens are allowed on the share.\n","type":"boolean"},"createPath":{"description":"Create path if does not exist.\n","type":"boolean"},"createPermissions":{"description":"Create permissions for new files and directories in share.\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares.\n","type":"string"},"description":{"description":"Description for this SMB share.\n","type":"string"},"directoryCreateMask":{"description":"Directory create mask bits.\n","type":"number"},"directoryCreateMode":{"description":"Directory create mode bits.\n","type":"number"},"fileCreateMask":{"description":"File create mask bits.\n","type":"number"},"fileCreateMode":{"description":"File create mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on this zone.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account.\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"inheritablePathAcl":{"description":"Set the inheritable ACL on the share path.\n","type":"boolean"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Share name.\n","type":"string"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Support oplocks.\n","type":"boolean"},"path":{"description":"Path of share within /ifs.\n","type":"string"},"permissions":{"description":"Specifies an ordered list of permission modifications.\n","items":{"$ref":"#/types/powerscale:index%2FSmbSharePermission:SmbSharePermission"},"type":"array"},"runAsRoots":{"description":"Allow account to run as root.\n","items":{"$ref":"#/types/powerscale:index%2FSmbShareRunAsRoot:SmbShareRunAsRoot"},"type":"array"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zid":{"description":"Numeric ID of the access zone which contains this SMB share.\n","type":"number"},"zone":{"description":"Name of the access zone to which to move this SMB share.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/smbShareSettings:SmbShareSettings":{"description":"This resource is used to manage the SMB share Settings entity of PowerScale Array. We can Create, Update and Delete the SMB share Settings using this resource. We can also import the existing SMB share Settings from PowerScale array. Note that, SMB share Settings is the native functionality of PowerScale. When creating the resource, we actually load SMB share Settings from PowerScale to the resource state.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n// For more information, Please check the terraform state file.\n// PowerScale SMB share settings provide clients network access to file system resources on the cluster\nconst example = new powerscale.SmbShareSettings(\"example\", {zone: \"System\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n# For more information, Please check the terraform state file.\n# PowerScale SMB share settings provide clients network access to file system resources on the cluster\nexample = powerscale.SmbShareSettings(\"example\", zone=\"System\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n    // For more information, Please check the terraform state file.\n    // PowerScale SMB share settings provide clients network access to file system resources on the cluster\n    var example = new Powerscale.SmbShareSettings(\"example\", new()\n    {\n        Zone = \"System\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale SMB share settings provide clients network access to file system resources on the cluster\n\t\t_, err := powerscale.NewSmbShareSettings(ctx, \"example\", &powerscale.SmbShareSettingsArgs{\n\t\t\tZone: pulumi.String(\"System\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SmbShareSettings;\nimport com.pulumi.powerscale.SmbShareSettingsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n        // For more information, Please check the terraform state file.\n        // PowerScale SMB share settings provide clients network access to file system resources on the cluster\n        var example = new SmbShareSettings(\"example\", SmbShareSettingsArgs.builder()\n            .zone(\"System\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale SMB share settings provide clients network access to file system resources on the cluster\n  example:\n    type: powerscale:SmbShareSettings\n    properties:\n      zone: System\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/smbShareSettings:SmbShareSettings example zone\n```\n\n```sh\n$ pulumi import powerscale:index/smbShareSettings:SmbShareSettings example tfaccAccessZone\n```\n\nafter running this command, populate the zone field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares. Acceptable values: none, write-read-coherent, full\n","type":"string"},"changeNotify":{"description":"Specify level of change notification alerts on the share. Acceptable values: all, norecurse, none\n","type":"string"},"continuouslyAvailable":{"description":"Specify if persistent opens are allowed on the share.\n","type":"boolean"},"createPermissions":{"description":"Set the create permissions for new files and directories in share. Acceptable values: default acl, inherit mode bits, use create mask and mode\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares. Acceptable values: manual, documents, programs, none\n","type":"string"},"directoryCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"directoryCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on the share.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account. Acceptable values: always, bad user, never\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Allow oplock requests.\n","type":"boolean"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zone":{"description":"Name of the access zone in which to update settings\n","type":"string"}},"properties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares. Acceptable values: none, write-read-coherent, full\n","type":"string"},"changeNotify":{"description":"Specify level of change notification alerts on the share. Acceptable values: all, norecurse, none\n","type":"string"},"continuouslyAvailable":{"description":"Specify if persistent opens are allowed on the share.\n","type":"boolean"},"createPermissions":{"description":"Set the create permissions for new files and directories in share. Acceptable values: default acl, inherit mode bits, use create mask and mode\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares. Acceptable values: manual, documents, programs, none\n","type":"string"},"directoryCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"directoryCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on the share.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account. Acceptable values: always, bad user, never\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Allow oplock requests.\n","type":"boolean"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zone":{"description":"Name of the access zone in which to update settings\n","type":"string"}},"required":["accessBasedEnumeration","accessBasedEnumerationRootOnly","allowDeleteReadonly","allowExecuteAlways","caTimeout","caWriteIntegrity","changeNotify","continuouslyAvailable","createPermissions","cscPolicy","directoryCreateMask","directoryCreateMode","fileCreateMask","fileCreateMode","fileFilterExtensions","fileFilterType","fileFilteringEnabled","hideDotFiles","hostAcls","impersonateGuest","impersonateUser","mangleByteStart","mangleMaps","ntfsAclSupport","oplocks","smb3EncryptionEnabled","sparseFile","strictCaLockout","strictFlush","strictLocking","zone"],"requiredInputs":["zone"],"stateInputs":{"description":"Input properties used for looking up and filtering SmbShareSettings resources.\n","properties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares. Acceptable values: none, write-read-coherent, full\n","type":"string"},"changeNotify":{"description":"Specify level of change notification alerts on the share. Acceptable values: all, norecurse, none\n","type":"string"},"continuouslyAvailable":{"description":"Specify if persistent opens are allowed on the share.\n","type":"boolean"},"createPermissions":{"description":"Set the create permissions for new files and directories in share. Acceptable values: default acl, inherit mode bits, use create mask and mode\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares. Acceptable values: manual, documents, programs, none\n","type":"string"},"directoryCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"directoryCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on the share.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account. Acceptable values: always, bad user, never\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Allow oplock requests.\n","type":"boolean"},"scope":{"description":"When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned.\n","type":"string"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zone":{"description":"Name of the access zone in which to update settings\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/snapshot:Snapshot":{"description":"This resource is used to manage the Snapshot entity of PowerScale Array. We can Create, Update and Delete the Snapshot using this resource. We can also import an existing Snapshot from PowerScale array. PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update (name, expire), Delete and Import\n// After `pulumi up` of this example file it will create a new snapshot for the path name set in `path` attribute on the PowerScale\n// Note: This resource can be used to create a manual snapshot at a single point in time. Howerver, if the user wants to take snapshots on a regular cadence, they should use the snapshot_schedules resource. \n// PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\nconst snap = new powerscale.Snapshot(\"snap\", {\n    path: \"/ifs/tfacc_file_system_test\",\n    name: \"tfacc_snapshot_1\",\n    setExpires: \"1 Day\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update (name, expire), Delete and Import\n# After `pulumi up` of this example file it will create a new snapshot for the path name set in `path` attribute on the PowerScale\n# Note: This resource can be used to create a manual snapshot at a single point in time. Howerver, if the user wants to take snapshots on a regular cadence, they should use the snapshot_schedules resource. \n# PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\nsnap = powerscale.Snapshot(\"snap\",\n    path=\"/ifs/tfacc_file_system_test\",\n    name=\"tfacc_snapshot_1\",\n    set_expires=\"1 Day\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update (name, expire), Delete and Import\n    // After `pulumi up` of this example file it will create a new snapshot for the path name set in `path` attribute on the PowerScale\n    // Note: This resource can be used to create a manual snapshot at a single point in time. Howerver, if the user wants to take snapshots on a regular cadence, they should use the snapshot_schedules resource. \n    // PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\n    var snap = new Powerscale.Snapshot(\"snap\", new()\n    {\n        Path = \"/ifs/tfacc_file_system_test\",\n        Name = \"tfacc_snapshot_1\",\n        SetExpires = \"1 Day\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update (name, expire), Delete and Import\n\t\t// After `pulumi up` of this example file it will create a new snapshot for the path name set in `path` attribute on the PowerScale\n\t\t// Note: This resource can be used to create a manual snapshot at a single point in time. Howerver, if the user wants to take snapshots on a regular cadence, they should use the snapshot_schedules resource.\n\t\t// PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\n\t\t_, err := powerscale.NewSnapshot(ctx, \"snap\", &powerscale.SnapshotArgs{\n\t\t\tPath:       pulumi.String(\"/ifs/tfacc_file_system_test\"),\n\t\t\tName:       pulumi.String(\"tfacc_snapshot_1\"),\n\t\t\tSetExpires: pulumi.String(\"1 Day\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Snapshot;\nimport com.pulumi.powerscale.SnapshotArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update (name, expire), Delete and Import\n        // After `pulumi up` of this example file it will create a new snapshot for the path name set in `path` attribute on the PowerScale\n        // Note: This resource can be used to create a manual snapshot at a single point in time. Howerver, if the user wants to take snapshots on a regular cadence, they should use the snapshot_schedules resource. \n        // PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\n        var snap = new Snapshot(\"snap\", SnapshotArgs.builder()\n            .path(\"/ifs/tfacc_file_system_test\")\n            .name(\"tfacc_snapshot_1\")\n            .setExpires(\"1 Day\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update (name, expire), Delete and Import\n  # After `pulumi up` of this example file it will create a new snapshot for the path name set in `path` attribute on the PowerScale\n\n  # Note: This resource can be used to create a manual snapshot at a single point in time. Howerver, if the user wants to take snapshots on a regular cadence, they should use the snapshot_schedules resource. \n\n  # PowerScale Snapshots is a logical pointer to data that is stored on a cluster at a specific point in time.\n  snap:\n    type: powerscale:Snapshot\n    properties:\n      path: /ifs/tfacc_file_system_test\n      name: tfacc_snapshot_1\n      setExpires: 1 Day\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/snapshot:Snapshot test <id>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/snapshot:Snapshot test id\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"name":{"description":"The user or system supplied snapshot name. This will be null for snapshots pending delete. Only alphanumeric characters, underscores ( _ ), and hyphens (-) are allowed.\n","type":"string"},"path":{"description":"The /ifs path snapshotted. Cannot be updated.\n","type":"string"},"setExpires":{"description":"The amount of time from creation before the snapshot will expire and be eligible for automatic deletion. Resets each time this value is updated\n","type":"string"}},"properties":{"alias":{"description":"The name of the alias, none for real snapshots.\n","type":"string"},"created":{"description":"The Unix Epoch time the snapshot was created.\n","type":"number"},"expires":{"description":"The Unix Epoch time the snapshot will expire and be eligible for automatic deletion.\n","type":"number"},"hasLocks":{"description":"True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of lock.\n","type":"boolean"},"name":{"description":"The user or system supplied snapshot name. This will be null for snapshots pending delete. Only alphanumeric characters, underscores ( _ ), and hyphens (-) are allowed.\n","type":"string"},"path":{"description":"The /ifs path snapshotted. Cannot be updated.\n","type":"string"},"pctFilesystem":{"description":"Percentage of /ifs used for storing this snapshot.\n","type":"number"},"pctReserve":{"description":"Percentage of configured snapshot reserved used for storing this snapshot.\n","type":"number"},"schedule":{"description":"The name of the schedule used to create this snapshot, if applicable.\n","type":"string"},"setExpires":{"description":"The amount of time from creation before the snapshot will expire and be eligible for automatic deletion. Resets each time this value is updated\n","type":"string"},"shadowBytes":{"description":"The amount of shadow bytes referred to by this snapshot.\n","type":"number"},"size":{"description":"The amount of storage in bytes used to store this snapshot.\n","type":"number"},"state":{"description":"Snapshot state.\n","type":"string"},"targetId":{"description":"The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem.\n","type":"number"},"targetName":{"description":"The name of the snapshot pointed to if this is an alias.\n","type":"string"}},"required":["alias","created","expires","hasLocks","name","path","pctFilesystem","pctReserve","schedule","setExpires","shadowBytes","size","state","targetId","targetName"],"requiredInputs":["path"],"stateInputs":{"description":"Input properties used for looking up and filtering Snapshot resources.\n","properties":{"alias":{"description":"The name of the alias, none for real snapshots.\n","type":"string"},"created":{"description":"The Unix Epoch time the snapshot was created.\n","type":"number"},"expires":{"description":"The Unix Epoch time the snapshot will expire and be eligible for automatic deletion.\n","type":"number"},"hasLocks":{"description":"True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of lock.\n","type":"boolean"},"name":{"description":"The user or system supplied snapshot name. This will be null for snapshots pending delete. Only alphanumeric characters, underscores ( _ ), and hyphens (-) are allowed.\n","type":"string"},"path":{"description":"The /ifs path snapshotted. Cannot be updated.\n","type":"string"},"pctFilesystem":{"description":"Percentage of /ifs used for storing this snapshot.\n","type":"number"},"pctReserve":{"description":"Percentage of configured snapshot reserved used for storing this snapshot.\n","type":"number"},"schedule":{"description":"The name of the schedule used to create this snapshot, if applicable.\n","type":"string"},"setExpires":{"description":"The amount of time from creation before the snapshot will expire and be eligible for automatic deletion. Resets each time this value is updated\n","type":"string"},"shadowBytes":{"description":"The amount of shadow bytes referred to by this snapshot.\n","type":"number"},"size":{"description":"The amount of storage in bytes used to store this snapshot.\n","type":"number"},"state":{"description":"Snapshot state.\n","type":"string"},"targetId":{"description":"The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem.\n","type":"number"},"targetName":{"description":"The name of the snapshot pointed to if this is an alias.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/snapshotRestore:SnapshotRestore":{"description":"This resource is used to restore the data from the snapshot of PowerScale Array. The restore is done using copy/clone/snaprevert job. We can Create, Update and Delete using this resource.\n\n\n","inputProperties":{"cloneParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCloneParams:SnapshotRestoreCloneParams","description":"Specifies properties for a clone operation.\n"},"copyParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCopyParams:SnapshotRestoreCopyParams","description":"Specifies properties for a copy operation.\n"},"snaprevertParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreSnaprevertParams:SnapshotRestoreSnaprevertParams","description":"Specifies properties for a snapshot revert job.\n"}},"properties":{"cloneParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCloneParams:SnapshotRestoreCloneParams","description":"Specifies properties for a clone operation.\n"},"copyParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCopyParams:SnapshotRestoreCopyParams","description":"Specifies properties for a copy operation.\n"},"snaprevertParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreSnaprevertParams:SnapshotRestoreSnaprevertParams","description":"Specifies properties for a snapshot revert job.\n"}},"stateInputs":{"description":"Input properties used for looking up and filtering SnapshotRestore resources.\n","properties":{"cloneParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCloneParams:SnapshotRestoreCloneParams","description":"Specifies properties for a clone operation.\n"},"copyParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCopyParams:SnapshotRestoreCopyParams","description":"Specifies properties for a copy operation.\n"},"snaprevertParams":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreSnaprevertParams:SnapshotRestoreSnaprevertParams","description":"Specifies properties for a snapshot revert job.\n"}},"type":"object"},"type":"object"},"powerscale:index/snapshotSchedule:SnapshotSchedule":{"description":"This resource is used to manage the Snapshot Schedule entity on PowerScale array. We can Create, Update and Delete the Snapshot Schedules using this resource. We can also import an existing Snapshot Schedule from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2025 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n// For more information, Please check the terraform state file.\n// PowerScale SMB shares provide clients network access to file system resources on the cluster\nconst snapSchedule = new powerscale.SnapshotSchedule(\"snap_schedule\", {name: \"test_snap_schedule\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2025 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n# For more information, Please check the terraform state file.\n# PowerScale SMB shares provide clients network access to file system resources on the cluster\nsnap_schedule = powerscale.SnapshotSchedule(\"snap_schedule\", name=\"test_snap_schedule\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2025 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n    // For more information, Please check the terraform state file.\n    // PowerScale SMB shares provide clients network access to file system resources on the cluster\n    var snapSchedule = new Powerscale.SnapshotSchedule(\"snap_schedule\", new()\n    {\n        Name = \"test_snap_schedule\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2025 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale SMB shares provide clients network access to file system resources on the cluster\n\t\t_, err := powerscale.NewSnapshotSchedule(ctx, \"snap_schedule\", &powerscale.SnapshotScheduleArgs{\n\t\t\tName: pulumi.String(\"test_snap_schedule\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SnapshotSchedule;\nimport com.pulumi.powerscale.SnapshotScheduleArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2025 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n        // For more information, Please check the terraform state file.\n        // PowerScale SMB shares provide clients network access to file system resources on the cluster\n        var snapSchedule = new SnapshotSchedule(\"snapSchedule\", SnapshotScheduleArgs.builder()\n            .name(\"test_snap_schedule\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2025 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will create NFS export on specified paths on the PowerScale Array.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale SMB shares provide clients network access to file system resources on the cluster\n  snapSchedule:\n    type: powerscale:SnapshotSchedule\n    name: snap_schedule\n    properties:\n      name: test_snap_schedule\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2025 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/snapshotSchedule:SnapshotSchedule snap_schedule <id>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/snapshotSchedule:SnapshotSchedule snap_schedule id\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"alias":{"description":"Alias name to create for each snapshot.\n","type":"string"},"name":{"description":"The schedule name.\n","type":"string"},"nextRun":{"description":"Unix Epoch time of next snapshot to be created.\n","type":"number"},"nextSnapshot":{"description":"Formatted name (see pattern) of next snapshot to be created\n","type":"string"},"path":{"description":"The /ifs path snapshotted.\n","type":"string"},"pattern":{"description":"Pattern expanded with strftime to create snapshot names.Some sample values for pattern are: 'snap-%F' would yield snap-1984-03-20 , 'backup-%FT%T' would yield backup-1984-03-20T22:30:00\n","type":"string"},"retentionTime":{"description":"Time value in String for which snapshots created by this snapshot schedule should be retained.Values supported are of format : Never Expires, x Second(s), x Minute(s), x Hour(s), x Day(s), x Week(s), x Year(s) where x can be any integer value\n","type":"string"},"schedule":{"description":"The isidate-compatible natural language description of the schedule. It specifies the frequency of the schedule. You can specify this as combination of \\n\\n and \\n\\n where each of them can be defined as:\n\t\t\t\\n\\n:\n\t\t\t\t*Every  ( other | \\n\\n )  ] week ] | The last (day | weekday | \\n\\n) of every [ (other | \\n\\n) ] month | The \\n\\n (weekday | \\n\\n) of every [ (other | \\n\\n) ] month | The \\n\\n of every [ (other | \\n\\n) ] month | Yearly on \\n\\n \\n\\n | Yearly on the (last | \\n\\n) [ weekday | \\n\\n ] of \\n\\n\n\t\t\t\\n\\n:\n\t\t\t\t*at \\n\\n[:\\n\\n] [ (AM | PM) ] | every  \\n\\n  [ between \\n\\n[:\\n\\n] [ (AM | PM) ] and \\n\\n[:\\n\\n] [ (AM | PM) ] | every  \\n\\n  [ from \\n\\n[:\\n\\n] [ (AM | PM) ] to \\n\\n[:\\n\\n] [ (AM | PM) ]\n\t\t\tAdditionally:\n\t\t\t\t\\n\\n can include \"st,\" \"th,\" or \"rd,\" e.g., \"Every 1st month.\"\n\t\t\t\t\\n\\n can be a day of the week or a three-letter abbreviation, e.g., \"saturday\" or \"sat.\"\n\t\t\t\t\\n\\n must be the name of the month or its abbreviation, e.g., \"July\" or \"Jul.\"\n\t\t\tSome sample values:  \"Every 2 days.\", \"Every 3rd weekday at 11 PM.\", \"Every month on the 15th at 1:30 AM.\"\n","type":"string"}},"properties":{"alias":{"description":"Alias name to create for each snapshot.\n","type":"string"},"name":{"description":"The schedule name.\n","type":"string"},"nextRun":{"description":"Unix Epoch time of next snapshot to be created.\n","type":"number"},"nextSnapshot":{"description":"Formatted name (see pattern) of next snapshot to be created\n","type":"string"},"path":{"description":"The /ifs path snapshotted.\n","type":"string"},"pattern":{"description":"Pattern expanded with strftime to create snapshot names.Some sample values for pattern are: 'snap-%F' would yield snap-1984-03-20 , 'backup-%FT%T' would yield backup-1984-03-20T22:30:00\n","type":"string"},"retentionTime":{"description":"Time value in String for which snapshots created by this snapshot schedule should be retained.Values supported are of format : Never Expires, x Second(s), x Minute(s), x Hour(s), x Day(s), x Week(s), x Year(s) where x can be any integer value\n","type":"string"},"schedule":{"description":"The isidate-compatible natural language description of the schedule. It specifies the frequency of the schedule. You can specify this as combination of \\n\\n and \\n\\n where each of them can be defined as:\n\t\t\t\\n\\n:\n\t\t\t\t*Every  ( other | \\n\\n )  ] week ] | The last (day | weekday | \\n\\n) of every [ (other | \\n\\n) ] month | The \\n\\n (weekday | \\n\\n) of every [ (other | \\n\\n) ] month | The \\n\\n of every [ (other | \\n\\n) ] month | Yearly on \\n\\n \\n\\n | Yearly on the (last | \\n\\n) [ weekday | \\n\\n ] of \\n\\n\n\t\t\t\\n\\n:\n\t\t\t\t*at \\n\\n[:\\n\\n] [ (AM | PM) ] | every  \\n\\n  [ between \\n\\n[:\\n\\n] [ (AM | PM) ] and \\n\\n[:\\n\\n] [ (AM | PM) ] | every  \\n\\n  [ from \\n\\n[:\\n\\n] [ (AM | PM) ] to \\n\\n[:\\n\\n] [ (AM | PM) ]\n\t\t\tAdditionally:\n\t\t\t\t\\n\\n can include \"st,\" \"th,\" or \"rd,\" e.g., \"Every 1st month.\"\n\t\t\t\t\\n\\n can be a day of the week or a three-letter abbreviation, e.g., \"saturday\" or \"sat.\"\n\t\t\t\t\\n\\n must be the name of the month or its abbreviation, e.g., \"July\" or \"Jul.\"\n\t\t\tSome sample values:  \"Every 2 days.\", \"Every 3rd weekday at 11 PM.\", \"Every month on the 15th at 1:30 AM.\"\n","type":"string"}},"required":["alias","name","nextRun","nextSnapshot","path","pattern","retentionTime","schedule"],"stateInputs":{"description":"Input properties used for looking up and filtering SnapshotSchedule resources.\n","properties":{"alias":{"description":"Alias name to create for each snapshot.\n","type":"string"},"name":{"description":"The schedule name.\n","type":"string"},"nextRun":{"description":"Unix Epoch time of next snapshot to be created.\n","type":"number"},"nextSnapshot":{"description":"Formatted name (see pattern) of next snapshot to be created\n","type":"string"},"path":{"description":"The /ifs path snapshotted.\n","type":"string"},"pattern":{"description":"Pattern expanded with strftime to create snapshot names.Some sample values for pattern are: 'snap-%F' would yield snap-1984-03-20 , 'backup-%FT%T' would yield backup-1984-03-20T22:30:00\n","type":"string"},"retentionTime":{"description":"Time value in String for which snapshots created by this snapshot schedule should be retained.Values supported are of format : Never Expires, x Second(s), x Minute(s), x Hour(s), x Day(s), x Week(s), x Year(s) where x can be any integer value\n","type":"string"},"schedule":{"description":"The isidate-compatible natural language description of the schedule. It specifies the frequency of the schedule. You can specify this as combination of \\n\\n and \\n\\n where each of them can be defined as:\n\t\t\t\\n\\n:\n\t\t\t\t*Every  ( other | \\n\\n )  ] week ] | The last (day | weekday | \\n\\n) of every [ (other | \\n\\n) ] month | The \\n\\n (weekday | \\n\\n) of every [ (other | \\n\\n) ] month | The \\n\\n of every [ (other | \\n\\n) ] month | Yearly on \\n\\n \\n\\n | Yearly on the (last | \\n\\n) [ weekday | \\n\\n ] of \\n\\n\n\t\t\t\\n\\n:\n\t\t\t\t*at \\n\\n[:\\n\\n] [ (AM | PM) ] | every  \\n\\n  [ between \\n\\n[:\\n\\n] [ (AM | PM) ] and \\n\\n[:\\n\\n] [ (AM | PM) ] | every  \\n\\n  [ from \\n\\n[:\\n\\n] [ (AM | PM) ] to \\n\\n[:\\n\\n] [ (AM | PM) ]\n\t\t\tAdditionally:\n\t\t\t\t\\n\\n can include \"st,\" \"th,\" or \"rd,\" e.g., \"Every 1st month.\"\n\t\t\t\t\\n\\n can be a day of the week or a three-letter abbreviation, e.g., \"saturday\" or \"sat.\"\n\t\t\t\t\\n\\n must be the name of the month or its abbreviation, e.g., \"July\" or \"Jul.\"\n\t\t\tSome sample values:  \"Every 2 days.\", \"Every 3rd weekday at 11 PM.\", \"Every month on the 15th at 1:30 AM.\"\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/storagepoolTier:StoragepoolTier":{"description":"This resource is used to manage the storagepool tier entity of PowerScale Array. We can Create, Update and Delete the storagepool tiers using this resource. We can also import an existing storagepool tier from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// After `pulumi up` of this example file will create the storage pool tier on the PowerScale array with the attributes set in the config.\n// For update, name, children, transfer_limit_pct and transfer_limit_state are supported. transfer_limit_pct and transfer_limit_state are mutually exclusive\nconst example = new powerscale.StoragepoolTier(\"example\", {\n    name: \"Sample_terraform_tier_7\",\n    childrens: [\"x410_34tb_1.6tb-ssd_64gb\"],\n    transferLimitPct: 40,\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# After `pulumi up` of this example file will create the storage pool tier on the PowerScale array with the attributes set in the config.\n# For update, name, children, transfer_limit_pct and transfer_limit_state are supported. transfer_limit_pct and transfer_limit_state are mutually exclusive\nexample = powerscale.StoragepoolTier(\"example\",\n    name=\"Sample_terraform_tier_7\",\n    childrens=[\"x410_34tb_1.6tb-ssd_64gb\"],\n    transfer_limit_pct=40)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // After `pulumi up` of this example file will create the storage pool tier on the PowerScale array with the attributes set in the config.\n    // For update, name, children, transfer_limit_pct and transfer_limit_state are supported. transfer_limit_pct and transfer_limit_state are mutually exclusive\n    var example = new Powerscale.StoragepoolTier(\"example\", new()\n    {\n        Name = \"Sample_terraform_tier_7\",\n        Childrens = new[]\n        {\n            \"x410_34tb_1.6tb-ssd_64gb\",\n        },\n        TransferLimitPct = 40,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// After `pulumi up` of this example file will create the storage pool tier on the PowerScale array with the attributes set in the config.\n\t\t// For update, name, children, transfer_limit_pct and transfer_limit_state are supported. transfer_limit_pct and transfer_limit_state are mutually exclusive\n\t\t_, err := powerscale.NewStoragepoolTier(ctx, \"example\", &powerscale.StoragepoolTierArgs{\n\t\t\tName: pulumi.String(\"Sample_terraform_tier_7\"),\n\t\t\tChildrens: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"x410_34tb_1.6tb-ssd_64gb\"),\n\t\t\t},\n\t\t\tTransferLimitPct: pulumi.Float64(40),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.StoragepoolTier;\nimport com.pulumi.powerscale.StoragepoolTierArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // After `pulumi up` of this example file will create the storage pool tier on the PowerScale array with the attributes set in the config.\n        // For update, name, children, transfer_limit_pct and transfer_limit_state are supported. transfer_limit_pct and transfer_limit_state are mutually exclusive\n        var example = new StoragepoolTier(\"example\", StoragepoolTierArgs.builder()\n            .name(\"Sample_terraform_tier_7\")\n            .childrens(\"x410_34tb_1.6tb-ssd_64gb\")\n            .transferLimitPct(40.0)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # After `pulumi up` of this example file will create the storage pool tier on the PowerScale array with the attributes set in the config.\n  # For update, name, children, transfer_limit_pct and transfer_limit_state are supported. transfer_limit_pct and transfer_limit_state are mutually exclusive\n  example:\n    type: powerscale:StoragepoolTier\n    properties:\n      name: Sample_terraform_tier_7\n      childrens:\n        - x410_34tb_1.6tb-ssd_64gb\n      transferLimitPct: 40\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/storagepoolTier:StoragepoolTier example id_of_storagepool_tier\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/storagepoolTier:StoragepoolTier example \"tier\"\n```\n\nafter running this command, populate parameters in the config file to start managing this resource.\n\nNote: running \"terraform show\" after importing shows the current config/state of the resource.\n\n","inputProperties":{"childrens":{"description":"An optional parameter which adds new nodepools to the storagepool tier.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Specifies the storagepool tier name.\n","type":"string"},"transferLimitPct":{"description":"Stop moving files to this tier when this limit is met\n","type":"number"},"transferLimitState":{"description":"How the transfer limit value is being applied\n","type":"string"}},"properties":{"childrens":{"description":"An optional parameter which adds new nodepools to the storagepool tier.\n","items":{"type":"string"},"type":"array"},"lnns":{"description":"The nodes that are part of this tier.\n","items":{"type":"number"},"type":"array"},"name":{"description":"Specifies the storagepool tier name.\n","type":"string"},"storagepoolTierId":{"description":"Specifies a string which represents the unique identifier of storagepool tier\n","type":"number"},"transferLimitPct":{"description":"Stop moving files to this tier when this limit is met\n","type":"number"},"transferLimitState":{"description":"How the transfer limit value is being applied\n","type":"string"}},"required":["childrens","lnns","name","storagepoolTierId","transferLimitPct","transferLimitState"],"stateInputs":{"description":"Input properties used for looking up and filtering StoragepoolTier resources.\n","properties":{"childrens":{"description":"An optional parameter which adds new nodepools to the storagepool tier.\n","items":{"type":"string"},"type":"array"},"lnns":{"description":"The nodes that are part of this tier.\n","items":{"type":"number"},"type":"array"},"name":{"description":"Specifies the storagepool tier name.\n","type":"string"},"storagepoolTierId":{"description":"Specifies a string which represents the unique identifier of storagepool tier\n","type":"number"},"transferLimitPct":{"description":"Stop moving files to this tier when this limit is met\n","type":"number"},"transferLimitState":{"description":"How the transfer limit value is being applied\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/subnet:Subnet":{"description":"This resource is used to manage the Subnet entity on PowerScale array. We can Create, Update and Delete the Subnet using this resource. We can also import an existing Subnet from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import\n// After `pulumi up` of this example file it will create a new subnet with the name set in `name` attribute on the PowerScale\n// PowerScale subnet allows you to manage the subnet on the Powerscale array\nconst subnet = new powerscale.Subnet(\"subnet\", {\n    name: \"subnet1\",\n    groupnet: \"groupnet0\",\n    addrFamily: \"ipv4\",\n    prefixlen: 21,\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import\n# After `pulumi up` of this example file it will create a new subnet with the name set in `name` attribute on the PowerScale\n# PowerScale subnet allows you to manage the subnet on the Powerscale array\nsubnet = powerscale.Subnet(\"subnet\",\n    name=\"subnet1\",\n    groupnet=\"groupnet0\",\n    addr_family=\"ipv4\",\n    prefixlen=21)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import\n    // After `pulumi up` of this example file it will create a new subnet with the name set in `name` attribute on the PowerScale\n    // PowerScale subnet allows you to manage the subnet on the Powerscale array\n    var subnet = new Powerscale.Subnet(\"subnet\", new()\n    {\n        Name = \"subnet1\",\n        Groupnet = \"groupnet0\",\n        AddrFamily = \"ipv4\",\n        Prefixlen = 21,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import\n\t\t// After `pulumi up` of this example file it will create a new subnet with the name set in `name` attribute on the PowerScale\n\t\t// PowerScale subnet allows you to manage the subnet on the Powerscale array\n\t\t_, err := powerscale.NewSubnet(ctx, \"subnet\", &powerscale.SubnetArgs{\n\t\t\tName:       pulumi.String(\"subnet1\"),\n\t\t\tGroupnet:   pulumi.String(\"groupnet0\"),\n\t\t\tAddrFamily: pulumi.String(\"ipv4\"),\n\t\t\tPrefixlen:  pulumi.Float64(21),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.Subnet;\nimport com.pulumi.powerscale.SubnetArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import\n        // After `pulumi up` of this example file it will create a new subnet with the name set in `name` attribute on the PowerScale\n        // PowerScale subnet allows you to manage the subnet on the Powerscale array\n        var subnet = new Subnet(\"subnet\", SubnetArgs.builder()\n            .name(\"subnet1\")\n            .groupnet(\"groupnet0\")\n            .addrFamily(\"ipv4\")\n            .prefixlen(21.0)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import\n  # After `pulumi up` of this example file it will create a new subnet with the name set in `name` attribute on the PowerScale\n\n  # PowerScale subnet allows you to manage the subnet on the Powerscale array\n  subnet:\n    type: powerscale:Subnet\n    properties:\n      name: subnet1\n      groupnet: groupnet0\n      addrFamily: ipv4\n      prefixlen: 21 # Optional fields both for creating and updating\n      #   #  description = \"terraform subnet\"\n      #   #  dsr_addrs = []\n      #   #  gateway=\"0.0.0.0\"\n      #   #  gateway_priority=10\n      #   #  mtu=1500\n      #   #  sc_service_addrs=[{\n      #   #    high=\"0.0.0.0\"\n      #   #    low=\"0.0.0.0\"\n      #   #  }]\n      #   #  sc_service_name=\"\"\n      #   #  vlan_enabled=true\n      #   #  vlan_id=1\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/subnet:Subnet subnet <groupnet_id>.<subnet_id>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/subnet:Subnet subnet groupnet0.subnet0\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"addrFamily":{"description":"IP address format.\n","type":"string"},"description":{"description":"A description of the subnet.\n","type":"string"},"dsrAddrs":{"description":"List of Direct Server Return addresses.\n","items":{"type":"string"},"type":"array"},"gateway":{"description":"Gateway IP address.\n","type":"string"},"gatewayPriority":{"description":"Gateway priority.\n","type":"number"},"groupnet":{"description":"Name of the groupnet this subnet belongs to. Updating is not allowed.\n","type":"string"},"mtu":{"description":"MTU of the subnet.\n","type":"number"},"name":{"description":"The name of the subnet.\n","type":"string"},"prefixlen":{"description":"Subnet Prefix Length.\n","type":"number"},"scServiceAddrs":{"description":"List of IP addresses that SmartConnect listens for DNS requests.\n","items":{"$ref":"#/types/powerscale:index%2FSubnetScServiceAddr:SubnetScServiceAddr"},"type":"array"},"scServiceName":{"description":"Domain Name corresponding to the SmartConnect Service Address.\n","type":"string"},"vlanEnabled":{"description":"VLAN tagging enabled or disabled.\n","type":"boolean"},"vlanId":{"description":"VLAN ID for all interfaces in the subnet.\n","type":"number"}},"properties":{"addrFamily":{"description":"IP address format.\n","type":"string"},"baseAddr":{"description":"The base IP address.\n","type":"string"},"description":{"description":"A description of the subnet.\n","type":"string"},"dsrAddrs":{"description":"List of Direct Server Return addresses.\n","items":{"type":"string"},"type":"array"},"gateway":{"description":"Gateway IP address.\n","type":"string"},"gatewayPriority":{"description":"Gateway priority.\n","type":"number"},"groupnet":{"description":"Name of the groupnet this subnet belongs to. Updating is not allowed.\n","type":"string"},"mtu":{"description":"MTU of the subnet.\n","type":"number"},"name":{"description":"The name of the subnet.\n","type":"string"},"pools":{"description":"Name of the pools in the subnet.\n","items":{"type":"string"},"type":"array"},"prefixlen":{"description":"Subnet Prefix Length.\n","type":"number"},"scServiceAddrs":{"description":"List of IP addresses that SmartConnect listens for DNS requests.\n","items":{"$ref":"#/types/powerscale:index%2FSubnetScServiceAddr:SubnetScServiceAddr"},"type":"array"},"scServiceName":{"description":"Domain Name corresponding to the SmartConnect Service Address.\n","type":"string"},"vlanEnabled":{"description":"VLAN tagging enabled or disabled.\n","type":"boolean"},"vlanId":{"description":"VLAN ID for all interfaces in the subnet.\n","type":"number"}},"required":["addrFamily","baseAddr","description","dsrAddrs","gateway","gatewayPriority","groupnet","mtu","name","pools","prefixlen","scServiceAddrs","scServiceName","vlanEnabled","vlanId"],"requiredInputs":["addrFamily","groupnet","prefixlen"],"stateInputs":{"description":"Input properties used for looking up and filtering Subnet resources.\n","properties":{"addrFamily":{"description":"IP address format.\n","type":"string"},"baseAddr":{"description":"The base IP address.\n","type":"string"},"description":{"description":"A description of the subnet.\n","type":"string"},"dsrAddrs":{"description":"List of Direct Server Return addresses.\n","items":{"type":"string"},"type":"array"},"gateway":{"description":"Gateway IP address.\n","type":"string"},"gatewayPriority":{"description":"Gateway priority.\n","type":"number"},"groupnet":{"description":"Name of the groupnet this subnet belongs to. Updating is not allowed.\n","type":"string"},"mtu":{"description":"MTU of the subnet.\n","type":"number"},"name":{"description":"The name of the subnet.\n","type":"string"},"pools":{"description":"Name of the pools in the subnet.\n","items":{"type":"string"},"type":"array"},"prefixlen":{"description":"Subnet Prefix Length.\n","type":"number"},"scServiceAddrs":{"description":"List of IP addresses that SmartConnect listens for DNS requests.\n","items":{"$ref":"#/types/powerscale:index%2FSubnetScServiceAddr:SubnetScServiceAddr"},"type":"array"},"scServiceName":{"description":"Domain Name corresponding to the SmartConnect Service Address.\n","type":"string"},"vlanEnabled":{"description":"VLAN tagging enabled or disabled.\n","type":"boolean"},"vlanId":{"description":"VLAN ID for all interfaces in the subnet.\n","type":"number"}},"type":"object"},"type":"object"},"powerscale:index/supportAssist:SupportAssist":{"description":"This resource is used to manage the Support Assist settings of PowerScale Array. We can Create, Update and Delete the Support Assist settings using this resource. Note that, Support Assist settings is the native functionality of PowerScale.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//    http://mozilla.org/MPL/2.0/\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Read, Update, Delete and Import. Delete will clear the the state file.\n// After `pulumi up` of this example file will update the settings according to the attributes set in the config.\n// All attributes are optional. This resource expects atleast one attribute to be present in the config.\nconst test = new powerscale.SupportAssist(\"test\", {\n    supportassistEnabled: true,\n    enableDownload: true,\n    automaticCaseCreation: false,\n    enableRemoteSupport: true,\n    acceptedTerms: true,\n    accessKey: \"key\",\n    pin: \"pin\",\n    telemetry: {\n        offlineCollectionPeriod: 7200,\n        telemetryEnabled: true,\n        telemetryPersist: true,\n        telemetryThreads: 6,\n    },\n    contact: {\n        primary: {\n            email: \"abc@gmail.com\",\n            firstName: \"terraform_first\",\n            language: \"En\",\n            lastName: \"terraform_last\",\n            phone: \"1234567890\",\n        },\n        secondary: {\n            email: \"xyz@gmail.com\",\n            firstName: \"terraform_second\",\n            language: \"No\",\n            lastName: \"terraform\",\n            phone: \"1234567890\",\n        },\n    },\n    connections: {\n        mode: \"gateway\",\n        gatewayEndpoints: [{\n            enabled: true,\n            host: \"1.2.3.4\",\n            port: 9443,\n            priority: 1,\n            useProxy: true,\n            validateSsl: true,\n        }],\n        networkPools: [\"subnet0:pool0\"],\n    },\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#    http://mozilla.org/MPL/2.0/\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Read, Update, Delete and Import. Delete will clear the the state file.\n# After `pulumi up` of this example file will update the settings according to the attributes set in the config.\n# All attributes are optional. This resource expects atleast one attribute to be present in the config.\ntest = powerscale.SupportAssist(\"test\",\n    supportassist_enabled=True,\n    enable_download=True,\n    automatic_case_creation=False,\n    enable_remote_support=True,\n    accepted_terms=True,\n    access_key=\"key\",\n    pin=\"pin\",\n    telemetry={\n        \"offline_collection_period\": 7200,\n        \"telemetry_enabled\": True,\n        \"telemetry_persist\": True,\n        \"telemetry_threads\": 6,\n    },\n    contact={\n        \"primary\": {\n            \"email\": \"abc@gmail.com\",\n            \"first_name\": \"terraform_first\",\n            \"language\": \"En\",\n            \"last_name\": \"terraform_last\",\n            \"phone\": \"1234567890\",\n        },\n        \"secondary\": {\n            \"email\": \"xyz@gmail.com\",\n            \"first_name\": \"terraform_second\",\n            \"language\": \"No\",\n            \"last_name\": \"terraform\",\n            \"phone\": \"1234567890\",\n        },\n    },\n    connections={\n        \"mode\": \"gateway\",\n        \"gateway_endpoints\": [{\n            \"enabled\": True,\n            \"host\": \"1.2.3.4\",\n            \"port\": 9443,\n            \"priority\": 1,\n            \"use_proxy\": True,\n            \"validate_ssl\": True,\n        }],\n        \"network_pools\": [\"subnet0:pool0\"],\n    })\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //    http://mozilla.org/MPL/2.0/\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Read, Update, Delete and Import. Delete will clear the the state file.\n    // After `pulumi up` of this example file will update the settings according to the attributes set in the config.\n    // All attributes are optional. This resource expects atleast one attribute to be present in the config.\n    var test = new Powerscale.SupportAssist(\"test\", new()\n    {\n        SupportassistEnabled = true,\n        EnableDownload = true,\n        AutomaticCaseCreation = false,\n        EnableRemoteSupport = true,\n        AcceptedTerms = true,\n        AccessKey = \"key\",\n        Pin = \"pin\",\n        Telemetry = new Powerscale.Inputs.SupportAssistTelemetryArgs\n        {\n            OfflineCollectionPeriod = 7200,\n            TelemetryEnabled = true,\n            TelemetryPersist = true,\n            TelemetryThreads = 6,\n        },\n        Contact = new Powerscale.Inputs.SupportAssistContactArgs\n        {\n            Primary = new Powerscale.Inputs.SupportAssistContactPrimaryArgs\n            {\n                Email = \"abc@gmail.com\",\n                FirstName = \"terraform_first\",\n                Language = \"En\",\n                LastName = \"terraform_last\",\n                Phone = \"1234567890\",\n            },\n            Secondary = new Powerscale.Inputs.SupportAssistContactSecondaryArgs\n            {\n                Email = \"xyz@gmail.com\",\n                FirstName = \"terraform_second\",\n                Language = \"No\",\n                LastName = \"terraform\",\n                Phone = \"1234567890\",\n            },\n        },\n        Connections = new Powerscale.Inputs.SupportAssistConnectionsArgs\n        {\n            Mode = \"gateway\",\n            GatewayEndpoints = new[]\n            {\n                new Powerscale.Inputs.SupportAssistConnectionsGatewayEndpointArgs\n                {\n                    Enabled = true,\n                    Host = \"1.2.3.4\",\n                    Port = 9443,\n                    Priority = 1,\n                    UseProxy = true,\n                    ValidateSsl = true,\n                },\n            },\n            NetworkPools = new[]\n            {\n                \"subnet0:pool0\",\n            },\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Read, Update, Delete and Import. Delete will clear the the state file.\n\t\t// After `pulumi up` of this example file will update the settings according to the attributes set in the config.\n\t\t// All attributes are optional. This resource expects atleast one attribute to be present in the config.\n\t\t_, err := powerscale.NewSupportAssist(ctx, \"test\", &powerscale.SupportAssistArgs{\n\t\t\tSupportassistEnabled:  pulumi.Bool(true),\n\t\t\tEnableDownload:        pulumi.Bool(true),\n\t\t\tAutomaticCaseCreation: pulumi.Bool(false),\n\t\t\tEnableRemoteSupport:   pulumi.Bool(true),\n\t\t\tAcceptedTerms:         pulumi.Bool(true),\n\t\t\tAccessKey:             pulumi.String(\"key\"),\n\t\t\tPin:                   pulumi.String(\"pin\"),\n\t\t\tTelemetry: &powerscale.SupportAssistTelemetryArgs{\n\t\t\t\tOfflineCollectionPeriod: pulumi.Float64(7200),\n\t\t\t\tTelemetryEnabled:        pulumi.Bool(true),\n\t\t\t\tTelemetryPersist:        pulumi.Bool(true),\n\t\t\t\tTelemetryThreads:        pulumi.Float64(6),\n\t\t\t},\n\t\t\tContact: &powerscale.SupportAssistContactArgs{\n\t\t\t\tPrimary: &powerscale.SupportAssistContactPrimaryArgs{\n\t\t\t\t\tEmail:     pulumi.String(\"abc@gmail.com\"),\n\t\t\t\t\tFirstName: pulumi.String(\"terraform_first\"),\n\t\t\t\t\tLanguage:  pulumi.String(\"En\"),\n\t\t\t\t\tLastName:  pulumi.String(\"terraform_last\"),\n\t\t\t\t\tPhone:     pulumi.String(\"1234567890\"),\n\t\t\t\t},\n\t\t\t\tSecondary: &powerscale.SupportAssistContactSecondaryArgs{\n\t\t\t\t\tEmail:     pulumi.String(\"xyz@gmail.com\"),\n\t\t\t\t\tFirstName: pulumi.String(\"terraform_second\"),\n\t\t\t\t\tLanguage:  pulumi.String(\"No\"),\n\t\t\t\t\tLastName:  pulumi.String(\"terraform\"),\n\t\t\t\t\tPhone:     pulumi.String(\"1234567890\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\tConnections: &powerscale.SupportAssistConnectionsArgs{\n\t\t\t\tMode: pulumi.String(\"gateway\"),\n\t\t\t\tGatewayEndpoints: powerscale.SupportAssistConnectionsGatewayEndpointArray{\n\t\t\t\t\t&powerscale.SupportAssistConnectionsGatewayEndpointArgs{\n\t\t\t\t\t\tEnabled:     pulumi.Bool(true),\n\t\t\t\t\t\tHost:        pulumi.String(\"1.2.3.4\"),\n\t\t\t\t\t\tPort:        pulumi.Float64(9443),\n\t\t\t\t\t\tPriority:    pulumi.Float64(1),\n\t\t\t\t\t\tUseProxy:    pulumi.Bool(true),\n\t\t\t\t\t\tValidateSsl: pulumi.Bool(true),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tNetworkPools: pulumi.StringArray{\n\t\t\t\t\tpulumi.String(\"subnet0:pool0\"),\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SupportAssist;\nimport com.pulumi.powerscale.SupportAssistArgs;\nimport com.pulumi.powerscale.inputs.SupportAssistTelemetryArgs;\nimport com.pulumi.powerscale.inputs.SupportAssistContactArgs;\nimport com.pulumi.powerscale.inputs.SupportAssistContactPrimaryArgs;\nimport com.pulumi.powerscale.inputs.SupportAssistContactSecondaryArgs;\nimport com.pulumi.powerscale.inputs.SupportAssistConnectionsArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //    http://mozilla.org/MPL/2.0/\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Read, Update, Delete and Import. Delete will clear the the state file.\n        // After `pulumi up` of this example file will update the settings according to the attributes set in the config.\n        // All attributes are optional. This resource expects atleast one attribute to be present in the config.\n        var test = new SupportAssist(\"test\", SupportAssistArgs.builder()\n            .supportassistEnabled(true)\n            .enableDownload(true)\n            .automaticCaseCreation(false)\n            .enableRemoteSupport(true)\n            .acceptedTerms(true)\n            .accessKey(\"key\")\n            .pin(\"pin\")\n            .telemetry(SupportAssistTelemetryArgs.builder()\n                .offlineCollectionPeriod(7200.0)\n                .telemetryEnabled(true)\n                .telemetryPersist(true)\n                .telemetryThreads(6.0)\n                .build())\n            .contact(SupportAssistContactArgs.builder()\n                .primary(SupportAssistContactPrimaryArgs.builder()\n                    .email(\"abc@gmail.com\")\n                    .firstName(\"terraform_first\")\n                    .language(\"En\")\n                    .lastName(\"terraform_last\")\n                    .phone(\"1234567890\")\n                    .build())\n                .secondary(SupportAssistContactSecondaryArgs.builder()\n                    .email(\"xyz@gmail.com\")\n                    .firstName(\"terraform_second\")\n                    .language(\"No\")\n                    .lastName(\"terraform\")\n                    .phone(\"1234567890\")\n                    .build())\n                .build())\n            .connections(SupportAssistConnectionsArgs.builder()\n                .mode(\"gateway\")\n                .gatewayEndpoints(SupportAssistConnectionsGatewayEndpointArgs.builder()\n                    .enabled(true)\n                    .host(\"1.2.3.4\")\n                    .port(9443.0)\n                    .priority(1.0)\n                    .useProxy(true)\n                    .validateSsl(true)\n                    .build())\n                .networkPools(\"subnet0:pool0\")\n                .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n  #     http://mozilla.org/MPL/2.0/\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Read, Update, Delete and Import. Delete will clear the the state file.\n  # After `pulumi up` of this example file will update the settings according to the attributes set in the config.\n  # All attributes are optional. This resource expects atleast one attribute to be present in the config.\n  test:\n    type: powerscale:SupportAssist\n    properties:\n      supportassistEnabled: true\n      enableDownload: true\n      automaticCaseCreation: false\n      enableRemoteSupport: true\n      acceptedTerms: true\n      accessKey: key\n      pin: pin\n      telemetry:\n        offlineCollectionPeriod: 7200\n        telemetryEnabled: true\n        telemetryPersist: true\n        telemetryThreads: 6\n      contact:\n        primary:\n          email: abc@gmail.com\n          firstName: terraform_first\n          language: En\n          lastName: terraform_last\n          phone: '1234567890'\n        secondary:\n          email: xyz@gmail.com\n          firstName: terraform_second\n          language: No\n          lastName: terraform\n          phone: '1234567890'\n      connections:\n        mode: gateway\n        gatewayEndpoints:\n          - enabled: true\n            host: 1.2.3.4\n            port: 9443\n            priority: 1\n            useProxy: true\n            validateSsl: true\n        networkPools:\n          - subnet0:pool0\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/supportAssist:SupportAssist example_support_assist <anyString>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/supportAssist:SupportAssist example_support_assist \"support_assist\"\n```\n\nAfter running this command, populate one or more fields in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"acceptedTerms":{"description":"Set T&C accepted or rejected status\n","type":"boolean"},"accessKey":{"description":"SupportAssist access key\n","type":"string"},"automaticCaseCreation":{"description":"True indicates automatic case creation is enabled\n","type":"boolean"},"connections":{"$ref":"#/types/powerscale:index%2FSupportAssistConnections:SupportAssistConnections"},"contact":{"$ref":"#/types/powerscale:index%2FSupportAssistContact:SupportAssistContact"},"enableDownload":{"description":"True indicates downloads are enabled\n","type":"boolean"},"enableRemoteSupport":{"description":"Allow remote support.\n","type":"boolean"},"pin":{"description":"SupportAssist pin\n","type":"string"},"supportassistEnabled":{"description":"Whether SupportAssist is enabled\n","type":"boolean"},"telemetry":{"$ref":"#/types/powerscale:index%2FSupportAssistTelemetry:SupportAssistTelemetry"}},"properties":{"acceptedTerms":{"description":"Set T&C accepted or rejected status\n","type":"boolean"},"accessKey":{"description":"SupportAssist access key\n","type":"string"},"automaticCaseCreation":{"description":"True indicates automatic case creation is enabled\n","type":"boolean"},"connections":{"$ref":"#/types/powerscale:index%2FSupportAssistConnections:SupportAssistConnections"},"contact":{"$ref":"#/types/powerscale:index%2FSupportAssistContact:SupportAssistContact"},"enableDownload":{"description":"True indicates downloads are enabled\n","type":"boolean"},"enableRemoteSupport":{"description":"Allow remote support.\n","type":"boolean"},"pin":{"description":"SupportAssist pin\n","type":"string"},"supportassistEnabled":{"description":"Whether SupportAssist is enabled\n","type":"boolean"},"telemetry":{"$ref":"#/types/powerscale:index%2FSupportAssistTelemetry:SupportAssistTelemetry"}},"required":["acceptedTerms","automaticCaseCreation","connections","contact","enableDownload","enableRemoteSupport","supportassistEnabled","telemetry"],"stateInputs":{"description":"Input properties used for looking up and filtering SupportAssist resources.\n","properties":{"acceptedTerms":{"description":"Set T&C accepted or rejected status\n","type":"boolean"},"accessKey":{"description":"SupportAssist access key\n","type":"string"},"automaticCaseCreation":{"description":"True indicates automatic case creation is enabled\n","type":"boolean"},"connections":{"$ref":"#/types/powerscale:index%2FSupportAssistConnections:SupportAssistConnections"},"contact":{"$ref":"#/types/powerscale:index%2FSupportAssistContact:SupportAssistContact"},"enableDownload":{"description":"True indicates downloads are enabled\n","type":"boolean"},"enableRemoteSupport":{"description":"Allow remote support.\n","type":"boolean"},"pin":{"description":"SupportAssist pin\n","type":"string"},"supportassistEnabled":{"description":"Whether SupportAssist is enabled\n","type":"boolean"},"telemetry":{"$ref":"#/types/powerscale:index%2FSupportAssistTelemetry:SupportAssistTelemetry"}},"type":"object"},"type":"object"},"powerscale:index/synciqGlobalSettings:SynciqGlobalSettings":{"description":"This resource is used to manage the SyncIQ Global Settings entity of PowerScale Array. We can Update the SyncIQ Global Settings using this resource. We can also import existing SyncIQ Global Settings from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create and  Update updates the syncIQ  global settings. Delete will delete the state file. Import action is also available.\n// After `pulumi up` of this example file will update the settings according to the attributes set in the config\n// PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array\nconst example = new powerscale.SynciqGlobalSettings(\"example\", {\n    preferredRpoAlert: 3,\n    sourceNetwork: {\n        subnet: \"subnet0\",\n        pool: \"pool0\",\n    },\n    reportEmails: [\n        \"example1@mail.com\",\n        \"example2@mail.com\",\n    ],\n    renegotiationPeriod: 28800,\n    service: \"paused\",\n    rpoAlerts: true,\n    restrictTargetNetwork: true,\n    reportMaxCount: 2000,\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create and  Update updates the syncIQ  global settings. Delete will delete the state file. Import action is also available.\n# After `pulumi up` of this example file will update the settings according to the attributes set in the config\n# PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array\nexample = powerscale.SynciqGlobalSettings(\"example\",\n    preferred_rpo_alert=3,\n    source_network={\n        \"subnet\": \"subnet0\",\n        \"pool\": \"pool0\",\n    },\n    report_emails=[\n        \"example1@mail.com\",\n        \"example2@mail.com\",\n    ],\n    renegotiation_period=28800,\n    service=\"paused\",\n    rpo_alerts=True,\n    restrict_target_network=True,\n    report_max_count=2000)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create and  Update updates the syncIQ  global settings. Delete will delete the state file. Import action is also available.\n    // After `pulumi up` of this example file will update the settings according to the attributes set in the config\n    // PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array\n    var example = new Powerscale.SynciqGlobalSettings(\"example\", new()\n    {\n        PreferredRpoAlert = 3,\n        SourceNetwork = new Powerscale.Inputs.SynciqGlobalSettingsSourceNetworkArgs\n        {\n            Subnet = \"subnet0\",\n            Pool = \"pool0\",\n        },\n        ReportEmails = new[]\n        {\n            \"example1@mail.com\",\n            \"example2@mail.com\",\n        },\n        RenegotiationPeriod = 28800,\n        Service = \"paused\",\n        RpoAlerts = true,\n        RestrictTargetNetwork = true,\n        ReportMaxCount = 2000,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create and  Update updates the syncIQ  global settings. Delete will delete the state file. Import action is also available.\n\t\t// After `pulumi up` of this example file will update the settings according to the attributes set in the config\n\t\t// PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array\n\t\t_, err := powerscale.NewSynciqGlobalSettings(ctx, \"example\", &powerscale.SynciqGlobalSettingsArgs{\n\t\t\tPreferredRpoAlert: pulumi.Float64(3),\n\t\t\tSourceNetwork: &powerscale.SynciqGlobalSettingsSourceNetworkArgs{\n\t\t\t\tSubnet: pulumi.String(\"subnet0\"),\n\t\t\t\tPool:   pulumi.String(\"pool0\"),\n\t\t\t},\n\t\t\tReportEmails: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"example1@mail.com\"),\n\t\t\t\tpulumi.String(\"example2@mail.com\"),\n\t\t\t},\n\t\t\tRenegotiationPeriod:   pulumi.Float64(28800),\n\t\t\tService:               pulumi.String(\"paused\"),\n\t\t\tRpoAlerts:             pulumi.Bool(true),\n\t\t\tRestrictTargetNetwork: pulumi.Bool(true),\n\t\t\tReportMaxCount:        pulumi.Float64(2000),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SynciqGlobalSettings;\nimport com.pulumi.powerscale.SynciqGlobalSettingsArgs;\nimport com.pulumi.powerscale.inputs.SynciqGlobalSettingsSourceNetworkArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create and  Update updates the syncIQ  global settings. Delete will delete the state file. Import action is also available.\n        // After `pulumi up` of this example file will update the settings according to the attributes set in the config\n        // PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array\n        var example = new SynciqGlobalSettings(\"example\", SynciqGlobalSettingsArgs.builder()\n            .preferredRpoAlert(3.0)\n            .sourceNetwork(SynciqGlobalSettingsSourceNetworkArgs.builder()\n                .subnet(\"subnet0\")\n                .pool(\"pool0\")\n                .build())\n            .reportEmails(            \n                \"example1@mail.com\",\n                \"example2@mail.com\")\n            .renegotiationPeriod(28800.0)\n            .service(\"paused\")\n            .rpoAlerts(true)\n            .restrictTargetNetwork(true)\n            .reportMaxCount(2000.0)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create and  Update updates the syncIQ  global settings. Delete will delete the state file. Import action is also available.\n  # After `pulumi up` of this example file will update the settings according to the attributes set in the config\n\n  # PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array\n  example:\n    type: powerscale:SynciqGlobalSettings\n    properties:\n      preferredRpoAlert: 3\n      sourceNetwork:\n        subnet: subnet0\n        pool: pool0\n      reportEmails:\n        - example1@mail.com\n        - example2@mail.com\n      renegotiationPeriod: 28800\n      service: paused\n      rpoAlerts: true\n      restrictTargetNetwork: true\n      reportMaxCount: 2000\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/synciqGlobalSettings:SynciqGlobalSettings settings <anystring>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/synciqGlobalSettings:SynciqGlobalSettings settings global_setting\n```\n\nafter running this command, populate one or more parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"bandwidthReservationReserveAbsolute":{"description":"The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidth*reservation*reserve_percentage.\n","type":"number"},"bandwidthReservationReservePercentage":{"description":"The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.\n","type":"number"},"clusterCertificateId":{"description":"The ID of this cluster's certificate being used for encryption.\n","type":"string"},"encryptionCipherList":{"description":"The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.\n","type":"string"},"encryptionRequired":{"description":"If true, requires all SyncIQ policies to utilize encrypted communications.\n","type":"boolean"},"forceInterface":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Default for the \"force*interface\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  Determines whether data is sent only through the subnet and pool specified in the \"source*network\" field. This option can be useful if there are multiple interfaces for the given source subnet.\n","type":"boolean"},"ocspAddress":{"description":"The address of the OCSP responder to which to connect.\n","type":"string"},"ocspIssuerCertificateId":{"description":"The ID of the certificate authority that issued the certificate whose revocation status is being checked.\n","type":"string"},"preferredRpoAlert":{"description":"If specified, display as default RPO Alert value for new policy creation via WebUI.\n","type":"number"},"renegotiationPeriod":{"description":"If specified, the duration to persist encrypted connection before forcing a renegotiation.\n","type":"number"},"reportEmails":{"description":"Email sync reports to these addresses.\n","items":{"type":"string"},"type":"array"},"reportMaxAge":{"description":"ID of the Cluster Email Settings.\n","type":"number"},"reportMaxCount":{"description":"The default length of time (in seconds) a policy report will be stored.\n","type":"number"},"restrictTargetNetwork":{"description":"Default for the \"restrict*target*network\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  If you specify true, and you specify a SmartConnect zone in the <span pulumi-lang-nodejs=\"\"targetHost\"\" pulumi-lang-dotnet=\"\"TargetHost\"\" pulumi-lang-go=\"\"targetHost\"\" pulumi-lang-python=\"\"target_host\"\" pulumi-lang-yaml=\"\"targetHost\"\" pulumi-lang-java=\"\"targetHost\"\">\"target_host\"</span> field, replication policies will connect only to nodes in the specified SmartConnect zone.  If you specify false, replication policies are not restricted to specific nodes on the target cluster.\n","type":"boolean"},"rpoAlerts":{"description":"If disabled, no RPO alerts will be generated.\n","type":"boolean"},"service":{"description":"Specifies if the SyncIQ service currently on, paused, or off.  If paused, all sync jobs will be paused.  If turned off, all jobs will be canceled.\n","type":"string"},"serviceHistoryMaxAge":{"description":"Maximum age of service information to maintain, in seconds.\n","type":"number"},"serviceHistoryMaxCount":{"description":"Maximum number of historical service information records to maintain.\n","type":"number"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FSynciqGlobalSettingsSourceNetwork:SynciqGlobalSettingsSourceNetwork","description":"Restricts replication policies on the local cluster to running on the specified subnet and pool.\n"},"useWorkersPerNode":{"description":"If enabled, SyncIQ will use the deprecated workers*per*node field with worker pools functionality and limit workers accordingly.\n","type":"boolean"}},"properties":{"bandwidthReservationReserveAbsolute":{"description":"The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidth*reservation*reserve_percentage.\n","type":"number"},"bandwidthReservationReservePercentage":{"description":"The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.\n","type":"number"},"clusterCertificateId":{"description":"The ID of this cluster's certificate being used for encryption.\n","type":"string"},"encryptionCipherList":{"description":"The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.\n","type":"string"},"encryptionRequired":{"description":"If true, requires all SyncIQ policies to utilize encrypted communications.\n","type":"boolean"},"forceInterface":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Default for the \"force*interface\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  Determines whether data is sent only through the subnet and pool specified in the \"source*network\" field. This option can be useful if there are multiple interfaces for the given source subnet.\n","type":"boolean"},"ocspAddress":{"description":"The address of the OCSP responder to which to connect.\n","type":"string"},"ocspIssuerCertificateId":{"description":"The ID of the certificate authority that issued the certificate whose revocation status is being checked.\n","type":"string"},"preferredRpoAlert":{"description":"If specified, display as default RPO Alert value for new policy creation via WebUI.\n","type":"number"},"renegotiationPeriod":{"description":"If specified, the duration to persist encrypted connection before forcing a renegotiation.\n","type":"number"},"reportEmails":{"description":"Email sync reports to these addresses.\n","items":{"type":"string"},"type":"array"},"reportMaxAge":{"description":"ID of the Cluster Email Settings.\n","type":"number"},"reportMaxCount":{"description":"The default length of time (in seconds) a policy report will be stored.\n","type":"number"},"restrictTargetNetwork":{"description":"Default for the \"restrict*target*network\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  If you specify true, and you specify a SmartConnect zone in the <span pulumi-lang-nodejs=\"\"targetHost\"\" pulumi-lang-dotnet=\"\"TargetHost\"\" pulumi-lang-go=\"\"targetHost\"\" pulumi-lang-python=\"\"target_host\"\" pulumi-lang-yaml=\"\"targetHost\"\" pulumi-lang-java=\"\"targetHost\"\">\"target_host\"</span> field, replication policies will connect only to nodes in the specified SmartConnect zone.  If you specify false, replication policies are not restricted to specific nodes on the target cluster.\n","type":"boolean"},"rpoAlerts":{"description":"If disabled, no RPO alerts will be generated.\n","type":"boolean"},"service":{"description":"Specifies if the SyncIQ service currently on, paused, or off.  If paused, all sync jobs will be paused.  If turned off, all jobs will be canceled.\n","type":"string"},"serviceHistoryMaxAge":{"description":"Maximum age of service information to maintain, in seconds.\n","type":"number"},"serviceHistoryMaxCount":{"description":"Maximum number of historical service information records to maintain.\n","type":"number"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FSynciqGlobalSettingsSourceNetwork:SynciqGlobalSettingsSourceNetwork","description":"Restricts replication policies on the local cluster to running on the specified subnet and pool.\n"},"useWorkersPerNode":{"description":"If enabled, SyncIQ will use the deprecated workers*per*node field with worker pools functionality and limit workers accordingly.\n","type":"boolean"}},"required":["bandwidthReservationReserveAbsolute","bandwidthReservationReservePercentage","clusterCertificateId","encryptionCipherList","encryptionRequired","forceInterface","ocspAddress","ocspIssuerCertificateId","preferredRpoAlert","renegotiationPeriod","reportEmails","reportMaxAge","reportMaxCount","restrictTargetNetwork","rpoAlerts","service","serviceHistoryMaxAge","serviceHistoryMaxCount","sourceNetwork","useWorkersPerNode"],"stateInputs":{"description":"Input properties used for looking up and filtering SynciqGlobalSettings resources.\n","properties":{"bandwidthReservationReserveAbsolute":{"description":"The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidth*reservation*reserve_percentage.\n","type":"number"},"bandwidthReservationReservePercentage":{"description":"The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.\n","type":"number"},"clusterCertificateId":{"description":"The ID of this cluster's certificate being used for encryption.\n","type":"string"},"encryptionCipherList":{"description":"The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.\n","type":"string"},"encryptionRequired":{"description":"If true, requires all SyncIQ policies to utilize encrypted communications.\n","type":"boolean"},"forceInterface":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Default for the \"force*interface\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  Determines whether data is sent only through the subnet and pool specified in the \"source*network\" field. This option can be useful if there are multiple interfaces for the given source subnet.\n","type":"boolean"},"ocspAddress":{"description":"The address of the OCSP responder to which to connect.\n","type":"string"},"ocspIssuerCertificateId":{"description":"The ID of the certificate authority that issued the certificate whose revocation status is being checked.\n","type":"string"},"preferredRpoAlert":{"description":"If specified, display as default RPO Alert value for new policy creation via WebUI.\n","type":"number"},"renegotiationPeriod":{"description":"If specified, the duration to persist encrypted connection before forcing a renegotiation.\n","type":"number"},"reportEmails":{"description":"Email sync reports to these addresses.\n","items":{"type":"string"},"type":"array"},"reportMaxAge":{"description":"ID of the Cluster Email Settings.\n","type":"number"},"reportMaxCount":{"description":"The default length of time (in seconds) a policy report will be stored.\n","type":"number"},"restrictTargetNetwork":{"description":"Default for the \"restrict*target*network\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation.  If you specify true, and you specify a SmartConnect zone in the <span pulumi-lang-nodejs=\"\"targetHost\"\" pulumi-lang-dotnet=\"\"TargetHost\"\" pulumi-lang-go=\"\"targetHost\"\" pulumi-lang-python=\"\"target_host\"\" pulumi-lang-yaml=\"\"targetHost\"\" pulumi-lang-java=\"\"targetHost\"\">\"target_host\"</span> field, replication policies will connect only to nodes in the specified SmartConnect zone.  If you specify false, replication policies are not restricted to specific nodes on the target cluster.\n","type":"boolean"},"rpoAlerts":{"description":"If disabled, no RPO alerts will be generated.\n","type":"boolean"},"service":{"description":"Specifies if the SyncIQ service currently on, paused, or off.  If paused, all sync jobs will be paused.  If turned off, all jobs will be canceled.\n","type":"string"},"serviceHistoryMaxAge":{"description":"Maximum age of service information to maintain, in seconds.\n","type":"number"},"serviceHistoryMaxCount":{"description":"Maximum number of historical service information records to maintain.\n","type":"number"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FSynciqGlobalSettingsSourceNetwork:SynciqGlobalSettingsSourceNetwork","description":"Restricts replication policies on the local cluster to running on the specified subnet and pool.\n"},"useWorkersPerNode":{"description":"If enabled, SyncIQ will use the deprecated workers*per*node field with worker pools functionality and limit workers accordingly.\n","type":"boolean"}},"type":"object"},"type":"object"},"powerscale:index/synciqPeerCertificate:SynciqPeerCertificate":{"description":"This resource is used to manage the SyncIQ Peer Certificate entity of PowerScale Array. We can Create, Read, Update and Delete the SyncIQ Peer Certificate using this resource. We can also import existing SyncIQ Peer Certificate from PowerScale array.\n\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nA Peer Certificate can be imported by its name\n\nThe command to import is\n\n```sh\n$ pulumi import powerscale:index/synciqPeerCertificate:SynciqPeerCertificate certificate <certificate name>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/synciqPeerCertificate:SynciqPeerCertificate certificate2 \"peer_certificate_01\"\n```\n\nafter running any of these commands, populate the path field with the value \"/dummy\" to start managing this resource. Add other fields as required.\n\nNote: 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.\n\n","inputProperties":{"description":{"description":"Description field associated with a certificate provided for administrative convenience.\n","type":"string"},"name":{"description":"Administrator specified name identifier.\n","type":"string"},"path":{"description":"Local path (on the PowerScale filesystem) to the certificate that is to be imported. This resource will be recreated if the value of this field is changed.\n","type":"string"}},"properties":{"description":{"description":"Description field associated with a certificate provided for administrative convenience.\n","type":"string"},"name":{"description":"Administrator specified name identifier.\n","type":"string"},"path":{"description":"Local path (on the PowerScale filesystem) to the certificate that is to be imported. This resource will be recreated if the value of this field is changed.\n","type":"string"}},"required":["description","name","path"],"requiredInputs":["path"],"stateInputs":{"description":"Input properties used for looking up and filtering SynciqPeerCertificate resources.\n","properties":{"description":{"description":"Description field associated with a certificate provided for administrative convenience.\n","type":"string"},"name":{"description":"Administrator specified name identifier.\n","type":"string"},"path":{"description":"Local path (on the PowerScale filesystem) to the certificate that is to be imported. This resource will be recreated if the value of this field is changed.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/synciqPolicy:SynciqPolicy":{"description":"This resource is used to manage the SyncIQ Replication Policy entity of PowerScale Array. We can Create, Read, Update and Delete the SyncIQ Replication Policy using this resource. We can also import existing SyncIQ Replication Policy from PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// For more information, Please check the terraform state file.\nconst cert10101010 = new powerscale.SynciqPeerCertificate(\"cert_10_10_10_10\", {\n    path: \"/ifs/peerCert_10_10_10_10.pem\",\n    name: \"peerCert_10_10_10_10\",\n    description: \"Certificate for the replication peer cluster 10.10.10.10\",\n});\n// PowerScale Sync IQ Policies can be used to replicate files or directories from one cluster to another. \nconst policy = new powerscale.SynciqPolicy(\"policy\", {\n    name: \"policy1\",\n    action: \"sync\",\n    sourceRootPath: \"/ifs\",\n    targetHost: \"10.10.10.10\",\n    targetPath: \"/ifs/policy1Sink\",\n    description: \"Policy 1 description\",\n    enabled: true,\n    fileMatchingPattern: {\n        orCriterias: [\n            {\n                andCriterias: [{\n                    type: \"name\",\n                    value: \"tfacc\",\n                    operator: \"==\",\n                }],\n            },\n            {\n                andCriterias: [{\n                    type: \"size\",\n                    value: \"200MB\",\n                    operator: \">\",\n                }],\n            },\n        ],\n    },\n    sourceNetwork: {\n        pool: \"pool0\",\n        subnet: \"subnet0\",\n    },\n    acceleratedFailback: false,\n    bandwidthReservation: 100,\n    changelist: false,\n    checkIntegrity: true,\n    cloudDeepCopy: \"allow\",\n    deleteQuotas: true,\n    disableQuotaTmpDir: true,\n    enableHashTmpdir: true,\n    encryptionCipherList: \"aes128-ctr,aes192-ctr,aes256-ctr\",\n    ignoreRecursiveQuota: true,\n    logLevel: \"fatal\",\n    priority: 1,\n    reportMaxAge: 3600,\n    reportMaxCount: 100,\n    rpoAlert: 10,\n    schedule: \"Every Monday at 2AM\",\n    skipWhenSourceUnmodified: true,\n    snapshotSyncExisting: true,\n    snapshotSyncPattern: \"*\",\n    sourceExcludeDirectories: [\"/ifs/SourceExcludeDir\"],\n    sourceIncludeDirectories: [\"/ifs/SourceIncludeDir\"],\n    sourceSnapshotArchive: true,\n    sourceSnapshotExpiration: 8 * 60 * 60 * 24,\n    sourceSnapshotPattern: \".*\",\n    syncExistingSnapshotExpiration: true,\n    syncExistingTargetSnapshotPattern: \"%{SnapName}-%{SnapCreateTime}\",\n    targetCertificateId: cert10101010.id,\n    targetCompareInitialSync: true,\n    targetDetectModifications: true,\n    targetSnapshotAlias: \"SIQ-%{SrcCluster}-%{PolicyName}-latest\",\n    targetSnapshotArchive: true,\n    targetSnapshotExpiration: 80 * 60 * 60 * 24,\n    targetSnapshotPattern: \"SIQ-%{SrcCluster}-%{PolicyName}-%Y-%m-%d_%H-%M-%S\",\n});\n// After the execution of above resource block, a Sync IQ Policy would have been cached in terraform state file\n// and a Sync IQ Policies would have been created/updated on PowerScale.\n// For more information, Please check the terraform state file.\n// sheduling a policy when source is modified\nconst policyWhenSourceModified = new powerscale.SynciqPolicy(\"policy_when_source_modified\", {\n    name: \"policy_when_source_modified\",\n    enabled: true,\n    action: \"sync\",\n    sourceRootPath: \"/ifs/Source\",\n    targetHost: \"10.10.10.9\",\n    password: \"W0ulntUWannaKn0w\",\n    targetPath: \"/ifs/Sink2\",\n    schedule: \"when-source-modified\",\n    jobDelay: 20 * 60 * 60,\n    ocspAddress: \"10.20.10.9\",\n    ocspIssuerCertificateId: \"16af57a9f676b0ab126095aa5ebadef22ab31119d644ac95cd4b93dbf3f26aeb\",\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# For more information, Please check the terraform state file.\ncert10101010 = powerscale.SynciqPeerCertificate(\"cert_10_10_10_10\",\n    path=\"/ifs/peerCert_10_10_10_10.pem\",\n    name=\"peerCert_10_10_10_10\",\n    description=\"Certificate for the replication peer cluster 10.10.10.10\")\n# PowerScale Sync IQ Policies can be used to replicate files or directories from one cluster to another. \npolicy = powerscale.SynciqPolicy(\"policy\",\n    name=\"policy1\",\n    action=\"sync\",\n    source_root_path=\"/ifs\",\n    target_host=\"10.10.10.10\",\n    target_path=\"/ifs/policy1Sink\",\n    description=\"Policy 1 description\",\n    enabled=True,\n    file_matching_pattern={\n        \"or_criterias\": [\n            {\n                \"and_criterias\": [{\n                    \"type\": \"name\",\n                    \"value\": \"tfacc\",\n                    \"operator\": \"==\",\n                }],\n            },\n            {\n                \"and_criterias\": [{\n                    \"type\": \"size\",\n                    \"value\": \"200MB\",\n                    \"operator\": \">\",\n                }],\n            },\n        ],\n    },\n    source_network={\n        \"pool\": \"pool0\",\n        \"subnet\": \"subnet0\",\n    },\n    accelerated_failback=False,\n    bandwidth_reservation=100,\n    changelist=False,\n    check_integrity=True,\n    cloud_deep_copy=\"allow\",\n    delete_quotas=True,\n    disable_quota_tmp_dir=True,\n    enable_hash_tmpdir=True,\n    encryption_cipher_list=\"aes128-ctr,aes192-ctr,aes256-ctr\",\n    ignore_recursive_quota=True,\n    log_level=\"fatal\",\n    priority=1,\n    report_max_age=3600,\n    report_max_count=100,\n    rpo_alert=10,\n    schedule=\"Every Monday at 2AM\",\n    skip_when_source_unmodified=True,\n    snapshot_sync_existing=True,\n    snapshot_sync_pattern=\"*\",\n    source_exclude_directories=[\"/ifs/SourceExcludeDir\"],\n    source_include_directories=[\"/ifs/SourceIncludeDir\"],\n    source_snapshot_archive=True,\n    source_snapshot_expiration=8 * 60 * 60 * 24,\n    source_snapshot_pattern=\".*\",\n    sync_existing_snapshot_expiration=True,\n    sync_existing_target_snapshot_pattern=\"%{SnapName}-%{SnapCreateTime}\",\n    target_certificate_id=cert10101010.id,\n    target_compare_initial_sync=True,\n    target_detect_modifications=True,\n    target_snapshot_alias=\"SIQ-%{SrcCluster}-%{PolicyName}-latest\",\n    target_snapshot_archive=True,\n    target_snapshot_expiration=80 * 60 * 60 * 24,\n    target_snapshot_pattern=\"SIQ-%{SrcCluster}-%{PolicyName}-%Y-%m-%d_%H-%M-%S\")\n# After the execution of above resource block, a Sync IQ Policy would have been cached in terraform state file\n# and a Sync IQ Policies would have been created/updated on PowerScale.\n# For more information, Please check the terraform state file.\n# sheduling a policy when source is modified\npolicy_when_source_modified = powerscale.SynciqPolicy(\"policy_when_source_modified\",\n    name=\"policy_when_source_modified\",\n    enabled=True,\n    action=\"sync\",\n    source_root_path=\"/ifs/Source\",\n    target_host=\"10.10.10.9\",\n    password=\"W0ulntUWannaKn0w\",\n    target_path=\"/ifs/Sink2\",\n    schedule=\"when-source-modified\",\n    job_delay=20 * 60 * 60,\n    ocsp_address=\"10.20.10.9\",\n    ocsp_issuer_certificate_id=\"16af57a9f676b0ab126095aa5ebadef22ab31119d644ac95cd4b93dbf3f26aeb\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // For more information, Please check the terraform state file.\n    var cert10101010 = new Powerscale.SynciqPeerCertificate(\"cert_10_10_10_10\", new()\n    {\n        Path = \"/ifs/peerCert_10_10_10_10.pem\",\n        Name = \"peerCert_10_10_10_10\",\n        Description = \"Certificate for the replication peer cluster 10.10.10.10\",\n    });\n\n    // PowerScale Sync IQ Policies can be used to replicate files or directories from one cluster to another. \n    var policy = new Powerscale.SynciqPolicy(\"policy\", new()\n    {\n        Name = \"policy1\",\n        Action = \"sync\",\n        SourceRootPath = \"/ifs\",\n        TargetHost = \"10.10.10.10\",\n        TargetPath = \"/ifs/policy1Sink\",\n        Description = \"Policy 1 description\",\n        Enabled = true,\n        FileMatchingPattern = new Powerscale.Inputs.SynciqPolicyFileMatchingPatternArgs\n        {\n            OrCriterias = new[]\n            {\n                new Powerscale.Inputs.SynciqPolicyFileMatchingPatternOrCriteriaArgs\n                {\n                    AndCriterias = new[]\n                    {\n                        new Powerscale.Inputs.SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Type = \"name\",\n                            Value = \"tfacc\",\n                            Operator = \"==\",\n                        },\n                    },\n                },\n                new Powerscale.Inputs.SynciqPolicyFileMatchingPatternOrCriteriaArgs\n                {\n                    AndCriterias = new[]\n                    {\n                        new Powerscale.Inputs.SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs\n                        {\n                            Type = \"size\",\n                            Value = \"200MB\",\n                            Operator = \">\",\n                        },\n                    },\n                },\n            },\n        },\n        SourceNetwork = new Powerscale.Inputs.SynciqPolicySourceNetworkArgs\n        {\n            Pool = \"pool0\",\n            Subnet = \"subnet0\",\n        },\n        AcceleratedFailback = false,\n        BandwidthReservation = 100,\n        Changelist = false,\n        CheckIntegrity = true,\n        CloudDeepCopy = \"allow\",\n        DeleteQuotas = true,\n        DisableQuotaTmpDir = true,\n        EnableHashTmpdir = true,\n        EncryptionCipherList = \"aes128-ctr,aes192-ctr,aes256-ctr\",\n        IgnoreRecursiveQuota = true,\n        LogLevel = \"fatal\",\n        Priority = 1,\n        ReportMaxAge = 3600,\n        ReportMaxCount = 100,\n        RpoAlert = 10,\n        Schedule = \"Every Monday at 2AM\",\n        SkipWhenSourceUnmodified = true,\n        SnapshotSyncExisting = true,\n        SnapshotSyncPattern = \"*\",\n        SourceExcludeDirectories = new[]\n        {\n            \"/ifs/SourceExcludeDir\",\n        },\n        SourceIncludeDirectories = new[]\n        {\n            \"/ifs/SourceIncludeDir\",\n        },\n        SourceSnapshotArchive = true,\n        SourceSnapshotExpiration = 8 * 60 * 60 * 24,\n        SourceSnapshotPattern = \".*\",\n        SyncExistingSnapshotExpiration = true,\n        SyncExistingTargetSnapshotPattern = \"%{SnapName}-%{SnapCreateTime}\",\n        TargetCertificateId = cert10101010.Id,\n        TargetCompareInitialSync = true,\n        TargetDetectModifications = true,\n        TargetSnapshotAlias = \"SIQ-%{SrcCluster}-%{PolicyName}-latest\",\n        TargetSnapshotArchive = true,\n        TargetSnapshotExpiration = 80 * 60 * 60 * 24,\n        TargetSnapshotPattern = \"SIQ-%{SrcCluster}-%{PolicyName}-%Y-%m-%d_%H-%M-%S\",\n    });\n\n    // After the execution of above resource block, a Sync IQ Policy would have been cached in terraform state file\n    // and a Sync IQ Policies would have been created/updated on PowerScale.\n    // For more information, Please check the terraform state file.\n    // sheduling a policy when source is modified\n    var policyWhenSourceModified = new Powerscale.SynciqPolicy(\"policy_when_source_modified\", new()\n    {\n        Name = \"policy_when_source_modified\",\n        Enabled = true,\n        Action = \"sync\",\n        SourceRootPath = \"/ifs/Source\",\n        TargetHost = \"10.10.10.9\",\n        Password = \"W0ulntUWannaKn0w\",\n        TargetPath = \"/ifs/Sink2\",\n        Schedule = \"when-source-modified\",\n        JobDelay = 20 * 60 * 60,\n        OcspAddress = \"10.20.10.9\",\n        OcspIssuerCertificateId = \"16af57a9f676b0ab126095aa5ebadef22ab31119d644ac95cd4b93dbf3f26aeb\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// For more information, Please check the terraform state file.\n\t\tcert10101010, err := powerscale.NewSynciqPeerCertificate(ctx, \"cert_10_10_10_10\", &powerscale.SynciqPeerCertificateArgs{\n\t\t\tPath:        pulumi.String(\"/ifs/peerCert_10_10_10_10.pem\"),\n\t\t\tName:        pulumi.String(\"peerCert_10_10_10_10\"),\n\t\t\tDescription: pulumi.String(\"Certificate for the replication peer cluster 10.10.10.10\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// PowerScale Sync IQ Policies can be used to replicate files or directories from one cluster to another.\n\t\t_, err = powerscale.NewSynciqPolicy(ctx, \"policy\", &powerscale.SynciqPolicyArgs{\n\t\t\tName:           pulumi.String(\"policy1\"),\n\t\t\tAction:         pulumi.String(\"sync\"),\n\t\t\tSourceRootPath: pulumi.String(\"/ifs\"),\n\t\t\tTargetHost:     pulumi.String(\"10.10.10.10\"),\n\t\t\tTargetPath:     pulumi.String(\"/ifs/policy1Sink\"),\n\t\t\tDescription:    pulumi.String(\"Policy 1 description\"),\n\t\t\tEnabled:        pulumi.Bool(true),\n\t\t\tFileMatchingPattern: &powerscale.SynciqPolicyFileMatchingPatternArgs{\n\t\t\t\tOrCriterias: powerscale.SynciqPolicyFileMatchingPatternOrCriteriaArray{\n\t\t\t\t\t&powerscale.SynciqPolicyFileMatchingPatternOrCriteriaArgs{\n\t\t\t\t\t\tAndCriterias: powerscale.SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArray{\n\t\t\t\t\t\t\t&powerscale.SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tType:     pulumi.String(\"name\"),\n\t\t\t\t\t\t\t\tValue:    pulumi.String(\"tfacc\"),\n\t\t\t\t\t\t\t\tOperator: pulumi.String(\"==\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\t&powerscale.SynciqPolicyFileMatchingPatternOrCriteriaArgs{\n\t\t\t\t\t\tAndCriterias: powerscale.SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArray{\n\t\t\t\t\t\t\t&powerscale.SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs{\n\t\t\t\t\t\t\t\tType:     pulumi.String(\"size\"),\n\t\t\t\t\t\t\t\tValue:    pulumi.String(\"200MB\"),\n\t\t\t\t\t\t\t\tOperator: pulumi.String(\">\"),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tSourceNetwork: &powerscale.SynciqPolicySourceNetworkArgs{\n\t\t\t\tPool:   pulumi.String(\"pool0\"),\n\t\t\t\tSubnet: pulumi.String(\"subnet0\"),\n\t\t\t},\n\t\t\tAcceleratedFailback:      pulumi.Bool(false),\n\t\t\tBandwidthReservation:     pulumi.Float64(100),\n\t\t\tChangelist:               pulumi.Bool(false),\n\t\t\tCheckIntegrity:           pulumi.Bool(true),\n\t\t\tCloudDeepCopy:            pulumi.String(\"allow\"),\n\t\t\tDeleteQuotas:             pulumi.Bool(true),\n\t\t\tDisableQuotaTmpDir:       pulumi.Bool(true),\n\t\t\tEnableHashTmpdir:         pulumi.Bool(true),\n\t\t\tEncryptionCipherList:     pulumi.String(\"aes128-ctr,aes192-ctr,aes256-ctr\"),\n\t\t\tIgnoreRecursiveQuota:     pulumi.Bool(true),\n\t\t\tLogLevel:                 pulumi.String(\"fatal\"),\n\t\t\tPriority:                 pulumi.Float64(1),\n\t\t\tReportMaxAge:             pulumi.Float64(3600),\n\t\t\tReportMaxCount:           pulumi.Float64(100),\n\t\t\tRpoAlert:                 pulumi.Float64(10),\n\t\t\tSchedule:                 pulumi.String(\"Every Monday at 2AM\"),\n\t\t\tSkipWhenSourceUnmodified: pulumi.Bool(true),\n\t\t\tSnapshotSyncExisting:     pulumi.Bool(true),\n\t\t\tSnapshotSyncPattern:      pulumi.String(\"*\"),\n\t\t\tSourceExcludeDirectories: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"/ifs/SourceExcludeDir\"),\n\t\t\t},\n\t\t\tSourceIncludeDirectories: pulumi.StringArray{\n\t\t\t\tpulumi.String(\"/ifs/SourceIncludeDir\"),\n\t\t\t},\n\t\t\tSourceSnapshotArchive:             pulumi.Bool(true),\n\t\t\tSourceSnapshotExpiration:          8 * 60 * 60 * 24,\n\t\t\tSourceSnapshotPattern:             pulumi.String(\".*\"),\n\t\t\tSyncExistingSnapshotExpiration:    pulumi.Bool(true),\n\t\t\tSyncExistingTargetSnapshotPattern: pulumi.String(\"%{SnapName}-%{SnapCreateTime}\"),\n\t\t\tTargetCertificateId:               cert10101010.ID(),\n\t\t\tTargetCompareInitialSync:          pulumi.Bool(true),\n\t\t\tTargetDetectModifications:         pulumi.Bool(true),\n\t\t\tTargetSnapshotAlias:               pulumi.String(\"SIQ-%{SrcCluster}-%{PolicyName}-latest\"),\n\t\t\tTargetSnapshotArchive:             pulumi.Bool(true),\n\t\t\tTargetSnapshotExpiration:          80 * 60 * 60 * 24,\n\t\t\tTargetSnapshotPattern:             pulumi.String(\"SIQ-%{SrcCluster}-%{PolicyName}-%Y-%m-%d_%H-%M-%S\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// sheduling a policy when source is modified\n\t\t_, err = powerscale.NewSynciqPolicy(ctx, \"policy_when_source_modified\", &powerscale.SynciqPolicyArgs{\n\t\t\tName:                    pulumi.String(\"policy_when_source_modified\"),\n\t\t\tEnabled:                 pulumi.Bool(true),\n\t\t\tAction:                  pulumi.String(\"sync\"),\n\t\t\tSourceRootPath:          pulumi.String(\"/ifs/Source\"),\n\t\t\tTargetHost:              pulumi.String(\"10.10.10.9\"),\n\t\t\tPassword:                pulumi.String(\"W0ulntUWannaKn0w\"),\n\t\t\tTargetPath:              pulumi.String(\"/ifs/Sink2\"),\n\t\t\tSchedule:                pulumi.String(\"when-source-modified\"),\n\t\t\tJobDelay:                20 * 60 * 60,\n\t\t\tOcspAddress:             pulumi.String(\"10.20.10.9\"),\n\t\t\tOcspIssuerCertificateId: pulumi.String(\"16af57a9f676b0ab126095aa5ebadef22ab31119d644ac95cd4b93dbf3f26aeb\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SynciqPeerCertificate;\nimport com.pulumi.powerscale.SynciqPeerCertificateArgs;\nimport com.pulumi.powerscale.SynciqPolicy;\nimport com.pulumi.powerscale.SynciqPolicyArgs;\nimport com.pulumi.powerscale.inputs.SynciqPolicyFileMatchingPatternArgs;\nimport com.pulumi.powerscale.inputs.SynciqPolicySourceNetworkArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // For more information, Please check the terraform state file.\n        var cert10101010 = new SynciqPeerCertificate(\"cert10101010\", SynciqPeerCertificateArgs.builder()\n            .path(\"/ifs/peerCert_10_10_10_10.pem\")\n            .name(\"peerCert_10_10_10_10\")\n            .description(\"Certificate for the replication peer cluster 10.10.10.10\")\n            .build());\n\n        // PowerScale Sync IQ Policies can be used to replicate files or directories from one cluster to another. \n        var policy = new SynciqPolicy(\"policy\", SynciqPolicyArgs.builder()\n            .name(\"policy1\")\n            .action(\"sync\")\n            .sourceRootPath(\"/ifs\")\n            .targetHost(\"10.10.10.10\")\n            .targetPath(\"/ifs/policy1Sink\")\n            .description(\"Policy 1 description\")\n            .enabled(true)\n            .fileMatchingPattern(SynciqPolicyFileMatchingPatternArgs.builder()\n                .orCriterias(                \n                    SynciqPolicyFileMatchingPatternOrCriteriaArgs.builder()\n                        .andCriterias(SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                            .type(\"name\")\n                            .value(\"tfacc\")\n                            .operator(\"==\")\n                            .build())\n                        .build(),\n                    SynciqPolicyFileMatchingPatternOrCriteriaArgs.builder()\n                        .andCriterias(SynciqPolicyFileMatchingPatternOrCriteriaAndCriteriaArgs.builder()\n                            .type(\"size\")\n                            .value(\"200MB\")\n                            .operator(\">\")\n                            .build())\n                        .build())\n                .build())\n            .sourceNetwork(SynciqPolicySourceNetworkArgs.builder()\n                .pool(\"pool0\")\n                .subnet(\"subnet0\")\n                .build())\n            .acceleratedFailback(false)\n            .bandwidthReservation(100.0)\n            .changelist(false)\n            .checkIntegrity(true)\n            .cloudDeepCopy(\"allow\")\n            .deleteQuotas(true)\n            .disableQuotaTmpDir(true)\n            .enableHashTmpdir(true)\n            .encryptionCipherList(\"aes128-ctr,aes192-ctr,aes256-ctr\")\n            .ignoreRecursiveQuota(true)\n            .logLevel(\"fatal\")\n            .priority(1.0)\n            .reportMaxAge(3600.0)\n            .reportMaxCount(100.0)\n            .rpoAlert(10.0)\n            .schedule(\"Every Monday at 2AM\")\n            .skipWhenSourceUnmodified(true)\n            .snapshotSyncExisting(true)\n            .snapshotSyncPattern(\"*\")\n            .sourceExcludeDirectories(\"/ifs/SourceExcludeDir\")\n            .sourceIncludeDirectories(\"/ifs/SourceIncludeDir\")\n            .sourceSnapshotArchive(true)\n            .sourceSnapshotExpiration(8 * 60 * 60 * 24)\n            .sourceSnapshotPattern(\".*\")\n            .syncExistingSnapshotExpiration(true)\n            .syncExistingTargetSnapshotPattern(\"%{SnapName}-%{SnapCreateTime}\")\n            .targetCertificateId(cert10101010.id())\n            .targetCompareInitialSync(true)\n            .targetDetectModifications(true)\n            .targetSnapshotAlias(\"SIQ-%{SrcCluster}-%{PolicyName}-latest\")\n            .targetSnapshotArchive(true)\n            .targetSnapshotExpiration(80 * 60 * 60 * 24)\n            .targetSnapshotPattern(\"SIQ-%{SrcCluster}-%{PolicyName}-%Y-%m-%d_%H-%M-%S\")\n            .build());\n\n        // After the execution of above resource block, a Sync IQ Policy would have been cached in terraform state file\n        // and a Sync IQ Policies would have been created/updated on PowerScale.\n        // For more information, Please check the terraform state file.\n        // sheduling a policy when source is modified\n        var policyWhenSourceModified = new SynciqPolicy(\"policyWhenSourceModified\", SynciqPolicyArgs.builder()\n            .name(\"policy_when_source_modified\")\n            .enabled(true)\n            .action(\"sync\")\n            .sourceRootPath(\"/ifs/Source\")\n            .targetHost(\"10.10.10.9\")\n            .password(\"W0ulntUWannaKn0w\")\n            .targetPath(\"/ifs/Sink2\")\n            .schedule(\"when-source-modified\")\n            .jobDelay(20 * 60 * 60)\n            .ocspAddress(\"10.20.10.9\")\n            .ocspIssuerCertificateId(\"16af57a9f676b0ab126095aa5ebadef22ab31119d644ac95cd4b93dbf3f26aeb\")\n            .build());\n\n    }\n}\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/synciqPolicy:SynciqPolicy policy <policy name>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/synciqPolicy:SynciqPolicy policy \"policy1\"\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"acceleratedFailback":{"description":"If set to true, SyncIQ will perform failback configuration tasks during the next job run, rather than waiting to perform those tasks during the failback process. Performing these tasks ahead of time will increase the speed of failback operations.\n","type":"boolean"},"action":{"description":"If 'copy', source files will be copied to the target cluster.  If 'sync', the target directory will be made an image of the source directory:  Files and directories that have been deleted on the source, have been moved within the target directory, or no longer match the selection criteria will be deleted from the target directory.\n","type":"string"},"allowCopyFb":{"description":"If set to true, SyncIQ will allow a policy with copy action failback which is not supported by default.\n","type":"boolean"},"bandwidthReservation":{"description":"The desired bandwidth reservation for this policy in kb/s. This feature will not activate unless a SyncIQ bandwidth rule is in effect.\n","type":"number"},"changelist":{"description":"If true, retain previous source snapshot and incremental repstate, both of which are required for changelist creation.\n","type":"boolean"},"checkIntegrity":{"description":"If true, the sync target performs cyclic redundancy checks (CRC) on the data as it is received.\n","type":"boolean"},"cloudDeepCopy":{"description":"If set to deny, replicates all CloudPools smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, the job will fail. If set to force, replicates all smartlinks to the target cluster as regular files. If set to allow, SyncIQ will attempt to replicate smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, SyncIQ will replicate the smartlinks as regular files.\n","type":"string"},"conflicted":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  If true, the most recent run of this policy encountered an error and this policy will not start any more scheduled jobs until this field is manually set back to 'false'.\n","type":"boolean"},"deleteQuotas":{"description":"If true, forcibly remove quotas on the target after they have been removed on the source.\n","type":"boolean"},"description":{"description":"User-assigned description of this sync policy.\n","type":"string"},"disableFileSplit":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  If true, the 7.2+ file splitting capability will be disabled.\n","type":"boolean"},"disableFofb":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Enable/disable sync failover/failback.\n","type":"boolean"},"disableQuotaTmpDir":{"description":"If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas.\n","type":"boolean"},"disableStf":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Enable/disable the 6.5+ STF based data transfer and uses only treewalk.\n","type":"boolean"},"enableHashTmpdir":{"description":"If true, syncs will use temporary working directory subdirectories to reduce lock contention.\n","type":"boolean"},"enabled":{"description":"If true, jobs will be automatically run based on this policy, according to its schedule.\n","type":"boolean"},"encryptionCipherList":{"description":"The cipher list (comma separated) being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.\n","type":"string"},"expectedDataloss":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Continue sending files even with the corrupted filesystem.\n","type":"boolean"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FSynciqPolicyFileMatchingPattern:SynciqPolicyFileMatchingPattern","description":"A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties.  Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria.\n"},"forceInterface":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Determines whether data is sent only through the subnet and pool specified in the \"source*network\" field. This option can be useful if there are multiple interfaces for the given source subnet.  If you enable this option, the net.inet.ip.choose*ifa*by*ipsrc sysctl should be set.\n","type":"boolean"},"ignoreRecursiveQuota":{"description":"If set to true, SyncIQ will not check the recursive quota in target paths to aid in replication to target paths which contain no quota but target cluster has lots of quotas.\n","type":"boolean"},"jobDelay":{"description":"If <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to `when-source-modified`, the duration to wait after a modification is made before starting a job (default is 0 seconds).\n","type":"number"},"logLevel":{"description":"Severity an event must reach before it is logged. Accepted values are <span pulumi-lang-nodejs=\"`fatal`\" pulumi-lang-dotnet=\"`Fatal`\" pulumi-lang-go=\"`fatal`\" pulumi-lang-python=\"`fatal`\" pulumi-lang-yaml=\"`fatal`\" pulumi-lang-java=\"`fatal`\">`fatal`</span>, <span pulumi-lang-nodejs=\"`error`\" pulumi-lang-dotnet=\"`Error`\" pulumi-lang-go=\"`error`\" pulumi-lang-python=\"`error`\" pulumi-lang-yaml=\"`error`\" pulumi-lang-java=\"`error`\">`error`</span>, <span pulumi-lang-nodejs=\"`notice`\" pulumi-lang-dotnet=\"`Notice`\" pulumi-lang-go=\"`notice`\" pulumi-lang-python=\"`notice`\" pulumi-lang-yaml=\"`notice`\" pulumi-lang-java=\"`notice`\">`notice`</span>, <span pulumi-lang-nodejs=\"`info`\" pulumi-lang-dotnet=\"`Info`\" pulumi-lang-go=\"`info`\" pulumi-lang-python=\"`info`\" pulumi-lang-yaml=\"`info`\" pulumi-lang-java=\"`info`\">`info`</span>, <span pulumi-lang-nodejs=\"`copy`\" pulumi-lang-dotnet=\"`Copy`\" pulumi-lang-go=\"`copy`\" pulumi-lang-python=\"`copy`\" pulumi-lang-yaml=\"`copy`\" pulumi-lang-java=\"`copy`\">`copy`</span>, <span pulumi-lang-nodejs=\"`debug`\" pulumi-lang-dotnet=\"`Debug`\" pulumi-lang-go=\"`debug`\" pulumi-lang-python=\"`debug`\" pulumi-lang-yaml=\"`debug`\" pulumi-lang-java=\"`debug`\">`debug`</span>, <span pulumi-lang-nodejs=\"`trace`\" pulumi-lang-dotnet=\"`Trace`\" pulumi-lang-go=\"`trace`\" pulumi-lang-python=\"`trace`\" pulumi-lang-yaml=\"`trace`\" pulumi-lang-java=\"`trace`\">`trace`</span>.\n","type":"string"},"logRemovedFiles":{"description":"If true, the system will log any files or directories that are deleted due to a sync.\n","type":"boolean"},"name":{"description":"User-assigned name of this sync policy.\n","type":"string"},"ocspAddress":{"description":"The address of the OCSP responder to which to connect. Set to empty string to disable OCSP.\n","type":"string"},"ocspIssuerCertificateId":{"description":"The ID of the certificate authority that issued the certificate whose revocation status is being checked. Set to empty string to disable certificate verification.\n","type":"string"},"password":{"description":"The password for the target cluster. This field is not readable.\n","type":"string"},"priority":{"description":"Determines the priority level of a policy. Policies with higher priority will have precedence to run over lower priority policies. Valid range is [0, 1]. Default is 0.\n","type":"number"},"reportMaxAge":{"description":"Length of time (in seconds) a policy report will be stored.\n","type":"number"},"reportMaxCount":{"description":"Maximum number of policy reports that will be stored on the system.\n","type":"number"},"restrictTargetNetwork":{"description":"If you specify true, and you specify a SmartConnect zone in the <span pulumi-lang-nodejs=\"\"targetHost\"\" pulumi-lang-dotnet=\"\"TargetHost\"\" pulumi-lang-go=\"\"targetHost\"\" pulumi-lang-python=\"\"target_host\"\" pulumi-lang-yaml=\"\"targetHost\"\" pulumi-lang-java=\"\"targetHost\"\">\"target_host\"</span> field, replication policies will connect only to nodes in the specified SmartConnect zone.  If you specify false, replication policies are not restricted to specific nodes on the target cluster.\n","type":"boolean"},"rpoAlert":{"description":"If <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to a time/date, an alert is created if the specified RPO for this policy is exceeded. The default value is 0, which will not generate RPO alerts.\n","type":"number"},"schedule":{"description":"The schedule on which new jobs will be run for this policy.\n","type":"string"},"skipLookup":{"description":"Skip DNS lookup of target IPs.\n","type":"boolean"},"skipWhenSourceUnmodified":{"description":"If true and <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to a time/date, the policy will not run if no changes have been made to the contents of the source directory since the last job successfully completed.\n","type":"boolean"},"snapshotSyncExisting":{"description":"If true, snapshot-triggered syncs will include snapshots taken before policy creation time (requires --schedule when-snapshot-taken).\n","type":"boolean"},"snapshotSyncPattern":{"description":"The naming pattern that a snapshot must match to trigger a sync when the schedule is when-snapshot-taken (default is \"*\").\n","type":"string"},"sourceExcludeDirectories":{"description":"Directories that will be excluded from the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceIncludeDirectories":{"description":"Directories that will be included in the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FSynciqPolicySourceNetwork:SynciqPolicySourceNetwork","description":"Restricts replication policies on the local cluster to running on the specified subnet and pool.\n"},"sourceRootPath":{"description":"The root directory on the source cluster the files will be synced from.  Modifying this field will result in a full synchronization of all data.\n","type":"string"},"sourceSnapshotArchive":{"description":"If true, archival snapshots of the source data will be taken on the source cluster before a sync.\n","type":"boolean"},"sourceSnapshotExpiration":{"description":"The length of time in seconds to keep snapshots on the source cluster.\n","type":"number"},"sourceSnapshotPattern":{"description":"The name pattern for snapshots taken on the source cluster before a sync.\n","type":"string"},"syncExistingSnapshotExpiration":{"description":"If set to true, the expire duration for target archival snapshot is the remaining expire duration of source snapshot, requires --sync-existing-snapshot=true\n","type":"boolean"},"syncExistingTargetSnapshotPattern":{"description":"The naming pattern for snapshot on the destination cluster when --sync-existing-snapshot is true\n","type":"string"},"targetCertificateId":{"description":"The ID of the target cluster certificate being used for encryption. Set to empty string to disable target certificate verification.\n","type":"string"},"targetCompareInitialSync":{"description":"If true, the target creates diffs against the original sync.\n","type":"boolean"},"targetDetectModifications":{"description":"If true, target cluster will detect if files have been changed on the target by legacy tree walk syncs.\n","type":"boolean"},"targetHost":{"description":"Hostname or IP address of sync target cluster.  Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association.\n","type":"string"},"targetPath":{"description":"Absolute filesystem path on the target cluster for the sync destination.\n","type":"string"},"targetSnapshotAlias":{"description":"The alias of the snapshot taken on the target cluster after the sync completes. Do not use the value `DEFAULT`.\n","type":"string"},"targetSnapshotArchive":{"description":"If true, archival snapshots of the target data will be taken on the target cluster after successful sync completions.\n","type":"boolean"},"targetSnapshotExpiration":{"description":"The length of time in seconds to keep snapshots on the target cluster.\n","type":"number"},"targetSnapshotPattern":{"description":"The name pattern for snapshots taken on the target cluster after the sync completes. Do not use the value `@DEFAULT`.\n","type":"string"},"workersPerNode":{"description":"The number of worker threads on a node performing a sync.\n","type":"number"}},"properties":{"acceleratedFailback":{"description":"If set to true, SyncIQ will perform failback configuration tasks during the next job run, rather than waiting to perform those tasks during the failback process. Performing these tasks ahead of time will increase the speed of failback operations.\n","type":"boolean"},"action":{"description":"If 'copy', source files will be copied to the target cluster.  If 'sync', the target directory will be made an image of the source directory:  Files and directories that have been deleted on the source, have been moved within the target directory, or no longer match the selection criteria will be deleted from the target directory.\n","type":"string"},"allowCopyFb":{"description":"If set to true, SyncIQ will allow a policy with copy action failback which is not supported by default.\n","type":"boolean"},"bandwidthReservation":{"description":"The desired bandwidth reservation for this policy in kb/s. This feature will not activate unless a SyncIQ bandwidth rule is in effect.\n","type":"number"},"changelist":{"description":"If true, retain previous source snapshot and incremental repstate, both of which are required for changelist creation.\n","type":"boolean"},"checkIntegrity":{"description":"If true, the sync target performs cyclic redundancy checks (CRC) on the data as it is received.\n","type":"boolean"},"cloudDeepCopy":{"description":"If set to deny, replicates all CloudPools smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, the job will fail. If set to force, replicates all smartlinks to the target cluster as regular files. If set to allow, SyncIQ will attempt to replicate smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, SyncIQ will replicate the smartlinks as regular files.\n","type":"string"},"conflicted":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  If true, the most recent run of this policy encountered an error and this policy will not start any more scheduled jobs until this field is manually set back to 'false'.\n","type":"boolean"},"deleteQuotas":{"description":"If true, forcibly remove quotas on the target after they have been removed on the source.\n","type":"boolean"},"description":{"description":"User-assigned description of this sync policy.\n","type":"string"},"disableFileSplit":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  If true, the 7.2+ file splitting capability will be disabled.\n","type":"boolean"},"disableFofb":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Enable/disable sync failover/failback.\n","type":"boolean"},"disableQuotaTmpDir":{"description":"If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas.\n","type":"boolean"},"disableStf":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Enable/disable the 6.5+ STF based data transfer and uses only treewalk.\n","type":"boolean"},"enableHashTmpdir":{"description":"If true, syncs will use temporary working directory subdirectories to reduce lock contention.\n","type":"boolean"},"enabled":{"description":"If true, jobs will be automatically run based on this policy, according to its schedule.\n","type":"boolean"},"encryptionCipherList":{"description":"The cipher list (comma separated) being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.\n","type":"string"},"expectedDataloss":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Continue sending files even with the corrupted filesystem.\n","type":"boolean"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FSynciqPolicyFileMatchingPattern:SynciqPolicyFileMatchingPattern","description":"A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties.  Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria.\n"},"forceInterface":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Determines whether data is sent only through the subnet and pool specified in the \"source*network\" field. This option can be useful if there are multiple interfaces for the given source subnet.  If you enable this option, the net.inet.ip.choose*ifa*by*ipsrc sysctl should be set.\n","type":"boolean"},"ignoreRecursiveQuota":{"description":"If set to true, SyncIQ will not check the recursive quota in target paths to aid in replication to target paths which contain no quota but target cluster has lots of quotas.\n","type":"boolean"},"jobDelay":{"description":"If <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to `when-source-modified`, the duration to wait after a modification is made before starting a job (default is 0 seconds).\n","type":"number"},"logLevel":{"description":"Severity an event must reach before it is logged. Accepted values are <span pulumi-lang-nodejs=\"`fatal`\" pulumi-lang-dotnet=\"`Fatal`\" pulumi-lang-go=\"`fatal`\" pulumi-lang-python=\"`fatal`\" pulumi-lang-yaml=\"`fatal`\" pulumi-lang-java=\"`fatal`\">`fatal`</span>, <span pulumi-lang-nodejs=\"`error`\" pulumi-lang-dotnet=\"`Error`\" pulumi-lang-go=\"`error`\" pulumi-lang-python=\"`error`\" pulumi-lang-yaml=\"`error`\" pulumi-lang-java=\"`error`\">`error`</span>, <span pulumi-lang-nodejs=\"`notice`\" pulumi-lang-dotnet=\"`Notice`\" pulumi-lang-go=\"`notice`\" pulumi-lang-python=\"`notice`\" pulumi-lang-yaml=\"`notice`\" pulumi-lang-java=\"`notice`\">`notice`</span>, <span pulumi-lang-nodejs=\"`info`\" pulumi-lang-dotnet=\"`Info`\" pulumi-lang-go=\"`info`\" pulumi-lang-python=\"`info`\" pulumi-lang-yaml=\"`info`\" pulumi-lang-java=\"`info`\">`info`</span>, <span pulumi-lang-nodejs=\"`copy`\" pulumi-lang-dotnet=\"`Copy`\" pulumi-lang-go=\"`copy`\" pulumi-lang-python=\"`copy`\" pulumi-lang-yaml=\"`copy`\" pulumi-lang-java=\"`copy`\">`copy`</span>, <span pulumi-lang-nodejs=\"`debug`\" pulumi-lang-dotnet=\"`Debug`\" pulumi-lang-go=\"`debug`\" pulumi-lang-python=\"`debug`\" pulumi-lang-yaml=\"`debug`\" pulumi-lang-java=\"`debug`\">`debug`</span>, <span pulumi-lang-nodejs=\"`trace`\" pulumi-lang-dotnet=\"`Trace`\" pulumi-lang-go=\"`trace`\" pulumi-lang-python=\"`trace`\" pulumi-lang-yaml=\"`trace`\" pulumi-lang-java=\"`trace`\">`trace`</span>.\n","type":"string"},"logRemovedFiles":{"description":"If true, the system will log any files or directories that are deleted due to a sync.\n","type":"boolean"},"name":{"description":"User-assigned name of this sync policy.\n","type":"string"},"ocspAddress":{"description":"The address of the OCSP responder to which to connect. Set to empty string to disable OCSP.\n","type":"string"},"ocspIssuerCertificateId":{"description":"The ID of the certificate authority that issued the certificate whose revocation status is being checked. Set to empty string to disable certificate verification.\n","type":"string"},"password":{"description":"The password for the target cluster. This field is not readable.\n","type":"string"},"priority":{"description":"Determines the priority level of a policy. Policies with higher priority will have precedence to run over lower priority policies. Valid range is [0, 1]. Default is 0.\n","type":"number"},"reportMaxAge":{"description":"Length of time (in seconds) a policy report will be stored.\n","type":"number"},"reportMaxCount":{"description":"Maximum number of policy reports that will be stored on the system.\n","type":"number"},"restrictTargetNetwork":{"description":"If you specify true, and you specify a SmartConnect zone in the <span pulumi-lang-nodejs=\"\"targetHost\"\" pulumi-lang-dotnet=\"\"TargetHost\"\" pulumi-lang-go=\"\"targetHost\"\" pulumi-lang-python=\"\"target_host\"\" pulumi-lang-yaml=\"\"targetHost\"\" pulumi-lang-java=\"\"targetHost\"\">\"target_host\"</span> field, replication policies will connect only to nodes in the specified SmartConnect zone.  If you specify false, replication policies are not restricted to specific nodes on the target cluster.\n","type":"boolean"},"rpoAlert":{"description":"If <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to a time/date, an alert is created if the specified RPO for this policy is exceeded. The default value is 0, which will not generate RPO alerts.\n","type":"number"},"schedule":{"description":"The schedule on which new jobs will be run for this policy.\n","type":"string"},"skipLookup":{"description":"Skip DNS lookup of target IPs.\n","type":"boolean"},"skipWhenSourceUnmodified":{"description":"If true and <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to a time/date, the policy will not run if no changes have been made to the contents of the source directory since the last job successfully completed.\n","type":"boolean"},"snapshotSyncExisting":{"description":"If true, snapshot-triggered syncs will include snapshots taken before policy creation time (requires --schedule when-snapshot-taken).\n","type":"boolean"},"snapshotSyncPattern":{"description":"The naming pattern that a snapshot must match to trigger a sync when the schedule is when-snapshot-taken (default is \"*\").\n","type":"string"},"sourceExcludeDirectories":{"description":"Directories that will be excluded from the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceIncludeDirectories":{"description":"Directories that will be included in the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FSynciqPolicySourceNetwork:SynciqPolicySourceNetwork","description":"Restricts replication policies on the local cluster to running on the specified subnet and pool.\n"},"sourceRootPath":{"description":"The root directory on the source cluster the files will be synced from.  Modifying this field will result in a full synchronization of all data.\n","type":"string"},"sourceSnapshotArchive":{"description":"If true, archival snapshots of the source data will be taken on the source cluster before a sync.\n","type":"boolean"},"sourceSnapshotExpiration":{"description":"The length of time in seconds to keep snapshots on the source cluster.\n","type":"number"},"sourceSnapshotPattern":{"description":"The name pattern for snapshots taken on the source cluster before a sync.\n","type":"string"},"syncExistingSnapshotExpiration":{"description":"If set to true, the expire duration for target archival snapshot is the remaining expire duration of source snapshot, requires --sync-existing-snapshot=true\n","type":"boolean"},"syncExistingTargetSnapshotPattern":{"description":"The naming pattern for snapshot on the destination cluster when --sync-existing-snapshot is true\n","type":"string"},"targetCertificateId":{"description":"The ID of the target cluster certificate being used for encryption. Set to empty string to disable target certificate verification.\n","type":"string"},"targetCompareInitialSync":{"description":"If true, the target creates diffs against the original sync.\n","type":"boolean"},"targetDetectModifications":{"description":"If true, target cluster will detect if files have been changed on the target by legacy tree walk syncs.\n","type":"boolean"},"targetHost":{"description":"Hostname or IP address of sync target cluster.  Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association.\n","type":"string"},"targetPath":{"description":"Absolute filesystem path on the target cluster for the sync destination.\n","type":"string"},"targetSnapshotAlias":{"description":"The alias of the snapshot taken on the target cluster after the sync completes. Do not use the value `DEFAULT`.\n","type":"string"},"targetSnapshotArchive":{"description":"If true, archival snapshots of the target data will be taken on the target cluster after successful sync completions.\n","type":"boolean"},"targetSnapshotExpiration":{"description":"The length of time in seconds to keep snapshots on the target cluster.\n","type":"number"},"targetSnapshotPattern":{"description":"The name pattern for snapshots taken on the target cluster after the sync completes. Do not use the value `@DEFAULT`.\n","type":"string"},"workersPerNode":{"description":"The number of worker threads on a node performing a sync.\n","type":"number"}},"required":["acceleratedFailback","action","allowCopyFb","bandwidthReservation","changelist","checkIntegrity","cloudDeepCopy","conflicted","deleteQuotas","description","disableFileSplit","disableFofb","disableQuotaTmpDir","disableStf","enableHashTmpdir","enabled","encryptionCipherList","expectedDataloss","forceInterface","ignoreRecursiveQuota","jobDelay","logLevel","logRemovedFiles","name","ocspAddress","ocspIssuerCertificateId","priority","reportMaxAge","reportMaxCount","restrictTargetNetwork","rpoAlert","schedule","skipLookup","skipWhenSourceUnmodified","snapshotSyncExisting","snapshotSyncPattern","sourceExcludeDirectories","sourceIncludeDirectories","sourceNetwork","sourceRootPath","sourceSnapshotArchive","sourceSnapshotExpiration","sourceSnapshotPattern","syncExistingSnapshotExpiration","syncExistingTargetSnapshotPattern","targetCertificateId","targetCompareInitialSync","targetDetectModifications","targetHost","targetPath","targetSnapshotAlias","targetSnapshotArchive","targetSnapshotExpiration","targetSnapshotPattern","workersPerNode"],"requiredInputs":["action","sourceRootPath","targetHost","targetPath"],"stateInputs":{"description":"Input properties used for looking up and filtering SynciqPolicy resources.\n","properties":{"acceleratedFailback":{"description":"If set to true, SyncIQ will perform failback configuration tasks during the next job run, rather than waiting to perform those tasks during the failback process. Performing these tasks ahead of time will increase the speed of failback operations.\n","type":"boolean"},"action":{"description":"If 'copy', source files will be copied to the target cluster.  If 'sync', the target directory will be made an image of the source directory:  Files and directories that have been deleted on the source, have been moved within the target directory, or no longer match the selection criteria will be deleted from the target directory.\n","type":"string"},"allowCopyFb":{"description":"If set to true, SyncIQ will allow a policy with copy action failback which is not supported by default.\n","type":"boolean"},"bandwidthReservation":{"description":"The desired bandwidth reservation for this policy in kb/s. This feature will not activate unless a SyncIQ bandwidth rule is in effect.\n","type":"number"},"changelist":{"description":"If true, retain previous source snapshot and incremental repstate, both of which are required for changelist creation.\n","type":"boolean"},"checkIntegrity":{"description":"If true, the sync target performs cyclic redundancy checks (CRC) on the data as it is received.\n","type":"boolean"},"cloudDeepCopy":{"description":"If set to deny, replicates all CloudPools smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, the job will fail. If set to force, replicates all smartlinks to the target cluster as regular files. If set to allow, SyncIQ will attempt to replicate smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, SyncIQ will replicate the smartlinks as regular files.\n","type":"string"},"conflicted":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  If true, the most recent run of this policy encountered an error and this policy will not start any more scheduled jobs until this field is manually set back to 'false'.\n","type":"boolean"},"deleteQuotas":{"description":"If true, forcibly remove quotas on the target after they have been removed on the source.\n","type":"boolean"},"description":{"description":"User-assigned description of this sync policy.\n","type":"string"},"disableFileSplit":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  If true, the 7.2+ file splitting capability will be disabled.\n","type":"boolean"},"disableFofb":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Enable/disable sync failover/failback.\n","type":"boolean"},"disableQuotaTmpDir":{"description":"If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas.\n","type":"boolean"},"disableStf":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Enable/disable the 6.5+ STF based data transfer and uses only treewalk.\n","type":"boolean"},"enableHashTmpdir":{"description":"If true, syncs will use temporary working directory subdirectories to reduce lock contention.\n","type":"boolean"},"enabled":{"description":"If true, jobs will be automatically run based on this policy, according to its schedule.\n","type":"boolean"},"encryptionCipherList":{"description":"The cipher list (comma separated) being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.\n","type":"string"},"expectedDataloss":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Continue sending files even with the corrupted filesystem.\n","type":"boolean"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FSynciqPolicyFileMatchingPattern:SynciqPolicyFileMatchingPattern","description":"A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties.  Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria.\n"},"forceInterface":{"description":"NOTE: This field should not be changed without the help of PowerScale support.  Determines whether data is sent only through the subnet and pool specified in the \"source*network\" field. This option can be useful if there are multiple interfaces for the given source subnet.  If you enable this option, the net.inet.ip.choose*ifa*by*ipsrc sysctl should be set.\n","type":"boolean"},"ignoreRecursiveQuota":{"description":"If set to true, SyncIQ will not check the recursive quota in target paths to aid in replication to target paths which contain no quota but target cluster has lots of quotas.\n","type":"boolean"},"jobDelay":{"description":"If <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to `when-source-modified`, the duration to wait after a modification is made before starting a job (default is 0 seconds).\n","type":"number"},"logLevel":{"description":"Severity an event must reach before it is logged. Accepted values are <span pulumi-lang-nodejs=\"`fatal`\" pulumi-lang-dotnet=\"`Fatal`\" pulumi-lang-go=\"`fatal`\" pulumi-lang-python=\"`fatal`\" pulumi-lang-yaml=\"`fatal`\" pulumi-lang-java=\"`fatal`\">`fatal`</span>, <span pulumi-lang-nodejs=\"`error`\" pulumi-lang-dotnet=\"`Error`\" pulumi-lang-go=\"`error`\" pulumi-lang-python=\"`error`\" pulumi-lang-yaml=\"`error`\" pulumi-lang-java=\"`error`\">`error`</span>, <span pulumi-lang-nodejs=\"`notice`\" pulumi-lang-dotnet=\"`Notice`\" pulumi-lang-go=\"`notice`\" pulumi-lang-python=\"`notice`\" pulumi-lang-yaml=\"`notice`\" pulumi-lang-java=\"`notice`\">`notice`</span>, <span pulumi-lang-nodejs=\"`info`\" pulumi-lang-dotnet=\"`Info`\" pulumi-lang-go=\"`info`\" pulumi-lang-python=\"`info`\" pulumi-lang-yaml=\"`info`\" pulumi-lang-java=\"`info`\">`info`</span>, <span pulumi-lang-nodejs=\"`copy`\" pulumi-lang-dotnet=\"`Copy`\" pulumi-lang-go=\"`copy`\" pulumi-lang-python=\"`copy`\" pulumi-lang-yaml=\"`copy`\" pulumi-lang-java=\"`copy`\">`copy`</span>, <span pulumi-lang-nodejs=\"`debug`\" pulumi-lang-dotnet=\"`Debug`\" pulumi-lang-go=\"`debug`\" pulumi-lang-python=\"`debug`\" pulumi-lang-yaml=\"`debug`\" pulumi-lang-java=\"`debug`\">`debug`</span>, <span pulumi-lang-nodejs=\"`trace`\" pulumi-lang-dotnet=\"`Trace`\" pulumi-lang-go=\"`trace`\" pulumi-lang-python=\"`trace`\" pulumi-lang-yaml=\"`trace`\" pulumi-lang-java=\"`trace`\">`trace`</span>.\n","type":"string"},"logRemovedFiles":{"description":"If true, the system will log any files or directories that are deleted due to a sync.\n","type":"boolean"},"name":{"description":"User-assigned name of this sync policy.\n","type":"string"},"ocspAddress":{"description":"The address of the OCSP responder to which to connect. Set to empty string to disable OCSP.\n","type":"string"},"ocspIssuerCertificateId":{"description":"The ID of the certificate authority that issued the certificate whose revocation status is being checked. Set to empty string to disable certificate verification.\n","type":"string"},"password":{"description":"The password for the target cluster. This field is not readable.\n","type":"string"},"priority":{"description":"Determines the priority level of a policy. Policies with higher priority will have precedence to run over lower priority policies. Valid range is [0, 1]. Default is 0.\n","type":"number"},"reportMaxAge":{"description":"Length of time (in seconds) a policy report will be stored.\n","type":"number"},"reportMaxCount":{"description":"Maximum number of policy reports that will be stored on the system.\n","type":"number"},"restrictTargetNetwork":{"description":"If you specify true, and you specify a SmartConnect zone in the <span pulumi-lang-nodejs=\"\"targetHost\"\" pulumi-lang-dotnet=\"\"TargetHost\"\" pulumi-lang-go=\"\"targetHost\"\" pulumi-lang-python=\"\"target_host\"\" pulumi-lang-yaml=\"\"targetHost\"\" pulumi-lang-java=\"\"targetHost\"\">\"target_host\"</span> field, replication policies will connect only to nodes in the specified SmartConnect zone.  If you specify false, replication policies are not restricted to specific nodes on the target cluster.\n","type":"boolean"},"rpoAlert":{"description":"If <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to a time/date, an alert is created if the specified RPO for this policy is exceeded. The default value is 0, which will not generate RPO alerts.\n","type":"number"},"schedule":{"description":"The schedule on which new jobs will be run for this policy.\n","type":"string"},"skipLookup":{"description":"Skip DNS lookup of target IPs.\n","type":"boolean"},"skipWhenSourceUnmodified":{"description":"If true and <span pulumi-lang-nodejs=\"`schedule`\" pulumi-lang-dotnet=\"`Schedule`\" pulumi-lang-go=\"`schedule`\" pulumi-lang-python=\"`schedule`\" pulumi-lang-yaml=\"`schedule`\" pulumi-lang-java=\"`schedule`\">`schedule`</span> is set to a time/date, the policy will not run if no changes have been made to the contents of the source directory since the last job successfully completed.\n","type":"boolean"},"snapshotSyncExisting":{"description":"If true, snapshot-triggered syncs will include snapshots taken before policy creation time (requires --schedule when-snapshot-taken).\n","type":"boolean"},"snapshotSyncPattern":{"description":"The naming pattern that a snapshot must match to trigger a sync when the schedule is when-snapshot-taken (default is \"*\").\n","type":"string"},"sourceExcludeDirectories":{"description":"Directories that will be excluded from the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceIncludeDirectories":{"description":"Directories that will be included in the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FSynciqPolicySourceNetwork:SynciqPolicySourceNetwork","description":"Restricts replication policies on the local cluster to running on the specified subnet and pool.\n"},"sourceRootPath":{"description":"The root directory on the source cluster the files will be synced from.  Modifying this field will result in a full synchronization of all data.\n","type":"string"},"sourceSnapshotArchive":{"description":"If true, archival snapshots of the source data will be taken on the source cluster before a sync.\n","type":"boolean"},"sourceSnapshotExpiration":{"description":"The length of time in seconds to keep snapshots on the source cluster.\n","type":"number"},"sourceSnapshotPattern":{"description":"The name pattern for snapshots taken on the source cluster before a sync.\n","type":"string"},"syncExistingSnapshotExpiration":{"description":"If set to true, the expire duration for target archival snapshot is the remaining expire duration of source snapshot, requires --sync-existing-snapshot=true\n","type":"boolean"},"syncExistingTargetSnapshotPattern":{"description":"The naming pattern for snapshot on the destination cluster when --sync-existing-snapshot is true\n","type":"string"},"targetCertificateId":{"description":"The ID of the target cluster certificate being used for encryption. Set to empty string to disable target certificate verification.\n","type":"string"},"targetCompareInitialSync":{"description":"If true, the target creates diffs against the original sync.\n","type":"boolean"},"targetDetectModifications":{"description":"If true, target cluster will detect if files have been changed on the target by legacy tree walk syncs.\n","type":"boolean"},"targetHost":{"description":"Hostname or IP address of sync target cluster.  Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association.\n","type":"string"},"targetPath":{"description":"Absolute filesystem path on the target cluster for the sync destination.\n","type":"string"},"targetSnapshotAlias":{"description":"The alias of the snapshot taken on the target cluster after the sync completes. Do not use the value `DEFAULT`.\n","type":"string"},"targetSnapshotArchive":{"description":"If true, archival snapshots of the target data will be taken on the target cluster after successful sync completions.\n","type":"boolean"},"targetSnapshotExpiration":{"description":"The length of time in seconds to keep snapshots on the target cluster.\n","type":"number"},"targetSnapshotPattern":{"description":"The name pattern for snapshots taken on the target cluster after the sync completes. Do not use the value `@DEFAULT`.\n","type":"string"},"workersPerNode":{"description":"The number of worker threads on a node performing a sync.\n","type":"number"}},"type":"object"},"type":"object"},"powerscale:index/synciqReplicationJob:SynciqReplicationJob":{"description":"The PowerScale SyncIQ ReplicationJob resource provides a means of managing replication jobs on PowerScale clusters.\n\t\t This resource allows for the manual triggering of replication jobs to replicate data from a source PowerScale cluster to a target PowerScale cluster. \n\t\t Note: The replication job is an asynchronous operation, and this resource does not provide real-time monitoring of the job's status. \n\t\t To check the status of the job,please use the<span pulumi-lang-nodejs=\" powerscale.getSynciqReplicationReport \" pulumi-lang-dotnet=\" powerscale.getSynciqReplicationReport \" pulumi-lang-go=\" getSynciqReplicationReport \" pulumi-lang-python=\" get_synciq_replication_report \" pulumi-lang-yaml=\" powerscale.getSynciqReplicationReport \" pulumi-lang-java=\" powerscale.getSynciqReplicationReport \"> powerscale.getSynciqReplicationReport </span>datasource.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create and  Update updates the syncIQ Replication Job. Delete will delete job and clear the state file. \n// After `pulumi up` of this example file will perform action on the synciq replicaiton job according to the attributes set in the config\n// PowerScale SynIQ Replication Job allows you to manage the SyncIQ Replication Jobs on the Powerscale array\nconst job1 = new powerscale.SynciqReplicationJob(\"job1\", {\n    action: \"run\",\n    synciqReplicationJobId: \"TerraformPolicy\",\n    isPaused: false,\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create and  Update updates the syncIQ Replication Job. Delete will delete job and clear the state file. \n# After `pulumi up` of this example file will perform action on the synciq replicaiton job according to the attributes set in the config\n# PowerScale SynIQ Replication Job allows you to manage the SyncIQ Replication Jobs on the Powerscale array\njob1 = powerscale.SynciqReplicationJob(\"job1\",\n    action=\"run\",\n    synciq_replication_job_id=\"TerraformPolicy\",\n    is_paused=False)\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create and  Update updates the syncIQ Replication Job. Delete will delete job and clear the state file. \n    // After `pulumi up` of this example file will perform action on the synciq replicaiton job according to the attributes set in the config\n    // PowerScale SynIQ Replication Job allows you to manage the SyncIQ Replication Jobs on the Powerscale array\n    var job1 = new Powerscale.SynciqReplicationJob(\"job1\", new()\n    {\n        Action = \"run\",\n        SynciqReplicationJobId = \"TerraformPolicy\",\n        IsPaused = false,\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create and  Update updates the syncIQ Replication Job. Delete will delete job and clear the state file.\n\t\t// After `pulumi up` of this example file will perform action on the synciq replicaiton job according to the attributes set in the config\n\t\t// PowerScale SynIQ Replication Job allows you to manage the SyncIQ Replication Jobs on the Powerscale array\n\t\t_, err := powerscale.NewSynciqReplicationJob(ctx, \"job1\", &powerscale.SynciqReplicationJobArgs{\n\t\t\tAction:                 pulumi.String(\"run\"),\n\t\t\tSynciqReplicationJobId: pulumi.String(\"TerraformPolicy\"),\n\t\t\tIsPaused:               pulumi.Bool(false),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SynciqReplicationJob;\nimport com.pulumi.powerscale.SynciqReplicationJobArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create and  Update updates the syncIQ Replication Job. Delete will delete job and clear the state file. \n        // After `pulumi up` of this example file will perform action on the synciq replicaiton job according to the attributes set in the config\n        // PowerScale SynIQ Replication Job allows you to manage the SyncIQ Replication Jobs on the Powerscale array\n        var job1 = new SynciqReplicationJob(\"job1\", SynciqReplicationJobArgs.builder()\n            .action(\"run\")\n            .synciqReplicationJobId(\"TerraformPolicy\")\n            .isPaused(false)\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create and  Update updates the syncIQ Replication Job. Delete will delete job and clear the state file. \n  # After `pulumi up` of this example file will perform action on the synciq replicaiton job according to the attributes set in the config\n\n  # PowerScale SynIQ Replication Job allows you to manage the SyncIQ Replication Jobs on the Powerscale array\n  job1:\n    type: powerscale:SynciqReplicationJob\n    properties:\n      action: run\n      synciqReplicationJobId: TerraformPolicy\n      isPaused: false # change job state to running or paused.\n```\n<!--End PulumiCodeChooser -->\n","inputProperties":{"action":{"description":"Action for the job\n\t\t\t run - to start the replication job using synciq policy\n\t\t\t test - to test the replication job using synciq policy,\n\t\t\t resync*prep - Resync*prep is a preparation step in PowerScale SyncIQ replication jobs that helps ensure a successful replication operation by performing a series of checks and verifications on the source and target volumes before starting the replication process.,\n\t\t\t allow*write - allow*write determines whether the replication job allows writes to the target volume during the replication process. When configured, the target volume is writable, and any changes made to the target volume will be replicated to the source volume. This is useful in scenarios where you need to make changes to the target volume, such as updating files or creating new files, while the replication job is running.,\n\t\t\t allow*write*revert - allow*write*revert determines whether the replication job allows writes to the target volume when reverting a replication job. When configure, the target volume is writable during the revert process, allowing changes made to the target volume during the revert process to be replicated to the source volume.\n","type":"string"},"isPaused":{"description":"change job state to running or paused.\n","type":"boolean"},"synciqReplicationJobId":{"description":"ID/Name of the policy\n","type":"string"},"waitTime":{"description":"Wait Time for the job\n","type":"number"}},"properties":{"action":{"description":"Action for the job\n\t\t\t run - to start the replication job using synciq policy\n\t\t\t test - to test the replication job using synciq policy,\n\t\t\t resync*prep - Resync*prep is a preparation step in PowerScale SyncIQ replication jobs that helps ensure a successful replication operation by performing a series of checks and verifications on the source and target volumes before starting the replication process.,\n\t\t\t allow*write - allow*write determines whether the replication job allows writes to the target volume during the replication process. When configured, the target volume is writable, and any changes made to the target volume will be replicated to the source volume. This is useful in scenarios where you need to make changes to the target volume, such as updating files or creating new files, while the replication job is running.,\n\t\t\t allow*write*revert - allow*write*revert determines whether the replication job allows writes to the target volume when reverting a replication job. When configure, the target volume is writable during the revert process, allowing changes made to the target volume during the revert process to be replicated to the source volume.\n","type":"string"},"isPaused":{"description":"change job state to running or paused.\n","type":"boolean"},"synciqReplicationJobId":{"description":"ID/Name of the policy\n","type":"string"},"waitTime":{"description":"Wait Time for the job\n","type":"number"}},"required":["action","isPaused","synciqReplicationJobId","waitTime"],"requiredInputs":["action","synciqReplicationJobId"],"stateInputs":{"description":"Input properties used for looking up and filtering SynciqReplicationJob resources.\n","properties":{"action":{"description":"Action for the job\n\t\t\t run - to start the replication job using synciq policy\n\t\t\t test - to test the replication job using synciq policy,\n\t\t\t resync*prep - Resync*prep is a preparation step in PowerScale SyncIQ replication jobs that helps ensure a successful replication operation by performing a series of checks and verifications on the source and target volumes before starting the replication process.,\n\t\t\t allow*write - allow*write determines whether the replication job allows writes to the target volume during the replication process. When configured, the target volume is writable, and any changes made to the target volume will be replicated to the source volume. This is useful in scenarios where you need to make changes to the target volume, such as updating files or creating new files, while the replication job is running.,\n\t\t\t allow*write*revert - allow*write*revert determines whether the replication job allows writes to the target volume when reverting a replication job. When configure, the target volume is writable during the revert process, allowing changes made to the target volume during the revert process to be replicated to the source volume.\n","type":"string"},"isPaused":{"description":"change job state to running or paused.\n","type":"boolean"},"synciqReplicationJobId":{"description":"ID/Name of the policy\n","type":"string"},"waitTime":{"description":"Wait Time for the job\n","type":"number"}},"type":"object"},"type":"object"},"powerscale:index/synciqRules:SynciqRules":{"description":"This resource is used to manage all the SyncIQ replication Performance Rule entities on PowerScale array.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create and Update updates the syncIQ  replication rules on the PowerScale array.\n// Delete will delete the state file. Import action is also available.\n// After `pulumi up` of this example file will update the settings according to the attributes set in the config\n// PowerScale SynIQ replication rules allows you to manage the replication rules on the Powerscale array\nconst allRules = new powerscale.SynciqRules(\"all_rules\", {\n    bandwidthRules: [\n        {\n            limit: 10000,\n            description: \"Bandwidth limit for Weekend\",\n            schedule: {\n                begin: \"00:00\",\n                daysOfWeeks: [\n                    \"saturday\",\n                    \"sunday\",\n                ],\n                end: \"23:59\",\n            },\n        },\n        {\n            limit: 2000,\n            description: \"Bandwidth limit for Weekdays\",\n            schedule: {\n                daysOfWeeks: [\n                    \"monday\",\n                    \"tuesday\",\n                    \"wednesday\",\n                    \"thursday\",\n                    \"friday\",\n                ],\n            },\n        },\n    ],\n    cpuRules: [{\n        limit: 16,\n        description: \"CPU limit\",\n    }],\n    fileCountRules: [{\n        limit: 50,\n        description: \"File limit\",\n    }],\n    workerRules: [{\n        limit: 10,\n        description: \"Worker limit\",\n        enabled: false,\n    }],\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create and Update updates the syncIQ  replication rules on the PowerScale array.\n# Delete will delete the state file. Import action is also available.\n# After `pulumi up` of this example file will update the settings according to the attributes set in the config\n# PowerScale SynIQ replication rules allows you to manage the replication rules on the Powerscale array\nall_rules = powerscale.SynciqRules(\"all_rules\",\n    bandwidth_rules=[\n        {\n            \"limit\": 10000,\n            \"description\": \"Bandwidth limit for Weekend\",\n            \"schedule\": {\n                \"begin\": \"00:00\",\n                \"days_of_weeks\": [\n                    \"saturday\",\n                    \"sunday\",\n                ],\n                \"end\": \"23:59\",\n            },\n        },\n        {\n            \"limit\": 2000,\n            \"description\": \"Bandwidth limit for Weekdays\",\n            \"schedule\": {\n                \"days_of_weeks\": [\n                    \"monday\",\n                    \"tuesday\",\n                    \"wednesday\",\n                    \"thursday\",\n                    \"friday\",\n                ],\n            },\n        },\n    ],\n    cpu_rules=[{\n        \"limit\": 16,\n        \"description\": \"CPU limit\",\n    }],\n    file_count_rules=[{\n        \"limit\": 50,\n        \"description\": \"File limit\",\n    }],\n    worker_rules=[{\n        \"limit\": 10,\n        \"description\": \"Worker limit\",\n        \"enabled\": False,\n    }])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create and Update updates the syncIQ  replication rules on the PowerScale array.\n    // Delete will delete the state file. Import action is also available.\n    // After `pulumi up` of this example file will update the settings according to the attributes set in the config\n    // PowerScale SynIQ replication rules allows you to manage the replication rules on the Powerscale array\n    var allRules = new Powerscale.SynciqRules(\"all_rules\", new()\n    {\n        BandwidthRules = new[]\n        {\n            new Powerscale.Inputs.SynciqRulesBandwidthRuleArgs\n            {\n                Limit = 10000,\n                Description = \"Bandwidth limit for Weekend\",\n                Schedule = new Powerscale.Inputs.SynciqRulesBandwidthRuleScheduleArgs\n                {\n                    Begin = \"00:00\",\n                    DaysOfWeeks = new[]\n                    {\n                        \"saturday\",\n                        \"sunday\",\n                    },\n                    End = \"23:59\",\n                },\n            },\n            new Powerscale.Inputs.SynciqRulesBandwidthRuleArgs\n            {\n                Limit = 2000,\n                Description = \"Bandwidth limit for Weekdays\",\n                Schedule = new Powerscale.Inputs.SynciqRulesBandwidthRuleScheduleArgs\n                {\n                    DaysOfWeeks = new[]\n                    {\n                        \"monday\",\n                        \"tuesday\",\n                        \"wednesday\",\n                        \"thursday\",\n                        \"friday\",\n                    },\n                },\n            },\n        },\n        CpuRules = new[]\n        {\n            new Powerscale.Inputs.SynciqRulesCpuRuleArgs\n            {\n                Limit = 16,\n                Description = \"CPU limit\",\n            },\n        },\n        FileCountRules = new[]\n        {\n            new Powerscale.Inputs.SynciqRulesFileCountRuleArgs\n            {\n                Limit = 50,\n                Description = \"File limit\",\n            },\n        },\n        WorkerRules = new[]\n        {\n            new Powerscale.Inputs.SynciqRulesWorkerRuleArgs\n            {\n                Limit = 10,\n                Description = \"Worker limit\",\n                Enabled = false,\n            },\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create and Update updates the syncIQ  replication rules on the PowerScale array.\n\t\t// Delete will delete the state file. Import action is also available.\n\t\t// After `pulumi up` of this example file will update the settings according to the attributes set in the config\n\t\t// PowerScale SynIQ replication rules allows you to manage the replication rules on the Powerscale array\n\t\t_, err := powerscale.NewSynciqRules(ctx, \"all_rules\", &powerscale.SynciqRulesArgs{\n\t\t\tBandwidthRules: powerscale.SynciqRulesBandwidthRuleArray{\n\t\t\t\t&powerscale.SynciqRulesBandwidthRuleArgs{\n\t\t\t\t\tLimit:       pulumi.Float64(10000),\n\t\t\t\t\tDescription: pulumi.String(\"Bandwidth limit for Weekend\"),\n\t\t\t\t\tSchedule: &powerscale.SynciqRulesBandwidthRuleScheduleArgs{\n\t\t\t\t\t\tBegin: pulumi.String(\"00:00\"),\n\t\t\t\t\t\tDaysOfWeeks: pulumi.StringArray{\n\t\t\t\t\t\t\tpulumi.String(\"saturday\"),\n\t\t\t\t\t\t\tpulumi.String(\"sunday\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\tEnd: pulumi.String(\"23:59\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t&powerscale.SynciqRulesBandwidthRuleArgs{\n\t\t\t\t\tLimit:       pulumi.Float64(2000),\n\t\t\t\t\tDescription: pulumi.String(\"Bandwidth limit for Weekdays\"),\n\t\t\t\t\tSchedule: &powerscale.SynciqRulesBandwidthRuleScheduleArgs{\n\t\t\t\t\t\tDaysOfWeeks: pulumi.StringArray{\n\t\t\t\t\t\t\tpulumi.String(\"monday\"),\n\t\t\t\t\t\t\tpulumi.String(\"tuesday\"),\n\t\t\t\t\t\t\tpulumi.String(\"wednesday\"),\n\t\t\t\t\t\t\tpulumi.String(\"thursday\"),\n\t\t\t\t\t\t\tpulumi.String(\"friday\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tCpuRules: powerscale.SynciqRulesCpuRuleArray{\n\t\t\t\t&powerscale.SynciqRulesCpuRuleArgs{\n\t\t\t\t\tLimit:       pulumi.Float64(16),\n\t\t\t\t\tDescription: pulumi.String(\"CPU limit\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\tFileCountRules: powerscale.SynciqRulesFileCountRuleArray{\n\t\t\t\t&powerscale.SynciqRulesFileCountRuleArgs{\n\t\t\t\t\tLimit:       pulumi.Float64(50),\n\t\t\t\t\tDescription: pulumi.String(\"File limit\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\tWorkerRules: powerscale.SynciqRulesWorkerRuleArray{\n\t\t\t\t&powerscale.SynciqRulesWorkerRuleArgs{\n\t\t\t\t\tLimit:       pulumi.Float64(10),\n\t\t\t\t\tDescription: pulumi.String(\"Worker limit\"),\n\t\t\t\t\tEnabled:     pulumi.Bool(false),\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.SynciqRules;\nimport com.pulumi.powerscale.SynciqRulesArgs;\nimport com.pulumi.powerscale.inputs.SynciqRulesBandwidthRuleArgs;\nimport com.pulumi.powerscale.inputs.SynciqRulesBandwidthRuleScheduleArgs;\nimport com.pulumi.powerscale.inputs.SynciqRulesCpuRuleArgs;\nimport com.pulumi.powerscale.inputs.SynciqRulesFileCountRuleArgs;\nimport com.pulumi.powerscale.inputs.SynciqRulesWorkerRuleArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create and Update updates the syncIQ  replication rules on the PowerScale array.\n        // Delete will delete the state file. Import action is also available.\n        // After `pulumi up` of this example file will update the settings according to the attributes set in the config\n        // PowerScale SynIQ replication rules allows you to manage the replication rules on the Powerscale array\n        var allRules = new SynciqRules(\"allRules\", SynciqRulesArgs.builder()\n            .bandwidthRules(            \n                SynciqRulesBandwidthRuleArgs.builder()\n                    .limit(10000.0)\n                    .description(\"Bandwidth limit for Weekend\")\n                    .schedule(SynciqRulesBandwidthRuleScheduleArgs.builder()\n                        .begin(\"00:00\")\n                        .daysOfWeeks(                        \n                            \"saturday\",\n                            \"sunday\")\n                        .end(\"23:59\")\n                        .build())\n                    .build(),\n                SynciqRulesBandwidthRuleArgs.builder()\n                    .limit(2000.0)\n                    .description(\"Bandwidth limit for Weekdays\")\n                    .schedule(SynciqRulesBandwidthRuleScheduleArgs.builder()\n                        .daysOfWeeks(                        \n                            \"monday\",\n                            \"tuesday\",\n                            \"wednesday\",\n                            \"thursday\",\n                            \"friday\")\n                        .build())\n                    .build())\n            .cpuRules(SynciqRulesCpuRuleArgs.builder()\n                .limit(16.0)\n                .description(\"CPU limit\")\n                .build())\n            .fileCountRules(SynciqRulesFileCountRuleArgs.builder()\n                .limit(50.0)\n                .description(\"File limit\")\n                .build())\n            .workerRules(SynciqRulesWorkerRuleArgs.builder()\n                .limit(10.0)\n                .description(\"Worker limit\")\n                .enabled(false)\n                .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create and Update updates the syncIQ  replication rules on the PowerScale array.\n  # Delete will delete the state file. Import action is also available.\n  # After `pulumi up` of this example file will update the settings according to the attributes set in the config\n\n  # PowerScale SynIQ replication rules allows you to manage the replication rules on the Powerscale array\n  allRules:\n    type: powerscale:SynciqRules\n    name: all_rules\n    properties:\n      bandwidthRules:\n        - limit: 10000\n          description: Bandwidth limit for Weekend\n          schedule:\n            begin: 00:00\n            daysOfWeeks:\n              - saturday\n              - sunday\n            end: 23:59\n        - limit: 2000\n          description: Bandwidth limit for Weekdays\n          schedule:\n            daysOfWeeks:\n              - monday\n              - tuesday\n              - wednesday\n              - thursday\n              - friday\n      cpuRules:\n        - limit: 16\n          description: CPU limit\n      fileCountRules:\n        - limit: 50\n          description: File limit\n      workerRules:\n        - limit: 10\n          description: Worker limit\n          enabled: false\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/synciqRules:SynciqRules all_rules <anystring>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/synciqRules:SynciqRules all_rules do_not_care\n```\n\nafter running this command, populate any required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"bandwidthRules":{"description":"List of bandwidth rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesBandwidthRule:SynciqRulesBandwidthRule"},"type":"array"},"cpuRules":{"description":"List of CPU rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesCpuRule:SynciqRulesCpuRule"},"type":"array"},"fileCountRules":{"description":"List of file count rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesFileCountRule:SynciqRulesFileCountRule"},"type":"array"},"workerRules":{"description":"List of worker rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesWorkerRule:SynciqRulesWorkerRule"},"type":"array"}},"properties":{"bandwidthRules":{"description":"List of bandwidth rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesBandwidthRule:SynciqRulesBandwidthRule"},"type":"array"},"cpuRules":{"description":"List of CPU rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesCpuRule:SynciqRulesCpuRule"},"type":"array"},"fileCountRules":{"description":"List of file count rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesFileCountRule:SynciqRulesFileCountRule"},"type":"array"},"workerRules":{"description":"List of worker rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesWorkerRule:SynciqRulesWorkerRule"},"type":"array"}},"required":["bandwidthRules","cpuRules","fileCountRules","workerRules"],"stateInputs":{"description":"Input properties used for looking up and filtering SynciqRules resources.\n","properties":{"bandwidthRules":{"description":"List of bandwidth rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesBandwidthRule:SynciqRulesBandwidthRule"},"type":"array"},"cpuRules":{"description":"List of CPU rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesCpuRule:SynciqRulesCpuRule"},"type":"array"},"fileCountRules":{"description":"List of file count rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesFileCountRule:SynciqRulesFileCountRule"},"type":"array"},"workerRules":{"description":"List of worker rules.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqRulesWorkerRule:SynciqRulesWorkerRule"},"type":"array"}},"type":"object"},"type":"object"},"powerscale:index/user:User":{"description":"This resource is used to manage the User entity of PowerScale Array. We can Create, Update and Delete the User using this resource. We can also import an existing User from PowerScale array. PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// After `pulumi up` of this example file it will create a new user with the name set in `name` attribute on the PowerScale.\n// PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\nconst testUser = new powerscale.User(\"testUser\", {name: \"testUserResourceSample\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# After `pulumi up` of this example file it will create a new user with the name set in `name` attribute on the PowerScale.\n# PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\ntest_user = powerscale.User(\"testUser\", name=\"testUserResourceSample\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // After `pulumi up` of this example file it will create a new user with the name set in `name` attribute on the PowerScale.\n    // PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n    var testUser = new Powerscale.User(\"testUser\", new()\n    {\n        Name = \"testUserResourceSample\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// After `pulumi up` of this example file it will create a new user with the name set in `name` attribute on the PowerScale.\n\t\t// PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n\t\t_, err := powerscale.NewUser(ctx, \"testUser\", &powerscale.UserArgs{\n\t\t\tName: pulumi.String(\"testUserResourceSample\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.User;\nimport com.pulumi.powerscale.UserArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // After `pulumi up` of this example file it will create a new user with the name set in `name` attribute on the PowerScale.\n        // PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n        var testUser = new User(\"testUser\", UserArgs.builder()\n            .name(\"testUserResourceSample\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # After `pulumi up` of this example file it will create a new user with the name set in `name` attribute on the PowerScale.\n\n  # PowerScale User allows you to authenticate through a local authentication provider. Remote users are restricted to read-only operations.\n  testUser:\n    type: powerscale:User\n    properties:\n      name: testUserResourceSample\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/user:User testUser [<zoneID>:]<userName>\n```\n\nExample1, <zoneID> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/user:User testUser userName\n```\n\nExample2:\n\n```sh\n$ pulumi import powerscale:index/user:User testUser zoneID:userName\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"domain":{"description":"Specifies the domain that the object is part of. Cannot be updated.\n","type":"string"},"email":{"description":"Specifies an email address.\n","type":"string"},"enabled":{"description":"If true, the authenticated user is enabled.\n","type":"boolean"},"expiry":{"description":"Specifies the Unix Epoch time at which the authenticated user will expire.\n","type":"number"},"gecos":{"description":"Specifies the GECOS value, which is usually the full name.\n","type":"string"},"homeDirectory":{"description":"Specifies a home directory for the user.\n","type":"string"},"name":{"description":"Specifies a user name. Cannot be updated.\n","type":"string"},"password":{"description":"Sets or Changes the password for the user.\n","secret":true,"type":"string"},"passwordExpires":{"description":"If true, the password is allowed to expire.\n","type":"boolean"},"primaryGroup":{"description":"Specifies the name of the primary group.\n","type":"string"},"promptPasswordChange":{"description":"If true, Prompts the user to change their password at the next login.\n","type":"boolean"},"queryForce":{"description":"If true, skip validation checks when creating user. Need to be true, when changing user UID.\n","type":"boolean"},"queryProvider":{"description":"Specifies the provider type. Cannot be updated.\n","type":"string"},"queryZone":{"description":"Specifies the zone that the object belongs to. Cannot be updated.\n","type":"string"},"roles":{"description":"List of roles, the user is assigned.\n","items":{"type":"string"},"type":"array"},"shell":{"description":"Specifies a path to the shell for the user.\n","type":"string"},"sid":{"description":"Specifies a security identifier. Cannot be updated.\n","type":"string"},"uid":{"description":"Specifies a numeric user identifier.\n","type":"number"},"unlock":{"description":"If true, the user account should be unlocked.\n","type":"boolean"}},"properties":{"dn":{"description":"Specifies a principal name for the user.\n","type":"string"},"dnsDomain":{"description":"Specifies the DNS domain.\n","type":"string"},"domain":{"description":"Specifies the domain that the object is part of. Cannot be updated.\n","type":"string"},"email":{"description":"Specifies an email address.\n","type":"string"},"enabled":{"description":"If true, the authenticated user is enabled.\n","type":"boolean"},"expired":{"description":"If true, the authenticated user has expired.\n","type":"boolean"},"expiry":{"description":"Specifies the Unix Epoch time at which the authenticated user will expire.\n","type":"number"},"gecos":{"description":"Specifies the GECOS value, which is usually the full name.\n","type":"string"},"generatedGid":{"description":"If true, the GID was generated.\n","type":"boolean"},"generatedUid":{"description":"If true, the UID was generated.\n","type":"boolean"},"generatedUpn":{"description":"If true, the UPN was generated.\n","type":"boolean"},"gid":{"$ref":"#/types/powerscale:index%2FUserGid:UserGid","description":"Specifies a group identifier.\n"},"homeDirectory":{"description":"Specifies a home directory for the user.\n","type":"string"},"locked":{"description":"If true, indicates that the account is locked.\n","type":"boolean"},"maxPasswordAge":{"description":"Specifies the maximum time in seconds allowed before the password expires.\n","type":"number"},"name":{"description":"Specifies a user name. Cannot be updated.\n","type":"string"},"password":{"description":"Sets or Changes the password for the user.\n","secret":true,"type":"string"},"passwordExpired":{"description":"If true, the password has expired.\n","type":"boolean"},"passwordExpires":{"description":"If true, the password is allowed to expire.\n","type":"boolean"},"passwordExpiry":{"description":"Specifies the time in Unix Epoch seconds that the password will expire.\n","type":"number"},"passwordLastSet":{"description":"Specifies the last time the password was set.\n","type":"number"},"primaryGroup":{"description":"Specifies the name of the primary group.\n","type":"string"},"primaryGroupSid":{"$ref":"#/types/powerscale:index%2FUserPrimaryGroupSid:UserPrimaryGroupSid","description":"Specifies the persona of the primary group.\n"},"promptPasswordChange":{"description":"If true, Prompts the user to change their password at the next login.\n","type":"boolean"},"providerName":{"description":"Specifies the authentication provider that the object belongs to.\n","type":"string"},"queryForce":{"description":"If true, skip validation checks when creating user. Need to be true, when changing user UID.\n","type":"boolean"},"queryProvider":{"description":"Specifies the provider type. Cannot be updated.\n","type":"string"},"queryZone":{"description":"Specifies the zone that the object belongs to. Cannot be updated.\n","type":"string"},"roles":{"description":"List of roles, the user is assigned.\n","items":{"type":"string"},"type":"array"},"samAccountName":{"description":"Specifies a user name.\n","type":"string"},"shell":{"description":"Specifies a path to the shell for the user.\n","type":"string"},"sid":{"description":"Specifies a security identifier. Cannot be updated.\n","type":"string"},"type":{"description":"Specifies the object type.\n","type":"string"},"uid":{"description":"Specifies a numeric user identifier.\n","type":"number"},"unlock":{"description":"If true, the user account should be unlocked.\n","type":"boolean"},"upn":{"description":"Specifies a principal name for the user.\n","type":"string"},"userCanChangePassword":{"description":"Specifies whether the password for the user can be changed.\n","type":"boolean"}},"required":["dn","dnsDomain","domain","email","enabled","expired","expiry","gecos","generatedGid","generatedUid","generatedUpn","gid","homeDirectory","locked","maxPasswordAge","name","passwordExpired","passwordExpires","passwordExpiry","passwordLastSet","primaryGroup","primaryGroupSid","promptPasswordChange","providerName","samAccountName","shell","sid","type","uid","upn","userCanChangePassword"],"stateInputs":{"description":"Input properties used for looking up and filtering User resources.\n","properties":{"dn":{"description":"Specifies a principal name for the user.\n","type":"string"},"dnsDomain":{"description":"Specifies the DNS domain.\n","type":"string"},"domain":{"description":"Specifies the domain that the object is part of. Cannot be updated.\n","type":"string"},"email":{"description":"Specifies an email address.\n","type":"string"},"enabled":{"description":"If true, the authenticated user is enabled.\n","type":"boolean"},"expired":{"description":"If true, the authenticated user has expired.\n","type":"boolean"},"expiry":{"description":"Specifies the Unix Epoch time at which the authenticated user will expire.\n","type":"number"},"gecos":{"description":"Specifies the GECOS value, which is usually the full name.\n","type":"string"},"generatedGid":{"description":"If true, the GID was generated.\n","type":"boolean"},"generatedUid":{"description":"If true, the UID was generated.\n","type":"boolean"},"generatedUpn":{"description":"If true, the UPN was generated.\n","type":"boolean"},"gid":{"$ref":"#/types/powerscale:index%2FUserGid:UserGid","description":"Specifies a group identifier.\n"},"homeDirectory":{"description":"Specifies a home directory for the user.\n","type":"string"},"locked":{"description":"If true, indicates that the account is locked.\n","type":"boolean"},"maxPasswordAge":{"description":"Specifies the maximum time in seconds allowed before the password expires.\n","type":"number"},"name":{"description":"Specifies a user name. Cannot be updated.\n","type":"string"},"password":{"description":"Sets or Changes the password for the user.\n","secret":true,"type":"string"},"passwordExpired":{"description":"If true, the password has expired.\n","type":"boolean"},"passwordExpires":{"description":"If true, the password is allowed to expire.\n","type":"boolean"},"passwordExpiry":{"description":"Specifies the time in Unix Epoch seconds that the password will expire.\n","type":"number"},"passwordLastSet":{"description":"Specifies the last time the password was set.\n","type":"number"},"primaryGroup":{"description":"Specifies the name of the primary group.\n","type":"string"},"primaryGroupSid":{"$ref":"#/types/powerscale:index%2FUserPrimaryGroupSid:UserPrimaryGroupSid","description":"Specifies the persona of the primary group.\n"},"promptPasswordChange":{"description":"If true, Prompts the user to change their password at the next login.\n","type":"boolean"},"providerName":{"description":"Specifies the authentication provider that the object belongs to.\n","type":"string"},"queryForce":{"description":"If true, skip validation checks when creating user. Need to be true, when changing user UID.\n","type":"boolean"},"queryProvider":{"description":"Specifies the provider type. Cannot be updated.\n","type":"string"},"queryZone":{"description":"Specifies the zone that the object belongs to. Cannot be updated.\n","type":"string"},"roles":{"description":"List of roles, the user is assigned.\n","items":{"type":"string"},"type":"array"},"samAccountName":{"description":"Specifies a user name.\n","type":"string"},"shell":{"description":"Specifies a path to the shell for the user.\n","type":"string"},"sid":{"description":"Specifies a security identifier. Cannot be updated.\n","type":"string"},"type":{"description":"Specifies the object type.\n","type":"string"},"uid":{"description":"Specifies a numeric user identifier.\n","type":"number"},"unlock":{"description":"If true, the user account should be unlocked.\n","type":"boolean"},"upn":{"description":"Specifies a principal name for the user.\n","type":"string"},"userCanChangePassword":{"description":"Specifies whether the password for the user can be changed.\n","type":"boolean"}},"type":"object"},"type":"object"},"powerscale:index/userGroup:UserGroup":{"description":"This resource is used to manage the User Group entity of PowerScale Array. We can Create, Update and Delete the User Group using this resource. We can also import an existing User Group from PowerScale array. PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// After `pulumi up` of this example file it will create a new user group with the name set in `name` attribute on the PowerScale.\n// PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\nconst testUserGroup = new powerscale.UserGroup(\"testUserGroup\", {name: \"testUserGroupResourceSample\"});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# After `pulumi up` of this example file it will create a new user group with the name set in `name` attribute on the PowerScale.\n# PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\ntest_user_group = powerscale.UserGroup(\"testUserGroup\", name=\"testUserGroupResourceSample\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // After `pulumi up` of this example file it will create a new user group with the name set in `name` attribute on the PowerScale.\n    // PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n    var testUserGroup = new Powerscale.UserGroup(\"testUserGroup\", new()\n    {\n        Name = \"testUserGroupResourceSample\",\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// After `pulumi up` of this example file it will create a new user group with the name set in `name` attribute on the PowerScale.\n\t\t// PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n\t\t_, err := powerscale.NewUserGroup(ctx, \"testUserGroup\", &powerscale.UserGroupArgs{\n\t\t\tName: pulumi.String(\"testUserGroupResourceSample\"),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.UserGroup;\nimport com.pulumi.powerscale.UserGroupArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // After `pulumi up` of this example file it will create a new user group with the name set in `name` attribute on the PowerScale.\n        // PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n        var testUserGroup = new UserGroup(\"testUserGroup\", UserGroupArgs.builder()\n            .name(\"testUserGroupResourceSample\")\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # After `pulumi up` of this example file it will create a new user group with the name set in `name` attribute on the PowerScale.\n\n  # PowerScale User Group allows you to do operations on a set of users, groups and well-knowns.\n  testUserGroup:\n    type: powerscale:UserGroup\n    properties:\n      name: testUserGroupResourceSample\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/userGroup:UserGroup testUserGroup [<zoneID>:]<userGroupName>\n```\n\nExample1, <zoneID> is Optional, defaults to System:\n\n```sh\n$ pulumi import powerscale:index/userGroup:UserGroup testUserGroup userGroupName\n```\n\nExample2:\n\n```sh\n$ pulumi import powerscale:index/userGroup:UserGroup testUserGroup zoneID:userGroupName\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"domain":{"description":"Specifies the domain that the object is part of. Cannot be updated.\n","type":"string"},"gid":{"description":"Specifies a numeric user group identifier.\n","type":"number"},"groups":{"description":"Specifies list members of group within the group.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Specifies a user group name. Cannot be updated.\n","type":"string"},"queryForce":{"description":"If true, skip validation checks when creating user group. Need to be true, when changing group GID.\n","type":"boolean"},"queryProvider":{"description":"Specifies the provider type. Cannot be updated.\n","type":"string"},"queryZone":{"description":"Specifies the zone that the object belongs to. Cannot be updated.\n","type":"string"},"roles":{"description":"List of roles, the user is assigned.\n","items":{"type":"string"},"type":"array"},"sid":{"description":"Specifies a security identifier. Cannot be updated.\n","type":"string"},"users":{"description":"Specifies list members of user within the group.\n","items":{"type":"string"},"type":"array"},"wellKnowns":{"description":"Specifies list members of<span pulumi-lang-nodejs=\" wellKnown \" pulumi-lang-dotnet=\" WellKnown \" pulumi-lang-go=\" wellKnown \" pulumi-lang-python=\" well_known \" pulumi-lang-yaml=\" wellKnown \" pulumi-lang-java=\" wellKnown \"> well_known </span>within the group.\n","items":{"type":"string"},"type":"array"}},"properties":{"dn":{"description":"Specifies a principal name for the user group.\n","type":"string"},"dnsDomain":{"description":"Specifies the DNS domain.\n","type":"string"},"domain":{"description":"Specifies the domain that the object is part of. Cannot be updated.\n","type":"string"},"generatedGid":{"description":"If true, the GID was generated.\n","type":"boolean"},"gid":{"description":"Specifies a numeric user group identifier.\n","type":"number"},"groups":{"description":"Specifies list members of group within the group.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Specifies a user group name. Cannot be updated.\n","type":"string"},"providerName":{"description":"Specifies the authentication provider that the object belongs to.\n","type":"string"},"queryForce":{"description":"If true, skip validation checks when creating user group. Need to be true, when changing group GID.\n","type":"boolean"},"queryProvider":{"description":"Specifies the provider type. Cannot be updated.\n","type":"string"},"queryZone":{"description":"Specifies the zone that the object belongs to. Cannot be updated.\n","type":"string"},"roles":{"description":"List of roles, the user is assigned.\n","items":{"type":"string"},"type":"array"},"samAccountName":{"description":"Specifies a user group name.\n","type":"string"},"sid":{"description":"Specifies a security identifier. Cannot be updated.\n","type":"string"},"type":{"description":"Specifies the object type.\n","type":"string"},"users":{"description":"Specifies list members of user within the group.\n","items":{"type":"string"},"type":"array"},"wellKnowns":{"description":"Specifies list members of<span pulumi-lang-nodejs=\" wellKnown \" pulumi-lang-dotnet=\" WellKnown \" pulumi-lang-go=\" wellKnown \" pulumi-lang-python=\" well_known \" pulumi-lang-yaml=\" wellKnown \" pulumi-lang-java=\" wellKnown \"> well_known </span>within the group.\n","items":{"type":"string"},"type":"array"}},"required":["dn","dnsDomain","domain","generatedGid","gid","name","providerName","samAccountName","sid","type"],"stateInputs":{"description":"Input properties used for looking up and filtering UserGroup resources.\n","properties":{"dn":{"description":"Specifies a principal name for the user group.\n","type":"string"},"dnsDomain":{"description":"Specifies the DNS domain.\n","type":"string"},"domain":{"description":"Specifies the domain that the object is part of. Cannot be updated.\n","type":"string"},"generatedGid":{"description":"If true, the GID was generated.\n","type":"boolean"},"gid":{"description":"Specifies a numeric user group identifier.\n","type":"number"},"groups":{"description":"Specifies list members of group within the group.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Specifies a user group name. Cannot be updated.\n","type":"string"},"providerName":{"description":"Specifies the authentication provider that the object belongs to.\n","type":"string"},"queryForce":{"description":"If true, skip validation checks when creating user group. Need to be true, when changing group GID.\n","type":"boolean"},"queryProvider":{"description":"Specifies the provider type. Cannot be updated.\n","type":"string"},"queryZone":{"description":"Specifies the zone that the object belongs to. Cannot be updated.\n","type":"string"},"roles":{"description":"List of roles, the user is assigned.\n","items":{"type":"string"},"type":"array"},"samAccountName":{"description":"Specifies a user group name.\n","type":"string"},"sid":{"description":"Specifies a security identifier. Cannot be updated.\n","type":"string"},"type":{"description":"Specifies the object type.\n","type":"string"},"users":{"description":"Specifies list members of user within the group.\n","items":{"type":"string"},"type":"array"},"wellKnowns":{"description":"Specifies list members of<span pulumi-lang-nodejs=\" wellKnown \" pulumi-lang-dotnet=\" WellKnown \" pulumi-lang-go=\" wellKnown \" pulumi-lang-python=\" well_known \" pulumi-lang-yaml=\" wellKnown \" pulumi-lang-java=\" wellKnown \"> well_known </span>within the group.\n","items":{"type":"string"},"type":"array"}},"type":"object"},"type":"object"},"powerscale:index/userMappingRules:UserMappingRules":{"description":"This resource is used to manage the User Mapping Rules entity of PowerScale Array. PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.We can Create, Update and Delete the User Mapping Rules using this resource. We can also import an existing User Mapping Rules from PowerScale array. Note that, User Mapping Rules is the native functionality of PowerScale. When creating the resource, we actually load User Mapping Rules from PowerScale to the resource state.\n\n\n## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\n//Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n//\n//Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n//you may not use this file except in compliance with the License.\n//You may obtain a copy of the License at\n//\n//    http://mozilla.org/MPL/2.0/\n//\n//\n//Unless required by applicable law or agreed to in writing, software\n//distributed under the License is distributed on an \"AS IS\" BASIS,\n//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n//See the License for the specific language governing permissions and\n//limitations under the License.\n// Available actions: Create, Update, Delete and Import.\n// If resource arguments are omitted, `pulumi up` will load User Mapping Rules from PowerScale, and save to terraform state file.\n// If any resource arguments are specified, `pulumi up` will try to load User Mapping Rules (if not loaded) and update the settings.\n// `terraform destroy` will delete the resource from terraform state file rather than deleting User Mapping Rules from PowerScale.\n// For more information, Please check the terraform state file.\n// PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\nconst testUserMappingRules = new powerscale.UserMappingRules(\"testUserMappingRules\", {\n    zone: \"System\",\n    parameters: {\n        defaultUnixUser: {\n            domain: \"domain\",\n            user: \"username\",\n        },\n    },\n    rules: [\n        {\n            operator: \"append\",\n            options: {\n                \"break\": true,\n                defaultUser: {\n                    domain: \"domain\",\n                    user: \"Guest\",\n                },\n                group: true,\n                groups: true,\n                user: true,\n            },\n            targetUser: {\n                domain: \"domain\",\n                user: \"testMappingRule\",\n            },\n            sourceUser: {\n                domain: \"domain\",\n                user: \"Guest\",\n            },\n        },\n        {\n            operator: \"trim\",\n            options: {\n                \"break\": true,\n            },\n            targetUser: {\n                domain: \"domain\",\n                user: \"testMappingRule\",\n            },\n        },\n        {\n            operator: \"union\",\n            options: {\n                \"break\": true,\n                defaultUser: {\n                    domain: \"domain\",\n                    user: \"Guest\",\n                },\n            },\n            targetUser: {\n                user: \"tfaccUserMappungRuleUser\",\n            },\n            sourceUser: {\n                user: \"admin\",\n            },\n        },\n        {\n            operator: \"replace\",\n            options: {\n                \"break\": true,\n                defaultUser: {\n                    domain: \"domain\",\n                    user: \"Guest\",\n                },\n            },\n            targetUser: {\n                domain: \"domain\",\n                user: \"tfaccUserMappungRuleUser\",\n            },\n            sourceUser: {\n                domain: \"domain\",\n                user: \"admin\",\n            },\n        },\n        {\n            operator: \"insert\",\n            options: {\n                \"break\": true,\n                defaultUser: {\n                    domain: \"domain\",\n                    user: \"Guest\",\n                },\n                group: true,\n                groups: true,\n                user: true,\n            },\n            targetUser: {\n                domain: \"domain\",\n                user: \"tfaccUserMappungRuleUser\",\n            },\n            sourceUser: {\n                domain: \"domain\",\n                user: \"admin\",\n            },\n        },\n    ],\n    testMappingUsers: [\n        {\n            name: \"root\",\n            uid: 0,\n        },\n        {\n            name: \"admin\",\n        },\n    ],\n});\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\n#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n#\n#Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n#    http://mozilla.org/MPL/2.0/\n#\n#\n#Unless required by applicable law or agreed to in writing, software\n#distributed under the License is distributed on an \"AS IS\" BASIS,\n#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#See the License for the specific language governing permissions and\n#limitations under the License.\n# Available actions: Create, Update, Delete and Import.\n# If resource arguments are omitted, `pulumi up` will load User Mapping Rules from PowerScale, and save to terraform state file.\n# If any resource arguments are specified, `pulumi up` will try to load User Mapping Rules (if not loaded) and update the settings.\n# `terraform destroy` will delete the resource from terraform state file rather than deleting User Mapping Rules from PowerScale.\n# For more information, Please check the terraform state file.\n# PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\ntest_user_mapping_rules = powerscale.UserMappingRules(\"testUserMappingRules\",\n    zone=\"System\",\n    parameters={\n        \"default_unix_user\": {\n            \"domain\": \"domain\",\n            \"user\": \"username\",\n        },\n    },\n    rules=[\n        {\n            \"operator\": \"append\",\n            \"options\": {\n                \"break_\": True,\n                \"default_user\": {\n                    \"domain\": \"domain\",\n                    \"user\": \"Guest\",\n                },\n                \"group\": True,\n                \"groups\": True,\n                \"user\": True,\n            },\n            \"target_user\": {\n                \"domain\": \"domain\",\n                \"user\": \"testMappingRule\",\n            },\n            \"source_user\": {\n                \"domain\": \"domain\",\n                \"user\": \"Guest\",\n            },\n        },\n        {\n            \"operator\": \"trim\",\n            \"options\": {\n                \"break_\": True,\n            },\n            \"target_user\": {\n                \"domain\": \"domain\",\n                \"user\": \"testMappingRule\",\n            },\n        },\n        {\n            \"operator\": \"union\",\n            \"options\": {\n                \"break_\": True,\n                \"default_user\": {\n                    \"domain\": \"domain\",\n                    \"user\": \"Guest\",\n                },\n            },\n            \"target_user\": {\n                \"user\": \"tfaccUserMappungRuleUser\",\n            },\n            \"source_user\": {\n                \"user\": \"admin\",\n            },\n        },\n        {\n            \"operator\": \"replace\",\n            \"options\": {\n                \"break_\": True,\n                \"default_user\": {\n                    \"domain\": \"domain\",\n                    \"user\": \"Guest\",\n                },\n            },\n            \"target_user\": {\n                \"domain\": \"domain\",\n                \"user\": \"tfaccUserMappungRuleUser\",\n            },\n            \"source_user\": {\n                \"domain\": \"domain\",\n                \"user\": \"admin\",\n            },\n        },\n        {\n            \"operator\": \"insert\",\n            \"options\": {\n                \"break_\": True,\n                \"default_user\": {\n                    \"domain\": \"domain\",\n                    \"user\": \"Guest\",\n                },\n                \"group\": True,\n                \"groups\": True,\n                \"user\": True,\n            },\n            \"target_user\": {\n                \"domain\": \"domain\",\n                \"user\": \"tfaccUserMappungRuleUser\",\n            },\n            \"source_user\": {\n                \"domain\": \"domain\",\n                \"user\": \"admin\",\n            },\n        },\n    ],\n    test_mapping_users=[\n        {\n            \"name\": \"root\",\n            \"uid\": 0,\n        },\n        {\n            \"name\": \"admin\",\n        },\n    ])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(() => \n{\n    //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n    //\n    //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n    //you may not use this file except in compliance with the License.\n    //You may obtain a copy of the License at\n    //\n    //    http://mozilla.org/MPL/2.0/\n    //\n    //\n    //Unless required by applicable law or agreed to in writing, software\n    //distributed under the License is distributed on an \"AS IS\" BASIS,\n    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //See the License for the specific language governing permissions and\n    //limitations under the License.\n    // Available actions: Create, Update, Delete and Import.\n    // If resource arguments are omitted, `pulumi up` will load User Mapping Rules from PowerScale, and save to terraform state file.\n    // If any resource arguments are specified, `pulumi up` will try to load User Mapping Rules (if not loaded) and update the settings.\n    // `terraform destroy` will delete the resource from terraform state file rather than deleting User Mapping Rules from PowerScale.\n    // For more information, Please check the terraform state file.\n    // PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n    var testUserMappingRules = new Powerscale.UserMappingRules(\"testUserMappingRules\", new()\n    {\n        Zone = \"System\",\n        Parameters = new Powerscale.Inputs.UserMappingRulesParametersArgs\n        {\n            DefaultUnixUser = new Powerscale.Inputs.UserMappingRulesParametersDefaultUnixUserArgs\n            {\n                Domain = \"domain\",\n                User = \"username\",\n            },\n        },\n        Rules = new[]\n        {\n            new Powerscale.Inputs.UserMappingRulesRuleArgs\n            {\n                Operator = \"append\",\n                Options = new Powerscale.Inputs.UserMappingRulesRuleOptionsArgs\n                {\n                    Break = true,\n                    DefaultUser = new Powerscale.Inputs.UserMappingRulesRuleOptionsDefaultUserArgs\n                    {\n                        Domain = \"domain\",\n                        User = \"Guest\",\n                    },\n                    Group = true,\n                    Groups = true,\n                    User = true,\n                },\n                TargetUser = new Powerscale.Inputs.UserMappingRulesRuleTargetUserArgs\n                {\n                    Domain = \"domain\",\n                    User = \"testMappingRule\",\n                },\n                SourceUser = new Powerscale.Inputs.UserMappingRulesRuleSourceUserArgs\n                {\n                    Domain = \"domain\",\n                    User = \"Guest\",\n                },\n            },\n            new Powerscale.Inputs.UserMappingRulesRuleArgs\n            {\n                Operator = \"trim\",\n                Options = new Powerscale.Inputs.UserMappingRulesRuleOptionsArgs\n                {\n                    Break = true,\n                },\n                TargetUser = new Powerscale.Inputs.UserMappingRulesRuleTargetUserArgs\n                {\n                    Domain = \"domain\",\n                    User = \"testMappingRule\",\n                },\n            },\n            new Powerscale.Inputs.UserMappingRulesRuleArgs\n            {\n                Operator = \"union\",\n                Options = new Powerscale.Inputs.UserMappingRulesRuleOptionsArgs\n                {\n                    Break = true,\n                    DefaultUser = new Powerscale.Inputs.UserMappingRulesRuleOptionsDefaultUserArgs\n                    {\n                        Domain = \"domain\",\n                        User = \"Guest\",\n                    },\n                },\n                TargetUser = new Powerscale.Inputs.UserMappingRulesRuleTargetUserArgs\n                {\n                    User = \"tfaccUserMappungRuleUser\",\n                },\n                SourceUser = new Powerscale.Inputs.UserMappingRulesRuleSourceUserArgs\n                {\n                    User = \"admin\",\n                },\n            },\n            new Powerscale.Inputs.UserMappingRulesRuleArgs\n            {\n                Operator = \"replace\",\n                Options = new Powerscale.Inputs.UserMappingRulesRuleOptionsArgs\n                {\n                    Break = true,\n                    DefaultUser = new Powerscale.Inputs.UserMappingRulesRuleOptionsDefaultUserArgs\n                    {\n                        Domain = \"domain\",\n                        User = \"Guest\",\n                    },\n                },\n                TargetUser = new Powerscale.Inputs.UserMappingRulesRuleTargetUserArgs\n                {\n                    Domain = \"domain\",\n                    User = \"tfaccUserMappungRuleUser\",\n                },\n                SourceUser = new Powerscale.Inputs.UserMappingRulesRuleSourceUserArgs\n                {\n                    Domain = \"domain\",\n                    User = \"admin\",\n                },\n            },\n            new Powerscale.Inputs.UserMappingRulesRuleArgs\n            {\n                Operator = \"insert\",\n                Options = new Powerscale.Inputs.UserMappingRulesRuleOptionsArgs\n                {\n                    Break = true,\n                    DefaultUser = new Powerscale.Inputs.UserMappingRulesRuleOptionsDefaultUserArgs\n                    {\n                        Domain = \"domain\",\n                        User = \"Guest\",\n                    },\n                    Group = true,\n                    Groups = true,\n                    User = true,\n                },\n                TargetUser = new Powerscale.Inputs.UserMappingRulesRuleTargetUserArgs\n                {\n                    Domain = \"domain\",\n                    User = \"tfaccUserMappungRuleUser\",\n                },\n                SourceUser = new Powerscale.Inputs.UserMappingRulesRuleSourceUserArgs\n                {\n                    Domain = \"domain\",\n                    User = \"admin\",\n                },\n            },\n        },\n        TestMappingUsers = new[]\n        {\n            new Powerscale.Inputs.UserMappingRulesTestMappingUserArgs\n            {\n                Name = \"root\",\n                Uid = 0,\n            },\n            new Powerscale.Inputs.UserMappingRulesTestMappingUserArgs\n            {\n                Name = \"admin\",\n            },\n        },\n    });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t// Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\t\t//\n\t\t// Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n\t\t// you may not use this file except in compliance with the License.\n\t\t// You may obtain a copy of the License at\n\t\t//\n\t\t//\thttp://mozilla.org/MPL/2.0/\n\t\t//\n\t\t// Unless required by applicable law or agreed to in writing, software\n\t\t// distributed under the License is distributed on an \"AS IS\" BASIS,\n\t\t// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t\t// See the License for the specific language governing permissions and\n\t\t// limitations under the License.\n\t\t// Available actions: Create, Update, Delete and Import.\n\t\t// If resource arguments are omitted, `pulumi up` will load User Mapping Rules from PowerScale, and save to terraform state file.\n\t\t// If any resource arguments are specified, `pulumi up` will try to load User Mapping Rules (if not loaded) and update the settings.\n\t\t// `terraform destroy` will delete the resource from terraform state file rather than deleting User Mapping Rules from PowerScale.\n\t\t// For more information, Please check the terraform state file.\n\t\t// PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n\t\t_, err := powerscale.NewUserMappingRules(ctx, \"testUserMappingRules\", &powerscale.UserMappingRulesArgs{\n\t\t\tZone: pulumi.String(\"System\"),\n\t\t\tParameters: &powerscale.UserMappingRulesParametersArgs{\n\t\t\t\tDefaultUnixUser: &powerscale.UserMappingRulesParametersDefaultUnixUserArgs{\n\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\tUser:   pulumi.String(\"username\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\tRules: powerscale.UserMappingRulesRuleArray{\n\t\t\t\t&powerscale.UserMappingRulesRuleArgs{\n\t\t\t\t\tOperator: pulumi.String(\"append\"),\n\t\t\t\t\tOptions: &powerscale.UserMappingRulesRuleOptionsArgs{\n\t\t\t\t\t\tBreak: pulumi.Bool(true),\n\t\t\t\t\t\tDefaultUser: &powerscale.UserMappingRulesRuleOptionsDefaultUserArgs{\n\t\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\t\tUser:   pulumi.String(\"Guest\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\tGroup:  pulumi.Bool(true),\n\t\t\t\t\t\tGroups: pulumi.Bool(true),\n\t\t\t\t\t\tUser:   pulumi.Bool(true),\n\t\t\t\t\t},\n\t\t\t\t\tTargetUser: &powerscale.UserMappingRulesRuleTargetUserArgs{\n\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\tUser:   pulumi.String(\"testMappingRule\"),\n\t\t\t\t\t},\n\t\t\t\t\tSourceUser: &powerscale.UserMappingRulesRuleSourceUserArgs{\n\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\tUser:   pulumi.String(\"Guest\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t&powerscale.UserMappingRulesRuleArgs{\n\t\t\t\t\tOperator: pulumi.String(\"trim\"),\n\t\t\t\t\tOptions: &powerscale.UserMappingRulesRuleOptionsArgs{\n\t\t\t\t\t\tBreak: pulumi.Bool(true),\n\t\t\t\t\t},\n\t\t\t\t\tTargetUser: &powerscale.UserMappingRulesRuleTargetUserArgs{\n\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\tUser:   pulumi.String(\"testMappingRule\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t&powerscale.UserMappingRulesRuleArgs{\n\t\t\t\t\tOperator: pulumi.String(\"union\"),\n\t\t\t\t\tOptions: &powerscale.UserMappingRulesRuleOptionsArgs{\n\t\t\t\t\t\tBreak: pulumi.Bool(true),\n\t\t\t\t\t\tDefaultUser: &powerscale.UserMappingRulesRuleOptionsDefaultUserArgs{\n\t\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\t\tUser:   pulumi.String(\"Guest\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\tTargetUser: &powerscale.UserMappingRulesRuleTargetUserArgs{\n\t\t\t\t\t\tUser: pulumi.String(\"tfaccUserMappungRuleUser\"),\n\t\t\t\t\t},\n\t\t\t\t\tSourceUser: &powerscale.UserMappingRulesRuleSourceUserArgs{\n\t\t\t\t\t\tUser: pulumi.String(\"admin\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t&powerscale.UserMappingRulesRuleArgs{\n\t\t\t\t\tOperator: pulumi.String(\"replace\"),\n\t\t\t\t\tOptions: &powerscale.UserMappingRulesRuleOptionsArgs{\n\t\t\t\t\t\tBreak: pulumi.Bool(true),\n\t\t\t\t\t\tDefaultUser: &powerscale.UserMappingRulesRuleOptionsDefaultUserArgs{\n\t\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\t\tUser:   pulumi.String(\"Guest\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\tTargetUser: &powerscale.UserMappingRulesRuleTargetUserArgs{\n\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\tUser:   pulumi.String(\"tfaccUserMappungRuleUser\"),\n\t\t\t\t\t},\n\t\t\t\t\tSourceUser: &powerscale.UserMappingRulesRuleSourceUserArgs{\n\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\tUser:   pulumi.String(\"admin\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t&powerscale.UserMappingRulesRuleArgs{\n\t\t\t\t\tOperator: pulumi.String(\"insert\"),\n\t\t\t\t\tOptions: &powerscale.UserMappingRulesRuleOptionsArgs{\n\t\t\t\t\t\tBreak: pulumi.Bool(true),\n\t\t\t\t\t\tDefaultUser: &powerscale.UserMappingRulesRuleOptionsDefaultUserArgs{\n\t\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\t\tUser:   pulumi.String(\"Guest\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\tGroup:  pulumi.Bool(true),\n\t\t\t\t\t\tGroups: pulumi.Bool(true),\n\t\t\t\t\t\tUser:   pulumi.Bool(true),\n\t\t\t\t\t},\n\t\t\t\t\tTargetUser: &powerscale.UserMappingRulesRuleTargetUserArgs{\n\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\tUser:   pulumi.String(\"tfaccUserMappungRuleUser\"),\n\t\t\t\t\t},\n\t\t\t\t\tSourceUser: &powerscale.UserMappingRulesRuleSourceUserArgs{\n\t\t\t\t\t\tDomain: pulumi.String(\"domain\"),\n\t\t\t\t\t\tUser:   pulumi.String(\"admin\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tTestMappingUsers: powerscale.UserMappingRulesTestMappingUserArray{\n\t\t\t\t&powerscale.UserMappingRulesTestMappingUserArgs{\n\t\t\t\t\tName: pulumi.String(\"root\"),\n\t\t\t\t\tUid:  pulumi.Float64(0),\n\t\t\t\t},\n\t\t\t\t&powerscale.UserMappingRulesTestMappingUserArgs{\n\t\t\t\t\tName: pulumi.String(\"admin\"),\n\t\t\t\t},\n\t\t\t},\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.powerscale.UserMappingRules;\nimport com.pulumi.powerscale.UserMappingRulesArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesParametersArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesParametersDefaultUnixUserArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesRuleArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesRuleOptionsArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesRuleOptionsDefaultUserArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesRuleTargetUserArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesRuleSourceUserArgs;\nimport com.pulumi.powerscale.inputs.UserMappingRulesTestMappingUserArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n    public static void main(String[] args) {\n        Pulumi.run(App::stack);\n    }\n\n    public static void stack(Context ctx) {\n        //Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n        //\n        //Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n        //you may not use this file except in compliance with the License.\n        //You may obtain a copy of the License at\n        //\n        //    http://mozilla.org/MPL/2.0/\n        //\n        //\n        //Unless required by applicable law or agreed to in writing, software\n        //distributed under the License is distributed on an \"AS IS\" BASIS,\n        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n        //See the License for the specific language governing permissions and\n        //limitations under the License.\n        // Available actions: Create, Update, Delete and Import.\n        // If resource arguments are omitted, `pulumi up` will load User Mapping Rules from PowerScale, and save to terraform state file.\n        // If any resource arguments are specified, `pulumi up` will try to load User Mapping Rules (if not loaded) and update the settings.\n        // `terraform destroy` will delete the resource from terraform state file rather than deleting User Mapping Rules from PowerScale.\n        // For more information, Please check the terraform state file.\n        // PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n        var testUserMappingRules = new UserMappingRules(\"testUserMappingRules\", UserMappingRulesArgs.builder()\n            .zone(\"System\")\n            .parameters(UserMappingRulesParametersArgs.builder()\n                .defaultUnixUser(UserMappingRulesParametersDefaultUnixUserArgs.builder()\n                    .domain(\"domain\")\n                    .user(\"username\")\n                    .build())\n                .build())\n            .rules(            \n                UserMappingRulesRuleArgs.builder()\n                    .operator(\"append\")\n                    .options(UserMappingRulesRuleOptionsArgs.builder()\n                        .break_(true)\n                        .defaultUser(UserMappingRulesRuleOptionsDefaultUserArgs.builder()\n                            .domain(\"domain\")\n                            .user(\"Guest\")\n                            .build())\n                        .group(true)\n                        .groups(true)\n                        .user(true)\n                        .build())\n                    .targetUser(UserMappingRulesRuleTargetUserArgs.builder()\n                        .domain(\"domain\")\n                        .user(\"testMappingRule\")\n                        .build())\n                    .sourceUser(UserMappingRulesRuleSourceUserArgs.builder()\n                        .domain(\"domain\")\n                        .user(\"Guest\")\n                        .build())\n                    .build(),\n                UserMappingRulesRuleArgs.builder()\n                    .operator(\"trim\")\n                    .options(UserMappingRulesRuleOptionsArgs.builder()\n                        .break_(true)\n                        .build())\n                    .targetUser(UserMappingRulesRuleTargetUserArgs.builder()\n                        .domain(\"domain\")\n                        .user(\"testMappingRule\")\n                        .build())\n                    .build(),\n                UserMappingRulesRuleArgs.builder()\n                    .operator(\"union\")\n                    .options(UserMappingRulesRuleOptionsArgs.builder()\n                        .break_(true)\n                        .defaultUser(UserMappingRulesRuleOptionsDefaultUserArgs.builder()\n                            .domain(\"domain\")\n                            .user(\"Guest\")\n                            .build())\n                        .build())\n                    .targetUser(UserMappingRulesRuleTargetUserArgs.builder()\n                        .user(\"tfaccUserMappungRuleUser\")\n                        .build())\n                    .sourceUser(UserMappingRulesRuleSourceUserArgs.builder()\n                        .user(\"admin\")\n                        .build())\n                    .build(),\n                UserMappingRulesRuleArgs.builder()\n                    .operator(\"replace\")\n                    .options(UserMappingRulesRuleOptionsArgs.builder()\n                        .break_(true)\n                        .defaultUser(UserMappingRulesRuleOptionsDefaultUserArgs.builder()\n                            .domain(\"domain\")\n                            .user(\"Guest\")\n                            .build())\n                        .build())\n                    .targetUser(UserMappingRulesRuleTargetUserArgs.builder()\n                        .domain(\"domain\")\n                        .user(\"tfaccUserMappungRuleUser\")\n                        .build())\n                    .sourceUser(UserMappingRulesRuleSourceUserArgs.builder()\n                        .domain(\"domain\")\n                        .user(\"admin\")\n                        .build())\n                    .build(),\n                UserMappingRulesRuleArgs.builder()\n                    .operator(\"insert\")\n                    .options(UserMappingRulesRuleOptionsArgs.builder()\n                        .break_(true)\n                        .defaultUser(UserMappingRulesRuleOptionsDefaultUserArgs.builder()\n                            .domain(\"domain\")\n                            .user(\"Guest\")\n                            .build())\n                        .group(true)\n                        .groups(true)\n                        .user(true)\n                        .build())\n                    .targetUser(UserMappingRulesRuleTargetUserArgs.builder()\n                        .domain(\"domain\")\n                        .user(\"tfaccUserMappungRuleUser\")\n                        .build())\n                    .sourceUser(UserMappingRulesRuleSourceUserArgs.builder()\n                        .domain(\"domain\")\n                        .user(\"admin\")\n                        .build())\n                    .build())\n            .testMappingUsers(            \n                UserMappingRulesTestMappingUserArgs.builder()\n                    .name(\"root\")\n                    .uid(0.0)\n                    .build(),\n                UserMappingRulesTestMappingUserArgs.builder()\n                    .name(\"admin\")\n                    .build())\n            .build());\n\n    }\n}\n```\n```yaml\nresources:\n  # /*\n  # Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\n  # Licensed under the Mozilla Public License Version 2.0 (the \"License\");\n  # you may not use this file except in compliance with the License.\n  # You may obtain a copy of the License at\n\n  #     http://mozilla.org/MPL/2.0/\n\n\n  # Unless required by applicable law or agreed to in writing, software\n  # distributed under the License is distributed on an \"AS IS\" BASIS,\n  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  # See the License for the specific language governing permissions and\n  # limitations under the License.\n  # */\n\n\n\n\n\n  # Available actions: Create, Update, Delete and Import.\n  # If resource arguments are omitted, `pulumi up` will load User Mapping Rules from PowerScale, and save to terraform state file.\n  # If any resource arguments are specified, `pulumi up` will try to load User Mapping Rules (if not loaded) and update the settings.\n  # `terraform destroy` will delete the resource from terraform state file rather than deleting User Mapping Rules from PowerScale.\n  # For more information, Please check the terraform state file.\n\n  # PowerScale User Mapping Rules combines user identities from different directory services into a single access token and then modifies it according to configured rules.\n  testUserMappingRules:\n    type: powerscale:UserMappingRules\n    properties:\n      zone: System\n      parameters:\n        defaultUnixUser:\n          domain: domain\n          user: username\n      rules:\n        - operator: append\n          options:\n            break: true\n            defaultUser:\n              domain: domain\n              user: Guest\n            group: true\n            groups: true\n            user: true\n          targetUser:\n            domain: domain\n            user: testMappingRule\n          sourceUser:\n            domain: domain\n            user: Guest\n        - operator: trim\n          options:\n            break: true\n          targetUser:\n            domain: domain\n            user: testMappingRule\n        - operator: union\n          options:\n            break: true\n            defaultUser:\n              domain: domain\n              user: Guest\n          targetUser:\n            user: tfaccUserMappungRuleUser\n          sourceUser:\n            user: admin\n        - operator: replace\n          options:\n            break: true\n            defaultUser:\n              domain: domain\n              user: Guest\n          targetUser:\n            domain: domain\n            user: tfaccUserMappungRuleUser\n          sourceUser:\n            domain: domain\n            user: admin\n        - operator: insert\n          options:\n            break: true\n            defaultUser:\n              domain: domain\n              user: Guest\n            group: true\n            groups: true\n            user: true\n          targetUser:\n            domain: domain\n            user: tfaccUserMappungRuleUser\n          sourceUser:\n            domain: domain\n            user: admin\n      testMappingUsers:\n        - name: root\n          uid: 0\n        - name: admin\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/userMappingRules:UserMappingRules testUserMappingRules <zoneName>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/userMappingRules:UserMappingRules testUserMappingRules System\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"parameters":{"$ref":"#/types/powerscale:index%2FUserMappingRulesParameters:UserMappingRulesParameters","description":"Specifies the parameters for user mapping rules.\n"},"rules":{"description":"Specifies the list of user mapping rules.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesRule:UserMappingRulesRule"},"type":"array"},"testMappingUsers":{"description":"List of user identity for mapping test.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesTestMappingUser:UserMappingRulesTestMappingUser"},"type":"array"},"zone":{"description":"The zone to which the user mapping applies.\n","type":"string"}},"properties":{"mappingUsers":{"description":"List of test mapping user result.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesMappingUser:UserMappingRulesMappingUser"},"type":"array"},"parameters":{"$ref":"#/types/powerscale:index%2FUserMappingRulesParameters:UserMappingRulesParameters","description":"Specifies the parameters for user mapping rules.\n"},"rules":{"description":"Specifies the list of user mapping rules.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesRule:UserMappingRulesRule"},"type":"array"},"testMappingUsers":{"description":"List of user identity for mapping test.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesTestMappingUser:UserMappingRulesTestMappingUser"},"type":"array"},"zone":{"description":"The zone to which the user mapping applies.\n","type":"string"}},"required":["mappingUsers","parameters","rules"],"stateInputs":{"description":"Input properties used for looking up and filtering UserMappingRules resources.\n","properties":{"mappingUsers":{"description":"List of test mapping user result.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesMappingUser:UserMappingRulesMappingUser"},"type":"array"},"parameters":{"$ref":"#/types/powerscale:index%2FUserMappingRulesParameters:UserMappingRulesParameters","description":"Specifies the parameters for user mapping rules.\n"},"rules":{"description":"Specifies the list of user mapping rules.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesRule:UserMappingRulesRule"},"type":"array"},"testMappingUsers":{"description":"List of user identity for mapping test.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesTestMappingUser:UserMappingRulesTestMappingUser"},"type":"array"},"zone":{"description":"The zone to which the user mapping applies.\n","type":"string"}},"type":"object"},"type":"object"},"powerscale:index/writableSnapshot:WritableSnapshot":{"description":"## Example Usage\n\n<!--Start PulumiCodeChooser -->\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as powerscale from \"@pulumi/powerscale\";\n\nexport = async () => {\n    const config = new pulumi.Config();\n    // The ID of the source snapshot\n    const snapId = config.require(\"snapId\");\n    // The number of writable snapshots to create\n    const numWritableSnapshots = config.getNumber(\"numWritableSnapshots\") || 3;\n    // Example to create multiple writable snapshots from a single snapshot\n    const writablesnapMultiple1: powerscale.WritableSnapshot[] = [];\n    for (const range = {value: 0}; range.value < numWritableSnapshots; range.value++) {\n        writablesnapMultiple1.push(new powerscale.WritableSnapshot(`writablesnap_multiple1-${range.value}`, {\n            dstPath: `/ifs/writable_snapshot_snap${range.value}`,\n            snapId: snapId,\n        }));\n    }\n    // Scenario 2\n    // To create multiple writable snaphots using datasource\n    // Fetch snapshot data using snapshot datasource filters\n    const all = await powerscale.getSnapshot({\n        filter: {},\n    });\n    const writableSnapshots = .map(([i, snap]) => ({\n        dstPath: `/ifs/writable_snapshot${i}`,\n        snapId: snap.id,\n    }));\n    const writablesnapMultiple2: powerscale.WritableSnapshot[] = [];\n    for (const range of Object.entries(.reduce((__obj, snap) => ({ ...__obj, [snap.dstPath]: snap }))).map(([k, v]) => ({key: k, value: v}))) {\n        writablesnapMultiple2.push(new powerscale.WritableSnapshot(`writablesnap_multiple2-${range.key}`, {\n            dstPath: range.value.dstPath,\n            snapId: range.value.snapId,\n        }));\n    }\n    // Scenario 3\n    // To create a single writable snapshot\n    const writablesnapSingle = new powerscale.WritableSnapshot(\"writablesnap_single\", {\n        dstPath: \"/ifs/writable_snapshot\",\n        snapId: \"snap_id\",\n    });\n    return {\n        powerscaleSnapshotAllSnaps: all.snapshotsDetails,\n    };\n}\n```\n```python\nimport pulumi\nimport pulumi_powerscale as powerscale\n\nconfig = pulumi.Config()\n# The ID of the source snapshot\nsnap_id = config.require(\"snapId\")\n# The number of writable snapshots to create\nnum_writable_snapshots = config.get_float(\"numWritableSnapshots\")\nif num_writable_snapshots is None:\n    num_writable_snapshots = 3\n# Example to create multiple writable snapshots from a single snapshot\nwritablesnap_multiple1 = []\nfor range in [{\"value\": i} for i in range(0, num_writable_snapshots)]:\n    writablesnap_multiple1.append(powerscale.WritableSnapshot(f\"writablesnap_multiple1-{range['value']}\",\n        dst_path=f\"/ifs/writable_snapshot_snap{range['value']}\",\n        snap_id=snap_id))\n# Scenario 2\n# To create multiple writable snaphots using datasource\n# Fetch snapshot data using snapshot datasource filters\nall = powerscale.get_snapshot(filter={})\npulumi.export(\"powerscaleSnapshotAllSnaps\", all.snapshots_details)\nwritable_snapshots = [{\n    \"dstPath\": f\"/ifs/writable_snapshot{i}\",\n    \"snapId\": snap.id,\n} for i, snap in all.snapshots_details]\nwritablesnap_multiple2 = []\nfor range in [{\"key\": k, \"value\": v} for [k, v] in enumerate({snap.dst_path: snap for snap in writable_snapshots})]:\n    writablesnap_multiple2.append(powerscale.WritableSnapshot(f\"writablesnap_multiple2-{range['key']}\",\n        dst_path=range[\"value\"][\"dstPath\"],\n        snap_id=range[\"value\"][\"snapId\"]))\n# Scenario 3\n# To create a single writable snapshot\nwritablesnap_single = powerscale.WritableSnapshot(\"writablesnap_single\",\n    dst_path=\"/ifs/writable_snapshot\",\n    snap_id=\"snap_id\")\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Threading.Tasks;\nusing Pulumi;\nusing Powerscale = Pulumi.Powerscale;\n\nreturn await Deployment.RunAsync(async() => \n{\n    var config = new Config();\n    // The ID of the source snapshot\n    var snapId = config.Require(\"snapId\");\n    // The number of writable snapshots to create\n    var numWritableSnapshots = config.GetDouble(\"numWritableSnapshots\") ?? 3;\n    // Example to create multiple writable snapshots from a single snapshot\n    var writablesnapMultiple1 = new List<Powerscale.WritableSnapshot>();\n    for (var rangeIndex = 0; rangeIndex < numWritableSnapshots; rangeIndex++)\n    {\n        var range = new { Value = rangeIndex };\n        writablesnapMultiple1.Add(new Powerscale.WritableSnapshot($\"writablesnap_multiple1-{range.Value}\", new()\n        {\n            DstPath = $\"/ifs/writable_snapshot_snap{range.Value}\",\n            SnapId = snapId,\n        }));\n    }\n    // Scenario 2\n    // To create multiple writable snaphots using datasource\n    // Fetch snapshot data using snapshot datasource filters\n    var all = await Powerscale.GetSnapshot.InvokeAsync(new()\n    {\n        Filter = null,\n    });\n\n    var writableSnapshots = ;\n\n    var writablesnapMultiple2 = new List<Powerscale.WritableSnapshot>();\n    foreach (var range in .Select(pair => new { pair.Key, pair.Value }))\n    {\n        writablesnapMultiple2.Add(new Powerscale.WritableSnapshot($\"writablesnap_multiple2-{range.Key}\", new()\n        {\n            DstPath = range.Value.DstPath,\n            SnapId = range.Value.SnapId,\n        }));\n    }\n    // Scenario 3\n    // To create a single writable snapshot\n    var writablesnapSingle = new Powerscale.WritableSnapshot(\"writablesnap_single\", new()\n    {\n        DstPath = \"/ifs/writable_snapshot\",\n        SnapId = \"snap_id\",\n    });\n\n    return new Dictionary<string, object?>\n    {\n        [\"powerscaleSnapshotAllSnaps\"] = all.SnapshotsDetails,\n    };\n});\n```\n<!--End PulumiCodeChooser -->\n\n## Import\n\nCopyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.\n\nLicensed under the Mozilla Public License Version 2.0 (the \"License\");\n\nyou may not use this file except in compliance with the License.\n\nYou may obtain a copy of the License at\n\n    http://mozilla.org/MPL/2.0/\n\nUnless required by applicable law or agreed to in writing, software\n\ndistributed under the License is distributed on an \"AS IS\" BASIS,\n\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\nSee the License for the specific language governing permissions and\n\nlimitations under the License.\n\nThe command is\n\n```sh\n$ pulumi import powerscale:index/writableSnapshot:WritableSnapshot writablesnap <path of the Snapshot>\n```\n\nExample:\n\n```sh\n$ pulumi import powerscale:index/writableSnapshot:WritableSnapshot writablesnap \"/ifs/abcd\"\n```\n\nafter running this command, populate the name field and other required parameters in the config file to start managing this resource.\n\nNote: 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.\n\n","inputProperties":{"dstPath":{"description":"The destination path for the writable snapshot.\n","type":"string"},"snapId":{"description":"The ID of the source snapshot for the writable snapshot.\n","type":"string"}},"properties":{"dstPath":{"description":"The destination path for the writable snapshot.\n","type":"string"},"snapId":{"description":"The ID of the source snapshot for the writable snapshot.\n","type":"string"},"snapName":{"description":"The name of the source snapshot for the writable snapshot.\n","type":"string"},"srcPath":{"description":"The source path of the writable snapshot.\n","type":"string"},"state":{"description":"The state of the writable snapshot.\n","type":"string"},"writableSnapshotId":{"description":"Unique identifier of the writable snapshot.\n","type":"number"}},"required":["dstPath","snapId","snapName","srcPath","state","writableSnapshotId"],"requiredInputs":["dstPath","snapId"],"stateInputs":{"description":"Input properties used for looking up and filtering WritableSnapshot resources.\n","properties":{"dstPath":{"description":"The destination path for the writable snapshot.\n","type":"string"},"snapId":{"description":"The ID of the source snapshot for the writable snapshot.\n","type":"string"},"snapName":{"description":"The name of the source snapshot for the writable snapshot.\n","type":"string"},"srcPath":{"description":"The source path of the writable snapshot.\n","type":"string"},"state":{"description":"The state of the writable snapshot.\n","type":"string"},"writableSnapshotId":{"description":"Unique identifier of the writable snapshot.\n","type":"number"}},"type":"object"},"type":"object"}},"types":{"powerscale:index/AccesszoneIfsRestricted:AccesszoneIfsRestricted":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/ClusterEmailSettings:ClusterEmailSettings":{"language":{"nodejs":{"requiredOutputs":["batchMode","mailRelay","mailSender","mailSubject","smtpAuthPasswd","smtpAuthPasswdSet","smtpAuthSecurity","smtpAuthUsername","smtpPort","useSmtpAuth","userTemplate"]}},"properties":{"batchMode":{"description":"This setting determines how notifications will be batched together to be sent by email.  'none' means each notification will be sent separately.  'severity' means notifications of the same severity will be sent together.  'category' means notifications of the same category will be sent together.  'all' means all notifications will be batched together and sent in a single email.\n","type":"string"},"mailRelay":{"description":"The address of the SMTP server to be used for relaying the notification messages.  An SMTP server is required in order to send notifications.  If this string is empty, no emails will be sent.\n","type":"string"},"mailSender":{"description":"The full email address that will appear as the sender of notification messages.\n","type":"string"},"mailSubject":{"description":"The subject line for notification messages from this cluster.\n","type":"string"},"smtpAuthPasswd":{"description":"Password to authenticate with if SMTP authentication is being used.\n","type":"string"},"smtpAuthPasswdSet":{"description":"Indicates if an SMTP authentication password is set.\n","type":"boolean"},"smtpAuthSecurity":{"description":"The type of secure communication protocol to use if SMTP is being used.  If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used.\n","type":"string"},"smtpAuthUsername":{"description":"Username to authenticate with if SMTP authentication is being used.\n","type":"string"},"smtpPort":{"description":"The port on the SMTP server to be used for relaying the notification messages.\n","type":"number"},"useSmtpAuth":{"description":"If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails.  If false, the cluster will attempt to send its notification emails without authentication.\n","type":"boolean"},"userTemplate":{"description":"Location of a custom template file that can be used to specify the layout of the notification emails.  If this string is empty, the default template will be used.\n","type":"string"}},"type":"object"},"powerscale:index/ClusterIdentityLogon:ClusterIdentityLogon":{"language":{"nodejs":{"requiredOutputs":["motd","motdHeader"]}},"properties":{"motd":{"description":"The message of the day.\n","type":"string"},"motdHeader":{"description":"The header to the message of the day.\n","type":"string"}},"type":"object"},"powerscale:index/FilepoolPolicyAction:FilepoolPolicyAction":{"properties":{"actionType":{"description":"action*type Acceptable values: set*requested*protection, set*data*access*pattern, enable*coalescer, apply*data*storage*policy, apply*snapshot*storage*policy, set*cloudpool*policy, enable*packing.\n","type":"string"},"cloudpoolPolicyAction":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyActionCloudpoolPolicyAction:FilepoolPolicyActionCloudpoolPolicyAction","description":"Action for set*cloudpool*policy type.\n"},"dataAccessPatternAction":{"description":"Action for set*data*access_pattern type. Set data access pattern optimization. Acceptable values: random, concurrency, streaming.\n","type":"string"},"dataStoragePolicyAction":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyActionDataStoragePolicyAction:FilepoolPolicyActionDataStoragePolicyAction","description":"Action for apply*data*storage*policy.\n"},"enableCoalescerAction":{"description":"Action for<span pulumi-lang-nodejs=\" enableCoalescer \" pulumi-lang-dotnet=\" EnableCoalescer \" pulumi-lang-go=\" enableCoalescer \" pulumi-lang-python=\" enable_coalescer \" pulumi-lang-yaml=\" enableCoalescer \" pulumi-lang-java=\" enableCoalescer \"> enable_coalescer </span>type. Set write performance optimization. True to enable SmartCache action.\n","type":"boolean"},"enablePackingAction":{"description":"Action for enable*packing type. True to enable enable*packing action.\n","type":"boolean"},"requestedProtectionAction":{"description":"Action for set*requested*protection type. Acceptable values: default, +1n, +2d:1n, +2n, +3d:1n, +3d:1n1d, +3n, +4d:1n, +4d:2n, +4n, 2x, 3x, 4x, 5x, 6x, 7x, 8x.\n","type":"string"},"snapshotStoragePolicyAction":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyActionSnapshotStoragePolicyAction:FilepoolPolicyActionSnapshotStoragePolicyAction","description":"Action for apply*snapshot*storage*policy.\n"}},"required":["actionType"],"type":"object"},"powerscale:index/FilepoolPolicyActionCloudpoolPolicyAction:FilepoolPolicyActionCloudpoolPolicyAction":{"language":{"nodejs":{"requiredOutputs":["archiveSnapshotFiles","cache","compression","dataRetention","encryption","fullBackupRetention","incrementalBackupRetention","pool","writebackFrequency"]}},"properties":{"archiveSnapshotFiles":{"description":"Specifies if files with snapshots should be archived.\n","type":"boolean"},"cache":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyActionCloudpoolPolicyActionCache:FilepoolPolicyActionCloudpoolPolicyActionCache","description":"Specifies default cloudpool cache settings for new filepool policies.\n"},"compression":{"description":"Specifies if files should be compressed.\n","type":"boolean"},"dataRetention":{"description":"Specifies the minimum amount of time archived data will be retained in the cloud after deletion.\n","type":"number"},"encryption":{"description":"Specifies if files should be encrypted.\n","type":"boolean"},"fullBackupRetention":{"description":"The minimum amount of time cloud files will be retained after the creation of a full NDMP backup. (Used with NDMP backups only.  Not applicable to SyncIQ.)\n","type":"number"},"incrementalBackupRetention":{"description":"The minimum amount of time cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. (Used with SyncIQ and NDMP backups.)\n","type":"number"},"pool":{"description":"Specifies the cloudPool storage target.\n","type":"string"},"writebackFrequency":{"description":"The minimum amount of time to wait before updating cloud data with local changes.\n","type":"number"}},"required":["pool"],"type":"object"},"powerscale:index/FilepoolPolicyActionCloudpoolPolicyActionCache:FilepoolPolicyActionCloudpoolPolicyActionCache":{"language":{"nodejs":{"requiredOutputs":["expiration","readAhead","type"]}},"properties":{"expiration":{"description":"Specifies cache expiration.\n","type":"number"},"readAhead":{"description":"Specifies cache read ahead type. Acceptable values: partial, full.\n","type":"string"},"type":{"description":"Specifies cache type. Acceptable values: cached, no-cache.\n","type":"string"}},"type":"object"},"powerscale:index/FilepoolPolicyActionDataStoragePolicyAction:FilepoolPolicyActionDataStoragePolicyAction":{"properties":{"ssdStrategy":{"description":"Specifies the SSD strategy. Acceptable values: metadata, metadata-write, data, avoid.\n","type":"string"},"storagepool":{"description":"Specifies the storage target.\n","type":"string"}},"required":["ssdStrategy","storagepool"],"type":"object"},"powerscale:index/FilepoolPolicyActionSnapshotStoragePolicyAction:FilepoolPolicyActionSnapshotStoragePolicyAction":{"properties":{"ssdStrategy":{"description":"Specifies the SSD strategy. Acceptable values: metadata, metadata-write, data, avoid.\n","type":"string"},"storagepool":{"description":"Specifies the snapshot storage target.\n","type":"string"}},"required":["ssdStrategy","storagepool"],"type":"object"},"powerscale:index/FilepoolPolicyFileMatchingPattern:FilepoolPolicyFileMatchingPattern":{"properties":{"orCriterias":{"description":"List of or*criteria file matching rules for this policy.\n","items":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyFileMatchingPatternOrCriteria:FilepoolPolicyFileMatchingPatternOrCriteria"},"type":"array"}},"required":["orCriterias"],"type":"object"},"powerscale:index/FilepoolPolicyFileMatchingPatternOrCriteria:FilepoolPolicyFileMatchingPatternOrCriteria":{"properties":{"andCriterias":{"description":"List of and*criteria file matching rules for this policy.\n","items":{"$ref":"#/types/powerscale:index%2FFilepoolPolicyFileMatchingPatternOrCriteriaAndCriteria:FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteria"},"type":"array"}},"required":["andCriterias"],"type":"object"},"powerscale:index/FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteria:FilepoolPolicyFileMatchingPatternOrCriteriaAndCriteria":{"properties":{"attributeExists":{"description":"Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute').\n","type":"boolean"},"beginsWith":{"description":"True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path').\n","type":"boolean"},"caseSensitive":{"description":"True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path').\n","type":"boolean"},"field":{"description":"File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute').\n","type":"string"},"operator":{"description":"The comparison operator to use while comparing an attribute with its value.\n","type":"string"},"type":{"description":"The file attribute to be compared to a given value.\n","type":"string"},"units":{"description":"Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size').\n","type":"string"},"useRelativeTime":{"description":"Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed*time, birth*time, changed*time or metadata*changed_time}.\n","type":"boolean"},"value":{"description":"The value to be compared against a file attribute.\n","type":"string"}},"required":["type"],"type":"object"},"powerscale:index/FilesystemGroup:FilesystemGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"group identifier\n","type":"string"},"name":{"description":"group name\n","type":"string"},"type":{"description":"group type\n","type":"string"}},"type":"object"},"powerscale:index/FilesystemOwner:FilesystemOwner":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Owner identifier\n","type":"string"},"name":{"description":"Owner name\n","type":"string"},"type":{"description":"Owner type\n","type":"string"}},"type":"object"},"powerscale:index/NamespaceAclAcl:NamespaceAclAcl":{"language":{"nodejs":{"requiredOutputs":["accessrights","accesstype","inheritFlags","op","trustee"]}},"properties":{"accessrights":{"description":"Specifies the access control permissions for a specific user or group.\n","items":{"type":"string"},"type":"array"},"accesstype":{"description":"Grants or denies access control permissions.\n","type":"string"},"inheritFlags":{"description":"Grants or denies access control permissions.\n","items":{"type":"string"},"type":"array"},"op":{"description":"Operations for updating access control permissions. Unnecessary for access right replacing scenario\n","type":"string"},"trustee":{"$ref":"#/types/powerscale:index%2FNamespaceAclAclTrustee:NamespaceAclAclTrustee","description":"Provides the JSON object for the group persona of the owner.\n"}},"type":"object"},"powerscale:index/NamespaceAclAclCustom:NamespaceAclAclCustom":{"properties":{"accessrights":{"description":"Specifies the access control permissions for a specific user or group. Options: std*delete, std*read*dac, std*write*dac, std*write*owner, std*synchronize, std*required, generic*all, generic*read, generic*write, generic*exec, dir*gen*all, dir*gen*read, dir*gen*write, dir*gen*execute, file*gen*all, file*gen*read, file*gen*write, file*gen*execute, modify, file*read, file*write, append, execute, file*read*attr, file*write*attr, file*read*ext*attr, file*write*ext*attr, delete*child, list, add*file, add*subdir, traverse, dir*read*attr, dir*write*attr, dir*read*ext*attr, dir*write*ext*attr\n","items":{"type":"string"},"type":"array"},"accesstype":{"description":"Grants or denies access control permissions. Options: allow, deny\n","type":"string"},"inheritFlags":{"description":"Grants or denies access control permissions. Options: object*inherit, container*inherit, inherit*only, no*prop*inherit, inherited*ace\n","items":{"type":"string"},"type":"array"},"op":{"description":"Operations for updating access control permissions. Unnecessary for access right replacing scenario\n","type":"string"},"trustee":{"$ref":"#/types/powerscale:index%2FNamespaceAclAclCustomTrustee:NamespaceAclAclCustomTrustee","description":"Provides the JSON object for the group persona of the owner.\n"}},"required":["accesstype","trustee"],"type":"object"},"powerscale:index/NamespaceAclAclCustomTrustee:NamespaceAclAclCustomTrustee":{"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0' or 'GID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NamespaceAclAclTrustee:NamespaceAclAclTrustee":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0' or 'GID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NamespaceAclGroup:NamespaceAclGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NamespaceAclOwner:NamespaceAclOwner":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NetworkpoolIface:NetworkpoolIface":{"language":{"nodejs":{"requiredOutputs":["iface","lnn"]}},"properties":{"iface":{"description":"A string that defines an interface name.\n","type":"string"},"lnn":{"description":"Logical Node Number (LNN) of a node.\n","type":"number"}},"type":"object"},"powerscale:index/NetworkpoolRange:NetworkpoolRange":{"language":{"nodejs":{"requiredOutputs":["high","low"]}},"properties":{"high":{"description":"High IP\n","type":"string"},"low":{"description":"Low IP\n","type":"string"}},"type":"object"},"powerscale:index/NetworkpoolStaticRoute:NetworkpoolStaticRoute":{"language":{"nodejs":{"requiredOutputs":["gateway","prefixlen","subnet"]}},"properties":{"gateway":{"description":"Address of the gateway in the format: yyy.yyy.yyy.yyy\n","type":"string"},"prefixlen":{"description":"Prefix length in the format: nn.\n","type":"number"},"subnet":{"description":"Network address in the format: xxx.xxx.xxx.xxx\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapAll:NfsExportMapAll":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportMapAllPrimaryGroup:NfsExportMapAllPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportMapAllSecondaryGroup:NfsExportMapAllSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportMapAllUser:NfsExportMapAllUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportMapAllPrimaryGroup:NfsExportMapAllPrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapAllSecondaryGroup:NfsExportMapAllSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapAllUser:NfsExportMapAllUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapFailure:NfsExportMapFailure":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportMapFailurePrimaryGroup:NfsExportMapFailurePrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportMapFailureSecondaryGroup:NfsExportMapFailureSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportMapFailureUser:NfsExportMapFailureUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportMapFailurePrimaryGroup:NfsExportMapFailurePrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapFailureSecondaryGroup:NfsExportMapFailureSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapFailureUser:NfsExportMapFailureUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapNonRoot:NfsExportMapNonRoot":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportMapNonRootPrimaryGroup:NfsExportMapNonRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportMapNonRootSecondaryGroup:NfsExportMapNonRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportMapNonRootUser:NfsExportMapNonRootUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportMapNonRootPrimaryGroup:NfsExportMapNonRootPrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapNonRootSecondaryGroup:NfsExportMapNonRootSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapNonRootUser:NfsExportMapNonRootUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapRoot:NfsExportMapRoot":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportMapRootPrimaryGroup:NfsExportMapRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportMapRootSecondaryGroup:NfsExportMapRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportMapRootUser:NfsExportMapRootUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportMapRootPrimaryGroup:NfsExportMapRootPrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapRootSecondaryGroup:NfsExportMapRootSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportMapRootUser:NfsExportMapRootUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapAll:NfsExportSettingsMapAll":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapAllPrimaryGroup:NfsExportSettingsMapAllPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapAllSecondaryGroup:NfsExportSettingsMapAllSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapAllUser:NfsExportSettingsMapAllUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportSettingsMapAllPrimaryGroup:NfsExportSettingsMapAllPrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapAllSecondaryGroup:NfsExportSettingsMapAllSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapAllUser:NfsExportSettingsMapAllUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapFailure:NfsExportSettingsMapFailure":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapFailurePrimaryGroup:NfsExportSettingsMapFailurePrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapFailureSecondaryGroup:NfsExportSettingsMapFailureSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapFailureUser:NfsExportSettingsMapFailureUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportSettingsMapFailurePrimaryGroup:NfsExportSettingsMapFailurePrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapFailureSecondaryGroup:NfsExportSettingsMapFailureSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapFailureUser:NfsExportSettingsMapFailureUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapNonRoot:NfsExportSettingsMapNonRoot":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapNonRootPrimaryGroup:NfsExportSettingsMapNonRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapNonRootSecondaryGroup:NfsExportSettingsMapNonRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapNonRootUser:NfsExportSettingsMapNonRootUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportSettingsMapNonRootPrimaryGroup:NfsExportSettingsMapNonRootPrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapNonRootSecondaryGroup:NfsExportSettingsMapNonRootSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapNonRootUser:NfsExportSettingsMapNonRootUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapRoot:NfsExportSettingsMapRoot":{"language":{"nodejs":{"requiredOutputs":["enabled","primaryGroup","secondaryGroups","user"]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapRootPrimaryGroup:NfsExportSettingsMapRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapRootSecondaryGroup:NfsExportSettingsMapRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FNfsExportSettingsMapRootUser:NfsExportSettingsMapRootUser","description":"Specifies the persona of the file group.\n"}},"type":"object"},"powerscale:index/NfsExportSettingsMapRootPrimaryGroup:NfsExportSettingsMapRootPrimaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapRootSecondaryGroup:NfsExportSettingsMapRootSecondaryGroup":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/NfsExportSettingsMapRootUser:NfsExportSettingsMapRootUser":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0', 'GROUP:wheel'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/QuotaPersona:QuotaPersona":{"language":{"nodejs":{"requiredOutputs":["id"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/QuotaThresholds:QuotaThresholds":{"language":{"nodejs":{"requiredOutputs":["advisory","advisoryExceeded","advisoryLastExceeded","hard","hardExceeded","hardLastExceeded","percentAdvisory","percentSoft","soft","softExceeded","softGrace","softLastExceeded"]}},"properties":{"advisory":{"description":"Usage bytes at which notifications will be sent but writes will not be denied.\n","type":"number"},"advisoryExceeded":{"description":"True if the advisory threshold has been hit.\n","type":"boolean"},"advisoryLastExceeded":{"description":"Time at which advisory threshold was hit.\n","type":"number"},"hard":{"description":"Usage bytes at which further writes will be denied.\n","type":"number"},"hardExceeded":{"description":"True if the hard threshold has been hit.\n","type":"boolean"},"hardLastExceeded":{"description":"Time at which hard threshold was hit.\n","type":"number"},"percentAdvisory":{"description":"Advisory threshold as percent of hard threshold. Usage bytes at which notifications will be sent but writes will not be denied.\n","type":"number"},"percentSoft":{"description":"Soft threshold as percent of hard threshold. Usage bytes at which notifications will be sent and soft grace time will be started.\n","type":"number"},"soft":{"description":"Usage bytes at which notifications will be sent and soft grace time will be started.\n","type":"number"},"softExceeded":{"description":"True if the soft threshold has been hit.\n","type":"boolean"},"softGrace":{"description":"Time in seconds after which the soft threshold has been hit before writes will be denied.\n","type":"number"},"softLastExceeded":{"description":"Time at which soft threshold was hit\n","type":"number"}},"type":"object"},"powerscale:index/QuotaUsage:QuotaUsage":{"language":{"nodejs":{"requiredOutputs":["applogical","applogicalReady","fslogical","fslogicalReady","fsphysical","fsphysicalReady","inodes","inodesReady","physical","physicalData","physicalDataReady","physicalProtection","physicalProtectionReady","physicalReady","shadowRefs","shadowRefsReady"]}},"properties":{"applogical":{"description":"Bytes used by governed data apparent to application.\n","type":"number"},"applogicalReady":{"description":"True if applogical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"fslogical":{"description":"Bytes used by governed data apparent to filesystem.\n","type":"number"},"fslogicalReady":{"description":"True if fslogical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"fsphysical":{"description":"Physical data usage adjusted to account for shadow store efficiency\n","type":"number"},"fsphysicalReady":{"description":"True if fsphysical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"inodes":{"description":"Number of inodes (filesystem entities) used by governed data.\n","type":"number"},"inodesReady":{"description":"True if inodes resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physical":{"description":"Bytes used for governed data and filesystem overhead.\n","type":"number"},"physicalData":{"description":"Number of physical blocks for file data\n","type":"number"},"physicalDataReady":{"description":"True if<span pulumi-lang-nodejs=\" physicalData \" pulumi-lang-dotnet=\" PhysicalData \" pulumi-lang-go=\" physicalData \" pulumi-lang-python=\" physical_data \" pulumi-lang-yaml=\" physicalData \" pulumi-lang-java=\" physicalData \"> physical_data </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physicalProtection":{"description":"Number of physical blocks for file protection\n","type":"number"},"physicalProtectionReady":{"description":"True if<span pulumi-lang-nodejs=\" physicalProtection \" pulumi-lang-dotnet=\" PhysicalProtection \" pulumi-lang-go=\" physicalProtection \" pulumi-lang-python=\" physical_protection \" pulumi-lang-yaml=\" physicalProtection \" pulumi-lang-java=\" physicalProtection \"> physical_protection </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physicalReady":{"description":"True if physical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"shadowRefs":{"description":"Number of shadow references (cloned, deduplicated or packed filesystem blocks) used by governed data.\n","type":"number"},"shadowRefsReady":{"description":"True if<span pulumi-lang-nodejs=\" shadowRefs \" pulumi-lang-dotnet=\" ShadowRefs \" pulumi-lang-go=\" shadowRefs \" pulumi-lang-python=\" shadow_refs \" pulumi-lang-yaml=\" shadowRefs \" pulumi-lang-java=\" shadowRefs \"> shadow_refs </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"}},"type":"object"},"powerscale:index/RoleMember:RoleMember":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/RolePrivilege:RolePrivilege":{"language":{"nodejs":{"requiredOutputs":["id","name","permission"]}},"properties":{"id":{"description":"Specifies the ID of the privilege.\n","type":"string"},"name":{"description":"Specifies the name of the privilege.\n","type":"string"},"permission":{"description":"permission of the privilege, 'r' = read , 'x' = read-execute, 'w' = read-execute-write, '-' = no permission\n","type":"string"}},"required":["id"],"type":"object"},"powerscale:index/S3BucketAcl:S3BucketAcl":{"properties":{"grantee":{"$ref":"#/types/powerscale:index%2FS3BucketAclGrantee:S3BucketAclGrantee","description":"Specifies the persona of the file group.\n"},"permission":{"description":"Specifies the S3 rights being allowed.\n","type":"string"}},"required":["grantee","permission"],"type":"object"},"powerscale:index/S3BucketAclGrantee:S3BucketAclGrantee":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["name","type"],"type":"object"},"powerscale:index/SmartpoolSettingsSpilloverTarget:SmartpoolSettingsSpilloverTarget":{"language":{"nodejs":{"requiredOutputs":["name","type"]}},"properties":{"name":{"description":"Target pool name if target specified as storagepool, otherwise empty string.\n","type":"string"},"type":{"description":"Type of target pool. Acceptable values: storagepool, anywhere\n","type":"string"}},"type":"object"},"powerscale:index/SmbSharePermission:SmbSharePermission":{"properties":{"permission":{"description":"Specifies the file system rights that are allowed or denied.\n","type":"string"},"permissionType":{"description":"Determines whether the permission is allowed or denied.\n","type":"string"},"trustee":{"$ref":"#/types/powerscale:index%2FSmbSharePermissionTrustee:SmbSharePermissionTrustee","description":"Specifies the persona of the file group.\n"}},"required":["permission","permissionType","trustee"],"type":"object"},"powerscale:index/SmbSharePermissionTrustee:SmbSharePermissionTrustee":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona using security identifier, which can be 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/SmbShareRunAsRoot:SmbShareRunAsRoot":{"language":{"nodejs":{"requiredOutputs":["id","name","type"]}},"properties":{"id":{"description":"Specifies the serialized form of a persona using security identifier, which can be 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"type":"object"},"powerscale:index/SnapshotRestoreCloneParams:SnapshotRestoreCloneParams":{"properties":{"destination":{"description":"Destination of the snapshot, e.g. ifs/dest/test.txt .\n","type":"string"},"overwrite":{"description":"Whether or not to overwrite the destination if it already exists.\n","type":"boolean"},"snapshotId":{"description":"Snapshot ID.\n","type":"number"},"source":{"description":"Source of the snapshot.\n","type":"string"}},"required":["destination","snapshotId","source"],"type":"object"},"powerscale:index/SnapshotRestoreCopyParams:SnapshotRestoreCopyParams":{"properties":{"directory":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCopyParamsDirectory:SnapshotRestoreCopyParamsDirectory","description":"Specifies properties for copying directory.\n"},"file":{"$ref":"#/types/powerscale:index%2FSnapshotRestoreCopyParamsFile:SnapshotRestoreCopyParamsFile","description":"Specifies properties for copying file.\n"}},"type":"object"},"powerscale:index/SnapshotRestoreCopyParamsDirectory:SnapshotRestoreCopyParamsDirectory":{"properties":{"continue":{"description":"Whether or not to continue if the destination already exists.\n","type":"boolean"},"destination":{"description":"Destination of the snapshot, e.g. ifs/dest.\n","type":"string"},"merge":{"description":"Whether or not to merge the destination if it already exists.\n","type":"boolean"},"overwrite":{"description":"Whether or not to overwrite the destination if it already exists.\n","type":"boolean"},"source":{"description":"Source of the snapshot.\n","type":"string"}},"required":["destination","source"],"type":"object"},"powerscale:index/SnapshotRestoreCopyParamsFile:SnapshotRestoreCopyParamsFile":{"properties":{"destination":{"description":"Destination of the snapshot, e.g. ifs/dest/test.txt .\n","type":"string"},"overwrite":{"description":"Whether or not to overwrite the destination if it already exists.\n","type":"boolean"},"source":{"description":"Source of the snapshot.\n","type":"string"}},"required":["destination","source"],"type":"object"},"powerscale:index/SnapshotRestoreSnaprevertParams:SnapshotRestoreSnaprevertParams":{"language":{"nodejs":{"requiredOutputs":["jobId","snapshotId"]}},"properties":{"allowDup":{"description":"Whether or not to queue the job if one of the same type is already running or queued.\n","type":"boolean"},"jobId":{"description":"Job ID.\n","type":"number"},"snapshotId":{"description":"Snapshot ID.\n","type":"number"}},"required":["snapshotId"],"type":"object"},"powerscale:index/SubnetScServiceAddr:SubnetScServiceAddr":{"language":{"nodejs":{"requiredOutputs":["high","low"]}},"properties":{"high":{"description":"High IP\n","type":"string"},"low":{"description":"Low IP\n","type":"string"}},"type":"object"},"powerscale:index/SupportAssistConnections:SupportAssistConnections":{"language":{"nodejs":{"requiredOutputs":["gatewayEndpoints","mode","networkPools"]}},"properties":{"gatewayEndpoints":{"description":"Gateway details\n","items":{"$ref":"#/types/powerscale:index%2FSupportAssistConnectionsGatewayEndpoint:SupportAssistConnectionsGatewayEndpoint"},"type":"array"},"mode":{"description":"Connection Mode for SupportAssist: can be direct or via gateway\n","type":"string"},"networkPools":{"description":"Network pools for gateway use\n","items":{"type":"string"},"type":"array"}},"type":"object"},"powerscale:index/SupportAssistConnectionsGatewayEndpoint:SupportAssistConnectionsGatewayEndpoint":{"language":{"nodejs":{"requiredOutputs":["enabled","host","port","priority","useProxy","validateSsl"]}},"properties":{"enabled":{"description":"Whether this gateway is enabled/disabled\n","type":"boolean"},"host":{"description":"Gateway hostname or IPv4 address\n","type":"string"},"port":{"description":"Gateway port\n","type":"number"},"priority":{"description":"Gateway's priority\n","type":"number"},"useProxy":{"description":"Whether to use Proxy for this gateway\n","type":"boolean"},"validateSsl":{"description":"Whether to validate SSL for this gateway\n","type":"boolean"}},"type":"object"},"powerscale:index/SupportAssistContact:SupportAssistContact":{"language":{"nodejs":{"requiredOutputs":["primary","secondary"]}},"properties":{"primary":{"$ref":"#/types/powerscale:index%2FSupportAssistContactPrimary:SupportAssistContactPrimary"},"secondary":{"$ref":"#/types/powerscale:index%2FSupportAssistContactSecondary:SupportAssistContactSecondary"}},"type":"object"},"powerscale:index/SupportAssistContactPrimary:SupportAssistContactPrimary":{"language":{"nodejs":{"requiredOutputs":["email","firstName","language","lastName","phone"]}},"properties":{"email":{"description":"Contact's email address.\n","type":"string"},"firstName":{"description":"Contact's first name.\n","type":"string"},"language":{"type":"string"},"lastName":{"description":"Contact's last name.\n","type":"string"},"phone":{"description":"Contact's phone number.\n","type":"string"}},"type":"object"},"powerscale:index/SupportAssistContactSecondary:SupportAssistContactSecondary":{"language":{"nodejs":{"requiredOutputs":["email","firstName","language","lastName","phone"]}},"properties":{"email":{"description":"Contact's email address.\n","type":"string"},"firstName":{"description":"Contact's first name.\n","type":"string"},"language":{"type":"string"},"lastName":{"description":"Contact's last name.\n","type":"string"},"phone":{"description":"Contact's phone number.\n","type":"string"}},"type":"object"},"powerscale:index/SupportAssistTelemetry:SupportAssistTelemetry":{"language":{"nodejs":{"requiredOutputs":["offlineCollectionPeriod","telemetryEnabled","telemetryPersist","telemetryThreads"]}},"properties":{"offlineCollectionPeriod":{"description":"Change the offline collection period for when the connection to gateway is down\n","type":"number"},"telemetryEnabled":{"description":"Change the status of telemetry\n","type":"boolean"},"telemetryPersist":{"description":"Change if files are kept after upload\n","type":"boolean"},"telemetryThreads":{"description":"Change the number of threads for telemetry gathers\n","type":"number"}},"type":"object"},"powerscale:index/SynciqGlobalSettingsSourceNetwork:SynciqGlobalSettingsSourceNetwork":{"language":{"nodejs":{"requiredOutputs":["pool","subnet"]}},"properties":{"pool":{"description":"The pool to restrict replication policies to.\n","type":"string"},"subnet":{"description":"The subnet to restrict replication policies to.\n","type":"string"}},"type":"object"},"powerscale:index/SynciqPolicyFileMatchingPattern:SynciqPolicyFileMatchingPattern":{"properties":{"orCriterias":{"description":"An array containing objects with \"and*criteria\" properties, each set of and*criteria will be logically OR'ed together to create the full file matching pattern.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqPolicyFileMatchingPatternOrCriteria:SynciqPolicyFileMatchingPatternOrCriteria"},"type":"array"}},"required":["orCriterias"],"type":"object"},"powerscale:index/SynciqPolicyFileMatchingPatternOrCriteria:SynciqPolicyFileMatchingPatternOrCriteria":{"properties":{"andCriterias":{"description":"An array containing individual file criterion objects each describing one criterion.  These are logically AND'ed together to form a set of criteria.\n","items":{"$ref":"#/types/powerscale:index%2FSynciqPolicyFileMatchingPatternOrCriteriaAndCriteria:SynciqPolicyFileMatchingPatternOrCriteriaAndCriteria"},"type":"array"}},"required":["andCriterias"],"type":"object"},"powerscale:index/SynciqPolicyFileMatchingPatternOrCriteriaAndCriteria:SynciqPolicyFileMatchingPatternOrCriteriaAndCriteria":{"properties":{"attributeExists":{"description":"For <span pulumi-lang-nodejs=\"\"customAttribute\"\" pulumi-lang-dotnet=\"\"CustomAttribute\"\" pulumi-lang-go=\"\"customAttribute\"\" pulumi-lang-python=\"\"custom_attribute\"\" pulumi-lang-yaml=\"\"customAttribute\"\" pulumi-lang-java=\"\"customAttribute\"\">\"custom_attribute\"</span> type criteria.  The file will match as long as the attribute named by \"field\" exists.  Default is true.\n","type":"boolean"},"caseSensitive":{"description":"If true, the value comparison will be case sensitive.  Default is true.\n","type":"boolean"},"field":{"description":"The name of the file attribute to match on (only required if this is a<span pulumi-lang-nodejs=\" customAttribute \" pulumi-lang-dotnet=\" CustomAttribute \" pulumi-lang-go=\" customAttribute \" pulumi-lang-python=\" custom_attribute \" pulumi-lang-yaml=\" customAttribute \" pulumi-lang-java=\" customAttribute \"> custom_attribute </span>type criterion).  Default is an empty string \"\".\n","type":"string"},"operator":{"description":"How to compare the specified attribute of each file to the specified value.  Possible values are: `==`, `!=`, `>`, `>=`, `<`, `<=`, `!`.  Default is `==`.\n","type":"string"},"type":{"description":"The type of this criterion, that is, which file attribute to match on. Accepted values are , <span pulumi-lang-nodejs=\"`name`\" pulumi-lang-dotnet=\"`Name`\" pulumi-lang-go=\"`name`\" pulumi-lang-python=\"`name`\" pulumi-lang-yaml=\"`name`\" pulumi-lang-java=\"`name`\">`name`</span>, <span pulumi-lang-nodejs=\"`path`\" pulumi-lang-dotnet=\"`Path`\" pulumi-lang-go=\"`path`\" pulumi-lang-python=\"`path`\" pulumi-lang-yaml=\"`path`\" pulumi-lang-java=\"`path`\">`path`</span>, <span pulumi-lang-nodejs=\"`accessedTime`\" pulumi-lang-dotnet=\"`AccessedTime`\" pulumi-lang-go=\"`accessedTime`\" pulumi-lang-python=\"`accessed_time`\" pulumi-lang-yaml=\"`accessedTime`\" pulumi-lang-java=\"`accessedTime`\">`accessed_time`</span>, <span pulumi-lang-nodejs=\"`birthTime`\" pulumi-lang-dotnet=\"`BirthTime`\" pulumi-lang-go=\"`birthTime`\" pulumi-lang-python=\"`birth_time`\" pulumi-lang-yaml=\"`birthTime`\" pulumi-lang-java=\"`birthTime`\">`birth_time`</span>, <span pulumi-lang-nodejs=\"`changedTime`\" pulumi-lang-dotnet=\"`ChangedTime`\" pulumi-lang-go=\"`changedTime`\" pulumi-lang-python=\"`changed_time`\" pulumi-lang-yaml=\"`changedTime`\" pulumi-lang-java=\"`changedTime`\">`changed_time`</span>, <span pulumi-lang-nodejs=\"`size`\" pulumi-lang-dotnet=\"`Size`\" pulumi-lang-go=\"`size`\" pulumi-lang-python=\"`size`\" pulumi-lang-yaml=\"`size`\" pulumi-lang-java=\"`size`\">`size`</span>, <span pulumi-lang-nodejs=\"`fileType`\" pulumi-lang-dotnet=\"`FileType`\" pulumi-lang-go=\"`fileType`\" pulumi-lang-python=\"`file_type`\" pulumi-lang-yaml=\"`fileType`\" pulumi-lang-java=\"`fileType`\">`file_type`</span>, <span pulumi-lang-nodejs=\"`posixRegexName`\" pulumi-lang-dotnet=\"`PosixRegexName`\" pulumi-lang-go=\"`posixRegexName`\" pulumi-lang-python=\"`posix_regex_name`\" pulumi-lang-yaml=\"`posixRegexName`\" pulumi-lang-java=\"`posixRegexName`\">`posix_regex_name`</span>, <span pulumi-lang-nodejs=\"`userName`\" pulumi-lang-dotnet=\"`UserName`\" pulumi-lang-go=\"`userName`\" pulumi-lang-python=\"`user_name`\" pulumi-lang-yaml=\"`userName`\" pulumi-lang-java=\"`userName`\">`user_name`</span>, <span pulumi-lang-nodejs=\"`userId`\" pulumi-lang-dotnet=\"`UserId`\" pulumi-lang-go=\"`userId`\" pulumi-lang-python=\"`user_id`\" pulumi-lang-yaml=\"`userId`\" pulumi-lang-java=\"`userId`\">`user_id`</span>, <span pulumi-lang-nodejs=\"`groupName`\" pulumi-lang-dotnet=\"`GroupName`\" pulumi-lang-go=\"`groupName`\" pulumi-lang-python=\"`group_name`\" pulumi-lang-yaml=\"`groupName`\" pulumi-lang-java=\"`groupName`\">`group_name`</span>, <span pulumi-lang-nodejs=\"`groupId`\" pulumi-lang-dotnet=\"`GroupId`\" pulumi-lang-go=\"`groupId`\" pulumi-lang-python=\"`group_id`\" pulumi-lang-yaml=\"`groupId`\" pulumi-lang-java=\"`groupId`\">`group_id`</span>, <span pulumi-lang-nodejs=\"`noUser`\" pulumi-lang-dotnet=\"`NoUser`\" pulumi-lang-go=\"`noUser`\" pulumi-lang-python=\"`no_user`\" pulumi-lang-yaml=\"`noUser`\" pulumi-lang-java=\"`noUser`\">`no_user`</span>, <span pulumi-lang-nodejs=\"`noGroup`\" pulumi-lang-dotnet=\"`NoGroup`\" pulumi-lang-go=\"`noGroup`\" pulumi-lang-python=\"`no_group`\" pulumi-lang-yaml=\"`noGroup`\" pulumi-lang-java=\"`noGroup`\">`no_group`</span>.\n","type":"string"},"value":{"description":"The value to compare the specified attribute of each file to.\n","type":"string"},"wholeWord":{"description":"If true, the attribute must match the entire word.  Default is true.\n","type":"boolean"}},"type":"object"},"powerscale:index/SynciqPolicySourceNetwork:SynciqPolicySourceNetwork":{"language":{"nodejs":{"requiredOutputs":["pool","subnet"]}},"properties":{"pool":{"description":"The pool to restrict replication policies to.\n","type":"string"},"subnet":{"description":"The subnet to restrict replication policies to.\n","type":"string"}},"type":"object"},"powerscale:index/SynciqRulesBandwidthRule:SynciqRulesBandwidthRule":{"language":{"nodejs":{"requiredOutputs":["description","enabled","id","limit","schedule"]}},"properties":{"description":{"description":"Description of this performance rule.\n","type":"string"},"enabled":{"description":"Whether this performance rule is currently in effect during its specified intervals.\n","type":"boolean"},"id":{"description":"The system ID given to this performance rule.\n","type":"string"},"limit":{"description":"Amount of the specified system resource type that is limited by this rule. Units are kb/s for bandwidth, files/s for file-count, processing percentage used for cpu, or percentage of maximum available workers.\n","type":"number"},"schedule":{"$ref":"#/types/powerscale:index%2FSynciqRulesBandwidthRuleSchedule:SynciqRulesBandwidthRuleSchedule","description":"A schedule defining when during a week this performance rule is in effect. If unspecified or null, the schedule will always be in effect.\n"}},"required":["limit"],"type":"object"},"powerscale:index/SynciqRulesBandwidthRuleSchedule:SynciqRulesBandwidthRuleSchedule":{"language":{"nodejs":{"requiredOutputs":["begin","daysOfWeeks","end"]}},"properties":{"begin":{"description":"Start time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (24h format hour, and minute).  A null value indicates the beginning of the day (`00:00`).\n","type":"string"},"daysOfWeeks":{"description":"Set of days of the week during which this rule is in effect. Accepted values are <span pulumi-lang-nodejs=\"`monday`\" pulumi-lang-dotnet=\"`Monday`\" pulumi-lang-go=\"`monday`\" pulumi-lang-python=\"`monday`\" pulumi-lang-yaml=\"`monday`\" pulumi-lang-java=\"`monday`\">`monday`</span>, <span pulumi-lang-nodejs=\"`tuesday`\" pulumi-lang-dotnet=\"`Tuesday`\" pulumi-lang-go=\"`tuesday`\" pulumi-lang-python=\"`tuesday`\" pulumi-lang-yaml=\"`tuesday`\" pulumi-lang-java=\"`tuesday`\">`tuesday`</span>, <span pulumi-lang-nodejs=\"`wednesday`\" pulumi-lang-dotnet=\"`Wednesday`\" pulumi-lang-go=\"`wednesday`\" pulumi-lang-python=\"`wednesday`\" pulumi-lang-yaml=\"`wednesday`\" pulumi-lang-java=\"`wednesday`\">`wednesday`</span>, <span pulumi-lang-nodejs=\"`thursday`\" pulumi-lang-dotnet=\"`Thursday`\" pulumi-lang-go=\"`thursday`\" pulumi-lang-python=\"`thursday`\" pulumi-lang-yaml=\"`thursday`\" pulumi-lang-java=\"`thursday`\">`thursday`</span>, <span pulumi-lang-nodejs=\"`friday`\" pulumi-lang-dotnet=\"`Friday`\" pulumi-lang-go=\"`friday`\" pulumi-lang-python=\"`friday`\" pulumi-lang-yaml=\"`friday`\" pulumi-lang-java=\"`friday`\">`friday`</span>, <span pulumi-lang-nodejs=\"`saturday`\" pulumi-lang-dotnet=\"`Saturday`\" pulumi-lang-go=\"`saturday`\" pulumi-lang-python=\"`saturday`\" pulumi-lang-yaml=\"`saturday`\" pulumi-lang-java=\"`saturday`\">`saturday`</span>, <span pulumi-lang-nodejs=\"`sunday`\" pulumi-lang-dotnet=\"`Sunday`\" pulumi-lang-go=\"`sunday`\" pulumi-lang-python=\"`sunday`\" pulumi-lang-yaml=\"`sunday`\" pulumi-lang-java=\"`sunday`\">`sunday`</span>. At least one day must be set.\n","items":{"type":"string"},"type":"array"},"end":{"description":"End time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (three-letter weekday name abbreviation, 24h format hour, and minute).  A null value indicates the end of the day (`23:59`).\n","type":"string"}},"type":"object"},"powerscale:index/SynciqRulesCpuRule:SynciqRulesCpuRule":{"language":{"nodejs":{"requiredOutputs":["description","enabled","id","limit","schedule"]}},"properties":{"description":{"description":"Description of this performance rule.\n","type":"string"},"enabled":{"description":"Whether this performance rule is currently in effect during its specified intervals.\n","type":"boolean"},"id":{"description":"The system ID given to this performance rule.\n","type":"string"},"limit":{"description":"Amount of the specified system resource type that is limited by this rule. Units are kb/s for bandwidth, files/s for file-count, processing percentage used for cpu, or percentage of maximum available workers.\n","type":"number"},"schedule":{"$ref":"#/types/powerscale:index%2FSynciqRulesCpuRuleSchedule:SynciqRulesCpuRuleSchedule","description":"A schedule defining when during a week this performance rule is in effect. If unspecified or null, the schedule will always be in effect.\n"}},"required":["limit"],"type":"object"},"powerscale:index/SynciqRulesCpuRuleSchedule:SynciqRulesCpuRuleSchedule":{"language":{"nodejs":{"requiredOutputs":["begin","daysOfWeeks","end"]}},"properties":{"begin":{"description":"Start time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (24h format hour, and minute).  A null value indicates the beginning of the day (`00:00`).\n","type":"string"},"daysOfWeeks":{"description":"Set of days of the week during which this rule is in effect. Accepted values are <span pulumi-lang-nodejs=\"`monday`\" pulumi-lang-dotnet=\"`Monday`\" pulumi-lang-go=\"`monday`\" pulumi-lang-python=\"`monday`\" pulumi-lang-yaml=\"`monday`\" pulumi-lang-java=\"`monday`\">`monday`</span>, <span pulumi-lang-nodejs=\"`tuesday`\" pulumi-lang-dotnet=\"`Tuesday`\" pulumi-lang-go=\"`tuesday`\" pulumi-lang-python=\"`tuesday`\" pulumi-lang-yaml=\"`tuesday`\" pulumi-lang-java=\"`tuesday`\">`tuesday`</span>, <span pulumi-lang-nodejs=\"`wednesday`\" pulumi-lang-dotnet=\"`Wednesday`\" pulumi-lang-go=\"`wednesday`\" pulumi-lang-python=\"`wednesday`\" pulumi-lang-yaml=\"`wednesday`\" pulumi-lang-java=\"`wednesday`\">`wednesday`</span>, <span pulumi-lang-nodejs=\"`thursday`\" pulumi-lang-dotnet=\"`Thursday`\" pulumi-lang-go=\"`thursday`\" pulumi-lang-python=\"`thursday`\" pulumi-lang-yaml=\"`thursday`\" pulumi-lang-java=\"`thursday`\">`thursday`</span>, <span pulumi-lang-nodejs=\"`friday`\" pulumi-lang-dotnet=\"`Friday`\" pulumi-lang-go=\"`friday`\" pulumi-lang-python=\"`friday`\" pulumi-lang-yaml=\"`friday`\" pulumi-lang-java=\"`friday`\">`friday`</span>, <span pulumi-lang-nodejs=\"`saturday`\" pulumi-lang-dotnet=\"`Saturday`\" pulumi-lang-go=\"`saturday`\" pulumi-lang-python=\"`saturday`\" pulumi-lang-yaml=\"`saturday`\" pulumi-lang-java=\"`saturday`\">`saturday`</span>, <span pulumi-lang-nodejs=\"`sunday`\" pulumi-lang-dotnet=\"`Sunday`\" pulumi-lang-go=\"`sunday`\" pulumi-lang-python=\"`sunday`\" pulumi-lang-yaml=\"`sunday`\" pulumi-lang-java=\"`sunday`\">`sunday`</span>. At least one day must be set.\n","items":{"type":"string"},"type":"array"},"end":{"description":"End time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (three-letter weekday name abbreviation, 24h format hour, and minute).  A null value indicates the end of the day (`23:59`).\n","type":"string"}},"type":"object"},"powerscale:index/SynciqRulesFileCountRule:SynciqRulesFileCountRule":{"language":{"nodejs":{"requiredOutputs":["description","enabled","id","limit","schedule"]}},"properties":{"description":{"description":"Description of this performance rule.\n","type":"string"},"enabled":{"description":"Whether this performance rule is currently in effect during its specified intervals.\n","type":"boolean"},"id":{"description":"The system ID given to this performance rule.\n","type":"string"},"limit":{"description":"Amount of the specified system resource type that is limited by this rule. Units are kb/s for bandwidth, files/s for file-count, processing percentage used for cpu, or percentage of maximum available workers.\n","type":"number"},"schedule":{"$ref":"#/types/powerscale:index%2FSynciqRulesFileCountRuleSchedule:SynciqRulesFileCountRuleSchedule","description":"A schedule defining when during a week this performance rule is in effect. If unspecified or null, the schedule will always be in effect.\n"}},"required":["limit"],"type":"object"},"powerscale:index/SynciqRulesFileCountRuleSchedule:SynciqRulesFileCountRuleSchedule":{"language":{"nodejs":{"requiredOutputs":["begin","daysOfWeeks","end"]}},"properties":{"begin":{"description":"Start time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (24h format hour, and minute).  A null value indicates the beginning of the day (`00:00`).\n","type":"string"},"daysOfWeeks":{"description":"Set of days of the week during which this rule is in effect. Accepted values are <span pulumi-lang-nodejs=\"`monday`\" pulumi-lang-dotnet=\"`Monday`\" pulumi-lang-go=\"`monday`\" pulumi-lang-python=\"`monday`\" pulumi-lang-yaml=\"`monday`\" pulumi-lang-java=\"`monday`\">`monday`</span>, <span pulumi-lang-nodejs=\"`tuesday`\" pulumi-lang-dotnet=\"`Tuesday`\" pulumi-lang-go=\"`tuesday`\" pulumi-lang-python=\"`tuesday`\" pulumi-lang-yaml=\"`tuesday`\" pulumi-lang-java=\"`tuesday`\">`tuesday`</span>, <span pulumi-lang-nodejs=\"`wednesday`\" pulumi-lang-dotnet=\"`Wednesday`\" pulumi-lang-go=\"`wednesday`\" pulumi-lang-python=\"`wednesday`\" pulumi-lang-yaml=\"`wednesday`\" pulumi-lang-java=\"`wednesday`\">`wednesday`</span>, <span pulumi-lang-nodejs=\"`thursday`\" pulumi-lang-dotnet=\"`Thursday`\" pulumi-lang-go=\"`thursday`\" pulumi-lang-python=\"`thursday`\" pulumi-lang-yaml=\"`thursday`\" pulumi-lang-java=\"`thursday`\">`thursday`</span>, <span pulumi-lang-nodejs=\"`friday`\" pulumi-lang-dotnet=\"`Friday`\" pulumi-lang-go=\"`friday`\" pulumi-lang-python=\"`friday`\" pulumi-lang-yaml=\"`friday`\" pulumi-lang-java=\"`friday`\">`friday`</span>, <span pulumi-lang-nodejs=\"`saturday`\" pulumi-lang-dotnet=\"`Saturday`\" pulumi-lang-go=\"`saturday`\" pulumi-lang-python=\"`saturday`\" pulumi-lang-yaml=\"`saturday`\" pulumi-lang-java=\"`saturday`\">`saturday`</span>, <span pulumi-lang-nodejs=\"`sunday`\" pulumi-lang-dotnet=\"`Sunday`\" pulumi-lang-go=\"`sunday`\" pulumi-lang-python=\"`sunday`\" pulumi-lang-yaml=\"`sunday`\" pulumi-lang-java=\"`sunday`\">`sunday`</span>. At least one day must be set.\n","items":{"type":"string"},"type":"array"},"end":{"description":"End time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (three-letter weekday name abbreviation, 24h format hour, and minute).  A null value indicates the end of the day (`23:59`).\n","type":"string"}},"type":"object"},"powerscale:index/SynciqRulesWorkerRule:SynciqRulesWorkerRule":{"language":{"nodejs":{"requiredOutputs":["description","enabled","id","limit","schedule"]}},"properties":{"description":{"description":"Description of this performance rule.\n","type":"string"},"enabled":{"description":"Whether this performance rule is currently in effect during its specified intervals.\n","type":"boolean"},"id":{"description":"The system ID given to this performance rule.\n","type":"string"},"limit":{"description":"Amount of the specified system resource type that is limited by this rule. Units are kb/s for bandwidth, files/s for file-count, processing percentage used for cpu, or percentage of maximum available workers.\n","type":"number"},"schedule":{"$ref":"#/types/powerscale:index%2FSynciqRulesWorkerRuleSchedule:SynciqRulesWorkerRuleSchedule","description":"A schedule defining when during a week this performance rule is in effect. If unspecified or null, the schedule will always be in effect.\n"}},"required":["limit"],"type":"object"},"powerscale:index/SynciqRulesWorkerRuleSchedule:SynciqRulesWorkerRuleSchedule":{"language":{"nodejs":{"requiredOutputs":["begin","daysOfWeeks","end"]}},"properties":{"begin":{"description":"Start time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (24h format hour, and minute).  A null value indicates the beginning of the day (`00:00`).\n","type":"string"},"daysOfWeeks":{"description":"Set of days of the week during which this rule is in effect. Accepted values are <span pulumi-lang-nodejs=\"`monday`\" pulumi-lang-dotnet=\"`Monday`\" pulumi-lang-go=\"`monday`\" pulumi-lang-python=\"`monday`\" pulumi-lang-yaml=\"`monday`\" pulumi-lang-java=\"`monday`\">`monday`</span>, <span pulumi-lang-nodejs=\"`tuesday`\" pulumi-lang-dotnet=\"`Tuesday`\" pulumi-lang-go=\"`tuesday`\" pulumi-lang-python=\"`tuesday`\" pulumi-lang-yaml=\"`tuesday`\" pulumi-lang-java=\"`tuesday`\">`tuesday`</span>, <span pulumi-lang-nodejs=\"`wednesday`\" pulumi-lang-dotnet=\"`Wednesday`\" pulumi-lang-go=\"`wednesday`\" pulumi-lang-python=\"`wednesday`\" pulumi-lang-yaml=\"`wednesday`\" pulumi-lang-java=\"`wednesday`\">`wednesday`</span>, <span pulumi-lang-nodejs=\"`thursday`\" pulumi-lang-dotnet=\"`Thursday`\" pulumi-lang-go=\"`thursday`\" pulumi-lang-python=\"`thursday`\" pulumi-lang-yaml=\"`thursday`\" pulumi-lang-java=\"`thursday`\">`thursday`</span>, <span pulumi-lang-nodejs=\"`friday`\" pulumi-lang-dotnet=\"`Friday`\" pulumi-lang-go=\"`friday`\" pulumi-lang-python=\"`friday`\" pulumi-lang-yaml=\"`friday`\" pulumi-lang-java=\"`friday`\">`friday`</span>, <span pulumi-lang-nodejs=\"`saturday`\" pulumi-lang-dotnet=\"`Saturday`\" pulumi-lang-go=\"`saturday`\" pulumi-lang-python=\"`saturday`\" pulumi-lang-yaml=\"`saturday`\" pulumi-lang-java=\"`saturday`\">`saturday`</span>, <span pulumi-lang-nodejs=\"`sunday`\" pulumi-lang-dotnet=\"`Sunday`\" pulumi-lang-go=\"`sunday`\" pulumi-lang-python=\"`sunday`\" pulumi-lang-yaml=\"`sunday`\" pulumi-lang-java=\"`sunday`\">`sunday`</span>. At least one day must be set.\n","items":{"type":"string"},"type":"array"},"end":{"description":"End time (inclusive) for this schedule, during its specified days. Format is `hh:mm` (three-letter weekday name abbreviation, 24h format hour, and minute).  A null value indicates the end of the day (`23:59`).\n","type":"string"}},"type":"object"},"powerscale:index/UserGid:UserGid":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/UserMappingRulesMappingUser:UserMappingRulesMappingUser":{"language":{"nodejs":{"requiredOutputs":["privileges","supplementalIdentities","user","zid","zone"]}},"properties":{"privileges":{"description":"Specifies the system-defined privilege that may be granted to users.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesMappingUserPrivilege:UserMappingRulesMappingUserPrivilege"},"type":"array"},"supplementalIdentities":{"description":"Specifies the configuration properties for a user.\n","items":{"$ref":"#/types/powerscale:index%2FUserMappingRulesMappingUserSupplementalIdentity:UserMappingRulesMappingUserSupplementalIdentity"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FUserMappingRulesMappingUserUser:UserMappingRulesMappingUserUser","description":"Specifies the configuration properties for a user.\n"},"zid":{"description":"Numeric ID of the access zone which contains this user.\n","type":"number"},"zone":{"description":"Name of the access zone which contains this user.\n","type":"string"}},"type":"object"},"powerscale:index/UserMappingRulesMappingUserPrivilege:UserMappingRulesMappingUserPrivilege":{"language":{"nodejs":{"requiredOutputs":["id","name","readOnly"]}},"properties":{"id":{"description":"Specifies the ID of the privilege.\n","type":"string"},"name":{"description":"Specifies the name of the privilege.\n","type":"string"},"readOnly":{"description":"True, if the privilege is read-only.\n","type":"boolean"}},"type":"object"},"powerscale:index/UserMappingRulesMappingUserSupplementalIdentity:UserMappingRulesMappingUserSupplementalIdentity":{"language":{"nodejs":{"requiredOutputs":["gid","name","sid"]}},"properties":{"gid":{"description":"Specifies a user or group GID.\n","type":"string"},"name":{"description":"Specifies a user or group name.\n","type":"string"},"sid":{"description":"Specifies a user or group SID.\n","type":"string"}},"type":"object"},"powerscale:index/UserMappingRulesMappingUserUser:UserMappingRulesMappingUserUser":{"language":{"nodejs":{"requiredOutputs":["name","onDiskUserIdentity","primaryGroupName","primaryGroupSid","sid","uid"]}},"properties":{"name":{"description":"Specifies the user name.\n","type":"string"},"onDiskUserIdentity":{"description":"Specifies the user identity on disk.\n","type":"string"},"primaryGroupName":{"description":"Specifies the primary group name.\n","type":"string"},"primaryGroupSid":{"description":"Specifies the primary group SID.\n","type":"string"},"sid":{"description":"Specifies a user or group SID.\n","type":"string"},"uid":{"description":"Specifies the user UID.\n","type":"string"}},"type":"object"},"powerscale:index/UserMappingRulesParameters:UserMappingRulesParameters":{"language":{"nodejs":{"requiredOutputs":["defaultUnixUser"]}},"properties":{"defaultUnixUser":{"$ref":"#/types/powerscale:index%2FUserMappingRulesParametersDefaultUnixUser:UserMappingRulesParametersDefaultUnixUser","description":"Specifies the default UNIX user information that can be applied if the final credentials do not have valid UID and GID information.\n"}},"type":"object"},"powerscale:index/UserMappingRulesParametersDefaultUnixUser:UserMappingRulesParametersDefaultUnixUser":{"language":{"nodejs":{"requiredOutputs":["domain","user"]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["user"],"type":"object"},"powerscale:index/UserMappingRulesRule:UserMappingRulesRule":{"language":{"nodejs":{"requiredOutputs":["operator","options","targetUser"]}},"properties":{"operator":{"description":"Specifies the operator to make rules on specified users or groups.\n","type":"string"},"options":{"$ref":"#/types/powerscale:index%2FUserMappingRulesRuleOptions:UserMappingRulesRuleOptions","description":"Specifies the mapping options for this user mapping rule.\n"},"sourceUser":{"$ref":"#/types/powerscale:index%2FUserMappingRulesRuleSourceUser:UserMappingRulesRuleSourceUser","description":"Specifies the source user information that the rule can be applied from.\n"},"targetUser":{"$ref":"#/types/powerscale:index%2FUserMappingRulesRuleTargetUser:UserMappingRulesRuleTargetUser","description":"Specifies the target user information that the rule can be applied to.\n"}},"required":["operator","targetUser"],"type":"object"},"powerscale:index/UserMappingRulesRuleOptions:UserMappingRulesRuleOptions":{"language":{"nodejs":{"requiredOutputs":["break","defaultUser","group","groups","user"]}},"properties":{"break":{"description":"If true, and the rule was applied successfully, stop processing further.\n","type":"boolean"},"defaultUser":{"$ref":"#/types/powerscale:index%2FUserMappingRulesRuleOptionsDefaultUser:UserMappingRulesRuleOptionsDefaultUser","description":"Specifies the default user information that can be applied if the final credentials do not have valid UID and GID information.\n"},"group":{"description":"If true, the primary GID and primary group SID should be copied to the existing credential.\n","type":"boolean"},"groups":{"description":"If true, all additional identifiers should be copied to the existing credential.\n","type":"boolean"},"user":{"description":"If true, the primary UID and primary user SID should be copied to the existing credential.\n","type":"boolean"}},"type":"object"},"powerscale:index/UserMappingRulesRuleOptionsDefaultUser:UserMappingRulesRuleOptionsDefaultUser":{"language":{"nodejs":{"requiredOutputs":["domain","user"]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["user"],"type":"object"},"powerscale:index/UserMappingRulesRuleSourceUser:UserMappingRulesRuleSourceUser":{"language":{"nodejs":{"requiredOutputs":["domain","user"]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["user"],"type":"object"},"powerscale:index/UserMappingRulesRuleTargetUser:UserMappingRulesRuleTargetUser":{"language":{"nodejs":{"requiredOutputs":["domain","user"]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["user"],"type":"object"},"powerscale:index/UserMappingRulesTestMappingUser:UserMappingRulesTestMappingUser":{"properties":{"name":{"description":"Specifies a user name.\n","type":"string"},"uid":{"description":"Specifies a numeric user identifier.\n","type":"number"}},"type":"object"},"powerscale:index/UserPrimaryGroupSid:UserPrimaryGroupSid":{"properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getAccesszoneAccessZonesDetail:getAccesszoneAccessZonesDetail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"alternateSystemProvider":{"description":"Specifies an alternate system provider.\n","type":"string"},"authProviders":{"description":"Specifies the list of authentication providers available on this access zone.\n","items":{"type":"string"},"type":"array"},"cacheEntryExpiry":{"description":"Specifies amount of time in seconds to cache a user/group.\n","type":"number"},"createPath":{"description":"Determines if a path is created when a path does not exist.\n","type":"boolean"},"groupnet":{"description":"Groupnet identifier\n","type":"string"},"homeDirectoryUmask":{"description":"Specifies the permissions set on automatically created user home directories.\n","type":"number"},"id":{"description":"Specifies the system-assigned ID for the access zone. This value is returned when an access zone is created through the POST method\n","type":"string"},"ifsRestricteds":{"description":"Specifies a list of users and groups that have read and write access to /ifs.\n","items":{"$ref":"#/types/powerscale:index%2FgetAccesszoneAccessZonesDetailIfsRestricted:getAccesszoneAccessZonesDetailIfsRestricted"},"type":"array"},"mapUntrusted":{"description":"Maps untrusted domains to this NetBIOS domain during authentication.\n","type":"string"},"name":{"description":"Specifies the access zone name.\n","type":"string"},"negativeCacheEntryExpiry":{"description":"Specifies number of seconds the negative cache entry is valid.\n","type":"number"},"netbiosName":{"description":"Specifies the NetBIOS name.\n","type":"string"},"path":{"description":"Specifies the access zone base directory path.\n","type":"string"},"skeletonDirectory":{"description":"Specifies the skeleton directory that is used for user home directories.\n","type":"string"},"system":{"description":"True if the access zone is built-in.\n","type":"boolean"},"systemProvider":{"description":"Specifies the system provider for the access zone.\n","type":"string"},"userMappingRules":{"description":"Specifies the current ID mapping rules.\n","items":{"type":"string"},"type":"array"},"zoneId":{"description":"Specifies the access zone ID on the system.\n","type":"number"}},"required":["alternateSystemProvider","authProviders","cacheEntryExpiry","createPath","groupnet","homeDirectoryUmask","id","ifsRestricteds","mapUntrusted","name","negativeCacheEntryExpiry","netbiosName","path","skeletonDirectory","system","systemProvider","userMappingRules","zoneId"],"type":"object"},"powerscale:index/getAccesszoneAccessZonesDetailIfsRestricted:getAccesszoneAccessZonesDetailIfsRestricted":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getAccesszoneFilter:getAccesszoneFilter":{"properties":{"names":{"items":{"type":"string"},"type":"array"}},"type":"object"},"powerscale:index/getAdsproviderAdsProvidersDetail:getAdsproviderAdsProvidersDetail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"allocateGids":{"description":"Allocates an ID for an unmapped Active Directory (ADS) group. ADS groups without GIDs can be proactively assigned a GID by the ID mapper. If the ID mapper option is disabled, GIDs are not proactively assigned, and when a primary group for a user does not include a GID, the system may allocate one.\n","type":"boolean"},"allocateUids":{"description":"Allocates a user ID for an unmapped Active Directory (ADS) user. ADS users without UIDs can be proactively assigned a UID by the ID mapper. IF the ID mapper option is disabled, UIDs are not proactively assigned, and when an identify for a user does not include a UID, the system may allocate one.\n","type":"boolean"},"assumeDefaultDomain":{"description":"Enables lookup of unqualified user names in the primary domain.\n","type":"boolean"},"authentication":{"description":"Enables authentication and identity management through the authentication provider.\n","type":"boolean"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"controllerTime":{"description":"Specifies the current time for the domain controllers.\n","type":"number"},"createHomeDirectory":{"description":"Automatically creates a home directory on the first login.\n","type":"boolean"},"domainOfflineAlerts":{"description":"Sends an alert if the domain goes offline.\n","type":"boolean"},"dupSpns":{"description":"Get duplicate SPNs in the provider domain.\n","items":{"type":"string"},"type":"array"},"extraExpectedSpns":{"description":"List of additional SPNs to expect beyond what automatic checking routines might find.\n","items":{"type":"string"},"type":"array"},"findableGroups":{"description":"Sets list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Sets list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"forest":{"description":"Specifies the Active Directory forest.\n","type":"string"},"groupnet":{"description":"Groupnet identifier.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"hostname":{"description":"Specifies the fully qualified hostname stored in the machine account.\n","type":"string"},"id":{"description":"Specifies the ID of the Active Directory provider instance.\n","type":"string"},"ignoreAllTrusts":{"description":"If set to true, ignores all trusted domains.\n","type":"boolean"},"ignoredTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to false.\n","items":{"type":"string"},"type":"array"},"includeTrustedDomains":{"description":"Includes trusted domains when 'ignore*all*trusts' is set to true.\n","items":{"type":"string"},"type":"array"},"instance":{"description":"Specifies Active Directory provider instance.\n","type":"string"},"ldapSignAndSeal":{"description":"Enables encryption and signing on LDAP requests.\n","type":"boolean"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"lookupDomains":{"description":"Limits user and group lookups to the specified domains.\n","items":{"type":"string"},"type":"array"},"lookupGroups":{"description":"Looks up AD groups in other providers before allocating a group ID.\n","type":"boolean"},"lookupNormalizeGroups":{"description":"Normalizes AD group names to lowercase before look up.\n","type":"boolean"},"lookupNormalizeUsers":{"description":"Normalize AD user names to lowercase before look up.\n","type":"boolean"},"lookupUsers":{"description":"Looks up AD users in other providers before allocating a user ID.\n","type":"boolean"},"machineAccount":{"description":"Specifies the machine account name when creating a SAM account with Active Directory.\n","type":"string"},"machinePasswordChanges":{"description":"Enables periodic changes of the machine password for security.\n","type":"boolean"},"machinePasswordLifespan":{"description":"Sets maximum age of a password in seconds.\n","type":"number"},"name":{"description":"Specifies the Active Directory provider name.\n","type":"string"},"netbiosDomain":{"description":"Specifies the NetBIOS domain name associated with the machine account.\n","type":"string"},"nodeDcAffinity":{"description":"Specifies the domain controller for which the node has affinity.\n","type":"string"},"nodeDcAffinityTimeout":{"description":"Specifies the timeout for the domain controller for which the local node has affinity.\n","type":"number"},"nssEnumeration":{"description":"Enables the Active Directory provider to respond to 'getpwent' and 'getgrent' requests.\n","type":"boolean"},"primaryDomain":{"description":"Specifies the AD domain to which the provider is joined.\n","type":"string"},"restrictFindable":{"description":"Check the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"rpcCallTimeout":{"description":"The maximum amount of time (in seconds) an RPC call to Active Directory is allowed to take.\n","type":"number"},"serverRetryLimit":{"description":"The number of retries attempted when a call to Active Directory fails due to network error.\n","type":"number"},"sfuSupport":{"description":"Specifies whether to support RFC 2307 attributes on ADS domain controllers.\n","type":"string"},"site":{"description":"Specifies the site for the Active Directory.\n","type":"string"},"status":{"description":"Specifies the status of the provider.\n","type":"string"},"storeSfuMappings":{"description":"Stores SFU mappings permanently in the ID mapper.\n","type":"boolean"},"system":{"description":"If set to true, indicates that this provider instance was created by OneFS and cannot be removed.\n","type":"boolean"},"unfindableGroups":{"description":"Specifies groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"zoneName":{"description":"Specifies the name of the access zone in which this provider was created.\n","type":"string"}},"required":["allocateGids","allocateUids","assumeDefaultDomain","authentication","checkOnlineInterval","controllerTime","createHomeDirectory","domainOfflineAlerts","dupSpns","extraExpectedSpns","findableGroups","findableUsers","forest","groupnet","homeDirectoryTemplate","hostname","id","ignoreAllTrusts","ignoredTrustedDomains","includeTrustedDomains","instance","ldapSignAndSeal","loginShell","lookupDomains","lookupGroups","lookupNormalizeGroups","lookupNormalizeUsers","lookupUsers","machineAccount","machinePasswordChanges","machinePasswordLifespan","name","netbiosDomain","nodeDcAffinity","nodeDcAffinityTimeout","nssEnumeration","primaryDomain","restrictFindable","rpcCallTimeout","serverRetryLimit","sfuSupport","site","status","storeSfuMappings","system","unfindableGroups","unfindableUsers","zoneName"],"type":"object"},"powerscale:index/getAdsproviderFilter:getAdsproviderFilter":{"properties":{"names":{"description":"Filter ads providers by names.\n","items":{"type":"string"},"type":"array"},"scope":{"description":"Filter ads providers by scope.\n","type":"string"}},"type":"object"},"powerscale:index/getClusterAcs:getClusterAcs":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"failedNodesSns":{"description":"list of failed nodes serial number.\n","items":{"type":"string"},"type":"array"},"joinedNodes":{"description":"the number of joined nodes.\n","type":"number"},"licenseStatus":{"description":"the status of license activation.\n","type":"string"},"srsStatus":{"description":"the status of SRS enablement.\n","type":"string"},"totalNodes":{"description":"total nodes number of the cluster.\n","type":"number"},"unresponsiveSns":{"description":"list of unresponsive nodes serial number.\n","items":{"type":"string"},"type":"array"}},"required":["failedNodesSns","joinedNodes","licenseStatus","srsStatus","totalNodes","unresponsiveSns"],"type":"object"},"powerscale:index/getClusterConfig:getClusterConfig":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"description":{"description":"Customer configurable description.\n","type":"string"},"devices":{"description":"device\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterConfigDevice:getClusterConfigDevice"},"type":"array"},"guid":{"description":"Cluster GUID.\n","type":"string"},"joinMode":{"description":"Node join mode: 'manual' or 'secure'.\n","type":"string"},"localDevid":{"description":"Device ID of the queried node.\n","type":"number"},"localLnn":{"description":"Device logical node number of the queried node.\n","type":"number"},"localSerial":{"description":"Device serial number of the queried node.\n","type":"string"},"name":{"description":"Cluster name.\n","type":"string"},"onefsVersion":{"$ref":"#/types/powerscale:index%2FgetClusterConfigOnefsVersion:getClusterConfigOnefsVersion","description":"version\n"},"timezone":{"$ref":"#/types/powerscale:index%2FgetClusterConfigTimezone:getClusterConfigTimezone","description":"version\n"}},"required":["description","devices","guid","joinMode","localDevid","localLnn","localSerial","name","onefsVersion","timezone"],"type":"object"},"powerscale:index/getClusterConfigDevice:getClusterConfigDevice":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"devid":{"description":"Device ID.\n","type":"number"},"guid":{"description":"Device GUID.\n","type":"string"},"isUp":{"description":"If true, this node is online and communicating with the local node and every other node with the<span pulumi-lang-nodejs=\" isUp \" pulumi-lang-dotnet=\" IsUp \" pulumi-lang-go=\" isUp \" pulumi-lang-python=\" is_up \" pulumi-lang-yaml=\" isUp \" pulumi-lang-java=\" isUp \"> is_up </span>property normally\n","type":"boolean"},"lnn":{"description":"Device logical node number.\n","type":"number"}},"required":["devid","guid","isUp","lnn"],"type":"object"},"powerscale:index/getClusterConfigOnefsVersion:getClusterConfigOnefsVersion":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"build":{"description":"OneFS build string.\n","type":"string"},"release":{"description":"Kernel release number.\n","type":"string"},"revision":{"description":"OneFS build number.\n","type":"string"},"type":{"description":"Kernel release type.\n","type":"string"},"version":{"description":"Kernel full version information.\n","type":"string"}},"required":["build","release","revision","type","version"],"type":"object"},"powerscale:index/getClusterConfigTimezone:getClusterConfigTimezone":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"abbreviation":{"description":"Timezone abbreviation.\n","type":"string"},"custom":{"description":"Customer timezone information.\n","type":"string"},"name":{"description":"Timezone full name.\n","type":"string"},"path":{"description":"Timezone hierarchical name.\n","type":"string"}},"required":["abbreviation","custom","name","path"],"type":"object"},"powerscale:index/getClusterEmailSettings:getClusterEmailSettings":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"batchMode":{"description":"This setting determines how notifications will be batched together to be sent by email.  'none' means each notification will be sent separately.  'severity' means notifications of the same severity will be sent together.  'category' means notifications of the same category will be sent together.  'all' means all notifications will be batched together and sent in a single email.\n","type":"string"},"mailRelay":{"description":"The address of the SMTP server to be used for relaying the notification messages.  An SMTP server is required in order to send notifications.  If this string is empty, no emails will be sent.\n","type":"string"},"mailSender":{"description":"The full email address that will appear as the sender of notification messages.\n","type":"string"},"mailSubject":{"description":"The subject line for notification messages from this cluster.\n","type":"string"},"smtpAuthPasswdSet":{"description":"Indicates if an SMTP authentication password is set.\n","type":"boolean"},"smtpAuthSecurity":{"description":"The type of secure communication protocol to use if SMTP is being used.  If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used.\n","type":"string"},"smtpAuthUsername":{"description":"Username to authenticate with if SMTP authentication is being used.\n","type":"string"},"smtpPort":{"description":"The port on the SMTP server to be used for relaying the notification messages.\n","type":"number"},"useSmtpAuth":{"description":"If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails.  If false, the cluster will attempt to send its notification emails without authentication.\n","type":"boolean"},"userTemplate":{"description":"Location of a custom template file that can be used to specify the layout of the notification emails.\n","type":"string"}},"required":["batchMode","mailRelay","mailSender","mailSubject","smtpAuthPasswdSet","smtpAuthSecurity","smtpAuthUsername","smtpPort","useSmtpAuth","userTemplate"],"type":"object"},"powerscale:index/getClusterIdentity:getClusterIdentity":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"description":{"description":"A description of the cluster.\n","type":"string"},"logon":{"$ref":"#/types/powerscale:index%2FgetClusterIdentityLogon:getClusterIdentityLogon","description":"//\n"},"name":{"description":"The name of the cluster.\n","type":"string"}},"required":["description","logon","name"],"type":"object"},"powerscale:index/getClusterIdentityLogon:getClusterIdentityLogon":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"motd":{"description":"The message of the day.\n","type":"string"},"motdHeader":{"description":"The header to the message of the day.\n","type":"string"}},"required":["motd","motdHeader"],"type":"object"},"powerscale:index/getClusterInternalNetworks:getClusterInternalNetworks":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"failoverIpAddresses":{"description":"Array of IP address ranges to be used to configure the internal failover network of the OneFS cluster.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterInternalNetworksFailoverIpAddress:getClusterInternalNetworksFailoverIpAddress"},"type":"array"},"failoverStatus":{"description":"Status of failover network.\n","type":"string"},"intAFabric":{"description":"Network fabric used for the primary network int-a.\n","type":"string"},"intAIpAddresses":{"description":"Array of IP address ranges to be used to configure the internal int-a network of the OneFS cluster.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterInternalNetworksIntAIpAddress:getClusterInternalNetworksIntAIpAddress"},"type":"array"},"intAMtu":{"description":"Maximum Transfer Unit (MTU) of the primary network int-a.\n","type":"number"},"intAPrefixLength":{"description":"Prefixlen specifies the length of network bits used in an IP address. This field is the right-hand part of the CIDR notation representing the subnet mask.\n","type":"number"},"intAStatus":{"description":"Status of the primary network int-a.\n","type":"string"},"intBFabric":{"description":"Network fabric used for the failover network.\n","type":"string"},"intBIpAddresses":{"description":"Array of IP address ranges to be used to configure the internal int-b network of the OneFS cluster.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterInternalNetworksIntBIpAddress:getClusterInternalNetworksIntBIpAddress"},"type":"array"},"intBMtu":{"description":"Maximum Transfer Unit (MTU) of the failover network int-b.\n","type":"number"},"intBPrefixLength":{"description":"Prefixlen specifies the length of network bits used in an IP address. This field is the right-hand part of the CIDR notation representing the subnet mask.\n","type":"number"}},"required":["failoverIpAddresses","failoverStatus","intAFabric","intAIpAddresses","intAMtu","intAPrefixLength","intAStatus","intBFabric","intBIpAddresses","intBMtu","intBPrefixLength"],"type":"object"},"powerscale:index/getClusterInternalNetworksFailoverIpAddress:getClusterInternalNetworksFailoverIpAddress":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"high":{"description":"IPv4 address in the format: xxx.xxx.xxx.xxx\n","type":"string"},"low":{"description":"IPv4 address in the format: xxx.xxx.xxx.xxx\n","type":"string"}},"required":["high","low"],"type":"object"},"powerscale:index/getClusterInternalNetworksIntAIpAddress:getClusterInternalNetworksIntAIpAddress":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"high":{"description":"IPv4 address in the format: xxx.xxx.xxx.xxx\n","type":"string"},"low":{"description":"IPv4 address in the format: xxx.xxx.xxx.xxx\n","type":"string"}},"required":["high","low"],"type":"object"},"powerscale:index/getClusterInternalNetworksIntBIpAddress:getClusterInternalNetworksIntBIpAddress":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"high":{"description":"IPv4 address in the format: xxx.xxx.xxx.xxx\n","type":"string"},"low":{"description":"IPv4 address in the format: xxx.xxx.xxx.xxx\n","type":"string"}},"required":["high","low"],"type":"object"},"powerscale:index/getClusterNodes:getClusterNodes":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"errors":{"description":"A list of errors encountered by the individual nodes involved in this request, or an empty list if there were no errors.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesError:getClusterNodesError"},"type":"array"},"nodes":{"description":"The responses from the individual nodes involved in this request.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNode:getClusterNodesNode"},"type":"array"},"total":{"description":"The total number of nodes responding.\n","type":"number"}},"required":["errors","nodes","total"],"type":"object"},"powerscale:index/getClusterNodesError:getClusterNodesError":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"code":{"description":"The error code.\n","type":"string"},"field":{"description":"The field with the error if applicable.\n","type":"string"},"id":{"description":"Node ID (Device Number) of a node.\n","type":"number"},"lnn":{"description":"Logical Node Number (LNN) of a node.\n","type":"number"},"message":{"description":"The error message.\n","type":"string"},"status":{"description":"HTTP Status code returned by this node.\n","type":"number"}},"required":["code","field","id","lnn","message","status"],"type":"object"},"powerscale:index/getClusterNodesNode:getClusterNodesNode":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"drives":{"description":"List of the drives in this node.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeDrife:getClusterNodesNodeDrife"},"type":"array"},"error":{"description":"Error message, if the HTTP status returned from this node was not 200.\n","type":"string"},"hardware":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeHardware:getClusterNodesNodeHardware","description":"//\n"},"id":{"description":"Node ID (Device Number) of a node.\n","type":"number"},"lnn":{"description":"Logical Node Number (LNN) of a node.\n","type":"number"},"partitions":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodePartitions:getClusterNodesNodePartitions","description":"//\n"},"sensors":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeSensors:getClusterNodesNodeSensors","description":"//\n"},"state":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeState:getClusterNodesNodeState","description":"//\n"},"status":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatus:getClusterNodesNodeStatus","description":"//\n"}},"required":["drives","error","hardware","id","lnn","partitions","sensors","state","status"],"type":"object"},"powerscale:index/getClusterNodesNodeDrife:getClusterNodesNodeDrife":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"baynum":{"description":"Numerical representation of this drive's bay.\n","type":"number"},"blocks":{"description":"Number of blocks on this drive.\n","type":"number"},"chassis":{"description":"The chassis number which contains this drive.\n","type":"number"},"devname":{"description":"This drive's device name.\n","type":"string"},"firmware":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeDrifeFirmware:getClusterNodesNodeDrifeFirmware","description":"Drive firmware information\n"},"handle":{"description":"Drive*d's handle representation for this driveIf we fail to retrieve the handle for this drive from drive*d: -1\n","type":"number"},"interfaceType":{"description":"String representation of this drive's interface type.\n","type":"string"},"lnum":{"description":"This drive's logical drive number in IFS.\n","type":"number"},"locnstr":{"description":"String representation of this drive's physical location.\n","type":"string"},"logicalBlockLength":{"description":"Size of a logical block on this drive.\n","type":"number"},"mediaType":{"description":"String representation of this drive's media type.\n","type":"string"},"model":{"description":"This drive's manufacturer and model.\n","type":"string"},"physicalBlockLength":{"description":"Size of a physical block on this drive.\n","type":"number"},"present":{"description":"Indicates whether this drive is physically present in the node.\n","type":"boolean"},"purpose":{"description":"This drive's purpose in the DRV state machine.\n","type":"string"},"purposeDescription":{"description":"Description of this drive's purpose.\n","type":"string"},"serial":{"description":"Serial number for this drive.\n","type":"string"},"uiState":{"description":"This drive's state as presented to the UI.\n","type":"string"},"wwn":{"description":"The drive's 'worldwide name' from its NAA identifiers.\n","type":"string"},"xLoc":{"description":"This drive's x-axis grid location.\n","type":"number"},"yLoc":{"description":"This drive's y-axis grid location.\n","type":"number"}},"required":["baynum","blocks","chassis","devname","firmware","handle","interfaceType","lnum","locnstr","logicalBlockLength","mediaType","model","physicalBlockLength","present","purpose","purposeDescription","serial","uiState","wwn","xLoc","yLoc"],"type":"object"},"powerscale:index/getClusterNodesNodeDrifeFirmware:getClusterNodesNodeDrifeFirmware":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"currentFirmware":{"description":"This drive's current firmware revision\n","type":"string"},"desiredFirmware":{"description":"This drive's desired firmware revision.\n","type":"string"}},"required":["currentFirmware","desiredFirmware"],"type":"object"},"powerscale:index/getClusterNodesNodeHardware:getClusterNodesNodeHardware":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"chassis":{"description":"Name of this node's chassis.\n","type":"string"},"chassisCode":{"description":"Chassis code of this node (1U, 2U, etc.).\n","type":"string"},"chassisCount":{"description":"Number of chassis making up this node.\n","type":"string"},"class":{"description":"Class of this node (storage, accelerator, etc.).\n","type":"string"},"configurationId":{"description":"Node configuration ID.\n","type":"string"},"cpu":{"description":"Manufacturer and model of this node's CPU.\n","type":"string"},"diskController":{"description":"Manufacturer and model of this node's disk controller.\n","type":"string"},"diskExpander":{"description":"Manufacturer and model of this node's disk expander.\n","type":"string"},"familyCode":{"description":"Family code of this node (X, S, NL, etc.).\n","type":"string"},"flashDrive":{"description":"Manufacturer, model, and device id of this node's flash drive.\n","type":"string"},"generationCode":{"description":"Generation code of this node.\n","type":"string"},"hwgen":{"description":"PowerScale hardware generation name.\n","type":"string"},"imbVersion":{"description":"Version of this node's PowerScale Management Board.\n","type":"string"},"infiniband":{"description":"Infiniband card type.\n","type":"string"},"lcdVersion":{"description":"Version of the LCD panel.\n","type":"string"},"motherboard":{"description":"Manufacturer and model of this node's motherboard.\n","type":"string"},"netInterfaces":{"description":"Description of all this node's network interfaces.\n","type":"string"},"nvram":{"description":"Manufacturer and model of this node's NVRAM board.\n","type":"string"},"powersupplies":{"description":"Description strings for each power supply on this node.\n","items":{"type":"string"},"type":"array"},"processor":{"description":"Number of processors and cores on this node.\n","type":"string"},"product":{"description":"PowerScale product name.\n","type":"string"},"ram":{"description":"Size of RAM in bytes.\n","type":"number"},"serialNumber":{"description":"Serial number of this node.\n","type":"string"},"series":{"description":"Series of this node (X, I, NL, etc.).\n","type":"string"},"storageClass":{"description":"Storage class of this node (storage or diskless).\n","type":"string"}},"required":["chassis","chassisCode","chassisCount","class","configurationId","cpu","diskController","diskExpander","familyCode","flashDrive","generationCode","hwgen","imbVersion","infiniband","lcdVersion","motherboard","netInterfaces","nvram","powersupplies","processor","product","ram","serialNumber","series","storageClass"],"type":"object"},"powerscale:index/getClusterNodesNodePartitions:getClusterNodesNodePartitions":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"count":{"description":"Count of how many partitions are included.\n","type":"number"},"partitions":{"description":"Partition information.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodePartitionsPartition:getClusterNodesNodePartitionsPartition"},"type":"array"}},"required":["count","partitions"],"type":"object"},"powerscale:index/getClusterNodesNodePartitionsPartition:getClusterNodesNodePartitionsPartition":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"blockSize":{"description":"The block size used for the reported partition information.\n","type":"number"},"capacity":{"description":"Total blocks on this file system partition.\n","type":"number"},"componentDevices":{"description":"Comma separated list of devices used for this file system partition.\n","type":"string"},"mountPoint":{"description":"Directory on which this partition is mounted.\n","type":"string"},"percentUsed":{"description":"Used blocks on this file system partition, expressed as a percentage.\n","type":"string"},"statfs":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodePartitionsPartitionStatfs:getClusterNodesNodePartitionsPartitionStatfs","description":"//\n"},"used":{"description":"Used blocks on this file system partition.\n","type":"number"}},"required":["blockSize","capacity","componentDevices","mountPoint","percentUsed","statfs","used"],"type":"object"},"powerscale:index/getClusterNodesNodePartitionsPartitionStatfs:getClusterNodesNodePartitionsPartitionStatfs":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"fBavail":{"description":"Free blocks available to non-superuser on this partition.\n","type":"number"},"fBfree":{"description":"Free blocks on this partition.\n","type":"number"},"fBlocks":{"description":"Total data blocks on this partition.\n","type":"number"},"fBsize":{"description":"Filesystem fragment size; block size in OneFS.\n","type":"number"},"fFfree":{"description":"Free file nodes avail to non-superuser.\n","type":"number"},"fFiles":{"description":"Total file nodes in filesystem.\n","type":"number"},"fFlags":{"description":"Mount exported flags.\n","type":"number"},"fFstypename":{"description":"File system type name.\n","type":"string"},"fIosize":{"description":"Optimal transfer block size.\n","type":"number"},"fMntfromname":{"description":"Names of devices this partition is mounted from.\n","type":"string"},"fMntonname":{"description":"Directory this partition is mounted to.\n","type":"string"},"fNamemax":{"description":"Maximum filename length.\n","type":"number"},"fOwner":{"description":"UID of user that mounted the filesystem.\n","type":"number"},"fType":{"description":"Type of filesystem.\n","type":"number"},"fVersion":{"description":"statfs() structure version number.\n","type":"number"}},"required":["fBavail","fBfree","fBlocks","fBsize","fFfree","fFiles","fFlags","fFstypename","fIosize","fMntfromname","fMntonname","fNamemax","fOwner","fType","fVersion"],"type":"object"},"powerscale:index/getClusterNodesNodeSensors:getClusterNodesNodeSensors":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"sensors":{"description":"This node's sensor information.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeSensorsSensor:getClusterNodesNodeSensorsSensor"},"type":"array"}},"required":["sensors"],"type":"object"},"powerscale:index/getClusterNodesNodeSensorsSensor:getClusterNodesNodeSensorsSensor":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"count":{"description":"The count of values in this sensor group.\n","type":"number"},"name":{"description":"The name of this sensor group.\n","type":"string"},"values":{"description":"The list of specific sensor value info in this sensor group.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeSensorsSensorValue:getClusterNodesNodeSensorsSensorValue"},"type":"array"}},"required":["count","name","values"],"type":"object"},"powerscale:index/getClusterNodesNodeSensorsSensorValue:getClusterNodesNodeSensorsSensorValue":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"desc":{"description":"The descriptive name of this sensor.\n","type":"string"},"name":{"description":"The identifier name of this sensor.\n","type":"string"},"units":{"description":"The units of this sensor.\n","type":"string"},"value":{"description":"The value of this sensor.\n","type":"string"}},"required":["desc","name","units","value"],"type":"object"},"powerscale:index/getClusterNodesNodeState:getClusterNodesNodeState":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"readonly":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStateReadonly:getClusterNodesNodeStateReadonly","description":"//\n"},"servicelight":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStateServicelight:getClusterNodesNodeStateServicelight","description":"//\n"},"smartfail":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStateSmartfail:getClusterNodesNodeStateSmartfail","description":"//\n"}},"required":["readonly","servicelight","smartfail"],"type":"object"},"powerscale:index/getClusterNodesNodeStateReadonly:getClusterNodesNodeStateReadonly":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"allowed":{"description":"The current read-only mode allowed status for the node.\n","type":"boolean"},"enabled":{"description":"The current read-only user mode status for the node. NOTE: If read-only mode is currently disallowed for this node, it will remain read/write until read-only mode is allowed again. This value only sets or clears any user-specified requests for read-only mode. If the node has been placed into read-only mode by the system, it will remain in read-only mode until the system conditions which triggered read-only mode have cleared.\n","type":"boolean"},"mode":{"description":"The current read-only mode status for the node.\n","type":"boolean"},"status":{"description":"The current read-only mode status description for the node.\n","type":"string"},"valid":{"description":"The read-only state values are valid (False = Error).\n","type":"boolean"},"value":{"description":"The current read-only value (enumerated bitfield) for the node.\n","type":"number"}},"required":["allowed","enabled","mode","status","valid","value"],"type":"object"},"powerscale:index/getClusterNodesNodeStateServicelight:getClusterNodesNodeStateServicelight":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"The node service light state (True = on).\n","type":"boolean"}},"required":["enabled"],"type":"object"},"powerscale:index/getClusterNodesNodeStateSmartfail:getClusterNodesNodeStateSmartfail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"smartfailed":{"description":"This node is smartfailed (soft_devs).\n","type":"boolean"}},"required":["smartfailed"],"type":"object"},"powerscale:index/getClusterNodesNodeStatus:getClusterNodesNodeStatus":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"batterystatus":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatusBatterystatus:getClusterNodesNodeStatusBatterystatus","description":"//\n"},"capacities":{"description":"Storage capacity of this node.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatusCapacity:getClusterNodesNodeStatusCapacity"},"type":"array"},"cpu":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatusCpu:getClusterNodesNodeStatusCpu","description":"//\n"},"nvram":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatusNvram:getClusterNodesNodeStatusNvram","description":"//\n"},"powersupplies":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatusPowersupplies:getClusterNodesNodeStatusPowersupplies","description":"//\n"},"release":{"description":"OneFS release.\n","type":"string"},"uptime":{"description":"Seconds this node has been online.\n","type":"number"},"version":{"description":"OneFS version.\n","type":"string"}},"required":["batterystatus","capacities","cpu","nvram","powersupplies","release","uptime","version"],"type":"object"},"powerscale:index/getClusterNodesNodeStatusBatterystatus:getClusterNodesNodeStatusBatterystatus":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"lastTestTime1":{"description":"The last battery test time for battery 1.\n","type":"string"},"lastTestTime2":{"description":"The last battery test time for battery 2.\n","type":"string"},"nextTestTime1":{"description":"The next checkup for battery 1.\n","type":"string"},"nextTestTime2":{"description":"The next checkup for battery 2.\n","type":"string"},"present":{"description":"Node has battery status.\n","type":"boolean"},"result1":{"description":"The result of the last battery test for battery 1.\n","type":"string"},"result2":{"description":"The result of the last battery test for battery 2.\n","type":"string"},"status1":{"description":"The status of battery 1.\n","type":"string"},"status2":{"description":"The status of battery 2.\n","type":"string"},"supported":{"description":"Node supports battery status.\n","type":"boolean"}},"required":["lastTestTime1","lastTestTime2","nextTestTime1","nextTestTime2","present","result1","result2","status1","status2","supported"],"type":"object"},"powerscale:index/getClusterNodesNodeStatusCapacity:getClusterNodesNodeStatusCapacity":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"bytes":{"description":"Total device storage bytes.\n","type":"number"},"count":{"description":"Total device count.\n","type":"number"},"type":{"description":"Device type.\n","type":"string"}},"required":["bytes","count","type"],"type":"object"},"powerscale:index/getClusterNodesNodeStatusCpu:getClusterNodesNodeStatusCpu":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"model":{"description":"Manufacturer model description of this CPU.\n","type":"string"},"overtemp":{"description":"CPU overtemp state.\n","type":"string"},"proc":{"description":"Type of processor and core of this CPU.\n","type":"string"},"speedLimit":{"description":"CPU throttling (expressed as a percentage).\n","type":"string"}},"required":["model","overtemp","proc","speedLimit"],"type":"object"},"powerscale:index/getClusterNodesNodeStatusNvram:getClusterNodesNodeStatusNvram":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"batteries":{"description":"This node's NVRAM battery status information.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatusNvramBattery:getClusterNodesNodeStatusNvramBattery"},"type":"array"},"batteryCount":{"description":"This node's NVRAM battery count. On failure: -1, otherwise 1 or 2.\n","type":"number"},"chargeStatus":{"description":"This node's NVRAM battery charge status, as a color.\n","type":"string"},"chargeStatusNumber":{"description":"This node's NVRAM battery charge status, as a number. Error or not supported: -1. BR_BLACK: 0. BR_GREEN: 1. BR_YELLOW: 2. BR_RED: 3.\n","type":"number"},"device":{"description":"This node's NVRAM device name with path.\n","type":"string"},"present":{"description":"This node has NVRAM.\n","type":"boolean"},"presentFlash":{"description":"This node has NVRAM with flash storage.\n","type":"boolean"},"presentSize":{"description":"The size of the NVRAM, in bytes.\n","type":"number"},"presentType":{"description":"This node's NVRAM type.\n","type":"string"},"shipMode":{"description":"This node's current ship mode state for NVRAM batteries. If not supported or on failure: -1. Disabled: 0. Enabled: 1.\n","type":"number"},"supported":{"description":"This node supports NVRAM.\n","type":"boolean"},"supportedFlash":{"description":"This node supports NVRAM with flash storage.\n","type":"boolean"},"supportedSize":{"description":"The maximum size of the NVRAM, in bytes.\n","type":"number"},"supportedType":{"description":"This node's supported NVRAM type.\n","type":"string"}},"required":["batteries","batteryCount","chargeStatus","chargeStatusNumber","device","present","presentFlash","presentSize","presentType","shipMode","supported","supportedFlash","supportedSize","supportedType"],"type":"object"},"powerscale:index/getClusterNodesNodeStatusNvramBattery:getClusterNodesNodeStatusNvramBattery":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"color":{"description":"The current status color of the NVRAM battery.\n","type":"string"},"id":{"description":"Unique identifier of the cluster.\n","type":"number"},"status":{"description":"The current status message of the NVRAM battery.\n","type":"string"},"voltage":{"description":"The current voltage of the NVRAM battery.\n","type":"string"}},"required":["color","id","status","voltage"],"type":"object"},"powerscale:index/getClusterNodesNodeStatusPowersupplies:getClusterNodesNodeStatusPowersupplies":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"count":{"description":"Count of how many power supplies are supported.\n","type":"number"},"failures":{"description":"Count of how many power supplies have failed.\n","type":"number"},"hasCff":{"description":"Does this node have a CFF power supply.\n","type":"boolean"},"status":{"description":"A descriptive status string for this node's power supplies.\n","type":"string"},"supplies":{"description":"List of this node's power supplies.\n","items":{"$ref":"#/types/powerscale:index%2FgetClusterNodesNodeStatusPowersuppliesSupply:getClusterNodesNodeStatusPowersuppliesSupply"},"type":"array"},"supportsCff":{"description":"Does this node support CFF power supplies.\n","type":"boolean"}},"required":["count","failures","hasCff","status","supplies","supportsCff"],"type":"object"},"powerscale:index/getClusterNodesNodeStatusPowersuppliesSupply:getClusterNodesNodeStatusPowersuppliesSupply":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"chassis":{"description":"Which node chassis is this power supply in.\n","type":"number"},"firmware":{"description":"The current firmware revision of this power supply.\n","type":"string"},"good":{"description":"Is this power supply in a failure state.\n","type":"string"},"id":{"description":"Unique identifier of the cluster.\n","type":"number"},"name":{"description":"Complete identifying string for this power supply.\n","type":"string"},"status":{"description":"A descriptive status string for this power supply.\n","type":"string"},"type":{"description":"The type of this power supply.\n","type":"string"}},"required":["chassis","firmware","good","id","name","status","type"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicy:getFilepoolPolicyFilePoolPolicy":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"actions":{"description":"A list of actions to be taken for matching files.\n","items":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyAction:getFilepoolPolicyFilePoolPolicyAction"},"type":"array"},"applyOrder":{"description":"The order in which this policy should be applied (relative to other policies).\n","type":"number"},"birthClusterId":{"description":"The guid assigned to the cluster on which the policy was created.\n","type":"string"},"description":{"description":"A description for this File Pool Policy.\n","type":"string"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyFileMatchingPattern:getFilepoolPolicyFilePoolPolicyFileMatchingPattern","description":"Specifies the file matching rules for determining which files will be managed by this policy.\n"},"id":{"description":"A unique name for this File Pool Policy.\n","type":"string"},"name":{"description":"A unique name for this File Pool Policy.\n","type":"string"},"state":{"description":"Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\").\n","type":"string"},"stateDetails":{"description":"Gives further information to describe the state of this policy.\n","type":"string"}},"required":["actions","applyOrder","birthClusterId","description","fileMatchingPattern","id","name","state","stateDetails"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyAction:getFilepoolPolicyFilePoolPolicyAction":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"actionType":{"description":"action*type Acceptable values: set*requested*protection, set*data*access*pattern, enable*coalescer, apply*data*storage*policy, apply*snapshot*storage*policy, set*cloudpool*policy, enable*packing.\n","type":"string"},"cloudpoolPolicyAction":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyAction:getFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyAction","description":"Action for set*cloudpool*policy type.\n"},"dataAccessPatternAction":{"description":"Action for set*data*access_pattern type. Set data access pattern optimization. Acceptable values: random, concurrency, streaming.\n","type":"string"},"dataStoragePolicyAction":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyActionDataStoragePolicyAction:getFilepoolPolicyFilePoolPolicyActionDataStoragePolicyAction","description":"Action for apply*data*storage*policy.\n"},"enableCoalescerAction":{"description":"Action for<span pulumi-lang-nodejs=\" enableCoalescer \" pulumi-lang-dotnet=\" EnableCoalescer \" pulumi-lang-go=\" enableCoalescer \" pulumi-lang-python=\" enable_coalescer \" pulumi-lang-yaml=\" enableCoalescer \" pulumi-lang-java=\" enableCoalescer \"> enable_coalescer </span>type. Set write performance optimization. True to enable SmartCache action.\n","type":"boolean"},"enablePackingAction":{"description":"Action for enable*packing type. True to enable enable*packing action.\n","type":"boolean"},"requestedProtectionAction":{"description":"Action for set*requested*protection type. Acceptable values: default, +1n, +2d:1n, +2n, +3d:1n, +3d:1n1d, +3n, +4d:1n, +4d:2n, +4n, 2x, 3x, 4x, 5x, 6x, 7x, 8x.\n","type":"string"},"snapshotStoragePolicyAction":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyActionSnapshotStoragePolicyAction:getFilepoolPolicyFilePoolPolicyActionSnapshotStoragePolicyAction","description":"Action for apply*snapshot*storage*policy.\n"}},"required":["actionType","cloudpoolPolicyAction","dataAccessPatternAction","dataStoragePolicyAction","enableCoalescerAction","enablePackingAction","requestedProtectionAction","snapshotStoragePolicyAction"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyAction:getFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyAction":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"archiveSnapshotFiles":{"description":"Specifies if files with snapshots should be archived.\n","type":"boolean"},"cache":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyActionCache:getFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyActionCache","description":"Specifies default cloudpool cache settings for new filepool policies.\n"},"compression":{"description":"Specifies if files should be compressed.\n","type":"boolean"},"dataRetention":{"description":"Specifies the minimum amount of time archived data will be retained in the cloud after deletion.\n","type":"number"},"encryption":{"description":"Specifies if files should be encrypted.\n","type":"boolean"},"fullBackupRetention":{"description":"The minimum amount of time cloud files will be retained after the creation of a full NDMP backup. (Used with NDMP backups only.  Not applicable to SyncIQ.)\n","type":"number"},"incrementalBackupRetention":{"description":"The minimum amount of time cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. (Used with SyncIQ and NDMP backups.)\n","type":"number"},"pool":{"description":"Specifies the cloudPool storage target.\n","type":"string"},"writebackFrequency":{"description":"The minimum amount of time to wait before updating cloud data with local changes.\n","type":"number"}},"required":["archiveSnapshotFiles","cache","compression","dataRetention","encryption","fullBackupRetention","incrementalBackupRetention","pool","writebackFrequency"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyActionCache:getFilepoolPolicyFilePoolPolicyActionCloudpoolPolicyActionCache":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"expiration":{"description":"Specifies cache expiration.\n","type":"number"},"readAhead":{"description":"Specifies cache read ahead type. Acceptable values: partial, full.\n","type":"string"},"type":{"description":"Specifies cache type. Acceptable values: cached, no-cache.\n","type":"string"}},"required":["expiration","readAhead","type"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyActionDataStoragePolicyAction:getFilepoolPolicyFilePoolPolicyActionDataStoragePolicyAction":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"ssdStrategy":{"description":"Specifies the SSD strategy. Acceptable values: metadata, metadata-write, data, avoid.\n","type":"string"},"storagepool":{"description":"Specifies the storage target.\n","type":"string"}},"required":["ssdStrategy","storagepool"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyActionSnapshotStoragePolicyAction:getFilepoolPolicyFilePoolPolicyActionSnapshotStoragePolicyAction":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"ssdStrategy":{"description":"Specifies the SSD strategy. Acceptable values: metadata, metadata-write, data, avoid.\n","type":"string"},"storagepool":{"description":"Specifies the snapshot storage target.\n","type":"string"}},"required":["ssdStrategy","storagepool"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyFileMatchingPattern:getFilepoolPolicyFilePoolPolicyFileMatchingPattern":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"orCriterias":{"description":"List of or*criteria file matching rules for this policy.\n","items":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteria:getFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteria"},"type":"array"}},"required":["orCriterias"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteria:getFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"andCriterias":{"description":"List of and*criteria file matching rules for this policy.\n","items":{"$ref":"#/types/powerscale:index%2FgetFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteriaAndCriteria:getFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteriaAndCriteria"},"type":"array"}},"required":["andCriterias"],"type":"object"},"powerscale:index/getFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteriaAndCriteria:getFilepoolPolicyFilePoolPolicyFileMatchingPatternOrCriteriaAndCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"attributeExists":{"description":"Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute').\n","type":"boolean"},"beginsWith":{"description":"True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path').\n","type":"boolean"},"caseSensitive":{"description":"True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path').\n","type":"boolean"},"field":{"description":"File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute').\n","type":"string"},"operator":{"description":"The comparison operator to use while comparing an attribute with its value.\n","type":"string"},"type":{"description":"The file attribute to be compared to a given value.\n","type":"string"},"units":{"description":"Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size').\n","type":"string"},"useRelativeTime":{"description":"Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed*time, birth*time, changed*time or metadata*changed_time}.\n","type":"boolean"},"value":{"description":"The value to be compared against a file attribute.\n","type":"string"}},"required":["attributeExists","beginsWith","caseSensitive","field","operator","type","units","useRelativeTime","value"],"type":"object"},"powerscale:index/getFilepoolPolicyFilter:getFilepoolPolicyFilter":{"properties":{"names":{"items":{"type":"string"},"type":"array"}},"type":"object"},"powerscale:index/getFilesystemFileSystemsDetails:getFilesystemFileSystemsDetails":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"fileSystemAttributes":{"description":"FileSystems Attributes\n","items":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemAttribute:getFilesystemFileSystemsDetailsFileSystemAttribute"},"type":"array"},"fileSystemNamespaceAcl":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemNamespaceAcl:getFilesystemFileSystemsDetailsFileSystemNamespaceAcl","description":"Filesystem acl. Shows the access control list for the FileSystem(Namespace directory)\n"},"fileSystemQuotas":{"description":"Filesystem quotas\n","items":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemQuota:getFilesystemFileSystemsDetailsFileSystemQuota"},"type":"array"},"fileSystemSnapshots":{"description":"Filesystem snapshots\n","items":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemSnapshot:getFilesystemFileSystemsDetailsFileSystemSnapshot"},"type":"array"}},"required":["fileSystemAttributes","fileSystemNamespaceAcl","fileSystemQuotas","fileSystemSnapshots"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemAttribute:getFilesystemFileSystemsDetailsFileSystemAttribute":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"name":{"description":"Attribute name\n","type":"string"},"namespace":{"description":"Attribute namespace\n","type":"string"},"value":{"description":"Attribute value\n","type":"string"}},"required":["name","namespace","value"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemNamespaceAcl:getFilesystemFileSystemsDetailsFileSystemNamespaceAcl":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"acls":{"description":"Filesystem Access Control List\n","items":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemNamespaceAclAcl:getFilesystemFileSystemsDetailsFileSystemNamespaceAclAcl"},"type":"array"},"action":{"description":"Acl action\n","type":"string"},"authoritative":{"description":"Acl authoritative\n","type":"string"},"group":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemNamespaceAclGroup:getFilesystemFileSystemsDetailsFileSystemNamespaceAclGroup","description":"ACL group\n"},"mode":{"description":"Acl mode\n","type":"string"},"owner":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemNamespaceAclOwner:getFilesystemFileSystemsDetailsFileSystemNamespaceAclOwner","description":"ACL owner\n"}},"required":["acls","action","authoritative","group","mode","owner"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemNamespaceAclAcl:getFilesystemFileSystemsDetailsFileSystemNamespaceAclAcl":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"accessRights":{"description":"Access rights\n","items":{"type":"string"},"type":"array"},"accessType":{"description":"Access type\n","type":"string"},"inheritFlags":{"description":"Inherit flags\n","items":{"type":"string"},"type":"array"},"op":{"description":"Op\n","type":"string"},"trustee":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemNamespaceAclAclTrustee:getFilesystemFileSystemsDetailsFileSystemNamespaceAclAclTrustee","description":"Trustee\n"}},"required":["accessRights","accessType","inheritFlags","op","trustee"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemNamespaceAclAclTrustee:getFilesystemFileSystemsDetailsFileSystemNamespaceAclAclTrustee":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Trustee identifier\n","type":"string"},"name":{"description":"Trustee name\n","type":"string"},"type":{"description":"Trustee type\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemNamespaceAclGroup:getFilesystemFileSystemsDetailsFileSystemNamespaceAclGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Group identifier\n","type":"string"},"name":{"description":"Group name\n","type":"string"},"type":{"description":"Group type\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemNamespaceAclOwner:getFilesystemFileSystemsDetailsFileSystemNamespaceAclOwner":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Owner identifier\n","type":"string"},"name":{"description":"Owner name\n","type":"string"},"type":{"description":"Owner type\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemQuota:getFilesystemFileSystemsDetailsFileSystemQuota":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"container":{"description":"If true, SMB shares using the quota directory see the quota thresholds as share size.\n","type":"boolean"},"enforced":{"description":"True if the quota provides enforcement, otherwise a accounting quota.\n","type":"boolean"},"id":{"description":"Quota Id\n","type":"string"},"path":{"description":"The path of quota.\n","type":"string"},"type":{"description":"The type of quota.\n","type":"string"},"usage":{"$ref":"#/types/powerscale:index%2FgetFilesystemFileSystemsDetailsFileSystemQuotaUsage:getFilesystemFileSystemsDetailsFileSystemQuotaUsage","description":"Usage\n"}},"required":["container","enforced","id","path","type","usage"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemQuotaUsage:getFilesystemFileSystemsDetailsFileSystemQuotaUsage":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"applogical":{"description":"Bytes used by governed data apparent to application\n","type":"number"},"applogicalReady":{"description":"True if applogical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"fslogical":{"description":"Bytes used by governed data apparent to filesystem.\n","type":"number"},"fslogicalReady":{"description":"True if fslogical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"fsphysical":{"description":"Bytes used by governed data apparent to filesystem.\n","type":"number"},"fsphysicalReady":{"description":"True if fsphysical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"inodes":{"description":"Number of inodes (filesystem entities) used by governed data.\n","type":"number"},"inodesReady":{"description":"True if inodes resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physical":{"description":"Bytes used for governed data and filesystem overhead.\n","type":"number"},"physicalData":{"description":"Number of physical blocks for file data\n","type":"number"},"physicalDataReady":{"description":"True if<span pulumi-lang-nodejs=\" physicalData \" pulumi-lang-dotnet=\" PhysicalData \" pulumi-lang-go=\" physicalData \" pulumi-lang-python=\" physical_data \" pulumi-lang-yaml=\" physicalData \" pulumi-lang-java=\" physicalData \"> physical_data </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physicalProtection":{"description":"Number of physical blocks for file protection\n","type":"number"},"physicalProtectionReady":{"description":"True if<span pulumi-lang-nodejs=\" physicalProtection \" pulumi-lang-dotnet=\" PhysicalProtection \" pulumi-lang-go=\" physicalProtection \" pulumi-lang-python=\" physical_protection \" pulumi-lang-yaml=\" physicalProtection \" pulumi-lang-java=\" physicalProtection \"> physical_protection </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physicalReady":{"description":"True if physical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"shadowRefs":{"description":"Number of shadow references (cloned, deduplicated or packed filesystem blocks) used by governed data.\n","type":"number"},"shadowRefsReady":{"description":"True if<span pulumi-lang-nodejs=\" shadowRefs \" pulumi-lang-dotnet=\" ShadowRefs \" pulumi-lang-go=\" shadowRefs \" pulumi-lang-python=\" shadow_refs \" pulumi-lang-yaml=\" shadowRefs \" pulumi-lang-java=\" shadowRefs \"> shadow_refs </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"}},"required":["applogical","applogicalReady","fslogical","fslogicalReady","fsphysical","fsphysicalReady","inodes","inodesReady","physical","physicalData","physicalDataReady","physicalProtection","physicalProtectionReady","physicalReady","shadowRefs","shadowRefsReady"],"type":"object"},"powerscale:index/getFilesystemFileSystemsDetailsFileSystemSnapshot:getFilesystemFileSystemsDetailsFileSystemSnapshot":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"alias":{"description":"The name of the alias, none for real snapshots.\n","type":"string"},"created":{"description":"The Unix Epoch time the snapshot was created.\n","type":"number"},"expires":{"description":"The Unix Epoch time the snapshot will expire and be eligible for automatic deletion.\n","type":"number"},"hasLocks":{"description":"True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks.\n","type":"boolean"},"id":{"description":"The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots.\n","type":"number"},"name":{"description":"The user or system supplied snapshot name. This will be null for snapshots pending delete.\n","type":"string"},"path":{"description":"The /ifs path snapshotted.\n","type":"string"},"pctFilesystem":{"description":"Percentage of /ifs used for storing this snapshot.\n","type":"number"},"pctReserve":{"description":"Percentage of configured snapshot reserved used for storing this snapshot.\n","type":"number"},"schedule":{"description":"The name of the schedule used to create this snapshot, if applicable.\n","type":"string"},"shadowBytes":{"description":"The amount of shadow bytes referred to by this snapshot.\n","type":"number"},"size":{"description":"The amount of storage in bytes used to store this snapshot.\n","type":"number"},"state":{"description":"Snapshot state.\n","type":"string"},"targetId":{"description":"The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem.\n","type":"number"},"targetName":{"description":"The name of the snapshot pointed to if this is an alias.\n","type":"string"}},"required":["alias","created","expires","hasLocks","id","name","path","pctFilesystem","pctReserve","schedule","shadowBytes","size","state","targetId","targetName"],"type":"object"},"powerscale:index/getGroupnetFilter:getGroupnetFilter":{"properties":{"dir":{"description":"The direction of the sort.\n","type":"string"},"limit":{"description":"Return no more than this many results.\n","type":"number"},"names":{"description":"Only list groupnet matching this name.\n","items":{"type":"string"},"type":"array"},"sort":{"description":"The field that will be used for sorting.\n","type":"string"}},"type":"object"},"powerscale:index/getGroupnetGroupnet:getGroupnetGroupnet":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"allowWildcardSubdomains":{"description":"If enabled, SmartConnect treats subdomains of known dns zones as the known dns zone. This is required for S3 Virtual Host domains.\n","type":"boolean"},"description":{"description":"A description of the groupnet.\n","type":"string"},"dnsCacheEnabled":{"description":"DNS caching is enabled or disabled.\n","type":"boolean"},"dnsResolverRotate":{"description":"Enable or disable DNS resolver rotate.\n","type":"boolean"},"dnsSearches":{"description":"List of DNS search suffixes.\n","items":{"type":"string"},"type":"array"},"dnsServers":{"description":"List of Domain Name Server IP addresses.\n","items":{"type":"string"},"type":"array"},"id":{"description":"Unique Interface ID.\n","type":"string"},"name":{"description":"The name of the groupnet.\n","type":"string"},"serverSideDnsSearch":{"description":"Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP.\n","type":"boolean"},"subnets":{"description":"Name of the subnets in the groupnet.\n","items":{"type":"string"},"type":"array"}},"required":["allowWildcardSubdomains","description","dnsCacheEnabled","dnsResolverRotate","dnsSearches","dnsServers","id","name","serverSideDnsSearch","subnets"],"type":"object"},"powerscale:index/getLdapProviderFilter:getLdapProviderFilter":{"properties":{"names":{"items":{"type":"string"},"type":"array"},"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned.  If specified as \"user\", only fields with non-default values are shown.  If specified as \"default\", the original values are returned.\n","type":"string"}},"type":"object"},"powerscale:index/getLdapProviderLdapProvider:getLdapProviderLdapProvider":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"alternateSecurityIdentitiesAttribute":{"description":"Specifies the attribute name used when searching for alternate security identities.\n","type":"string"},"authentication":{"description":"If true, enables authentication and identity management through the authentication provider.\n","type":"boolean"},"balanceServers":{"description":"If true, connects the provider to a random server.\n","type":"boolean"},"baseDn":{"description":"Specifies the root of the tree in which to search identities.\n","type":"string"},"bindDn":{"description":"Specifies the distinguished name for binding to the LDAP server.\n","type":"string"},"bindMechanism":{"description":"Specifies which bind mechanism to use when connecting to an LDAP server. The only supported option is the 'simple' value.\n","type":"string"},"bindTimeout":{"description":"Specifies the timeout in seconds when binding to an LDAP server.\n","type":"number"},"certificateAuthorityFile":{"description":"Specifies the path to the root certificates file.\n","type":"string"},"checkOnlineInterval":{"description":"Specifies the time in seconds between provider online checks.\n","type":"number"},"cnAttribute":{"description":"Specifies the canonical name.\n","type":"string"},"createHomeDirectory":{"description":"Automatically create the home directory on the first login.\n","type":"boolean"},"cryptPasswordAttribute":{"description":"Specifies the hashed password value.\n","type":"string"},"emailAttribute":{"description":"Specifies the LDAP Email attribute.\n","type":"string"},"enabled":{"description":"If true, enables the LDAP provider.\n","type":"boolean"},"enumerateGroups":{"description":"If true, allows the provider to enumerate groups.\n","type":"boolean"},"enumerateUsers":{"description":"If true, allows the provider to enumerate users.\n","type":"boolean"},"findableGroups":{"description":"Specifies the list of groups that can be resolved.\n","items":{"type":"string"},"type":"array"},"findableUsers":{"description":"Specifies the list of users that can be resolved.\n","items":{"type":"string"},"type":"array"},"gecosAttribute":{"description":"Specifies the LDAP GECOS attribute.\n","type":"string"},"gidAttribute":{"description":"Specifies the LDAP GID attribute.\n","type":"string"},"groupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for groups are started.\n","type":"string"},"groupDomain":{"description":"Specifies the domain for this provider through which groups are qualified.\n","type":"string"},"groupFilter":{"description":"Specifies the LDAP filter for group objects.\n","type":"string"},"groupMembersAttribute":{"description":"Specifies the LDAP Group Members attribute.\n","type":"string"},"groupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"groupnet":{"description":"Groupnet identifier.\n","type":"string"},"homeDirectoryTemplate":{"description":"Specifies the path to the home directory template.\n","type":"string"},"homedirAttribute":{"description":"Specifies the LDAP Homedir attribute.\n","type":"string"},"id":{"description":"Specifies the ID of the LDAP provider.\n","type":"string"},"ignoreTlsErrors":{"description":"If true, continues over secure connections even if identity checks fail.\n","type":"boolean"},"listableGroups":{"description":"Specifies the groups that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"listableUsers":{"description":"Specifies the users that can be viewed in the provider.\n","items":{"type":"string"},"type":"array"},"loginShell":{"description":"Specifies the login shell path.\n","type":"string"},"memberLookupMethod":{"description":"Sets the method by which group member lookups are performed. Use caution when changing this option directly. Acceptable values: \"default\", \"rfc2307bis\".\n","type":"string"},"memberOfAttribute":{"description":"Specifies the LDAP Query Member Of attribute, which performs reverse membership queries.\n","type":"string"},"name":{"description":"Specifies the name of the LDAP provider.\n","type":"string"},"nameAttribute":{"description":"Specifies the LDAP UID attribute, which is used as the login name.\n","type":"string"},"netgroupBaseDn":{"description":"Specifies the distinguished name of the entry where LDAP searches for netgroups are started.\n","type":"string"},"netgroupFilter":{"description":"Specifies the LDAP filter for netgroup objects.\n","type":"string"},"netgroupMembersAttribute":{"description":"Specifies the LDAP Netgroup Members attribute.\n","type":"string"},"netgroupSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"netgroupTripleAttribute":{"description":"Specifies the LDAP Netgroup Triple attribute.\n","type":"string"},"normalizeGroups":{"description":"Normalizes group names to lowercase before look up.\n","type":"boolean"},"normalizeUsers":{"description":"Normalizes user names to lowercase before look up.\n","type":"boolean"},"ntPasswordAttribute":{"description":"Specifies the LDAP NT Password attribute.\n","type":"string"},"ntlmSupport":{"description":"Specifies which NTLM versions to support for users with NTLM-compatible credentials. Acceptable values: \"all\", \"v2only\", \"none\".\n","type":"string"},"ocspServerUris":{"description":"Specifies the OCSP server URIs. Only available for PowerScale 9.5 and above.\n","items":{"type":"string"},"type":"array"},"providerDomain":{"description":"Specifies the provider domain.\n","type":"string"},"requireSecureConnection":{"description":"Determines whether to continue over a non-TLS connection.\n","type":"boolean"},"restrictFindable":{"description":"If true, checks the provider for filtered lists of findable and unfindable users and groups.\n","type":"boolean"},"restrictListable":{"description":"If true, checks the provider for filtered lists of listable and unlistable users and groups.\n","type":"boolean"},"searchScope":{"description":"Specifies the default depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"searchTimeout":{"description":"Specifies the search timeout period in seconds.\n","type":"number"},"serverUris":{"description":"Specifies the server URIs.\n","items":{"type":"string"},"type":"array"},"shadowExpireAttribute":{"description":"Sets the attribute name that indicates the absolute date to expire the account.\n","type":"string"},"shadowFlagAttribute":{"description":"Sets the attribute name that indicates the section of the shadow map that is used to store the flag value.\n","type":"string"},"shadowInactiveAttribute":{"description":"Sets the attribute name that indicates the number of days of inactivity that is allowed for the user.\n","type":"string"},"shadowLastChangeAttribute":{"description":"Sets the attribute name that indicates the last change of the shadow information.\n","type":"string"},"shadowMaxAttribute":{"description":"Sets the attribute name that indicates the maximum number of days a password can be valid.\n","type":"string"},"shadowMinAttribute":{"description":"Sets the attribute name that indicates the minimum number of days between shadow changes.\n","type":"string"},"shadowUserFilter":{"description":"Sets LDAP filter for shadow user objects.\n","type":"string"},"shadowWarningAttribute":{"description":"Sets the attribute name that indicates the number of days before the password expires to warn the user.\n","type":"string"},"shellAttribute":{"description":"Specifies the LDAP Shell attribute.\n","type":"string"},"sshPublicKeyAttribute":{"description":"Sets the attribute name that indicates the SSH Public Key for the user.\n","type":"string"},"status":{"description":"Specifies the status of the provider.\n","type":"string"},"system":{"description":"If true, indicates that this provider instance was created by OneFS and cannot be removed.\n","type":"boolean"},"tlsProtocolMin":{"description":"Specifies the minimum TLS protocol version.\n","type":"string"},"tlsRevocationCheckLevel":{"description":"This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. Acceptable values: \"none\", \"allowNoData\", \"allowNoSrc\", \"strict\". Only available for PowerScale 9.5 and above.\n","type":"string"},"uidAttribute":{"description":"Specifies the LDAP UID Number attribute.\n","type":"string"},"unfindableGroups":{"description":"Specifies the groups that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"unfindableUsers":{"description":"Specifies users that cannot be resolved by the provider.\n","items":{"type":"string"},"type":"array"},"uniqueGroupMembersAttribute":{"description":"Sets the LDAP Unique Group Members attribute.\n","type":"string"},"unlistableGroups":{"description":"Specifies a group that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"unlistableUsers":{"description":"Specifies a user that cannot be listed by the provider.\n","items":{"type":"string"},"type":"array"},"userBaseDn":{"description":"Specifies the distinguished name of the entry at which to start LDAP searches for users.\n","type":"string"},"userDomain":{"description":"Specifies the domain for this provider through which users are qualified.\n","type":"string"},"userFilter":{"description":"Specifies the LDAP filter for user objects.\n","type":"string"},"userSearchScope":{"description":"Specifies the depth from the base DN to perform LDAP searches. Acceptable values: \"default\", \"base\", \"onelevel\", \"subtree\", \"children\".\n","type":"string"},"zoneName":{"description":"Specifies the name of the access zone in which this provider was created.\n","type":"string"}},"required":["alternateSecurityIdentitiesAttribute","authentication","balanceServers","baseDn","bindDn","bindMechanism","bindTimeout","certificateAuthorityFile","checkOnlineInterval","cnAttribute","createHomeDirectory","cryptPasswordAttribute","emailAttribute","enabled","enumerateGroups","enumerateUsers","findableGroups","findableUsers","gecosAttribute","gidAttribute","groupBaseDn","groupDomain","groupFilter","groupMembersAttribute","groupSearchScope","groupnet","homeDirectoryTemplate","homedirAttribute","id","ignoreTlsErrors","listableGroups","listableUsers","loginShell","memberLookupMethod","memberOfAttribute","name","nameAttribute","netgroupBaseDn","netgroupFilter","netgroupMembersAttribute","netgroupSearchScope","netgroupTripleAttribute","normalizeGroups","normalizeUsers","ntPasswordAttribute","ntlmSupport","ocspServerUris","providerDomain","requireSecureConnection","restrictFindable","restrictListable","searchScope","searchTimeout","serverUris","shadowExpireAttribute","shadowFlagAttribute","shadowInactiveAttribute","shadowLastChangeAttribute","shadowMaxAttribute","shadowMinAttribute","shadowUserFilter","shadowWarningAttribute","shellAttribute","sshPublicKeyAttribute","status","system","tlsProtocolMin","tlsRevocationCheckLevel","uidAttribute","unfindableGroups","unfindableUsers","uniqueGroupMembersAttribute","unlistableGroups","unlistableUsers","userBaseDn","userDomain","userFilter","userSearchScope","zoneName"],"type":"object"},"powerscale:index/getNamespaceAclAcl:getNamespaceAclAcl":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"accessrights":{"description":"Specifies the access control permissions for a specific user or group.\n","items":{"type":"string"},"type":"array"},"accesstype":{"description":"Grants or denies access control permissions.\n","type":"string"},"inheritFlags":{"description":"Grants or denies access control permissions.\n","items":{"type":"string"},"type":"array"},"op":{"description":"Operations for updating access control permissions. Unnecessary for access right replacing scenario\n","type":"string"},"trustee":{"$ref":"#/types/powerscale:index%2FgetNamespaceAclAclTrustee:getNamespaceAclAclTrustee","description":"Provides the JSON object for the group persona of the owner.\n"}},"required":["accessrights","accesstype","inheritFlags","op","trustee"],"type":"object"},"powerscale:index/getNamespaceAclAclTrustee:getNamespaceAclAclTrustee":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0' or 'GID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNamespaceAclFilter:getNamespaceAclFilter":{"properties":{"namespace":{"description":"Indicate the namespace to set/get acl.\n","type":"string"},"nsaccess":{"description":"Indicates that the operation is on the access point instead of the store path.\n","type":"boolean"}},"required":["namespace"],"type":"object"},"powerscale:index/getNamespaceAclGroup:getNamespaceAclGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'GID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNamespaceAclOwner:getNamespaceAclOwner":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0'\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNetworkRuleFilter:getNetworkRuleFilter":{"properties":{"groupnet":{"description":"If specified, only rules for this groupnet will be returned.\n","type":"string"},"names":{"description":"Filter network rules by names.\n","items":{"type":"string"},"type":"array"},"pool":{"description":"If specified, only rules for this pool will be returned.\n","type":"string"},"subnet":{"description":"If specified, only rules for this subnet will be returned.\n","type":"string"}},"type":"object"},"powerscale:index/getNetworkRuleNetworkRule:getNetworkRuleNetworkRule":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"description":{"description":"Description for the provisioning rule.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this rule belongs to\n","type":"string"},"id":{"description":"Unique rule ID.\n","type":"string"},"iface":{"description":"Interface name the provisioning rule applies to.\n","type":"string"},"name":{"description":"Name of the provisioning rule.\n","type":"string"},"nodeType":{"description":"Node type the provisioning rule applies to.\n","type":"string"},"pool":{"description":"Name of the pool this rule belongs to.\n","type":"string"},"subnet":{"description":"Name of the subnet this rule belongs to.\n","type":"string"}},"required":["description","groupnet","id","iface","name","nodeType","pool","subnet"],"type":"object"},"powerscale:index/getNetworkpoolFilter:getNetworkpoolFilter":{"properties":{"accessZone":{"description":"If specified, only pools with this zone name will be returned.\n","type":"string"},"allocMethod":{"description":"If specified, only pools with this allocation type will be returned.\n","type":"string"},"groupnet":{"description":"If specified, only pools for this groupnet will be returned.\n","type":"string"},"names":{"description":"Filter network pools by names.\n","items":{"type":"string"},"type":"array"},"subnet":{"description":"If specified, only pools for this subnet will be returned.\n","type":"string"}},"type":"object"},"powerscale:index/getNetworkpoolNetworkPoolsDetail:getNetworkpoolNetworkPoolsDetail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"accessZone":{"description":"Name of a valid access zone to map IP address pool to the zone.\n","type":"string"},"addrFamily":{"description":"IP address format.\n","type":"string"},"aggregationMode":{"description":"OneFS supports the following NIC aggregation modes.\n","type":"string"},"allocMethod":{"description":"Specifies how IP address allocation is done among pool members.\n","type":"string"},"description":{"description":"A description of the pool.\n","type":"string"},"groupnet":{"description":"Name of the groupnet this pool belongs to.\n","type":"string"},"id":{"description":"Unique Pool ID.\n","type":"string"},"ifaces":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FgetNetworkpoolNetworkPoolsDetailIface:getNetworkpoolNetworkPoolsDetailIface"},"type":"array"},"name":{"description":"The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method.\n","type":"string"},"nfsv3RroceOnly":{"description":"Indicates that pool contains only RDMA RRoCE capable interfaces.\n","type":"boolean"},"ranges":{"description":"List of IP address ranges in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FgetNetworkpoolNetworkPoolsDetailRange:getNetworkpoolNetworkPoolsDetailRange"},"type":"array"},"rebalancePolicy":{"description":"Rebalance policy..\n","type":"string"},"rules":{"description":"Names of the rules in this pool.\n","items":{"type":"string"},"type":"array"},"scAutoUnsuspendDelay":{"description":"Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones.\n","type":"number"},"scConnectPolicy":{"description":"SmartConnect client connection balancing policy.\n","type":"string"},"scDnsZone":{"description":"SmartConnect zone name for the pool.\n","type":"string"},"scDnsZoneAliases":{"description":"List of SmartConnect zone aliases (DNS names) to the pool.\n","items":{"type":"string"},"type":"array"},"scFailoverPolicy":{"description":"SmartConnect IP failover policy.\n","type":"string"},"scSubnet":{"description":"Name of SmartConnect service subnet for this pool.\n","type":"string"},"scSuspendedNodes":{"description":"List of LNNs showing currently suspended nodes in SmartConnect.\n","items":{"type":"number"},"type":"array"},"scTtl":{"description":"Time to live value for SmartConnect DNS query responses in seconds.\n","type":"number"},"staticRoutes":{"description":"List of interface members in this pool.\n","items":{"$ref":"#/types/powerscale:index%2FgetNetworkpoolNetworkPoolsDetailStaticRoute:getNetworkpoolNetworkPoolsDetailStaticRoute"},"type":"array"},"subnet":{"description":"The name of the subnet.\n","type":"string"}},"required":["accessZone","addrFamily","aggregationMode","allocMethod","description","groupnet","id","ifaces","name","nfsv3RroceOnly","ranges","rebalancePolicy","rules","scAutoUnsuspendDelay","scConnectPolicy","scDnsZone","scDnsZoneAliases","scFailoverPolicy","scSubnet","scSuspendedNodes","scTtl","staticRoutes","subnet"],"type":"object"},"powerscale:index/getNetworkpoolNetworkPoolsDetailIface:getNetworkpoolNetworkPoolsDetailIface":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"iface":{"description":"A string that defines an interface name.\n","type":"string"},"lnn":{"description":"Logical Node Number (LNN) of a node.\n","type":"number"}},"required":["iface","lnn"],"type":"object"},"powerscale:index/getNetworkpoolNetworkPoolsDetailRange:getNetworkpoolNetworkPoolsDetailRange":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"high":{"description":"High IP\n","type":"string"},"low":{"description":"Low IP\n","type":"string"}},"required":["high","low"],"type":"object"},"powerscale:index/getNetworkpoolNetworkPoolsDetailStaticRoute:getNetworkpoolNetworkPoolsDetailStaticRoute":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"gateway":{"description":"Address of the gateway in the format: yyy.yyy.yyy.yyy\n","type":"string"},"prefixlen":{"description":"Prefix length in the format: nn.\n","type":"number"},"subnet":{"description":"Network address in the format: xxx.xxx.xxx.xxx\n","type":"string"}},"required":["gateway","prefixlen","subnet"],"type":"object"},"powerscale:index/getNfsAliasFilter:getNfsAliasFilter":{"properties":{"check":{"description":"Check for conflicts when listing Aliases.\n","type":"boolean"},"dir":{"description":"The direction of the sort.\n","type":"string"},"ids":{"description":"IDs to filter nfs Aliases.\n","items":{"type":"string"},"type":"array"},"limit":{"description":"Return no more than this many results at once (see resume).\n","type":"number"},"sort":{"description":"The field that will be used for sorting.\n","type":"string"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"powerscale:index/getNfsAliasNfsAlias:getNfsAliasNfsAlias":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"health":{"description":"Health status of NFS Alias.\n","type":"string"},"id":{"description":"ID of NFS Alias.\n","type":"string"},"name":{"description":"Name of NFS Alias.\n","type":"string"},"path":{"description":"Path of NFS Alias.\n","type":"string"},"zone":{"description":"Zone of NFS Alias.\n","type":"string"}},"required":["health","id","name","path","zone"],"type":"object"},"powerscale:index/getNfsExportFilter:getNfsExportFilter":{"properties":{"check":{"description":"Check for conflicts when listing exports.\n","type":"boolean"},"dir":{"description":"The direction of the sort.\n","type":"string"},"ids":{"description":"IDs to filter nfs exports.\n","items":{"type":"number"},"type":"array"},"limit":{"description":"Return no more than this many results at once (see resume).\n","type":"number"},"offset":{"description":"The position of the first item returned for a paginated query within the full result set.\n","type":"number"},"path":{"description":"If specified, only exports that explicitly reference at least one of the given paths will be returned.\n","type":"string"},"paths":{"description":"Paths to filter nfs exports.\n","items":{"type":"string"},"type":"array"},"resume":{"description":"Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options).\n","type":"string"},"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned.\n","type":"string"},"sort":{"description":"The field that will be used for sorting.\n","type":"string"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"powerscale:index/getNfsExportNfsExport:getNfsExportNfsExport":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"clients":{"description":"Specifies the clients with root access to the export.\n","items":{"type":"string"},"type":"array"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"conflictingPaths":{"description":"Reports the paths that conflict with another export.\n","items":{"type":"string"},"type":"array"},"description":{"description":"Specifies the user-defined string that is used to identify the export.\n","type":"string"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"id":{"description":"Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.\n","type":"number"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapAll:getNfsExportNfsExportMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapFailure:getNfsExportNfsExportMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapNonRoot:getNfsExportNfsExportMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapRoot:getNfsExportNfsExportMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"paths":{"description":"Specifies the paths under /ifs that are exported.\n","items":{"type":"string"},"type":"array"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readOnlyClients":{"description":"Specifies the clients with read-only access to the export.\n","items":{"type":"string"},"type":"array"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readWriteClients":{"description":"Specifies the clients with both read and write access to the export, even when the export is set to read-only.\n","items":{"type":"string"},"type":"array"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"rootClients":{"description":"Clients that have root access to the export.\n","items":{"type":"string"},"type":"array"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"unresolvedClients":{"description":"Reports clients that cannot be resolved.\n","items":{"type":"string"},"type":"array"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid.\n","type":"string"}},"required":["allDirs","blockSize","canSetTime","caseInsensitive","casePreserving","chownRestricted","clients","commitAsynchronous","conflictingPaths","description","directoryTransferSize","encoding","id","linkMax","mapAll","mapFailure","mapFull","mapLookupUid","mapNonRoot","mapRetry","mapRoot","maxFileSize","nameMaxSize","noTruncate","paths","readOnly","readOnlyClients","readTransferMaxSize","readTransferMultiple","readTransferSize","readWriteClients","readdirplus","readdirplusPrefetch","return32bitFileIds","rootClients","securityFlavors","setattrAsynchronous","snapshot","symlinks","timeDelta","unresolvedClients","writeDatasyncAction","writeDatasyncReply","writeFilesyncAction","writeFilesyncReply","writeTransferMaxSize","writeTransferMultiple","writeTransferSize","writeUnstableAction","writeUnstableReply","zone"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapAll:getNfsExportNfsExportMapAll":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapAllPrimaryGroup:getNfsExportNfsExportMapAllPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapAllSecondaryGroup:getNfsExportNfsExportMapAllSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapAllUser:getNfsExportNfsExportMapAllUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapAllPrimaryGroup:getNfsExportNfsExportMapAllPrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapAllSecondaryGroup:getNfsExportNfsExportMapAllSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapAllUser:getNfsExportNfsExportMapAllUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapFailure:getNfsExportNfsExportMapFailure":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapFailurePrimaryGroup:getNfsExportNfsExportMapFailurePrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapFailureSecondaryGroup:getNfsExportNfsExportMapFailureSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapFailureUser:getNfsExportNfsExportMapFailureUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapFailurePrimaryGroup:getNfsExportNfsExportMapFailurePrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapFailureSecondaryGroup:getNfsExportNfsExportMapFailureSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapFailureUser:getNfsExportNfsExportMapFailureUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapNonRoot:getNfsExportNfsExportMapNonRoot":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapNonRootPrimaryGroup:getNfsExportNfsExportMapNonRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapNonRootSecondaryGroup:getNfsExportNfsExportMapNonRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapNonRootUser:getNfsExportNfsExportMapNonRootUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapNonRootPrimaryGroup:getNfsExportNfsExportMapNonRootPrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapNonRootSecondaryGroup:getNfsExportNfsExportMapNonRootSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapNonRootUser:getNfsExportNfsExportMapNonRootUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapRoot:getNfsExportNfsExportMapRoot":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapRootPrimaryGroup:getNfsExportNfsExportMapRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapRootSecondaryGroup:getNfsExportNfsExportMapRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportNfsExportMapRootUser:getNfsExportNfsExportMapRootUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapRootPrimaryGroup:getNfsExportNfsExportMapRootPrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapRootSecondaryGroup:getNfsExportNfsExportMapRootSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportNfsExportMapRootUser:getNfsExportNfsExportMapRootUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsFilter:getNfsExportSettingsFilter":{"properties":{"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned.\n","type":"string"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettings:getNfsExportSettingsNfsExportSettings":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"allDirs":{"description":"True if all directories under the specified paths are mountable.\n","type":"boolean"},"blockSize":{"description":"Specifies the block size returned by the NFS statfs procedure.\n","type":"number"},"canSetTime":{"description":"True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"caseInsensitive":{"description":"True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"casePreserving":{"description":"True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"chownRestricted":{"description":"True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"commitAsynchronous":{"description":"True if NFS  commit  requests execute asynchronously.\n","type":"boolean"},"directoryTransferSize":{"description":"Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"encoding":{"description":"Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.\n","type":"string"},"linkMax":{"description":"Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"mapAll":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapAll:getNfsExportSettingsNfsExportSettingsMapAll","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFailure":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapFailure:getNfsExportSettingsNfsExportSettingsMapFailure","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapFull":{"description":"True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.\n","type":"boolean"},"mapLookupUid":{"description":"True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations.\n","type":"boolean"},"mapNonRoot":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapNonRoot:getNfsExportSettingsNfsExportSettingsMapNonRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"mapRetry":{"description":"Determines whether searches for users specified in 'map*all', 'map*root' or 'map_nonroot' are retried if the search fails.\n","type":"boolean"},"mapRoot":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapRoot:getNfsExportSettingsNfsExportSettingsMapRoot","description":"Specifies the users and groups to which non-root and root clients are mapped.\n"},"maxFileSize":{"description":"Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"nameMaxSize":{"description":"Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"number"},"noTruncate":{"description":"True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.\n","type":"boolean"},"readOnly":{"description":"True if the export is set to read-only.\n","type":"boolean"},"readTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferMultiple":{"description":"Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readTransferSize":{"description":"Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"readdirplus":{"description":"True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.\n","type":"boolean"},"readdirplusPrefetch":{"description":"Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)\n","type":"number"},"return32bitFileIds":{"description":"Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).\n","type":"boolean"},"securityFlavors":{"description":"Specifies the authentication types that are supported for this export.\n","items":{"type":"string"},"type":"array"},"setattrAsynchronous":{"description":"True if set attribute operations execute asynchronously.\n","type":"boolean"},"snapshot":{"description":"Specifies the snapshot for all mounts.\n","type":"string"},"symlinks":{"description":"True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"boolean"},"timeDelta":{"description":"Specifies the resolution of all time values that are returned to the clients\n","type":"number"},"writeDatasyncAction":{"description":"Specifies the action to be taken when an NFSv3+ datasync write is requested.\n","type":"string"},"writeDatasyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ datasync write is processed.\n","type":"string"},"writeFilesyncAction":{"description":"Specifies the action to be taken when an NFSv3+ filesync write is requested.\n","type":"string"},"writeFilesyncReply":{"description":"Specifies the stability disposition returned when an NFSv3+ filesync write is processed.\n","type":"string"},"writeTransferMaxSize":{"description":"Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferMultiple":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeTransferSize":{"description":"Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced.\n","type":"number"},"writeUnstableAction":{"description":"Specifies the action to be taken when an NFSv3+ unstable write is requested.\n","type":"string"},"writeUnstableReply":{"description":"Specifies the stability disposition returned when an NFSv3+ unstable write is processed.\n","type":"string"},"zone":{"description":"Specifies the zone in which the export is valid.\n","type":"string"}},"required":["allDirs","blockSize","canSetTime","caseInsensitive","casePreserving","chownRestricted","commitAsynchronous","directoryTransferSize","encoding","linkMax","mapAll","mapFailure","mapFull","mapLookupUid","mapNonRoot","mapRetry","mapRoot","maxFileSize","nameMaxSize","noTruncate","readOnly","readTransferMaxSize","readTransferMultiple","readTransferSize","readdirplus","readdirplusPrefetch","return32bitFileIds","securityFlavors","setattrAsynchronous","snapshot","symlinks","timeDelta","writeDatasyncAction","writeDatasyncReply","writeFilesyncAction","writeFilesyncReply","writeTransferMaxSize","writeTransferMultiple","writeTransferSize","writeUnstableAction","writeUnstableReply","zone"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapAll:getNfsExportSettingsNfsExportSettingsMapAll":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapAllPrimaryGroup:getNfsExportSettingsNfsExportSettingsMapAllPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapAllSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapAllSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapAllUser:getNfsExportSettingsNfsExportSettingsMapAllUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapAllPrimaryGroup:getNfsExportSettingsNfsExportSettingsMapAllPrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapAllSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapAllSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapAllUser:getNfsExportSettingsNfsExportSettingsMapAllUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapFailure:getNfsExportSettingsNfsExportSettingsMapFailure":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapFailurePrimaryGroup:getNfsExportSettingsNfsExportSettingsMapFailurePrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapFailureSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapFailureSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapFailureUser:getNfsExportSettingsNfsExportSettingsMapFailureUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapFailurePrimaryGroup:getNfsExportSettingsNfsExportSettingsMapFailurePrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapFailureSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapFailureSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapFailureUser:getNfsExportSettingsNfsExportSettingsMapFailureUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapNonRoot:getNfsExportSettingsNfsExportSettingsMapNonRoot":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapNonRootPrimaryGroup:getNfsExportSettingsNfsExportSettingsMapNonRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapNonRootSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapNonRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapNonRootUser:getNfsExportSettingsNfsExportSettingsMapNonRootUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapNonRootPrimaryGroup:getNfsExportSettingsNfsExportSettingsMapNonRootPrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapNonRootSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapNonRootSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapNonRootUser:getNfsExportSettingsNfsExportSettingsMapNonRootUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapRoot:getNfsExportSettingsNfsExportSettingsMapRoot":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"enabled":{"description":"True if the user mapping is applied.\n","type":"boolean"},"primaryGroup":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapRootPrimaryGroup:getNfsExportSettingsNfsExportSettingsMapRootPrimaryGroup","description":"Specifies the persona of the file group.\n"},"secondaryGroups":{"description":"Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.\n","items":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapRootSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapRootSecondaryGroup"},"type":"array"},"user":{"$ref":"#/types/powerscale:index%2FgetNfsExportSettingsNfsExportSettingsMapRootUser:getNfsExportSettingsNfsExportSettingsMapRootUser","description":"Specifies the persona of the file group.\n"}},"required":["enabled","primaryGroup","secondaryGroups","user"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapRootPrimaryGroup:getNfsExportSettingsNfsExportSettingsMapRootPrimaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapRootSecondaryGroup:getNfsExportSettingsNfsExportSettingsMapRootSecondaryGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsExportSettingsNfsExportSettingsMapRootUser:getNfsExportSettingsNfsExportSettingsMapRootUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getNfsZoneSettingsFilter:getNfsZoneSettingsFilter":{"properties":{"zone":{"description":"Access zone\n","type":"string"}},"type":"object"},"powerscale:index/getNfsZoneSettingsNfsZoneSettings:getNfsZoneSettingsNfsZoneSettings":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"nfsv4AllowNumericIds":{"description":"If true, sends owners and groups as UIDs and GIDs when look up fails or if the 'nfsv4*no*name' property is set to 1.\n","type":"boolean"},"nfsv4Domain":{"description":"Specifies the domain or realm through which users and groups are associated.\n","type":"string"},"nfsv4NoDomain":{"description":"If true, sends owners and groups without a domain name.\n","type":"boolean"},"nfsv4NoDomainUids":{"description":"If true, sends UIDs and GIDs without a domain name.\n","type":"boolean"},"nfsv4NoNames":{"description":"If true, sends owners and groups as UIDs and GIDs.\n","type":"boolean"},"nfsv4ReplaceDomain":{"description":"If true, replaces the owner or group domain with an NFS domain name.\n","type":"boolean"},"zone":{"description":"Specifies the access zones in which these settings apply.\n","type":"string"}},"required":["nfsv4AllowNumericIds","nfsv4Domain","nfsv4NoDomain","nfsv4NoDomainUids","nfsv4NoNames","nfsv4ReplaceDomain","zone"],"type":"object"},"powerscale:index/getNtpserverFilter:getNtpserverFilter":{"properties":{"names":{"description":"Filter NTP Servers by names.\n","items":{"type":"string"},"type":"array"}},"type":"object"},"powerscale:index/getNtpserverNtpServersDetail:getNtpserverNtpServersDetail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Field ID.\n","type":"string"},"key":{"description":"Key value from<span pulumi-lang-nodejs=\" keyFile \" pulumi-lang-dotnet=\" KeyFile \" pulumi-lang-go=\" keyFile \" pulumi-lang-python=\" key_file \" pulumi-lang-yaml=\" keyFile \" pulumi-lang-java=\" keyFile \"> key_file </span>that maps to this server.\n","type":"string"},"name":{"description":"NTP server name.\n","type":"string"}},"required":["id","key","name"],"type":"object"},"powerscale:index/getQuotaFilter:getQuotaFilter":{"properties":{"enforced":{"description":"Only list quotas with this enforcement (non-accounting).\n","type":"boolean"},"exceeded":{"description":"Set to true to only list quotas which have exceeded one or more of their thresholds.\n","type":"boolean"},"includeSnapshots":{"description":"Only list quotas with this setting for include_snapshots.\n","type":"boolean"},"path":{"description":"Only list quotas matching this path (see also recurse*path**).\n","type":"string"},"persona":{"description":"Only list user or group quotas matching this persona (must be used with the corresponding type argument).\n","type":"string"},"recursePathChildren":{"description":"If used with the path argument, match all quotas at that path or any descendent sub-directory.\n","type":"boolean"},"recursePathParents":{"description":"If used with the path argument, match all quotas at that path or any parent directory.\n","type":"boolean"},"reportId":{"description":"Use the named report as a source rather than the live quotas.\n","type":"string"},"type":{"description":"Only list quotas matching this type.\n","type":"string"},"zone":{"description":"Optional named zone to use for user and group resolution.\n","type":"string"}},"type":"object"},"powerscale:index/getQuotaQuota:getQuotaQuota":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"container":{"description":"If true, SMB shares using the quota directory see the quota thresholds as share size.\n","type":"boolean"},"efficiencyRatio":{"description":"Represents the ratio of logical space provided to physical space used. This accounts for protection overhead, metadata, and compression ratios for the data.\n","type":"number"},"enforced":{"description":"True if the quota provides enforcement, otherwise an accounting quota.\n","type":"boolean"},"id":{"description":"The system ID given to the quota.\n","type":"string"},"includeSnapshots":{"description":"If true, quota governs snapshot data as well as head data.\n","type":"boolean"},"linked":{"description":"For user, group and directory quotas, true if the quota is linked and controlled by a parent default-* quota. Linked quotas cannot be modified until they are unlinked.\n","type":"boolean"},"notifications":{"description":"Summary of notifications: 'custom' indicates one or more notification rules available from the notifications sub-resource; 'default' indicates system default rules are used; 'disabled' indicates that no notifications will be used for this quota.; 'badmap' indicates that notification rule has problem in rule map.\n","type":"string"},"path":{"description":"The ifs path governed.\n","type":"string"},"persona":{"$ref":"#/types/powerscale:index%2FgetQuotaQuotaPersona:getQuotaQuotaPersona","description":"Specifies the persona of the file group.\n"},"ready":{"description":"True if the default resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"reductionRatio":{"description":"Represents the ratio of logical space provided to physical data space used. This accounts for compression and data deduplication effects.\n","type":"number"},"thresholds":{"$ref":"#/types/powerscale:index%2FgetQuotaQuotaThresholds:getQuotaQuotaThresholds","description":"The thresholds of quota\n"},"thresholdsOn":{"description":"Thresholds apply on quota accounting metric.\n","type":"string"},"type":{"description":"The type of quota.\n","type":"string"},"usage":{"$ref":"#/types/powerscale:index%2FgetQuotaQuotaUsage:getQuotaQuotaUsage","description":"The usage of quota\n"}},"required":["container","efficiencyRatio","enforced","id","includeSnapshots","linked","notifications","path","persona","ready","reductionRatio","thresholds","thresholdsOn","type","usage"],"type":"object"},"powerscale:index/getQuotaQuotaPersona:getQuotaQuotaPersona":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getQuotaQuotaThresholds:getQuotaQuotaThresholds":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"advisory":{"description":"Usage bytes at which notifications will be sent but writes will not be denied.\n","type":"number"},"advisoryExceeded":{"description":"True if the advisory threshold has been hit.\n","type":"boolean"},"advisoryLastExceeded":{"description":"Time at which advisory threshold was hit.\n","type":"number"},"hard":{"description":"Usage bytes at which further writes will be denied.\n","type":"number"},"hardExceeded":{"description":"True if the hard threshold has been hit.\n","type":"boolean"},"hardLastExceeded":{"description":"Time at which hard threshold was hit.\n","type":"number"},"percentAdvisory":{"description":"Advisory threshold as percent of hard threshold. Usage bytes at which notifications will be sent but writes will not be denied.\n","type":"number"},"percentSoft":{"description":"Soft threshold as percent of hard threshold. Usage bytes at which notifications will be sent and soft grace time will be started.\n","type":"number"},"soft":{"description":"Usage bytes at which notifications will be sent and soft grace time will be started.\n","type":"number"},"softExceeded":{"description":"True if the soft threshold has been hit.\n","type":"boolean"},"softGrace":{"description":"Time in seconds after which the soft threshold has been hit before writes will be denied.\n","type":"number"},"softLastExceeded":{"description":"Time at which soft threshold was hit\n","type":"number"}},"required":["advisory","advisoryExceeded","advisoryLastExceeded","hard","hardExceeded","hardLastExceeded","percentAdvisory","percentSoft","soft","softExceeded","softGrace","softLastExceeded"],"type":"object"},"powerscale:index/getQuotaQuotaUsage:getQuotaQuotaUsage":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"applogical":{"description":"Bytes used by governed data apparent to application.\n","type":"number"},"applogicalReady":{"description":"True if applogical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"fslogical":{"description":"Bytes used by governed data apparent to filesystem.\n","type":"number"},"fslogicalReady":{"description":"True if fslogical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"fsphysical":{"description":"Physical data usage adjusted to account for shadow store efficiency\n","type":"number"},"fsphysicalReady":{"description":"True if fsphysical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"inodes":{"description":"Number of inodes (filesystem entities) used by governed data.\n","type":"number"},"inodesReady":{"description":"True if inodes resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physical":{"description":"Bytes used for governed data and filesystem overhead.\n","type":"number"},"physicalData":{"description":"Number of physical blocks for file data\n","type":"number"},"physicalDataReady":{"description":"True if<span pulumi-lang-nodejs=\" physicalData \" pulumi-lang-dotnet=\" PhysicalData \" pulumi-lang-go=\" physicalData \" pulumi-lang-python=\" physical_data \" pulumi-lang-yaml=\" physicalData \" pulumi-lang-java=\" physicalData \"> physical_data </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physicalProtection":{"description":"Number of physical blocks for file protection\n","type":"number"},"physicalProtectionReady":{"description":"True if<span pulumi-lang-nodejs=\" physicalProtection \" pulumi-lang-dotnet=\" PhysicalProtection \" pulumi-lang-go=\" physicalProtection \" pulumi-lang-python=\" physical_protection \" pulumi-lang-yaml=\" physicalProtection \" pulumi-lang-java=\" physicalProtection \"> physical_protection </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"physicalReady":{"description":"True if physical resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"},"shadowRefs":{"description":"Number of shadow references (cloned, deduplicated or packed filesystem blocks) used by governed data.\n","type":"number"},"shadowRefsReady":{"description":"True if<span pulumi-lang-nodejs=\" shadowRefs \" pulumi-lang-dotnet=\" ShadowRefs \" pulumi-lang-go=\" shadowRefs \" pulumi-lang-python=\" shadow_refs \" pulumi-lang-yaml=\" shadowRefs \" pulumi-lang-java=\" shadowRefs \"> shadow_refs </span>resource accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.\n","type":"boolean"}},"required":["applogical","applogicalReady","fslogical","fslogicalReady","fsphysical","fsphysicalReady","inodes","inodesReady","physical","physicalData","physicalDataReady","physicalProtection","physicalProtectionReady","physicalReady","shadowRefs","shadowRefsReady"],"type":"object"},"powerscale:index/getRoleFilter:getRoleFilter":{"properties":{"names":{"description":"Filter roles by names.\n","items":{"type":"string"},"type":"array"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"powerscale:index/getRoleRolesDetail:getRoleRolesDetail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"description":{"description":"Specifies the description of the role.\n","type":"string"},"id":{"description":"Specifies the ID of the role.\n","type":"string"},"members":{"description":"Specifies the users or groups that have this role.\n","items":{"$ref":"#/types/powerscale:index%2FgetRoleRolesDetailMember:getRoleRolesDetailMember"},"type":"array"},"name":{"description":"Specifies the name of the role.\n","type":"string"},"privileges":{"description":"Specifies the privileges granted by this role.\n","items":{"$ref":"#/types/powerscale:index%2FgetRoleRolesDetailPrivilege:getRoleRolesDetailPrivilege"},"type":"array"}},"required":["description","id","members","name","privileges"],"type":"object"},"powerscale:index/getRoleRolesDetailMember:getRoleRolesDetailMember":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getRoleRolesDetailPrivilege:getRoleRolesDetailPrivilege":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the ID of the privilege.\n","type":"string"},"name":{"description":"Specifies the name of the privilege.\n","type":"string"},"permission":{"description":"permission of the privilege, 'r' = read , 'x' = read-execute, 'w' = read-execute-write, '-' = no permission\n","type":"string"}},"required":["id","name","permission"],"type":"object"},"powerscale:index/getRoleprivilegeFilter:getRoleprivilegeFilter":{"properties":{"names":{"description":"Filter Role Privileges by names.\n","items":{"type":"string"},"type":"array"}},"type":"object"},"powerscale:index/getRoleprivilegeRolePrivilegesDetail:getRoleprivilegeRolePrivilegesDetail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"category":{"description":"Specifies the general categorization of the privilege.\n","type":"string"},"description":{"description":"Specifies a short description of the privilege.\n","type":"string"},"id":{"description":"Specifies the ID of the privilege.\n","type":"string"},"name":{"description":"Specifies the name of the privilege.\n","type":"string"},"parentId":{"description":"Specifies the parent ID of the privilege.\n","type":"string"},"permission":{"description":"Permissions the privilege has r=read , x=read-execute, w=read-execute-write.\n","type":"string"},"privilegelevel":{"description":"Specifies the level of the privilege.\n","type":"string"},"uri":{"description":"Specifies the associated uri for the privilege.\n","type":"string"}},"required":["category","description","id","name","parentId","permission","privilegelevel","uri"],"type":"object"},"powerscale:index/getS3BucketFilter:getS3BucketFilter":{"properties":{"owner":{"description":"Specifies the name of the owner.\n","type":"string"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"powerscale:index/getS3BucketS3Bucket:getS3BucketS3Bucket":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"acls":{"description":"Specifies properties for an S3 Access Control Entry.\n","items":{"$ref":"#/types/powerscale:index%2FgetS3BucketS3BucketAcl:getS3BucketS3BucketAcl"},"type":"array"},"description":{"description":"Description for this S3 bucket.\n","type":"string"},"id":{"description":"Bucket ID.\n","type":"string"},"name":{"description":"Bucket name.\n","type":"string"},"objectAclPolicy":{"description":"Set behavior of modifying object acls\n","type":"string"},"owner":{"description":"Specifies the name of the owner.\n","type":"string"},"path":{"description":"Path of bucket within /ifs.\n","type":"string"},"zid":{"description":"Zone ID\n","type":"number"}},"required":["acls","description","id","name","objectAclPolicy","owner","path","zid"],"type":"object"},"powerscale:index/getS3BucketS3BucketAcl:getS3BucketS3BucketAcl":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"grantee":{"$ref":"#/types/powerscale:index%2FgetS3BucketS3BucketAclGrantee:getS3BucketS3BucketAclGrantee","description":"Specifies the persona of the file group.\n"},"permission":{"description":"Specifies the S3 rights being allowed.\n","type":"string"}},"required":["grantee","permission"],"type":"object"},"powerscale:index/getS3BucketS3BucketAclGrantee:getS3BucketS3BucketAclGrantee":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getSmartpoolSettingsSpilloverTarget:getSmartpoolSettingsSpilloverTarget":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Target pool ID if target specified, otherwise null.\n","type":"number"},"name":{"description":"Target pool name if target specified, otherwise null.\n","type":"string"},"type":{"description":"Type of target pool.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getSmbServerSettingsFilter:getSmbServerSettingsFilter":{"properties":{"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned.  If specified as \"user\", only fields with non-default values are shown.  If specified as \"default\", the original values are returned.\n","type":"string"}},"type":"object"},"powerscale:index/getSmbServerSettingsSmbServerSettings:getSmbServerSettingsSmbServerSettings":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"accessBasedShareEnum":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"auditFileshare":{"description":"Specify level of file share audit events to log.\n","type":"string"},"auditLogon":{"description":"Specify the level of logon audit events to log.\n","type":"string"},"dotSnapAccessibleChild":{"description":"Allow access to .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapAccessibleRoot":{"description":"Allow access to the .snapshot directory in the root of the share.\n","type":"boolean"},"dotSnapVisibleChild":{"description":"Show .snapshot directories in share subdirectories.\n","type":"boolean"},"dotSnapVisibleRoot":{"description":"Show the .snapshot directory in the root of a share.\n","type":"boolean"},"enableSecuritySignatures":{"description":"Indicates whether the server supports signed SMB packets.\n","type":"boolean"},"guestUser":{"description":"Specifies the fully-qualified user to use for guest access.\n","type":"string"},"ignoreEas":{"description":"Specify whether to ignore EAs on files.\n","type":"boolean"},"onefsCpuMultiplier":{"description":"Specify the number of OneFS driver worker threads per CPU.\n","type":"number"},"onefsNumWorkers":{"description":"Set the maximum number of OneFS driver worker threads.\n","type":"number"},"rejectUnencryptedAccess":{"description":"If SMB3 encryption is enabled, reject unencrypted access from clients.\n","type":"boolean"},"requireSecuritySignatures":{"description":"Indicates whether the server requires signed SMB packets.\n","type":"boolean"},"serverSideCopy":{"description":"Enable Server Side Copy.\n","type":"boolean"},"serverString":{"description":"Provides a description of the server.\n","type":"string"},"service":{"description":"Specify whether service is enabled.\n","type":"boolean"},"srvCpuMultiplier":{"description":"Specify the number of SRV service worker threads per CPU.\n","type":"number"},"srvNumWorkers":{"description":"Set the maximum number of SRV service worker threads.\n","type":"number"},"supportMultichannel":{"description":"Support multichannel.\n","type":"boolean"},"supportNetbios":{"description":"Support NetBIOS.\n","type":"boolean"},"supportSmb2":{"description":"Support the SMB2 protocol on the server.\n","type":"boolean"},"supportSmb3Encryption":{"description":"Support the SMB3 encryption on the server.\n","type":"boolean"}},"required":["accessBasedShareEnum","auditFileshare","auditLogon","dotSnapAccessibleChild","dotSnapAccessibleRoot","dotSnapVisibleChild","dotSnapVisibleRoot","enableSecuritySignatures","guestUser","ignoreEas","onefsCpuMultiplier","onefsNumWorkers","rejectUnencryptedAccess","requireSecuritySignatures","serverSideCopy","serverString","service","srvCpuMultiplier","srvNumWorkers","supportMultichannel","supportNetbios","supportSmb2","supportSmb3Encryption"],"type":"object"},"powerscale:index/getSmbShareFilter:getSmbShareFilter":{"properties":{"dir":{"description":"The direction of the sort.\n","type":"string"},"limit":{"description":"Return no more than this many results at once (see resume).\n","type":"number"},"names":{"description":"Names to filter smb shares.\n","items":{"type":"string"},"type":"array"},"offset":{"description":"The position of the first item returned for a paginated query within the full result set.\n","type":"number"},"resume":{"description":"Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options).\n","type":"string"},"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned.\n","type":"string"},"sort":{"description":"The field that will be used for sorting.\n","type":"string"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"powerscale:index/getSmbShareSettingsFilter:getSmbShareSettingsFilter":{"properties":{"scope":{"description":"If specified as \"effective\" or not specified, all fields are returned.  If specified as \"user\", only fields with non-default values are shown.  If specified as \"default\", the original values are returned.\n","type":"string"},"zone":{"description":"Specifies which access zone to use.\n","type":"string"}},"type":"object"},"powerscale:index/getSmbShareSettingsSmbShareSettings:getSmbShareSettingsSmbShareSettings":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares. Acceptable values: none, write-read-coherent, full\n","type":"string"},"changeNotify":{"description":"Specify level of change notification alerts on the share. Acceptable values: all, norecurse, none\n","type":"string"},"continuouslyAvailable":{"description":"Specify if persistent opens are allowed on the share.\n","type":"boolean"},"createPermissions":{"description":"Set the create permissions for new files and directories in share. Acceptable values: default acl, inherit mode bits, use create mask and mode\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares. Acceptable values: manual, documents, programs, none\n","type":"string"},"directoryCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"directoryCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMask":{"description":"Unix umask or mode bits.\n","type":"number"},"fileCreateMode":{"description":"Unix umask or mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on the share.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account. Acceptable values: always, bad user, never\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Allow oplock requests.\n","type":"boolean"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zone":{"description":"Name of the access zone in which to update settings\n","type":"string"}},"required":["accessBasedEnumeration","accessBasedEnumerationRootOnly","allowDeleteReadonly","allowExecuteAlways","caTimeout","caWriteIntegrity","changeNotify","continuouslyAvailable","createPermissions","cscPolicy","directoryCreateMask","directoryCreateMode","fileCreateMask","fileCreateMode","fileFilterExtensions","fileFilterType","fileFilteringEnabled","hideDotFiles","hostAcls","impersonateGuest","impersonateUser","mangleByteStart","mangleMaps","ntfsAclSupport","oplocks","smb3EncryptionEnabled","sparseFile","strictCaLockout","strictFlush","strictLocking","zone"],"type":"object"},"powerscale:index/getSmbShareSmbShare:getSmbShareSmbShare":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"accessBasedEnumeration":{"description":"Only enumerate files and folders the requesting user has access to.\n","type":"boolean"},"accessBasedEnumerationRootOnly":{"description":"Access-based enumeration on only the root directory of the share.\n","type":"boolean"},"allowDeleteReadonly":{"description":"Allow deletion of read-only files in the share.\n","type":"boolean"},"allowExecuteAlways":{"description":"Allows users to execute files they have read rights for.\n","type":"boolean"},"allowVariableExpansion":{"description":"Allow automatic expansion of variables for home directories.\n","type":"boolean"},"autoCreateDirectory":{"description":"Automatically create home directories.\n","type":"boolean"},"browsable":{"description":"Share is visible in net view and the browse list.\n","type":"boolean"},"caTimeout":{"description":"Persistent open timeout for the share.\n","type":"number"},"caWriteIntegrity":{"description":"Specify the level of write-integrity on continuously available shares.\n","type":"string"},"changeNotify":{"description":"Level of change notification alerts on the share.\n","type":"string"},"continuouslyAvailable":{"description":"Specify if persistent opens are allowed on the share.\n","type":"boolean"},"createPermissions":{"description":"Create permissions for new files and directories in share.\n","type":"string"},"cscPolicy":{"description":"Client-side caching policy for the shares.\n","type":"string"},"description":{"description":"Description for this SMB share.\n","type":"string"},"directoryCreateMask":{"description":"Directory create mask bits.\n","type":"number"},"directoryCreateMode":{"description":"Directory create mode bits.\n","type":"number"},"fileCreateMask":{"description":"File create mask bits.\n","type":"number"},"fileCreateMode":{"description":"File create mode bits.\n","type":"number"},"fileFilterExtensions":{"description":"Specifies the list of file extensions.\n","items":{"type":"string"},"type":"array"},"fileFilterType":{"description":"Specifies if filter list is for deny or allow. Default is deny.\n","type":"string"},"fileFilteringEnabled":{"description":"Enables file filtering on this zone.\n","type":"boolean"},"hideDotFiles":{"description":"Hide files and directories that begin with a period '.'.\n","type":"boolean"},"hostAcls":{"description":"An ACL expressing which hosts are allowed access. A deny clause must be the final entry.\n","items":{"type":"string"},"type":"array"},"id":{"description":"Share ID.\n","type":"string"},"impersonateGuest":{"description":"Specify the condition in which user access is done as the guest account.\n","type":"string"},"impersonateUser":{"description":"User account to be used as guest account.\n","type":"string"},"inheritablePathAcl":{"description":"Set the inheritable ACL on the share path.\n","type":"boolean"},"mangleByteStart":{"description":"Specifies the<span pulumi-lang-nodejs=\" wcharT \" pulumi-lang-dotnet=\" WcharT \" pulumi-lang-go=\" wcharT \" pulumi-lang-python=\" wchar_t \" pulumi-lang-yaml=\" wcharT \" pulumi-lang-java=\" wcharT \"> wchar_t </span>starting point for automatic byte mangling.\n","type":"number"},"mangleMaps":{"description":"Character mangle map.\n","items":{"type":"string"},"type":"array"},"name":{"description":"Share name.\n","type":"string"},"ntfsAclSupport":{"description":"Support NTFS ACLs on files and directories.\n","type":"boolean"},"oplocks":{"description":"Support oplocks.\n","type":"boolean"},"path":{"description":"Path of share within /ifs.\n","type":"string"},"permissions":{"description":"Specifies an ordered list of permission modifications.\n","items":{"$ref":"#/types/powerscale:index%2FgetSmbShareSmbSharePermission:getSmbShareSmbSharePermission"},"type":"array"},"runAsRoots":{"description":"Allow account to run as root.\n","items":{"$ref":"#/types/powerscale:index%2FgetSmbShareSmbShareRunAsRoot:getSmbShareSmbShareRunAsRoot"},"type":"array"},"smb3EncryptionEnabled":{"description":"Enables SMB3 encryption for the share.\n","type":"boolean"},"sparseFile":{"description":"Enables sparse file.\n","type":"boolean"},"strictCaLockout":{"description":"Specifies if persistent opens would do strict lockout on the share.\n","type":"boolean"},"strictFlush":{"description":"Handle SMB flush operations.\n","type":"boolean"},"strictLocking":{"description":"Specifies whether byte range locks contend against SMB I/O.\n","type":"boolean"},"zid":{"description":"Numeric ID of the access zone which contains this SMB share\n","type":"number"}},"required":["accessBasedEnumeration","accessBasedEnumerationRootOnly","allowDeleteReadonly","allowExecuteAlways","allowVariableExpansion","autoCreateDirectory","browsable","caTimeout","caWriteIntegrity","changeNotify","continuouslyAvailable","createPermissions","cscPolicy","description","directoryCreateMask","directoryCreateMode","fileCreateMask","fileCreateMode","fileFilterExtensions","fileFilterType","fileFilteringEnabled","hideDotFiles","hostAcls","id","impersonateGuest","impersonateUser","inheritablePathAcl","mangleByteStart","mangleMaps","name","ntfsAclSupport","oplocks","path","permissions","runAsRoots","smb3EncryptionEnabled","sparseFile","strictCaLockout","strictFlush","strictLocking","zid"],"type":"object"},"powerscale:index/getSmbShareSmbSharePermission:getSmbShareSmbSharePermission":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"permission":{"description":"Specifies the file system rights that are allowed or denied.\n","type":"string"},"permissionType":{"description":"Determines whether the permission is allowed or denied.\n","type":"string"},"trustee":{"$ref":"#/types/powerscale:index%2FgetSmbShareSmbSharePermissionTrustee:getSmbShareSmbSharePermissionTrustee","description":"Specifies the persona of the file group.\n"}},"required":["permission","permissionType","trustee"],"type":"object"},"powerscale:index/getSmbShareSmbSharePermissionTrustee:getSmbShareSmbSharePermissionTrustee":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getSmbShareSmbShareRunAsRoot:getSmbShareSmbShareRunAsRoot":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.\n","type":"string"},"name":{"description":"Specifies the persona name, which must be combined with a type.\n","type":"string"},"type":{"description":"Specifies the type of persona, which must be combined with a name.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getSnapshotFilter:getSnapshotFilter":{"properties":{"dir":{"description":"The direction of the sort.\n","type":"string"},"limit":{"description":"Return no more than this many results at once (see resume).\n","type":"number"},"name":{"type":"string"},"path":{"type":"string"},"schedule":{"description":"The schedule of the snapshot.\n","type":"string"},"sort":{"description":"The field that will be used for sorting.\n","type":"string"},"state":{"description":"The state of the snapshot.\n","type":"string"},"type":{"description":"The type of the snapshot.\n","type":"string"}},"type":"object"},"powerscale:index/getSnapshotScheduleFilter:getSnapshotScheduleFilter":{"properties":{"dir":{"description":"The direction of the sort.Supported Values:ASC , DESC\n","type":"string"},"limit":{"description":"Return no more than this many results at once.\n","type":"number"},"names":{"description":"Names to filter snapshot schedules.\n","items":{"type":"string"},"type":"array"},"sort":{"description":"The field that will be used for sorting. Choices are id, name, path, pattern, schedule, duration, alias, next*run, and next*snapshot. Default is id.\n","type":"string"}},"type":"object"},"powerscale:index/getSnapshotScheduleSchedule:getSnapshotScheduleSchedule":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"alias":{"description":"Alias name to create for each snapshot.\n","type":"string"},"duration":{"description":"Time in seconds added to creation time to construction expiration time.\n","type":"number"},"id":{"description":"The system ID given to the schedule.\n","type":"number"},"name":{"description":"The schedule name.\n","type":"string"},"nextRun":{"description":"Unix Epoch time of next snapshot to be created.\n","type":"number"},"nextSnapshot":{"description":"Formatted name (see pattern) of next snapshot to be created\n","type":"string"},"path":{"description":"The /ifs path snapshotted.\n","type":"string"},"pattern":{"description":"Pattern expanded with strftime to create snapshot names.\n","type":"string"},"schedule":{"description":"The isidate compatible natural language description of the schedule.\n","type":"string"}},"required":["alias","duration","id","name","nextRun","nextSnapshot","path","pattern","schedule"],"type":"object"},"powerscale:index/getSnapshotSnapshotsDetail:getSnapshotSnapshotsDetail":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"alias":{"description":"The name of the alias, none for real snapshots.\n","type":"string"},"created":{"description":"The Unix Epoch time the snapshot was created.\n","type":"number"},"expires":{"description":"The Unix Epoch time the snapshot will expire and be eligible for automatic deletion.\n","type":"number"},"hasLocks":{"description":"True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of lock.\n","type":"boolean"},"id":{"description":"The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots.\n","type":"string"},"name":{"description":"The user or system supplied snapshot name. This will be null for snapshots pending delete.\n","type":"string"},"path":{"description":"The /ifs path snapshotted.\n","type":"string"},"pctFilesystem":{"description":"Percentage of /ifs used for storing this snapshot.\n","type":"number"},"pctReserve":{"description":"Percentage of configured snapshot reserved used for storing this snapshot.\n","type":"number"},"schedule":{"description":"The name of the schedule used to create this snapshot, if applicable.\n","type":"string"},"setExpires":{"description":"The amount of time from creation before the snapshot will expire and be eligible for automatic deletion.\n","type":"string"},"shadowBytes":{"description":"The amount of shadow bytes referred to by this snapshot.\n","type":"number"},"size":{"description":"The amount of storage in bytes used to store this snapshot.\n","type":"number"},"state":{"description":"Snapshot state.\n","type":"string"},"targetId":{"description":"The ID of the snapshot pointed to if this is an alias. An alias to the live filesystem is represented by the value -1.\n","type":"number"},"targetName":{"description":"The name of the snapshot pointed to if this is an alias.\n","type":"string"}},"required":["alias","created","expires","hasLocks","id","name","path","pctFilesystem","pctReserve","schedule","setExpires","shadowBytes","size","state","targetId","targetName"],"type":"object"},"powerscale:index/getStoragepoolTierStoragepoolTier:getStoragepoolTierStoragepoolTier":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"childrens":{"description":"The names or IDs of the tier's children.\n","items":{"type":"string"},"type":"array"},"id":{"description":"Id of storagepool tier.\n","type":"string"},"lnns":{"description":"The nodes that are part of this tier.\n","items":{"type":"number"},"type":"array"},"name":{"description":"Name of storagepool tier.\n","type":"string"},"transferLimitPct":{"description":"Stop moving files to this tier when this limit is met.\n","type":"number"},"transferLimitState":{"description":"How the transfer limit value is being applied.\n","type":"string"},"usage":{"$ref":"#/types/powerscale:index%2FgetStoragepoolTierStoragepoolTierUsage:getStoragepoolTierStoragepoolTierUsage","description":"Usage.\n"}},"required":["childrens","id","lnns","name","transferLimitPct","transferLimitState","usage"],"type":"object"},"powerscale:index/getStoragepoolTierStoragepoolTierUsage:getStoragepoolTierStoragepoolTierUsage":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"availBytes":{"description":"Available free bytes remaining in the pool when virtual hot spare is taken into account.\n","type":"string"},"availHddBytes":{"description":"Available free bytes remaining in the pool on HDD drives when virtual hot spare is taken into account.\n","type":"string"},"availSsdBytes":{"description":"Available free bytes remaining in the pool on SSD drives when virtual hot spare is taken into account.\n","type":"string"},"balanced":{"description":"Whether or not the pool usage is currently balanced.\n","type":"boolean"},"freeBytes":{"description":"Free bytes remaining in the pool.\n","type":"string"},"freeHddBytes":{"description":"Free bytes remaining in the pool on HDD drives.\n","type":"string"},"freeSsdBytes":{"description":"Free bytes remaining in the pool on SSD drives.\n","type":"string"},"pctUsed":{"description":"Percentage of usable space in the pool which is used.\n","type":"string"},"pctUsedHdd":{"description":"Percentage of usable space on HDD drives in the pool which is used.\n","type":"string"},"pctUsedSsd":{"description":"Percentage of usable space on SSD drives in the pool which is used.\n","type":"string"},"totalBytes":{"description":"Total bytes in the pool.\n","type":"string"},"totalHddBytes":{"description":"Total bytes in the pool on HDD drives.\n","type":"string"},"totalSsdBytes":{"description":"Total bytes in the pool on SSD drives.\n","type":"string"},"usableBytes":{"description":"Total bytes in the pool drives when virtual hot spare is taken into account.\n","type":"string"},"usableHddBytes":{"description":"Total bytes in the pool on HDD drives when virtual hot spare is taken into account.\n","type":"string"},"usableSsdBytes":{"description":"Total bytes in the pool on SSD drives when virtual hot spare is taken into account.\n","type":"string"},"usedBytes":{"description":"Used bytes in the pool.\n","type":"string"},"usedHddBytes":{"description":"Used bytes in the pool on HDD drives.\n","type":"string"},"usedSsdBytes":{"description":"Used bytes in the pool on SSD drives.\n","type":"string"},"virtualHotSpareBytes":{"description":"Bytes reserved for virtual hot spare in the pool.\n","type":"string"}},"required":["availBytes","availHddBytes","availSsdBytes","balanced","freeBytes","freeHddBytes","freeSsdBytes","pctUsed","pctUsedHdd","pctUsedSsd","totalBytes","totalHddBytes","totalSsdBytes","usableBytes","usableHddBytes","usableSsdBytes","usedBytes","usedHddBytes","usedSsdBytes","virtualHotSpareBytes"],"type":"object"},"powerscale:index/getSubnetFilter:getSubnetFilter":{"properties":{"groupnetName":{"description":"Specifies which groupnet to query.\n","type":"string"},"names":{"description":"List of subnet name.\n","items":{"type":"string"},"type":"array"}},"type":"object"},"powerscale:index/getSubnetSubnet:getSubnetSubnet":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"addrFamily":{"description":"IP address format.\n","type":"string"},"baseAddr":{"description":"The base IP address.\n","type":"string"},"description":{"description":"A description of the subnet.\n","type":"string"},"dsrAddrs":{"description":"List of Direct Server Return addresses.\n","items":{"type":"string"},"type":"array"},"gateway":{"description":"Gateway IP address.\n","type":"string"},"gatewayPriority":{"description":"Gateway priority.\n","type":"number"},"groupnet":{"description":"Name of the groupnet this subnet belongs to.\n","type":"string"},"id":{"description":"Unique Subnet ID.\n","type":"string"},"mtu":{"description":"MTU of the subnet.\n","type":"number"},"name":{"description":"The name of the subnet.\n","type":"string"},"pools":{"description":"Name of the pools in the subnet.\n","items":{"type":"string"},"type":"array"},"prefixlen":{"description":"Subnet Prefix Length.\n","type":"number"},"scServiceAddrs":{"description":"List of IP addresses that SmartConnect listens for DNS requests.\n","items":{"$ref":"#/types/powerscale:index%2FgetSubnetSubnetScServiceAddr:getSubnetSubnetScServiceAddr"},"type":"array"},"scServiceName":{"description":"Domain Name corresponding to the SmartConnect Service Address.\n","type":"string"},"vlanEnabled":{"description":"VLAN tagging enabled or disabled.\n","type":"boolean"},"vlanId":{"description":"VLAN ID for all interfaces in the subnet.\n","type":"number"}},"required":["addrFamily","baseAddr","description","dsrAddrs","gateway","gatewayPriority","groupnet","id","mtu","name","pools","prefixlen","scServiceAddrs","scServiceName","vlanEnabled","vlanId"],"type":"object"},"powerscale:index/getSubnetSubnetScServiceAddr:getSubnetSubnetScServiceAddr":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"high":{"description":"High IP\n","type":"string"},"low":{"description":"Low IP\n","type":"string"}},"required":["high","low"],"type":"object"},"powerscale:index/getSynciqGlobalSettingsSourceNetwork:getSynciqGlobalSettingsSourceNetwork":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"pool":{"description":"The pool to restrict replication policies to.\n","type":"string"},"subnet":{"description":"The subnet to restrict replication policies to.\n","type":"string"}},"required":["pool","subnet"],"type":"object"},"powerscale:index/getSynciqPeerCertificateCertificate:getSynciqPeerCertificateCertificate":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"description":{"description":"Description field associated with a certificate provided for administrative convenience.\n","type":"string"},"fingerprints":{"description":"A list of zero or more certificate fingerprints which can be used for certificate identification.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqPeerCertificateCertificateFingerprint:getSynciqPeerCertificateCertificateFingerprint"},"type":"array"},"id":{"description":"Unique server certificate identifier.\n","type":"string"},"issuer":{"description":"Certificate issuer field extracted from the certificate.\n","type":"string"},"name":{"description":"Administrator specified name identifier.\n","type":"string"},"notAfter":{"description":"Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp.  The certificate is not valid after this timestamp.\n","type":"number"},"notBefore":{"description":"Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp.  The certificate is not valid before this timestamp.\n","type":"number"},"status":{"description":"Certificate validity status\n","type":"string"},"subject":{"description":"Certificate subject field extracted from the certificate.\n","type":"string"}},"required":["description","fingerprints","id","issuer","name","notAfter","notBefore","status","subject"],"type":"object"},"powerscale:index/getSynciqPeerCertificateCertificateFingerprint:getSynciqPeerCertificateCertificateFingerprint":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"type":{"description":"Fingerprint hash algorithm\n","type":"string"},"value":{"description":"Fingerprint value\n","type":"string"}},"required":["type","value"],"type":"object"},"powerscale:index/getSynciqPeerCertificateFilter:getSynciqPeerCertificateFilter":{"properties":{"name":{"description":"Name of the SyncIQ Peer Certificate to be fetched.\n","type":"string"}},"type":"object"},"powerscale:index/getSynciqPolicyPolicy:getSynciqPolicyPolicy":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"acceleratedFailback":{"description":"Accelerated Failback\n","type":"boolean"},"action":{"description":"Action\n","type":"string"},"allowCopyFb":{"description":"Allow Copy Fb\n","type":"boolean"},"bandwidthReservation":{"description":"Bandwidth Reservation\n","type":"number"},"changelist":{"description":"Changelist\n","type":"boolean"},"checkIntegrity":{"description":"Check Integrity\n","type":"boolean"},"cloudDeepCopy":{"description":"Cloud Deep Copy\n","type":"string"},"conflicted":{"description":"Conflicted\n","type":"boolean"},"databaseMirrored":{"description":"Database Mirrored\n","type":"boolean"},"deleteQuotas":{"description":"Delete Quotas\n","type":"boolean"},"description":{"description":"Description\n","type":"string"},"disableFileSplit":{"description":"Disable File Split\n","type":"boolean"},"disableFofb":{"description":"Disable Fofb\n","type":"boolean"},"disableQuotaTmpDir":{"description":"Disable Quota Tmp Dir\n","type":"boolean"},"disableStf":{"description":"Disable Stf\n","type":"boolean"},"enableHashTmpdir":{"description":"Enable Hash Tmpdir\n","type":"boolean"},"enabled":{"description":"Enabled\n","type":"boolean"},"encrypted":{"description":"Encrypted\n","type":"boolean"},"encryptionCipherList":{"description":"Encryption Cipher List\n","type":"string"},"expectedDataloss":{"description":"Expected Dataloss\n","type":"boolean"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FgetSynciqPolicyPolicyFileMatchingPattern:getSynciqPolicyPolicyFileMatchingPattern","description":"File Matching Pattern\n"},"forceInterface":{"description":"Force Interface\n","type":"boolean"},"hasSyncState":{"description":"Has Sync State\n","type":"boolean"},"id":{"description":"Id\n","type":"string"},"ignoreRecursiveQuota":{"description":"Ignore Recursive Quota\n","type":"boolean"},"jobDelay":{"description":"Job Delay\n","type":"number"},"lastJobState":{"description":"Last Job State\n","type":"string"},"lastStarted":{"description":"Last Started\n","type":"number"},"lastSuccess":{"description":"Last Success\n","type":"number"},"linkedServicePolicies":{"description":"Linked Service Policies\n","items":{"type":"string"},"type":"array"},"logLevel":{"description":"Log Level\n","type":"string"},"logRemovedFiles":{"description":"Log Removed Files\n","type":"boolean"},"name":{"description":"Name\n","type":"string"},"nextRun":{"description":"Next Run\n","type":"number"},"ocspAddress":{"description":"Ocsp Address\n","type":"string"},"ocspIssuerCertificateId":{"description":"Ocsp Issuer Certificate Id\n","type":"string"},"passwordSet":{"description":"Password Set\n","type":"boolean"},"priority":{"description":"Priority\n","type":"number"},"reportMaxAge":{"description":"Report Max Age\n","type":"number"},"reportMaxCount":{"description":"Report Max Count\n","type":"number"},"restrictTargetNetwork":{"description":"Restrict Target Network\n","type":"boolean"},"rpoAlert":{"description":"Rpo Alert\n","type":"number"},"schedule":{"description":"Schedule\n","type":"string"},"servicePolicy":{"description":"Service Policy\n","type":"boolean"},"skipLookup":{"description":"Skip Lookup\n","type":"boolean"},"skipWhenSourceUnmodified":{"description":"Skip When Source Unmodified\n","type":"boolean"},"snapshotSyncExisting":{"description":"Snapshot Sync Existing\n","type":"boolean"},"snapshotSyncPattern":{"description":"Snapshot Sync Pattern\n","type":"string"},"sourceCertificateId":{"description":"Source Certificate Id\n","type":"string"},"sourceDomainMarked":{"description":"Source Domain Marked\n","type":"boolean"},"sourceExcludeDirectories":{"description":"Source Exclude Directories\n","items":{"type":"string"},"type":"array"},"sourceIncludeDirectories":{"description":"Source Include Directories\n","items":{"type":"string"},"type":"array"},"sourceNetwork":{"$ref":"#/types/powerscale:index%2FgetSynciqPolicyPolicySourceNetwork:getSynciqPolicyPolicySourceNetwork","description":"Source Network\n"},"sourceRootPath":{"description":"Source Root Path\n","type":"string"},"sourceSnapshotArchive":{"description":"Source Snapshot Archive\n","type":"boolean"},"sourceSnapshotExpiration":{"description":"Source Snapshot Expiration\n","type":"number"},"sourceSnapshotPattern":{"description":"Source Snapshot Pattern\n","type":"string"},"syncExistingSnapshotExpiration":{"description":"Sync Existing Snapshot Expiration\n","type":"boolean"},"syncExistingTargetSnapshotPattern":{"description":"Sync Existing Target Snapshot Pattern\n","type":"string"},"targetCertificateId":{"description":"Target Certificate Id\n","type":"string"},"targetCompareInitialSync":{"description":"Target Compare Initial Sync\n","type":"boolean"},"targetDetectModifications":{"description":"Target Detect Modifications\n","type":"boolean"},"targetHost":{"description":"Target Host\n","type":"string"},"targetPath":{"description":"Target Path\n","type":"string"},"targetSnapshotAlias":{"description":"Target Snapshot Alias\n","type":"string"},"targetSnapshotArchive":{"description":"Target Snapshot Archive\n","type":"boolean"},"targetSnapshotExpiration":{"description":"Target Snapshot Expiration\n","type":"number"},"targetSnapshotPattern":{"description":"Target Snapshot Pattern\n","type":"string"},"workersPerNode":{"description":"Workers Per Node\n","type":"number"}},"required":["acceleratedFailback","action","allowCopyFb","bandwidthReservation","changelist","checkIntegrity","cloudDeepCopy","conflicted","databaseMirrored","deleteQuotas","description","disableFileSplit","disableFofb","disableQuotaTmpDir","disableStf","enableHashTmpdir","enabled","encrypted","encryptionCipherList","expectedDataloss","fileMatchingPattern","forceInterface","hasSyncState","id","ignoreRecursiveQuota","jobDelay","lastJobState","lastStarted","lastSuccess","linkedServicePolicies","logLevel","logRemovedFiles","name","nextRun","ocspAddress","ocspIssuerCertificateId","passwordSet","priority","reportMaxAge","reportMaxCount","restrictTargetNetwork","rpoAlert","schedule","servicePolicy","skipLookup","skipWhenSourceUnmodified","snapshotSyncExisting","snapshotSyncPattern","sourceCertificateId","sourceDomainMarked","sourceExcludeDirectories","sourceIncludeDirectories","sourceNetwork","sourceRootPath","sourceSnapshotArchive","sourceSnapshotExpiration","sourceSnapshotPattern","syncExistingSnapshotExpiration","syncExistingTargetSnapshotPattern","targetCertificateId","targetCompareInitialSync","targetDetectModifications","targetHost","targetPath","targetSnapshotAlias","targetSnapshotArchive","targetSnapshotExpiration","targetSnapshotPattern","workersPerNode"],"type":"object"},"powerscale:index/getSynciqPolicyPolicyFileMatchingPattern:getSynciqPolicyPolicyFileMatchingPattern":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"orCriterias":{"description":"Or Criteria\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqPolicyPolicyFileMatchingPatternOrCriteria:getSynciqPolicyPolicyFileMatchingPatternOrCriteria"},"type":"array"}},"required":["orCriterias"],"type":"object"},"powerscale:index/getSynciqPolicyPolicyFileMatchingPatternOrCriteria:getSynciqPolicyPolicyFileMatchingPatternOrCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"andCriterias":{"description":"And Criteria\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqPolicyPolicyFileMatchingPatternOrCriteriaAndCriteria:getSynciqPolicyPolicyFileMatchingPatternOrCriteriaAndCriteria"},"type":"array"}},"required":["andCriterias"],"type":"object"},"powerscale:index/getSynciqPolicyPolicyFileMatchingPatternOrCriteriaAndCriteria:getSynciqPolicyPolicyFileMatchingPatternOrCriteriaAndCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"attributeExists":{"description":"Attribute Exists\n","type":"boolean"},"caseSensitive":{"description":"Case Sensitive\n","type":"boolean"},"field":{"description":"Field\n","type":"string"},"operator":{"description":"Operator\n","type":"string"},"type":{"description":"Type\n","type":"string"},"value":{"description":"Value\n","type":"string"},"wholeWord":{"description":"Whole Word\n","type":"boolean"}},"required":["attributeExists","caseSensitive","field","operator","type","value","wholeWord"],"type":"object"},"powerscale:index/getSynciqPolicyPolicySourceNetwork:getSynciqPolicyPolicySourceNetwork":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"pool":{"description":"Pool\n","type":"string"},"subnet":{"description":"Subnet\n","type":"string"}},"required":["pool","subnet"],"type":"object"},"powerscale:index/getSynciqReplicationJobFilter:getSynciqReplicationJobFilter":{"properties":{"dir":{"description":"The direction of the sort.\n","type":"string"},"limit":{"description":"Return no more than this many results.\n","type":"number"},"sort":{"description":"The field that will be used for sorting.\n","type":"string"},"state":{"description":"Only list SyncIQ replication jobs matching this state.\n","type":"string"}},"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJob:getSynciqReplicationJobSynciqJob":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"action":{"description":"The action to be taken by this job.\n","type":"string"},"adsStreamsReplicated":{"description":"The number of ads streams replicated by this job.\n","type":"number"},"blockSpecsReplicated":{"description":"The number of block specs replicated by this job.\n","type":"number"},"bytesRecoverable":{"description":"The number of bytes recoverable by this job.\n","type":"number"},"bytesTransferred":{"description":"The number of bytes that have been transferred by this job.\n","type":"number"},"charSpecsReplicated":{"description":"The number of char specs replicated by this job.\n","type":"number"},"committedFiles":{"description":"The number of WORM committed files.\n","type":"number"},"correctedLins":{"description":"The number of LINs corrected by this job.\n","type":"number"},"deadNode":{"description":"This field is true if the node running this job is dead.\n","type":"boolean"},"directoriesReplicated":{"description":"The number of directories replicated.\n","type":"number"},"dirsChanged":{"description":"The number of directories changed by this job.\n","type":"number"},"dirsDeleted":{"description":"The number of directories deleted by this job.\n","type":"number"},"dirsMoved":{"description":"The number of directories moved by this job.\n","type":"number"},"dirsNew":{"description":"The number of directories created by this job.\n","type":"number"},"duration":{"description":"The amount of time in seconds between when the job was started and when it ended.  If the job has not yet ended, this is the amount of time since the job started.  This field is null if the job has not yet started.\n","type":"number"},"encrypted":{"description":"If true, syncs will be encrypted.\n","type":"boolean"},"endTime":{"description":"The time the job ended in unix epoch seconds. The field is null if the job hasn't ended.\n","type":"number"},"error":{"description":"The primary error message for this job.\n","type":"string"},"errorChecksumFilesSkipped":{"description":"The number of files with checksum errors skipped by this job.\n","type":"number"},"errorIoFilesSkipped":{"description":"The number of files with io errors skipped by this job.\n","type":"number"},"errorNetFilesSkipped":{"description":"The number of files with network errors skipped by this job.\n","type":"number"},"errors":{"description":"A list of error messages for this job.\n","items":{"type":"string"},"type":"array"},"failedChunks":{"description":"They number of data chunks that failed transmission.\n","type":"number"},"fifosReplicated":{"description":"The number of fifos replicated by this job.\n","type":"number"},"fileDataBytes":{"description":"The number of bytes transferred that belong to files.\n","type":"number"},"filesChanged":{"description":"The number of files changed by this job.\n","type":"number"},"filesLinked":{"description":"The number of files linked by this job.\n","type":"number"},"filesNew":{"description":"The number of files created by this job.\n","type":"number"},"filesSelected":{"description":"The number of files selected by this job.\n","type":"number"},"filesTransferred":{"description":"The number of files transferred by this job.\n","type":"number"},"filesUnlinked":{"description":"The number of files unlinked by this job.\n","type":"number"},"filesWithAdsReplicated":{"description":"The number of files with ads replicated by this job.\n","type":"number"},"flippedLins":{"description":"The number of LINs flipped by this job.\n","type":"number"},"hardLinksReplicated":{"description":"The number of hard links replicated by this job.\n","type":"number"},"hashExceptionsFixed":{"description":"The number of hash exceptions fixed by this job.\n","type":"number"},"hashExceptionsFound":{"description":"The number of hash exceptions found by this job.\n","type":"number"},"id":{"description":"A unique identifier for this object.\n","type":"string"},"jobId":{"description":"The ID of the job.\n","type":"number"},"linsTotal":{"description":"The number of LINs transferred by this job.\n","type":"number"},"networkBytesToSource":{"description":"The total number of bytes sent to the source by this job.\n","type":"number"},"networkBytesToTarget":{"description":"The total number of bytes sent to the target by this job.\n","type":"number"},"newFilesReplicated":{"description":"The number of new files replicated by this job.\n","type":"number"},"numRetransmittedFiles":{"description":"The number of files that have been retransmitted by this job.\n","type":"number"},"phases":{"description":"Data for each phase of this job.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJobPhase:getSynciqReplicationJobSynciqJobPhase"},"type":"array"},"policy":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJobPolicy:getSynciqReplicationJobSynciqJobPolicy","description":"The policy associated with this job, or null if there is currently no policy associated with this job (this can happen if the job is newly created and not yet fully populated in the underlying database).\n"},"policyAction":{"description":"This is the action the policy is configured to perform.\n","type":"string"},"policyId":{"description":"The ID of the policy.\n","type":"string"},"policyName":{"description":"The name of the policy.\n","type":"string"},"quotasDeleted":{"description":"The number of quotas removed from the target.\n","type":"number"},"regularFilesReplicated":{"description":"The number of regular files replicated by this job.\n","type":"number"},"resyncedLins":{"description":"The number of LINs resynched by this job.\n","type":"number"},"retransmittedFiles":{"description":"The files that have been retransmitted by this job.\n","items":{"type":"string"},"type":"array"},"retry":{"description":"The number of times the job has been retried.\n","type":"number"},"runningChunks":{"description":"The number of data chunks currently being transmitted.\n","type":"number"},"serviceReports":{"description":"Data for each component exported as part of service replication.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJobServiceReport:getSynciqReplicationJobSynciqJobServiceReport"},"type":"array"},"socketsReplicated":{"description":"The number of sockets replicated by this job.\n","type":"number"},"sourceBytesRecovered":{"description":"The number of bytes recovered on the source.\n","type":"number"},"sourceDirectoriesCreated":{"description":"The number of directories created on the source.\n","type":"number"},"sourceDirectoriesDeleted":{"description":"The number of directories deleted on the source.\n","type":"number"},"sourceDirectoriesLinked":{"description":"The number of directories linked on the source.\n","type":"number"},"sourceDirectoriesUnlinked":{"description":"The number of directories unlinked on the source.\n","type":"number"},"sourceDirectoriesVisited":{"description":"The number of directories visited on the source.\n","type":"number"},"sourceFilesDeleted":{"description":"The number of files deleted on the source.\n","type":"number"},"sourceFilesLinked":{"description":"The number of files linked on the source.\n","type":"number"},"sourceFilesUnlinked":{"description":"The number of files unlinked on the source.\n","type":"number"},"sparseDataBytes":{"description":"The number of sparse data bytes transferred by this job.\n","type":"number"},"startTime":{"description":"The time the job started in unix epoch seconds. The field is null if the job hasn't started.\n","type":"number"},"state":{"description":"The state of the job.\n","type":"string"},"succeededChunks":{"description":"The number of data chunks that have been transmitted successfully.\n","type":"number"},"symlinksReplicated":{"description":"The number of symlinks replicated by this job.\n","type":"number"},"syncType":{"description":"The type of sync being performed by this job.\n","type":"string"},"targetBytesRecovered":{"description":"The number of bytes recovered on the target.\n","type":"number"},"targetDirectoriesCreated":{"description":"The number of directories created on the target.\n","type":"number"},"targetDirectoriesDeleted":{"description":"The number of directories deleted on the target.\n","type":"number"},"targetDirectoriesLinked":{"description":"The number of directories linked on the target.\n","type":"number"},"targetDirectoriesUnlinked":{"description":"The number of directories unlinked on the target.\n","type":"number"},"targetFilesDeleted":{"description":"The number of files deleted on the target.\n","type":"number"},"targetFilesLinked":{"description":"The number of files linked on the target.\n","type":"number"},"targetFilesUnlinked":{"description":"The number of files unlinked on the target.\n","type":"number"},"targetSnapshots":{"description":"The target snapshots created by this job.\n","items":{"type":"string"},"type":"array"},"totalChunks":{"description":"The total number of data chunks transmitted by this job.\n","type":"number"},"totalDataBytes":{"description":"The total number of bytes transferred by this job.\n","type":"number"},"totalExportedServices":{"description":"The total number of components exported as part of service replication.\n","type":"number"},"totalFiles":{"description":"The number of files affected by this job.\n","type":"number"},"totalNetworkBytes":{"description":"The total number of bytes sent over the network by this job.\n","type":"number"},"totalPhases":{"description":"The total number of phases for this job.\n","type":"number"},"unchangedDataBytes":{"description":"The number of bytes unchanged by this job.\n","type":"number"},"upToDateFilesSkipped":{"description":"The number of up-to-date files skipped by this job.\n","type":"number"},"updatedFilesReplicated":{"description":"The number of updated files replicated by this job.\n","type":"number"},"userConflictFilesSkipped":{"description":"The number of files with user conflicts skipped by this job.\n","type":"number"},"warnings":{"description":"A list of warning messages for this job.\n","items":{"type":"string"},"type":"array"},"workers":{"description":"A list of workers for this job.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJobWorker:getSynciqReplicationJobSynciqJobWorker"},"type":"array"},"wormCommittedFileConflicts":{"description":"The number of WORM committed files which needed to be reverted. Since WORM committed files cannot be reverted, this is the number of files that were preserved in the compliance store.\n","type":"number"}},"required":["action","adsStreamsReplicated","blockSpecsReplicated","bytesRecoverable","bytesTransferred","charSpecsReplicated","committedFiles","correctedLins","deadNode","directoriesReplicated","dirsChanged","dirsDeleted","dirsMoved","dirsNew","duration","encrypted","endTime","error","errorChecksumFilesSkipped","errorIoFilesSkipped","errorNetFilesSkipped","errors","failedChunks","fifosReplicated","fileDataBytes","filesChanged","filesLinked","filesNew","filesSelected","filesTransferred","filesUnlinked","filesWithAdsReplicated","flippedLins","hardLinksReplicated","hashExceptionsFixed","hashExceptionsFound","id","jobId","linsTotal","networkBytesToSource","networkBytesToTarget","newFilesReplicated","numRetransmittedFiles","phases","policy","policyAction","policyId","policyName","quotasDeleted","regularFilesReplicated","resyncedLins","retransmittedFiles","retry","runningChunks","serviceReports","socketsReplicated","sourceBytesRecovered","sourceDirectoriesCreated","sourceDirectoriesDeleted","sourceDirectoriesLinked","sourceDirectoriesUnlinked","sourceDirectoriesVisited","sourceFilesDeleted","sourceFilesLinked","sourceFilesUnlinked","sparseDataBytes","startTime","state","succeededChunks","symlinksReplicated","syncType","targetBytesRecovered","targetDirectoriesCreated","targetDirectoriesDeleted","targetDirectoriesLinked","targetDirectoriesUnlinked","targetFilesDeleted","targetFilesLinked","targetFilesUnlinked","targetSnapshots","totalChunks","totalDataBytes","totalExportedServices","totalFiles","totalNetworkBytes","totalPhases","unchangedDataBytes","upToDateFilesSkipped","updatedFilesReplicated","userConflictFilesSkipped","warnings","workers","wormCommittedFileConflicts"],"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJobPhase:getSynciqReplicationJobSynciqJobPhase":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"endTime":{"description":"The time the job ended this phase.\n","type":"number"},"phase":{"description":"The phase that the job was in.\n","type":"string"},"startTime":{"description":"The time the job began this phase.\n","type":"number"}},"required":["endTime","phase","startTime"],"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJobPolicy:getSynciqReplicationJobSynciqJobPolicy":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"action":{"description":"The action to be taken by the job.\n","type":"string"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJobPolicyFileMatchingPattern:getSynciqReplicationJobSynciqJobPolicyFileMatchingPattern","description":"A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties.  Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria.\n"},"name":{"description":"User-assigned name of this sync policy.\n","type":"string"},"sourceExcludeDirectories":{"description":"Directories that will be excluded from the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceIncludeDirectories":{"description":"Directories that will be included in the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceRootPath":{"description":"The root directory on the source cluster the files will be synced from.  Modifying this field will result in a full synchronization of all data.\n","type":"string"},"targetHost":{"description":"Hostname or IP address of sync target cluster.  Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association.\n","type":"string"},"targetPath":{"description":"Absolute filesystem path on the target cluster for the sync destination.\n","type":"string"}},"required":["action","fileMatchingPattern","name","sourceExcludeDirectories","sourceIncludeDirectories","sourceRootPath","targetHost","targetPath"],"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJobPolicyFileMatchingPattern:getSynciqReplicationJobSynciqJobPolicyFileMatchingPattern":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"orCriterias":{"description":"An array containing objects with \"and*criteria\" properties, each set of and*criteria will be logically OR'ed together to create the full file matching pattern.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteria:getSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteria"},"type":"array"}},"required":["orCriterias"],"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteria:getSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"andCriterias":{"description":"An array containing individual file criterion objects each describing one criterion.  These are logically AND'ed together to form a set of criteria.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteriaAndCriteria:getSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteriaAndCriteria"},"type":"array"}},"required":["andCriterias"],"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteriaAndCriteria:getSynciqReplicationJobSynciqJobPolicyFileMatchingPatternOrCriteriaAndCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"attributeExists":{"description":"For <span pulumi-lang-nodejs=\"\"customAttribute\"\" pulumi-lang-dotnet=\"\"CustomAttribute\"\" pulumi-lang-go=\"\"customAttribute\"\" pulumi-lang-python=\"\"custom_attribute\"\" pulumi-lang-yaml=\"\"customAttribute\"\" pulumi-lang-java=\"\"customAttribute\"\">\"custom_attribute\"</span> type criteria.  The file will match as long as the attribute named by \"field\" exists.  Default is true.\n","type":"boolean"},"caseSensitive":{"description":"If true, the value comparison will be case sensitive.  Default is true.\n","type":"boolean"},"field":{"description":"The name of the file attribute to match on (only required if this is a<span pulumi-lang-nodejs=\" customAttribute \" pulumi-lang-dotnet=\" CustomAttribute \" pulumi-lang-go=\" customAttribute \" pulumi-lang-python=\" custom_attribute \" pulumi-lang-yaml=\" customAttribute \" pulumi-lang-java=\" customAttribute \"> custom_attribute </span>type criterion).  Default is an empty string \"\".\n","type":"string"},"operator":{"description":"How to compare the specified attribute of each file to the specified value.\n","type":"string"},"type":{"description":"The type of this criterion, that is, which file attribute to match on.\n","type":"string"},"value":{"description":"The value to compare the specified attribute of each file to.\n","type":"string"},"wholeWord":{"description":"If true, the attribute must match the entire word.  Default is true.\n","type":"boolean"}},"required":["attributeExists","caseSensitive","field","operator","type","value","wholeWord"],"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJobServiceReport:getSynciqReplicationJobSynciqJobServiceReport":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"component":{"description":"The component that was processed.\n","type":"string"},"directory":{"description":"The directory of the service export.\n","type":"string"},"endTime":{"description":"The time the job ended this component.\n","type":"number"},"errorMsgs":{"description":"A list of error messages generated while exporting components.\n","items":{"type":"string"},"type":"array"},"filters":{"description":"A list of path-based filters for exporting components.\n","items":{"type":"string"},"type":"array"},"handlersFailed":{"description":"The number of handlers failed during export.\n","type":"number"},"handlersSkipped":{"description":"The number of handlers skipped during export.\n","type":"number"},"handlersTransferred":{"description":"The number of handlers exported.\n","type":"number"},"recordsFailed":{"description":"The number of records failed during export.\n","type":"number"},"recordsSkipped":{"description":"The number of records skipped during export.\n","type":"number"},"recordsTransferred":{"description":"The number of records exported.\n","type":"number"},"startTime":{"description":"The time the job began this component.\n","type":"number"},"status":{"description":"The current status of export for this component.\n","type":"string"}},"required":["component","directory","endTime","errorMsgs","filters","handlersFailed","handlersSkipped","handlersTransferred","recordsFailed","recordsSkipped","recordsTransferred","startTime","status"],"type":"object"},"powerscale:index/getSynciqReplicationJobSynciqJobWorker:getSynciqReplicationJobSynciqJobWorker":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"connected":{"description":"Whether there is a connection between the source and target.\n","type":"boolean"},"lastSplit":{"description":"The last time a network split occurred.\n","type":"number"},"lastWork":{"description":"The last time the worker performed work.\n","type":"number"},"lin":{"description":"The LIN being worked on.\n","type":"number"},"lnn":{"description":"The lnn the worker is assigned to run on.\n","type":"number"},"processId":{"description":"The process ID of the worker.\n","type":"number"},"sourceHost":{"description":"The source host for this worker.\n","type":"string"},"targetHost":{"description":"The target host for this worker.\n","type":"string"},"workerId":{"description":"The ID of the worker.\n","type":"number"}},"required":["connected","lastSplit","lastWork","lin","lnn","processId","sourceHost","targetHost","workerId"],"type":"object"},"powerscale:index/getSynciqReplicationReportFilter:getSynciqReplicationReportFilter":{"properties":{"dir":{"description":"The direction of the sort.\n","type":"string"},"limit":{"description":"Return no more than this many results at once (see resume).\n","type":"number"},"newerThan":{"description":"Filter the returned reports to include only those whose jobs started more recently than the specified number of days ago.\n","type":"number"},"policyName":{"description":"Filter the returned reports to include only those with this policy name.\n","type":"string"},"reportsPerPolicy":{"description":"If specified, only the N most recent reports will be returned per policy.  If no other query args are present this argument defaults to 1.\n","type":"number"},"sort":{"description":"The field that will be used for sorting.\n","type":"string"},"state":{"description":"Filter the returned reports to include only those whose jobs are in this state.\n","type":"string"},"summary":{"description":"Return a summary rather than entire objects\n","type":"boolean"}},"type":"object"},"powerscale:index/getSynciqReplicationReportReplicationReport:getSynciqReplicationReportReplicationReport":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"action":{"description":"The action to be taken by this job.\n","type":"string"},"adsStreamsReplicated":{"description":"The number of ads streams replicated by this job.\n","type":"number"},"blockSpecsReplicated":{"description":"The number of block specs replicated by this job.\n","type":"number"},"bytesRecoverable":{"description":"The number of bytes recoverable by this job.\n","type":"number"},"bytesTransferred":{"description":"The number of bytes that have been transferred by this job.\n","type":"number"},"charSpecsReplicated":{"description":"The number of char specs replicated by this job.\n","type":"number"},"committedFiles":{"description":"The number of WORM committed files.\n","type":"number"},"correctedLins":{"description":"The number of LINs corrected by this job.\n","type":"number"},"deadNode":{"description":"This field is true if the node running this job is dead.\n","type":"boolean"},"directoriesReplicated":{"description":"The number of directories replicated.\n","type":"number"},"dirsChanged":{"description":"The number of directories changed by this job.\n","type":"number"},"dirsDeleted":{"description":"The number of directories deleted by this job.\n","type":"number"},"dirsMoved":{"description":"The number of directories moved by this job.\n","type":"number"},"dirsNew":{"description":"The number of directories created by this job.\n","type":"number"},"duration":{"description":"The amount of time in seconds between when the job was started and when it ended.  If the job has not yet ended, this is the amount of time since the job started.  This field is null if the job has not yet started.\n","type":"number"},"encrypted":{"description":"If true, syncs will be encrypted.\n","type":"boolean"},"endTime":{"description":"The time the job ended in unix epoch seconds. The field is null if the job hasn't ended.\n","type":"number"},"error":{"description":"The primary error message for this job.\n","type":"string"},"errorChecksumFilesSkipped":{"description":"The number of files with checksum errors skipped by this job.\n","type":"number"},"errorIoFilesSkipped":{"description":"The number of files with io errors skipped by this job.\n","type":"number"},"errorNetFilesSkipped":{"description":"The number of files with network errors skipped by this job.\n","type":"number"},"errors":{"description":"A list of error messages for this job.\n","items":{"type":"string"},"type":"array"},"failedChunks":{"description":"Tyhe number of data chunks that failed transmission.\n","type":"number"},"fifosReplicated":{"description":"The number of fifos replicated by this job.\n","type":"number"},"fileDataBytes":{"description":"The number of bytes transferred that belong to files.\n","type":"number"},"filesChanged":{"description":"The number of files changed by this job.\n","type":"number"},"filesLinked":{"description":"The number of files linked by this job.\n","type":"number"},"filesNew":{"description":"The number of files created by this job.\n","type":"number"},"filesSelected":{"description":"The number of files selected by this job.\n","type":"number"},"filesTransferred":{"description":"The number of files transferred by this job.\n","type":"number"},"filesUnlinked":{"description":"The number of files unlinked by this job.\n","type":"number"},"filesWithAdsReplicated":{"description":"The number of files with ads replicated by this job.\n","type":"number"},"flippedLins":{"description":"The number of LINs flipped by this job.\n","type":"number"},"hardLinksReplicated":{"description":"The number of hard links replicated by this job.\n","type":"number"},"hashExceptionsFixed":{"description":"The number of hash exceptions fixed by this job.\n","type":"number"},"hashExceptionsFound":{"description":"The number of hash exceptions found by this job.\n","type":"number"},"id":{"description":"A unique identifier for this object.\n","type":"string"},"jobId":{"description":"The ID of the job.\n","type":"number"},"linsTotal":{"description":"The number of LINs transferred by this job.\n","type":"number"},"networkBytesToSource":{"description":"The total number of bytes sent to the source by this job.\n","type":"number"},"networkBytesToTarget":{"description":"The total number of bytes sent to the target by this job.\n","type":"number"},"newFilesReplicated":{"description":"The number of new files replicated by this job.\n","type":"number"},"numRetransmittedFiles":{"description":"The number of files that have been retransmitted by this job.\n","type":"number"},"phases":{"description":"Data for each phase of this job.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportReplicationReportPhase:getSynciqReplicationReportReplicationReportPhase"},"type":"array"},"policy":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportReplicationReportPolicy:getSynciqReplicationReportReplicationReportPolicy","description":"The policy associated with this job, or null if there is currently no policy associated with this job (this can happen if the job is newly created and not yet fully populated in the underlying database).\n"},"policyAction":{"description":"This is the action the policy is configured to perform.\n","type":"string"},"policyId":{"description":"The ID of the policy.\n","type":"string"},"policyName":{"description":"The name of the policy.\n","type":"string"},"quotasDeleted":{"description":"The number of quotas removed from the target.\n","type":"number"},"regularFilesReplicated":{"description":"The number of regular files replicated by this job.\n","type":"number"},"resyncedLins":{"description":"The number of LINs resynched by this job.\n","type":"number"},"retransmittedFiles":{"description":"The files that have been retransmitted by this job.\n","items":{"type":"string"},"type":"array"},"retry":{"description":"The number of times the job has been retried.\n","type":"number"},"runningChunks":{"description":"The number of data chunks currently being transmitted.\n","type":"number"},"socketsReplicated":{"description":"The number of sockets replicated by this job.\n","type":"number"},"sourceBytesRecovered":{"description":"The number of bytes recovered on the source.\n","type":"number"},"sourceDirectoriesCreated":{"description":"The number of directories created on the source.\n","type":"number"},"sourceDirectoriesDeleted":{"description":"The number of directories deleted on the source.\n","type":"number"},"sourceDirectoriesLinked":{"description":"The number of directories linked on the source.\n","type":"number"},"sourceDirectoriesUnlinked":{"description":"The number of directories unlinked on the source.\n","type":"number"},"sourceDirectoriesVisited":{"description":"The number of directories visited on the source.\n","type":"number"},"sourceFilesDeleted":{"description":"The number of files deleted on the source.\n","type":"number"},"sourceFilesLinked":{"description":"The number of files linked on the source.\n","type":"number"},"sourceFilesUnlinked":{"description":"The number of files unlinked on the source.\n","type":"number"},"sparseDataBytes":{"description":"The number of sparse data bytes transferred by this job.\n","type":"number"},"startTime":{"description":"The time the job started in unix epoch seconds. The field is null if the job hasn't started.\n","type":"number"},"state":{"description":"The state of the job.\n","type":"string"},"subreportCount":{"description":"The number of subreports that are available for this job report.\n","type":"number"},"succeededChunks":{"description":"The number of data chunks that have been transmitted successfully.\n","type":"number"},"symlinksReplicated":{"description":"The number of symlinks replicated by this job.\n","type":"number"},"syncType":{"description":"The type of sync being performed by this job.\n","type":"string"},"targetBytesRecovered":{"description":"The number of bytes recovered on the target.\n","type":"number"},"targetDirectoriesCreated":{"description":"The number of directories created on the target.\n","type":"number"},"targetDirectoriesDeleted":{"description":"The number of directories deleted on the target.\n","type":"number"},"targetDirectoriesLinked":{"description":"The number of directories linked on the target.\n","type":"number"},"targetDirectoriesUnlinked":{"description":"The number of directories unlinked on the target.\n","type":"number"},"targetFilesDeleted":{"description":"The number of files deleted on the target.\n","type":"number"},"targetFilesLinked":{"description":"The number of files linked on the target.\n","type":"number"},"targetFilesUnlinked":{"description":"The number of files unlinked on the target.\n","type":"number"},"targetSnapshots":{"description":"The target snapshots created by this job.\n","items":{"type":"string"},"type":"array"},"throughput":{"description":"Throughput of a job\n","type":"string"},"totalChunks":{"description":"The total number of data chunks transmitted by this job.\n","type":"number"},"totalDataBytes":{"description":"The total number of bytes transferred by this job.\n","type":"number"},"totalFiles":{"description":"The number of files affected by this job.\n","type":"number"},"totalNetworkBytes":{"description":"The total number of bytes sent over the network by this job.\n","type":"number"},"totalPhases":{"description":"The total number of phases for this job.\n","type":"number"},"unchangedDataBytes":{"description":"The number of bytes unchanged by this job.\n","type":"number"},"upToDateFilesSkipped":{"description":"The number of up-to-date files skipped by this job.\n","type":"number"},"updatedFilesReplicated":{"description":"The number of updated files replicated by this job.\n","type":"number"},"userConflictFilesSkipped":{"description":"The number of files with user conflicts skipped by this job.\n","type":"number"},"warnings":{"description":"A list of warning messages for this job.\n","items":{"type":"string"},"type":"array"},"wormCommittedFileConflicts":{"description":"The number of WORM committed files which needed to be reverted. Since WORM committed files cannot be reverted, this is the number of files that were preserved in the compliance store.\n","type":"number"}},"required":["action","adsStreamsReplicated","blockSpecsReplicated","bytesRecoverable","bytesTransferred","charSpecsReplicated","committedFiles","correctedLins","deadNode","directoriesReplicated","dirsChanged","dirsDeleted","dirsMoved","dirsNew","duration","encrypted","endTime","error","errorChecksumFilesSkipped","errorIoFilesSkipped","errorNetFilesSkipped","errors","failedChunks","fifosReplicated","fileDataBytes","filesChanged","filesLinked","filesNew","filesSelected","filesTransferred","filesUnlinked","filesWithAdsReplicated","flippedLins","hardLinksReplicated","hashExceptionsFixed","hashExceptionsFound","id","jobId","linsTotal","networkBytesToSource","networkBytesToTarget","newFilesReplicated","numRetransmittedFiles","phases","policy","policyAction","policyId","policyName","quotasDeleted","regularFilesReplicated","resyncedLins","retransmittedFiles","retry","runningChunks","socketsReplicated","sourceBytesRecovered","sourceDirectoriesCreated","sourceDirectoriesDeleted","sourceDirectoriesLinked","sourceDirectoriesUnlinked","sourceDirectoriesVisited","sourceFilesDeleted","sourceFilesLinked","sourceFilesUnlinked","sparseDataBytes","startTime","state","subreportCount","succeededChunks","symlinksReplicated","syncType","targetBytesRecovered","targetDirectoriesCreated","targetDirectoriesDeleted","targetDirectoriesLinked","targetDirectoriesUnlinked","targetFilesDeleted","targetFilesLinked","targetFilesUnlinked","targetSnapshots","throughput","totalChunks","totalDataBytes","totalFiles","totalNetworkBytes","totalPhases","unchangedDataBytes","upToDateFilesSkipped","updatedFilesReplicated","userConflictFilesSkipped","warnings","wormCommittedFileConflicts"],"type":"object"},"powerscale:index/getSynciqReplicationReportReplicationReportPhase:getSynciqReplicationReportReplicationReportPhase":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"endTime":{"description":"The time the job ended this phase.\n","type":"number"},"phase":{"description":"The phase that the job was in.\n","type":"string"},"startTime":{"description":"The time the job began this phase.\n","type":"number"},"statistics":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportReplicationReportPhaseStatistics:getSynciqReplicationReportReplicationReportPhaseStatistics","description":"Statistics for each phase of this job.\n"}},"required":["endTime","phase","startTime","statistics"],"type":"object"},"powerscale:index/getSynciqReplicationReportReplicationReportPhaseStatistics:getSynciqReplicationReportReplicationReportPhaseStatistics":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"complianceDirLinks":{"description":"Compliance Dir Links\n","type":"string"},"correctedLins":{"description":"Corrected LINs\n","type":"string"},"deletedDirs":{"description":"Deleted Dirs\n","type":"string"},"dirs":{"description":"Dirs\n","type":"string"},"files":{"description":"Files\n","type":"string"},"flippedLins":{"description":"Flipped LINs\n","type":"string"},"hashExceptions":{"description":"Hash Exceptions\n","type":"string"},"linkedDirs":{"description":"Linked Dirs\n","type":"string"},"linkedFiles":{"description":"Linked Files\n","type":"string"},"markedDirectories":{"description":"Marked Directories\n","type":"string"},"markedFiles":{"description":"Marked Files\n","type":"string"},"modifiedDirs":{"description":"Modified Dirs\n","type":"string"},"modifiedFiles":{"description":"Modified Files\n","type":"string"},"modifiedLins":{"description":"Modified LINs\n","type":"string"},"newComplianceDirs":{"description":"New Compliance Dirs\n","type":"string"},"newDirs":{"description":"New Dirs\n","type":"string"},"newFiles":{"description":"New Files\n","type":"string"},"newResyncedFiles":{"description":"New Resynced Files\n","type":"string"},"resyncedFileLinks":{"description":"Resynced File Links\n","type":"string"},"resyncedLins":{"description":"Resynced LINs\n","type":"string"},"unlinkedFiles":{"description":"Unlinked Files\n","type":"string"}},"required":["complianceDirLinks","correctedLins","deletedDirs","dirs","files","flippedLins","hashExceptions","linkedDirs","linkedFiles","markedDirectories","markedFiles","modifiedDirs","modifiedFiles","modifiedLins","newComplianceDirs","newDirs","newFiles","newResyncedFiles","resyncedFileLinks","resyncedLins","unlinkedFiles"],"type":"object"},"powerscale:index/getSynciqReplicationReportReplicationReportPolicy:getSynciqReplicationReportReplicationReportPolicy":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"action":{"description":"The action to be taken by the job.\n","type":"string"},"fileMatchingPattern":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportReplicationReportPolicyFileMatchingPattern:getSynciqReplicationReportReplicationReportPolicyFileMatchingPattern","description":"A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties.  Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria.\n"},"name":{"description":"User-assigned name of this sync policy.\n","type":"string"},"sourceExcludeDirectories":{"description":"Directories that will be excluded from the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceIncludeDirectories":{"description":"Directories that will be included in the sync.  Modifying this field will result in a full synchronization of all data.\n","items":{"type":"string"},"type":"array"},"sourceRootPath":{"description":"The root directory on the source cluster the files will be synced from.  Modifying this field will result in a full synchronization of all data.\n","type":"string"},"targetHost":{"description":"Hostname or IP address of sync target cluster.  Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association.\n","type":"string"},"targetPath":{"description":"Absolute filesystem path on the target cluster for the sync destination.\n","type":"string"}},"required":["action","fileMatchingPattern","name","sourceExcludeDirectories","sourceIncludeDirectories","sourceRootPath","targetHost","targetPath"],"type":"object"},"powerscale:index/getSynciqReplicationReportReplicationReportPolicyFileMatchingPattern:getSynciqReplicationReportReplicationReportPolicyFileMatchingPattern":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"orCriterias":{"description":"An array containing objects with \"and*criteria\" properties, each set of and*criteria will be logically OR'ed together to create the full file matching pattern.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteria:getSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteria"},"type":"array"}},"required":["orCriterias"],"type":"object"},"powerscale:index/getSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteria:getSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"andCriterias":{"description":"An array containing individual file criterion objects each describing one criterion.  These are logically AND'ed together to form a set of criteria.\n","items":{"$ref":"#/types/powerscale:index%2FgetSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteriaAndCriteria:getSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteriaAndCriteria"},"type":"array"}},"required":["andCriterias"],"type":"object"},"powerscale:index/getSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteriaAndCriteria:getSynciqReplicationReportReplicationReportPolicyFileMatchingPatternOrCriteriaAndCriteria":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"attributeExists":{"description":"For <span pulumi-lang-nodejs=\"\"customAttribute\"\" pulumi-lang-dotnet=\"\"CustomAttribute\"\" pulumi-lang-go=\"\"customAttribute\"\" pulumi-lang-python=\"\"custom_attribute\"\" pulumi-lang-yaml=\"\"customAttribute\"\" pulumi-lang-java=\"\"customAttribute\"\">\"custom_attribute\"</span> type criteria.  The file will match as long as the attribute named by \"field\" exists.  Default is true.\n","type":"boolean"},"caseSensitive":{"description":"If true, the value comparison will be case sensitive.  Default is true.\n","type":"boolean"},"field":{"description":"The name of the file attribute to match on (only required if this is a<span pulumi-lang-nodejs=\" customAttribute \" pulumi-lang-dotnet=\" CustomAttribute \" pulumi-lang-go=\" customAttribute \" pulumi-lang-python=\" custom_attribute \" pulumi-lang-yaml=\" customAttribute \" pulumi-lang-java=\" customAttribute \"> custom_attribute </span>type criterion).  Default is an empty string \"\".\n","type":"string"},"operator":{"description":"How to compare the specified attribute of each file to the specified value.\n","type":"string"},"type":{"description":"The type of this criterion, that is, which file attribute to match on.\n","type":"string"},"value":{"description":"The value to compare the specified attribute of each file to.\n","type":"string"},"wholeWord":{"description":"If true, the attribute must match the entire word.  Default is true.\n","type":"boolean"}},"required":["attributeExists","caseSensitive","field","operator","type","value","wholeWord"],"type":"object"},"powerscale:index/getSynciqRuleRule:getSynciqRuleRule":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"description":{"description":"User-entered description of this performance rule.\n","type":"string"},"enabled":{"description":"Whether this performance rule is currently in effect during its specified intervals.\n","type":"boolean"},"id":{"description":"The system ID given to this performance rule.\n","type":"string"},"limit":{"description":"Amount the specified system resource type is limited by this rule.  Units are kb/s for bandwidth, files/s for file-count, processing percentage used for cpu, or percentage of maximum available workers.\n","type":"number"},"schedule":{"$ref":"#/types/powerscale:index%2FgetSynciqRuleRuleSchedule:getSynciqRuleRuleSchedule","description":"A schedule defining when during a week this performance rule is in effect.  If unspecified or null, the schedule will always be in effect.\n"},"type":{"description":"The type of system resource this rule limits.\n","type":"string"}},"required":["description","enabled","id","limit","schedule","type"],"type":"object"},"powerscale:index/getSynciqRuleRuleSchedule:getSynciqRuleRuleSchedule":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"begin":{"description":"Start time (inclusive) for this schedule, during its specified days.  Format is \"hh:mm\" (24h format hour, and minute).  A null value indicates the beginning of the day (\"00:00\").\n","type":"string"},"end":{"description":"End time (inclusive) for this schedule, during its specified days.  Format is \"hh:mm\" (three-letter weekday name abbreviation, 24h format hour, and minute).  A null value indicates the end of the day (\"23:59\").\n","type":"string"},"friday":{"description":"If true, this rule is in effect on Friday.  If false, or unspecified, it is not.\n","type":"boolean"},"monday":{"description":"If true, this rule is in effect on Monday.  If false, or unspecified, it is not.\n","type":"boolean"},"saturday":{"description":"If true, this rule is in effect on Saturday.  If false, or unspecified, it is not.\n","type":"boolean"},"sunday":{"description":"If true, this rule is in effect on Sunday.  If false, or unspecified, it is not.\n","type":"boolean"},"thursday":{"description":"If true, this rule is in effect on Thursday.  If false, or unspecified, it is not.\n","type":"boolean"},"tuesday":{"description":"If true, this rule is in effect on Tuesday.  If false, or unspecified, it is not.\n","type":"boolean"},"wednesday":{"description":"If true, this rule is in effect on Wednesday.  If false, or unspecified, it is not.\n","type":"boolean"}},"required":["begin","end","friday","monday","saturday","sunday","thursday","tuesday","wednesday"],"type":"object"},"powerscale:index/getUserFilter:getUserFilter":{"properties":{"cached":{"description":"If true, only return cached objects.\n","type":"boolean"},"domain":{"description":"Filter users by domain.\n","type":"string"},"memberOf":{"description":"Enumerate all users that a group is a member of.\n","type":"boolean"},"namePrefix":{"description":"Filter users by name prefix.\n","type":"string"},"names":{"description":"List of user identity.\n","items":{"$ref":"#/types/powerscale:index%2FgetUserFilterName:getUserFilterName"},"type":"array"},"provider":{"description":"Filter users by provider.\n","type":"string"},"zone":{"description":"Filter users by zone.\n","type":"string"}},"type":"object"},"powerscale:index/getUserFilterName:getUserFilterName":{"properties":{"name":{"description":"Specifies a user name.\n","type":"string"},"sid":{"description":"Specifies a numeric security identifier.\n","type":"string"},"uid":{"description":"Specifies a numeric user identifier.\n","type":"number"}},"type":"object"},"powerscale:index/getUserGroupFilter:getUserGroupFilter":{"properties":{"cached":{"description":"If true, only return cached objects.\n","type":"boolean"},"domain":{"description":"Filter user groups by domain.\n","type":"string"},"namePrefix":{"description":"Filter user groups by name prefix.\n","type":"string"},"names":{"description":"List of user group identity.\n","items":{"$ref":"#/types/powerscale:index%2FgetUserGroupFilterName:getUserGroupFilterName"},"type":"array"},"provider":{"description":"Filter user groups by provider.\n","type":"string"},"zone":{"description":"Filter user groups by zone.\n","type":"string"}},"type":"object"},"powerscale:index/getUserGroupFilterName:getUserGroupFilterName":{"properties":{"gid":{"description":"Specifies a numeric user group identifier.\n","type":"number"},"name":{"description":"Specifies a user group name.\n","type":"string"}},"type":"object"},"powerscale:index/getUserGroupUserGroup:getUserGroupUserGroup":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"dn":{"description":"Specifies the distinguished name for the user group.\n","type":"string"},"dnsDomain":{"description":"Specifies the DNS domain.\n","type":"string"},"domain":{"description":"Specifies the domain that the object is part of.\n","type":"string"},"generatedGid":{"description":"If true, the GID was generated.\n","type":"boolean"},"gid":{"description":"Specifies a user group identifier.\n","type":"string"},"id":{"description":"Specifies the user group ID.\n","type":"string"},"members":{"description":"List of members of group. Group Member can be user or group.\n","items":{"$ref":"#/types/powerscale:index%2FgetUserGroupUserGroupMember:getUserGroupUserGroupMember"},"type":"array"},"name":{"description":"Specifies a user group name.\n","type":"string"},"provider":{"description":"Specifies the authentication provider that the object belongs to.\n","type":"string"},"roles":{"description":"List of roles.\n","items":{"type":"string"},"type":"array"},"samAccountName":{"description":"Specifies a user group name.\n","type":"string"},"sid":{"description":"Specifies a security identifier.\n","type":"string"},"type":{"description":"Specifies the object type.\n","type":"string"}},"required":["dn","dnsDomain","domain","generatedGid","gid","id","members","name","provider","roles","samAccountName","sid","type"],"type":"object"},"powerscale:index/getUserGroupUserGroupMember:getUserGroupUserGroupMember":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"id":{"description":"Specifies a user or group id.\n","type":"string"},"name":{"description":"Specifies a user or group name.\n","type":"string"},"type":{"description":"Specifies the object type.\n","type":"string"}},"required":["id","name","type"],"type":"object"},"powerscale:index/getUserMappingRulesFilter:getUserMappingRulesFilter":{"properties":{"names":{"description":"Names filter for source user name or target user name.\n","items":{"type":"string"},"type":"array"},"operators":{"description":"Operators filter for user mapping rules.\n","items":{"type":"string"},"type":"array"},"zone":{"description":"The zone to which the user mapping applies. Defaults to System.\n","type":"string"}},"type":"object"},"powerscale:index/getUserMappingRulesUserMappingRule:getUserMappingRulesUserMappingRule":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"operator":{"description":"Specifies the operator to make rules on specified users or groups.\n","type":"string"},"options":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesUserMappingRuleOptions:getUserMappingRulesUserMappingRuleOptions","description":"Specifies the mapping options for this user mapping rule.\n"},"sourceUser":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesUserMappingRuleSourceUser:getUserMappingRulesUserMappingRuleSourceUser","description":"Specifies the source user information that the rule can be applied from.\n"},"targetUser":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesUserMappingRuleTargetUser:getUserMappingRulesUserMappingRuleTargetUser","description":"Specifies the target user information that the rule can be applied to.\n"}},"required":["operator","options","sourceUser","targetUser"],"type":"object"},"powerscale:index/getUserMappingRulesUserMappingRuleOptions:getUserMappingRulesUserMappingRuleOptions":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"break":{"description":"If true, and the rule was applied successfully, stop processing further.\n","type":"boolean"},"defaultUser":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesUserMappingRuleOptionsDefaultUser:getUserMappingRulesUserMappingRuleOptionsDefaultUser","description":"Specifies the default user information that can be applied if the final credentials do not have valid UID and GID information.\n"},"group":{"description":"If true, the primary GID and primary group SID should be copied to the existing credential.\n","type":"boolean"},"groups":{"description":"If true, all additional identifiers should be copied to the existing credential.\n","type":"boolean"},"user":{"description":"If true, the primary UID and primary user SID should be copied to the existing credential.\n","type":"boolean"}},"required":["break","defaultUser","group","groups","user"],"type":"object"},"powerscale:index/getUserMappingRulesUserMappingRuleOptionsDefaultUser:getUserMappingRulesUserMappingRuleOptionsDefaultUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["domain","user"],"type":"object"},"powerscale:index/getUserMappingRulesUserMappingRuleSourceUser:getUserMappingRulesUserMappingRuleSourceUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["domain","user"],"type":"object"},"powerscale:index/getUserMappingRulesUserMappingRuleTargetUser:getUserMappingRulesUserMappingRuleTargetUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["domain","user"],"type":"object"},"powerscale:index/getUserMappingRulesUserMappingRulesParameters:getUserMappingRulesUserMappingRulesParameters":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"defaultUnixUser":{"$ref":"#/types/powerscale:index%2FgetUserMappingRulesUserMappingRulesParametersDefaultUnixUser:getUserMappingRulesUserMappingRulesParametersDefaultUnixUser","description":"Specifies the default UNIX user information that can be applied if the final credentials do not have valid UID and GID information.\n"}},"required":["defaultUnixUser"],"type":"object"},"powerscale:index/getUserMappingRulesUserMappingRulesParametersDefaultUnixUser:getUserMappingRulesUserMappingRulesParametersDefaultUnixUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"domain":{"description":"Specifies the domain of the user that is being mapped.\n","type":"string"},"user":{"description":"Specifies the name of the user that is being mapped.\n","type":"string"}},"required":["domain","user"],"type":"object"},"powerscale:index/getUserUser:getUserUser":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"dn":{"description":"Specifies a principal name for the user.\n","type":"string"},"dnsDomain":{"description":"Specifies the DNS domain.\n","type":"string"},"domain":{"description":"Specifies the domain that the object is part of.\n","type":"string"},"email":{"description":"Specifies an email address.\n","type":"string"},"enabled":{"description":"If true, the authenticated user is enabled.\n","type":"boolean"},"expired":{"description":"If true, the authenticated user has expired.\n","type":"boolean"},"expiry":{"description":"Specifies the Unix Epoch time at which the authenticated user will expire.\n","type":"number"},"gecos":{"description":"Specifies the GECOS value, which is usually the full name.\n","type":"string"},"generatedGid":{"description":"If true, the GID was generated.\n","type":"boolean"},"generatedUid":{"description":"If true, the UID was generated.\n","type":"boolean"},"generatedUpn":{"description":"If true, the UPN was generated.\n","type":"boolean"},"gid":{"description":"Specifies a group identifier.\n","type":"string"},"homeDirectory":{"description":"Specifies a home directory for the user.\n","type":"string"},"id":{"description":"Specifies the user ID.\n","type":"string"},"locked":{"description":"If true, indicates that the account is locked.\n","type":"boolean"},"maxPasswordAge":{"description":"Specifies the maximum time in seconds allowed before the password expires.\n","type":"number"},"name":{"description":"Specifies a user name.\n","type":"string"},"passwordExpired":{"description":"If true, the password has expired.\n","type":"boolean"},"passwordExpires":{"description":"If true, the password is allowed to expire.\n","type":"boolean"},"passwordExpiry":{"description":"Specifies the time in Unix Epoch seconds that the password will expire.\n","type":"number"},"passwordLastSet":{"description":"Specifies the last time the password was set.\n","type":"number"},"primaryGroupSid":{"description":"Specifies the persona of the primary group.\n","type":"string"},"promptPasswordChange":{"description":"If true, Prompts the user to change their password at the next login.\n","type":"boolean"},"provider":{"description":"Specifies the authentication provider that the object belongs to.\n","type":"string"},"roles":{"description":"List of roles.\n","items":{"type":"string"},"type":"array"},"samAccountName":{"description":"Specifies a user name.\n","type":"string"},"shell":{"description":"Specifies a path to the shell for the user.\n","type":"string"},"sid":{"description":"Specifies a security identifier.\n","type":"string"},"type":{"description":"Specifies the object type.\n","type":"string"},"uid":{"description":"Specifies a user identifier.\n","type":"string"},"upn":{"description":"Specifies a principal name for the user.\n","type":"string"},"userCanChangePassword":{"description":"Specifies whether the password for the user can be changed.\n","type":"boolean"}},"required":["roles"],"type":"object"},"powerscale:index/getWritableSnapshotFilter:getWritableSnapshotFilter":{"properties":{"dir":{"description":"The direction of the sort.\n","type":"string"},"limit":{"description":"Return no more than this many results at once (see resume).\n","type":"number"},"path":{"description":"Only list writable snapshots matching this path.\n","type":"string"},"resume":{"description":"Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options).\n","type":"string"},"sort":{"description":"The field that will be used for sorting.  Choices are path, src name, src path, created, size and state. Default is created.\n","type":"string"},"state":{"description":"Only list writable snapshots matching this state.\n","type":"string"}},"type":"object"},"powerscale:index/getWritableSnapshotWritable:getWritableSnapshotWritable":{"language":{"nodejs":{"requiredInputs":[]}},"properties":{"created":{"description":"The Unix Epoch time the writable snapshot was created.\n","type":"number"},"dstPath":{"description":"The user supplied /ifs path of writable snapshot.\n","type":"string"},"id":{"description":"The system ID given to the writable snapshot. This is useful for debugging.\n","type":"number"},"logSize":{"description":"The sum in bytes of logical size of files in this writable snapshot.\n","type":"number"},"physSize":{"description":"The amount of storage in bytes used to store this writable snapshot.\n","type":"number"},"srcId":{"description":"The system ID of the user supplied source snapshot. This is useful for debugging.\n","type":"number"},"srcPath":{"description":"The /ifs path of user supplied source snapshot. This will be null for writable snapshots pending delete.\n","type":"string"},"srcSnap":{"description":"The user supplied source snapshot name or ID. This will be null for writable snapshots pending delete.\n","type":"string"},"state":{"description":"Writable Snapshot state.\n","type":"string"}},"required":["created","dstPath","id","logSize","physSize","srcId","srcPath","srcSnap","state"],"type":"object"}},"version":"1.8.1"}
