powerscale.NfsExport
Explore with Pulumi AI
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.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as powerscale from "@pulumi/powerscale";
// PowerScale provides an NFS server so you can share files on your cluster
const exampleExport = new powerscale.NfsExport("exampleExport", {paths: ["/ifs/example_export"]});
import pulumi
import pulumi_powerscale as powerscale
# PowerScale provides an NFS server so you can share files on your cluster
example_export = powerscale.NfsExport("exampleExport", paths=["/ifs/example_export"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// PowerScale provides an NFS server so you can share files on your cluster
_, err := powerscale.NewNfsExport(ctx, "exampleExport", &powerscale.NfsExportArgs{
Paths: pulumi.StringArray{
pulumi.String("/ifs/example_export"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Powerscale = Pulumi.Powerscale;
return await Deployment.RunAsync(() =>
{
// PowerScale provides an NFS server so you can share files on your cluster
var exampleExport = new Powerscale.NfsExport("exampleExport", new()
{
Paths = new[]
{
"/ifs/example_export",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.powerscale.NfsExport;
import com.pulumi.powerscale.NfsExportArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// PowerScale provides an NFS server so you can share files on your cluster
var exampleExport = new NfsExport("exampleExport", NfsExportArgs.builder()
.paths("/ifs/example_export")
.build());
}
}
resources:
# PowerScale provides an NFS server so you can share files on your cluster
exampleExport:
type: powerscale:NfsExport
properties:
# Required path for creating
paths:
- /ifs/example_export
Create NfsExport Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NfsExport(name: string, args: NfsExportArgs, opts?: CustomResourceOptions);
@overload
def NfsExport(resource_name: str,
args: NfsExportArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NfsExport(resource_name: str,
opts: Optional[ResourceOptions] = None,
paths: Optional[Sequence[str]] = None,
all_dirs: Optional[bool] = None,
block_size: Optional[float] = None,
can_set_time: Optional[bool] = None,
case_insensitive: Optional[bool] = None,
case_preserving: Optional[bool] = None,
chown_restricted: Optional[bool] = None,
clients: Optional[Sequence[str]] = None,
commit_asynchronous: Optional[bool] = None,
conflicting_paths: Optional[Sequence[str]] = None,
description: Optional[str] = None,
directory_transfer_size: Optional[float] = None,
encoding: Optional[str] = None,
force: Optional[bool] = None,
ignore_bad_auth: Optional[bool] = None,
ignore_bad_paths: Optional[bool] = None,
ignore_conflicts: Optional[bool] = None,
ignore_unresolvable_hosts: Optional[bool] = None,
link_max: Optional[float] = None,
map_all: Optional[NfsExportMapAllArgs] = None,
map_failure: Optional[NfsExportMapFailureArgs] = None,
map_full: Optional[bool] = None,
map_lookup_uid: Optional[bool] = None,
map_non_root: Optional[NfsExportMapNonRootArgs] = None,
map_retry: Optional[bool] = None,
map_root: Optional[NfsExportMapRootArgs] = None,
max_file_size: Optional[float] = None,
name_max_size: Optional[float] = None,
no_truncate: Optional[bool] = None,
read_only: Optional[bool] = None,
read_only_clients: Optional[Sequence[str]] = None,
read_transfer_max_size: Optional[float] = None,
read_transfer_multiple: Optional[float] = None,
read_transfer_size: Optional[float] = None,
read_write_clients: Optional[Sequence[str]] = None,
readdirplus: Optional[bool] = None,
readdirplus_prefetch: Optional[float] = None,
return32bit_file_ids: Optional[bool] = None,
root_clients: Optional[Sequence[str]] = None,
scope: Optional[str] = None,
security_flavors: Optional[Sequence[str]] = None,
setattr_asynchronous: Optional[bool] = None,
snapshot: Optional[str] = None,
symlinks: Optional[bool] = None,
time_delta: Optional[float] = None,
write_datasync_action: Optional[str] = None,
write_datasync_reply: Optional[str] = None,
write_filesync_action: Optional[str] = None,
write_filesync_reply: Optional[str] = None,
write_transfer_max_size: Optional[float] = None,
write_transfer_multiple: Optional[float] = None,
write_transfer_size: Optional[float] = None,
write_unstable_action: Optional[str] = None,
write_unstable_reply: Optional[str] = None,
zone: Optional[str] = None)
func NewNfsExport(ctx *Context, name string, args NfsExportArgs, opts ...ResourceOption) (*NfsExport, error)
public NfsExport(string name, NfsExportArgs args, CustomResourceOptions? opts = null)
public NfsExport(String name, NfsExportArgs args)
public NfsExport(String name, NfsExportArgs args, CustomResourceOptions options)
type: powerscale:NfsExport
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NfsExportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NfsExportArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NfsExportArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NfsExportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NfsExportArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var nfsExportResource = new Powerscale.NfsExport("nfsExportResource", new()
{
Paths = new[]
{
"string",
},
AllDirs = false,
BlockSize = 0,
CanSetTime = false,
CaseInsensitive = false,
CasePreserving = false,
ChownRestricted = false,
Clients = new[]
{
"string",
},
CommitAsynchronous = false,
ConflictingPaths = new[]
{
"string",
},
Description = "string",
DirectoryTransferSize = 0,
Encoding = "string",
Force = false,
IgnoreBadAuth = false,
IgnoreBadPaths = false,
IgnoreConflicts = false,
IgnoreUnresolvableHosts = false,
LinkMax = 0,
MapAll = new Powerscale.Inputs.NfsExportMapAllArgs
{
Enabled = false,
PrimaryGroup = new Powerscale.Inputs.NfsExportMapAllPrimaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
SecondaryGroups = new[]
{
new Powerscale.Inputs.NfsExportMapAllSecondaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
User = new Powerscale.Inputs.NfsExportMapAllUserArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
MapFailure = new Powerscale.Inputs.NfsExportMapFailureArgs
{
Enabled = false,
PrimaryGroup = new Powerscale.Inputs.NfsExportMapFailurePrimaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
SecondaryGroups = new[]
{
new Powerscale.Inputs.NfsExportMapFailureSecondaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
User = new Powerscale.Inputs.NfsExportMapFailureUserArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
MapFull = false,
MapLookupUid = false,
MapNonRoot = new Powerscale.Inputs.NfsExportMapNonRootArgs
{
Enabled = false,
PrimaryGroup = new Powerscale.Inputs.NfsExportMapNonRootPrimaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
SecondaryGroups = new[]
{
new Powerscale.Inputs.NfsExportMapNonRootSecondaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
User = new Powerscale.Inputs.NfsExportMapNonRootUserArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
MapRetry = false,
MapRoot = new Powerscale.Inputs.NfsExportMapRootArgs
{
Enabled = false,
PrimaryGroup = new Powerscale.Inputs.NfsExportMapRootPrimaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
SecondaryGroups = new[]
{
new Powerscale.Inputs.NfsExportMapRootSecondaryGroupArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
User = new Powerscale.Inputs.NfsExportMapRootUserArgs
{
Id = "string",
Name = "string",
Type = "string",
},
},
MaxFileSize = 0,
NameMaxSize = 0,
NoTruncate = false,
ReadOnly = false,
ReadOnlyClients = new[]
{
"string",
},
ReadTransferMaxSize = 0,
ReadTransferMultiple = 0,
ReadTransferSize = 0,
ReadWriteClients = new[]
{
"string",
},
Readdirplus = false,
ReaddirplusPrefetch = 0,
Return32bitFileIds = false,
RootClients = new[]
{
"string",
},
Scope = "string",
SecurityFlavors = new[]
{
"string",
},
SetattrAsynchronous = false,
Snapshot = "string",
Symlinks = false,
TimeDelta = 0,
WriteDatasyncAction = "string",
WriteDatasyncReply = "string",
WriteFilesyncAction = "string",
WriteFilesyncReply = "string",
WriteTransferMaxSize = 0,
WriteTransferMultiple = 0,
WriteTransferSize = 0,
WriteUnstableAction = "string",
WriteUnstableReply = "string",
Zone = "string",
});
example, err := powerscale.NewNfsExport(ctx, "nfsExportResource", &powerscale.NfsExportArgs{
Paths: pulumi.StringArray{
pulumi.String("string"),
},
AllDirs: pulumi.Bool(false),
BlockSize: pulumi.Float64(0),
CanSetTime: pulumi.Bool(false),
CaseInsensitive: pulumi.Bool(false),
CasePreserving: pulumi.Bool(false),
ChownRestricted: pulumi.Bool(false),
Clients: pulumi.StringArray{
pulumi.String("string"),
},
CommitAsynchronous: pulumi.Bool(false),
ConflictingPaths: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DirectoryTransferSize: pulumi.Float64(0),
Encoding: pulumi.String("string"),
Force: pulumi.Bool(false),
IgnoreBadAuth: pulumi.Bool(false),
IgnoreBadPaths: pulumi.Bool(false),
IgnoreConflicts: pulumi.Bool(false),
IgnoreUnresolvableHosts: pulumi.Bool(false),
LinkMax: pulumi.Float64(0),
MapAll: &powerscale.NfsExportMapAllArgs{
Enabled: pulumi.Bool(false),
PrimaryGroup: &powerscale.NfsExportMapAllPrimaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
SecondaryGroups: powerscale.NfsExportMapAllSecondaryGroupArray{
&powerscale.NfsExportMapAllSecondaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
User: &powerscale.NfsExportMapAllUserArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
MapFailure: &powerscale.NfsExportMapFailureArgs{
Enabled: pulumi.Bool(false),
PrimaryGroup: &powerscale.NfsExportMapFailurePrimaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
SecondaryGroups: powerscale.NfsExportMapFailureSecondaryGroupArray{
&powerscale.NfsExportMapFailureSecondaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
User: &powerscale.NfsExportMapFailureUserArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
MapFull: pulumi.Bool(false),
MapLookupUid: pulumi.Bool(false),
MapNonRoot: &powerscale.NfsExportMapNonRootArgs{
Enabled: pulumi.Bool(false),
PrimaryGroup: &powerscale.NfsExportMapNonRootPrimaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
SecondaryGroups: powerscale.NfsExportMapNonRootSecondaryGroupArray{
&powerscale.NfsExportMapNonRootSecondaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
User: &powerscale.NfsExportMapNonRootUserArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
MapRetry: pulumi.Bool(false),
MapRoot: &powerscale.NfsExportMapRootArgs{
Enabled: pulumi.Bool(false),
PrimaryGroup: &powerscale.NfsExportMapRootPrimaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
SecondaryGroups: powerscale.NfsExportMapRootSecondaryGroupArray{
&powerscale.NfsExportMapRootSecondaryGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
User: &powerscale.NfsExportMapRootUserArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
MaxFileSize: pulumi.Float64(0),
NameMaxSize: pulumi.Float64(0),
NoTruncate: pulumi.Bool(false),
ReadOnly: pulumi.Bool(false),
ReadOnlyClients: pulumi.StringArray{
pulumi.String("string"),
},
ReadTransferMaxSize: pulumi.Float64(0),
ReadTransferMultiple: pulumi.Float64(0),
ReadTransferSize: pulumi.Float64(0),
ReadWriteClients: pulumi.StringArray{
pulumi.String("string"),
},
Readdirplus: pulumi.Bool(false),
ReaddirplusPrefetch: pulumi.Float64(0),
Return32bitFileIds: pulumi.Bool(false),
RootClients: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
SecurityFlavors: pulumi.StringArray{
pulumi.String("string"),
},
SetattrAsynchronous: pulumi.Bool(false),
Snapshot: pulumi.String("string"),
Symlinks: pulumi.Bool(false),
TimeDelta: pulumi.Float64(0),
WriteDatasyncAction: pulumi.String("string"),
WriteDatasyncReply: pulumi.String("string"),
WriteFilesyncAction: pulumi.String("string"),
WriteFilesyncReply: pulumi.String("string"),
WriteTransferMaxSize: pulumi.Float64(0),
WriteTransferMultiple: pulumi.Float64(0),
WriteTransferSize: pulumi.Float64(0),
WriteUnstableAction: pulumi.String("string"),
WriteUnstableReply: pulumi.String("string"),
Zone: pulumi.String("string"),
})
var nfsExportResource = new NfsExport("nfsExportResource", NfsExportArgs.builder()
.paths("string")
.allDirs(false)
.blockSize(0)
.canSetTime(false)
.caseInsensitive(false)
.casePreserving(false)
.chownRestricted(false)
.clients("string")
.commitAsynchronous(false)
.conflictingPaths("string")
.description("string")
.directoryTransferSize(0)
.encoding("string")
.force(false)
.ignoreBadAuth(false)
.ignoreBadPaths(false)
.ignoreConflicts(false)
.ignoreUnresolvableHosts(false)
.linkMax(0)
.mapAll(NfsExportMapAllArgs.builder()
.enabled(false)
.primaryGroup(NfsExportMapAllPrimaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.secondaryGroups(NfsExportMapAllSecondaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.user(NfsExportMapAllUserArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.build())
.mapFailure(NfsExportMapFailureArgs.builder()
.enabled(false)
.primaryGroup(NfsExportMapFailurePrimaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.secondaryGroups(NfsExportMapFailureSecondaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.user(NfsExportMapFailureUserArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.build())
.mapFull(false)
.mapLookupUid(false)
.mapNonRoot(NfsExportMapNonRootArgs.builder()
.enabled(false)
.primaryGroup(NfsExportMapNonRootPrimaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.secondaryGroups(NfsExportMapNonRootSecondaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.user(NfsExportMapNonRootUserArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.build())
.mapRetry(false)
.mapRoot(NfsExportMapRootArgs.builder()
.enabled(false)
.primaryGroup(NfsExportMapRootPrimaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.secondaryGroups(NfsExportMapRootSecondaryGroupArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.user(NfsExportMapRootUserArgs.builder()
.id("string")
.name("string")
.type("string")
.build())
.build())
.maxFileSize(0)
.nameMaxSize(0)
.noTruncate(false)
.readOnly(false)
.readOnlyClients("string")
.readTransferMaxSize(0)
.readTransferMultiple(0)
.readTransferSize(0)
.readWriteClients("string")
.readdirplus(false)
.readdirplusPrefetch(0)
.return32bitFileIds(false)
.rootClients("string")
.scope("string")
.securityFlavors("string")
.setattrAsynchronous(false)
.snapshot("string")
.symlinks(false)
.timeDelta(0)
.writeDatasyncAction("string")
.writeDatasyncReply("string")
.writeFilesyncAction("string")
.writeFilesyncReply("string")
.writeTransferMaxSize(0)
.writeTransferMultiple(0)
.writeTransferSize(0)
.writeUnstableAction("string")
.writeUnstableReply("string")
.zone("string")
.build());
nfs_export_resource = powerscale.NfsExport("nfsExportResource",
paths=["string"],
all_dirs=False,
block_size=0,
can_set_time=False,
case_insensitive=False,
case_preserving=False,
chown_restricted=False,
clients=["string"],
commit_asynchronous=False,
conflicting_paths=["string"],
description="string",
directory_transfer_size=0,
encoding="string",
force=False,
ignore_bad_auth=False,
ignore_bad_paths=False,
ignore_conflicts=False,
ignore_unresolvable_hosts=False,
link_max=0,
map_all={
"enabled": False,
"primary_group": {
"id": "string",
"name": "string",
"type": "string",
},
"secondary_groups": [{
"id": "string",
"name": "string",
"type": "string",
}],
"user": {
"id": "string",
"name": "string",
"type": "string",
},
},
map_failure={
"enabled": False,
"primary_group": {
"id": "string",
"name": "string",
"type": "string",
},
"secondary_groups": [{
"id": "string",
"name": "string",
"type": "string",
}],
"user": {
"id": "string",
"name": "string",
"type": "string",
},
},
map_full=False,
map_lookup_uid=False,
map_non_root={
"enabled": False,
"primary_group": {
"id": "string",
"name": "string",
"type": "string",
},
"secondary_groups": [{
"id": "string",
"name": "string",
"type": "string",
}],
"user": {
"id": "string",
"name": "string",
"type": "string",
},
},
map_retry=False,
map_root={
"enabled": False,
"primary_group": {
"id": "string",
"name": "string",
"type": "string",
},
"secondary_groups": [{
"id": "string",
"name": "string",
"type": "string",
}],
"user": {
"id": "string",
"name": "string",
"type": "string",
},
},
max_file_size=0,
name_max_size=0,
no_truncate=False,
read_only=False,
read_only_clients=["string"],
read_transfer_max_size=0,
read_transfer_multiple=0,
read_transfer_size=0,
read_write_clients=["string"],
readdirplus=False,
readdirplus_prefetch=0,
return32bit_file_ids=False,
root_clients=["string"],
scope="string",
security_flavors=["string"],
setattr_asynchronous=False,
snapshot="string",
symlinks=False,
time_delta=0,
write_datasync_action="string",
write_datasync_reply="string",
write_filesync_action="string",
write_filesync_reply="string",
write_transfer_max_size=0,
write_transfer_multiple=0,
write_transfer_size=0,
write_unstable_action="string",
write_unstable_reply="string",
zone="string")
const nfsExportResource = new powerscale.NfsExport("nfsExportResource", {
paths: ["string"],
allDirs: false,
blockSize: 0,
canSetTime: false,
caseInsensitive: false,
casePreserving: false,
chownRestricted: false,
clients: ["string"],
commitAsynchronous: false,
conflictingPaths: ["string"],
description: "string",
directoryTransferSize: 0,
encoding: "string",
force: false,
ignoreBadAuth: false,
ignoreBadPaths: false,
ignoreConflicts: false,
ignoreUnresolvableHosts: false,
linkMax: 0,
mapAll: {
enabled: false,
primaryGroup: {
id: "string",
name: "string",
type: "string",
},
secondaryGroups: [{
id: "string",
name: "string",
type: "string",
}],
user: {
id: "string",
name: "string",
type: "string",
},
},
mapFailure: {
enabled: false,
primaryGroup: {
id: "string",
name: "string",
type: "string",
},
secondaryGroups: [{
id: "string",
name: "string",
type: "string",
}],
user: {
id: "string",
name: "string",
type: "string",
},
},
mapFull: false,
mapLookupUid: false,
mapNonRoot: {
enabled: false,
primaryGroup: {
id: "string",
name: "string",
type: "string",
},
secondaryGroups: [{
id: "string",
name: "string",
type: "string",
}],
user: {
id: "string",
name: "string",
type: "string",
},
},
mapRetry: false,
mapRoot: {
enabled: false,
primaryGroup: {
id: "string",
name: "string",
type: "string",
},
secondaryGroups: [{
id: "string",
name: "string",
type: "string",
}],
user: {
id: "string",
name: "string",
type: "string",
},
},
maxFileSize: 0,
nameMaxSize: 0,
noTruncate: false,
readOnly: false,
readOnlyClients: ["string"],
readTransferMaxSize: 0,
readTransferMultiple: 0,
readTransferSize: 0,
readWriteClients: ["string"],
readdirplus: false,
readdirplusPrefetch: 0,
return32bitFileIds: false,
rootClients: ["string"],
scope: "string",
securityFlavors: ["string"],
setattrAsynchronous: false,
snapshot: "string",
symlinks: false,
timeDelta: 0,
writeDatasyncAction: "string",
writeDatasyncReply: "string",
writeFilesyncAction: "string",
writeFilesyncReply: "string",
writeTransferMaxSize: 0,
writeTransferMultiple: 0,
writeTransferSize: 0,
writeUnstableAction: "string",
writeUnstableReply: "string",
zone: "string",
});
type: powerscale:NfsExport
properties:
allDirs: false
blockSize: 0
canSetTime: false
caseInsensitive: false
casePreserving: false
chownRestricted: false
clients:
- string
commitAsynchronous: false
conflictingPaths:
- string
description: string
directoryTransferSize: 0
encoding: string
force: false
ignoreBadAuth: false
ignoreBadPaths: false
ignoreConflicts: false
ignoreUnresolvableHosts: false
linkMax: 0
mapAll:
enabled: false
primaryGroup:
id: string
name: string
type: string
secondaryGroups:
- id: string
name: string
type: string
user:
id: string
name: string
type: string
mapFailure:
enabled: false
primaryGroup:
id: string
name: string
type: string
secondaryGroups:
- id: string
name: string
type: string
user:
id: string
name: string
type: string
mapFull: false
mapLookupUid: false
mapNonRoot:
enabled: false
primaryGroup:
id: string
name: string
type: string
secondaryGroups:
- id: string
name: string
type: string
user:
id: string
name: string
type: string
mapRetry: false
mapRoot:
enabled: false
primaryGroup:
id: string
name: string
type: string
secondaryGroups:
- id: string
name: string
type: string
user:
id: string
name: string
type: string
maxFileSize: 0
nameMaxSize: 0
noTruncate: false
paths:
- string
readOnly: false
readOnlyClients:
- string
readTransferMaxSize: 0
readTransferMultiple: 0
readTransferSize: 0
readWriteClients:
- string
readdirplus: false
readdirplusPrefetch: 0
return32bitFileIds: false
rootClients:
- string
scope: string
securityFlavors:
- string
setattrAsynchronous: false
snapshot: string
symlinks: false
timeDelta: 0
writeDatasyncAction: string
writeDatasyncReply: string
writeFilesyncAction: string
writeFilesyncReply: string
writeTransferMaxSize: 0
writeTransferMultiple: 0
writeTransferSize: 0
writeUnstableAction: string
writeUnstableReply: string
zone: string
NfsExport Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NfsExport resource accepts the following input properties:
- Paths List<string>
- Specifies the paths under /ifs that are exported.
- All
Dirs bool - True if all directories under the specified paths are mountable.
- Block
Size double - Specifies the block size returned by the NFS statfs procedure.
- Can
Set boolTime - 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.
- Case
Insensitive bool - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Case
Preserving bool - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Chown
Restricted bool - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Clients List<string>
- Specifies the clients with root access to the export.
- Commit
Asynchronous bool - True if NFS commit requests execute asynchronously.
- Conflicting
Paths List<string> - Reports the paths that conflict with another export.
- Description string
- Specifies the user-defined string that is used to identify the export.
- Directory
Transfer doubleSize - 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.
- Encoding string
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- Force bool
- If true, the export will be created even if it conflicts with another export.
- Ignore
Bad boolAuth - Ignore invalid users.
- Ignore
Bad boolPaths - Ignore nonexistent or otherwise bad paths.
- Ignore
Conflicts bool - Ignore conflicts with existing exports.
- Ignore
Unresolvable boolHosts - Ignore unresolvable hosts.
- Link
Max double - 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.
- Map
All NfsExport Map All - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Failure NfsExport Map Failure - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Full bool - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- Map
Lookup boolUid - 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.
- Map
Non NfsRoot Export Map Non Root - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Retry bool - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- Map
Root NfsExport Map Root - Specifies the users and groups to which non-root and root clients are mapped.
- Max
File doubleSize - 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.
- Name
Max doubleSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- No
Truncate bool - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Read
Only bool - True if the export is set to read-only.
- Read
Only List<string>Clients - Specifies the clients with read-only access to the export.
- Read
Transfer doubleMax Size - 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.
- Read
Transfer doubleMultiple - 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.
- Read
Transfer doubleSize - 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.
- Read
Write List<string>Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- Readdirplus bool
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- Readdirplus
Prefetch double - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- Return32bit
File boolIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- Root
Clients List<string> - Clients that have root access to the export.
- Scope string
- 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.
- Security
Flavors List<string> - Specifies the authentication types that are supported for this export.
- Setattr
Asynchronous bool - True if set attribute operations execute asynchronously.
- Snapshot string
- Specifies the snapshot for all mounts.
- Symlinks bool
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- Time
Delta double - Specifies the resolution of all time values that are returned to the clients
- Write
Datasync stringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- Write
Datasync stringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- Write
Filesync stringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- Write
Filesync stringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- Write
Transfer doubleMax Size - 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.
- Write
Transfer doubleMultiple - 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.
- Write
Transfer doubleSize - 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.
- Write
Unstable stringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- Write
Unstable stringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- Zone string
- Specifies the zone in which the export is valid. Cannot be changed once set
- Paths []string
- Specifies the paths under /ifs that are exported.
- All
Dirs bool - True if all directories under the specified paths are mountable.
- Block
Size float64 - Specifies the block size returned by the NFS statfs procedure.
- Can
Set boolTime - 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.
- Case
Insensitive bool - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Case
Preserving bool - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Chown
Restricted bool - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Clients []string
- Specifies the clients with root access to the export.
- Commit
Asynchronous bool - True if NFS commit requests execute asynchronously.
- Conflicting
Paths []string - Reports the paths that conflict with another export.
- Description string
- Specifies the user-defined string that is used to identify the export.
- Directory
Transfer float64Size - 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.
- Encoding string
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- Force bool
- If true, the export will be created even if it conflicts with another export.
- Ignore
Bad boolAuth - Ignore invalid users.
- Ignore
Bad boolPaths - Ignore nonexistent or otherwise bad paths.
- Ignore
Conflicts bool - Ignore conflicts with existing exports.
- Ignore
Unresolvable boolHosts - Ignore unresolvable hosts.
- Link
Max float64 - 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.
- Map
All NfsExport Map All Args - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Failure NfsExport Map Failure Args - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Full bool - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- Map
Lookup boolUid - 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.
- Map
Non NfsRoot Export Map Non Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Retry bool - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- Map
Root NfsExport Map Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- Max
File float64Size - 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.
- Name
Max float64Size - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- No
Truncate bool - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Read
Only bool - True if the export is set to read-only.
- Read
Only []stringClients - Specifies the clients with read-only access to the export.
- Read
Transfer float64Max Size - 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.
- Read
Transfer float64Multiple - 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.
- Read
Transfer float64Size - 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.
- Read
Write []stringClients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- Readdirplus bool
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- Readdirplus
Prefetch float64 - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- Return32bit
File boolIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- Root
Clients []string - Clients that have root access to the export.
- Scope string
- 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.
- Security
Flavors []string - Specifies the authentication types that are supported for this export.
- Setattr
Asynchronous bool - True if set attribute operations execute asynchronously.
- Snapshot string
- Specifies the snapshot for all mounts.
- Symlinks bool
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- Time
Delta float64 - Specifies the resolution of all time values that are returned to the clients
- Write
Datasync stringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- Write
Datasync stringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- Write
Filesync stringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- Write
Filesync stringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- Write
Transfer float64Max Size - 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.
- Write
Transfer float64Multiple - 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.
- Write
Transfer float64Size - 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.
- Write
Unstable stringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- Write
Unstable stringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- Zone string
- Specifies the zone in which the export is valid. Cannot be changed once set
- paths List<String>
- Specifies the paths under /ifs that are exported.
- all
Dirs Boolean - True if all directories under the specified paths are mountable.
- block
Size Double - Specifies the block size returned by the NFS statfs procedure.
- can
Set BooleanTime - 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.
- case
Insensitive Boolean - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case
Preserving Boolean - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown
Restricted Boolean - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients List<String>
- Specifies the clients with root access to the export.
- commit
Asynchronous Boolean - True if NFS commit requests execute asynchronously.
- conflicting
Paths List<String> - Reports the paths that conflict with another export.
- description String
- Specifies the user-defined string that is used to identify the export.
- directory
Transfer DoubleSize - 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.
- encoding String
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force Boolean
- If true, the export will be created even if it conflicts with another export.
- ignore
Bad BooleanAuth - Ignore invalid users.
- ignore
Bad BooleanPaths - Ignore nonexistent or otherwise bad paths.
- ignore
Conflicts Boolean - Ignore conflicts with existing exports.
- ignore
Unresolvable BooleanHosts - Ignore unresolvable hosts.
- link
Max Double - 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.
- map
All NfsExport Map All - Specifies the users and groups to which non-root and root clients are mapped.
- map
Failure NfsExport Map Failure - Specifies the users and groups to which non-root and root clients are mapped.
- map
Full Boolean - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map
Lookup BooleanUid - 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.
- map
Non NfsRoot Export Map Non Root - Specifies the users and groups to which non-root and root clients are mapped.
- map
Retry Boolean - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map
Root NfsExport Map Root - Specifies the users and groups to which non-root and root clients are mapped.
- max
File DoubleSize - 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.
- name
Max DoubleSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- no
Truncate Boolean - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- read
Only Boolean - True if the export is set to read-only.
- read
Only List<String>Clients - Specifies the clients with read-only access to the export.
- read
Transfer DoubleMax Size - 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.
- read
Transfer DoubleMultiple - 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.
- read
Transfer DoubleSize - 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.
- read
Write List<String>Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus Boolean
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus
Prefetch Double - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit
File BooleanIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root
Clients List<String> - Clients that have root access to the export.
- scope String
- 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.
- security
Flavors List<String> - Specifies the authentication types that are supported for this export.
- setattr
Asynchronous Boolean - True if set attribute operations execute asynchronously.
- snapshot String
- Specifies the snapshot for all mounts.
- symlinks Boolean
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time
Delta Double - Specifies the resolution of all time values that are returned to the clients
- write
Datasync StringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write
Datasync StringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write
Filesync StringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write
Filesync StringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write
Transfer DoubleMax Size - 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.
- write
Transfer DoubleMultiple - 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.
- write
Transfer DoubleSize - 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.
- write
Unstable StringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write
Unstable StringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone String
- Specifies the zone in which the export is valid. Cannot be changed once set
- paths string[]
- Specifies the paths under /ifs that are exported.
- all
Dirs boolean - True if all directories under the specified paths are mountable.
- block
Size number - Specifies the block size returned by the NFS statfs procedure.
- can
Set booleanTime - 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.
- case
Insensitive boolean - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case
Preserving boolean - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown
Restricted boolean - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients string[]
- Specifies the clients with root access to the export.
- commit
Asynchronous boolean - True if NFS commit requests execute asynchronously.
- conflicting
Paths string[] - Reports the paths that conflict with another export.
- description string
- Specifies the user-defined string that is used to identify the export.
- directory
Transfer numberSize - 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.
- encoding string
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force boolean
- If true, the export will be created even if it conflicts with another export.
- ignore
Bad booleanAuth - Ignore invalid users.
- ignore
Bad booleanPaths - Ignore nonexistent or otherwise bad paths.
- ignore
Conflicts boolean - Ignore conflicts with existing exports.
- ignore
Unresolvable booleanHosts - Ignore unresolvable hosts.
- link
Max number - 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.
- map
All NfsExport Map All - Specifies the users and groups to which non-root and root clients are mapped.
- map
Failure NfsExport Map Failure - Specifies the users and groups to which non-root and root clients are mapped.
- map
Full boolean - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map
Lookup booleanUid - 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.
- map
Non NfsRoot Export Map Non Root - Specifies the users and groups to which non-root and root clients are mapped.
- map
Retry boolean - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map
Root NfsExport Map Root - Specifies the users and groups to which non-root and root clients are mapped.
- max
File numberSize - 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.
- name
Max numberSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- no
Truncate boolean - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- read
Only boolean - True if the export is set to read-only.
- read
Only string[]Clients - Specifies the clients with read-only access to the export.
- read
Transfer numberMax Size - 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.
- read
Transfer numberMultiple - 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.
- read
Transfer numberSize - 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.
- read
Write string[]Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus boolean
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus
Prefetch number - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit
File booleanIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root
Clients string[] - Clients that have root access to the export.
- scope string
- 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.
- security
Flavors string[] - Specifies the authentication types that are supported for this export.
- setattr
Asynchronous boolean - True if set attribute operations execute asynchronously.
- snapshot string
- Specifies the snapshot for all mounts.
- symlinks boolean
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time
Delta number - Specifies the resolution of all time values that are returned to the clients
- write
Datasync stringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write
Datasync stringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write
Filesync stringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write
Filesync stringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write
Transfer numberMax Size - 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.
- write
Transfer numberMultiple - 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.
- write
Transfer numberSize - 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.
- write
Unstable stringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write
Unstable stringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone string
- Specifies the zone in which the export is valid. Cannot be changed once set
- paths Sequence[str]
- Specifies the paths under /ifs that are exported.
- all_
dirs bool - True if all directories under the specified paths are mountable.
- block_
size float - Specifies the block size returned by the NFS statfs procedure.
- can_
set_ booltime - 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.
- case_
insensitive bool - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case_
preserving bool - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown_
restricted bool - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients Sequence[str]
- Specifies the clients with root access to the export.
- commit_
asynchronous bool - True if NFS commit requests execute asynchronously.
- conflicting_
paths Sequence[str] - Reports the paths that conflict with another export.
- description str
- Specifies the user-defined string that is used to identify the export.
- directory_
transfer_ floatsize - 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.
- encoding str
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force bool
- If true, the export will be created even if it conflicts with another export.
- ignore_
bad_ boolauth - Ignore invalid users.
- ignore_
bad_ boolpaths - Ignore nonexistent or otherwise bad paths.
- ignore_
conflicts bool - Ignore conflicts with existing exports.
- ignore_
unresolvable_ boolhosts - Ignore unresolvable hosts.
- link_
max float - 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.
- map_
all NfsExport Map All Args - Specifies the users and groups to which non-root and root clients are mapped.
- map_
failure NfsExport Map Failure Args - Specifies the users and groups to which non-root and root clients are mapped.
- map_
full bool - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map_
lookup_ booluid - 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.
- map_
non_ Nfsroot Export Map Non Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- map_
retry bool - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map_
root NfsExport Map Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- max_
file_ floatsize - 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.
- name_
max_ floatsize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- no_
truncate bool - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- read_
only bool - True if the export is set to read-only.
- read_
only_ Sequence[str]clients - Specifies the clients with read-only access to the export.
- read_
transfer_ floatmax_ size - 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.
- read_
transfer_ floatmultiple - 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.
- read_
transfer_ floatsize - 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.
- read_
write_ Sequence[str]clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus bool
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus_
prefetch float - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit_
file_ boolids - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root_
clients Sequence[str] - Clients that have root access to the export.
- scope str
- 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.
- security_
flavors Sequence[str] - Specifies the authentication types that are supported for this export.
- setattr_
asynchronous bool - True if set attribute operations execute asynchronously.
- snapshot str
- Specifies the snapshot for all mounts.
- symlinks bool
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time_
delta float - Specifies the resolution of all time values that are returned to the clients
- write_
datasync_ straction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write_
datasync_ strreply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write_
filesync_ straction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write_
filesync_ strreply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write_
transfer_ floatmax_ size - 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.
- write_
transfer_ floatmultiple - 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.
- write_
transfer_ floatsize - 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.
- write_
unstable_ straction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write_
unstable_ strreply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone str
- Specifies the zone in which the export is valid. Cannot be changed once set
- paths List<String>
- Specifies the paths under /ifs that are exported.
- all
Dirs Boolean - True if all directories under the specified paths are mountable.
- block
Size Number - Specifies the block size returned by the NFS statfs procedure.
- can
Set BooleanTime - 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.
- case
Insensitive Boolean - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case
Preserving Boolean - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown
Restricted Boolean - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients List<String>
- Specifies the clients with root access to the export.
- commit
Asynchronous Boolean - True if NFS commit requests execute asynchronously.
- conflicting
Paths List<String> - Reports the paths that conflict with another export.
- description String
- Specifies the user-defined string that is used to identify the export.
- directory
Transfer NumberSize - 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.
- encoding String
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force Boolean
- If true, the export will be created even if it conflicts with another export.
- ignore
Bad BooleanAuth - Ignore invalid users.
- ignore
Bad BooleanPaths - Ignore nonexistent or otherwise bad paths.
- ignore
Conflicts Boolean - Ignore conflicts with existing exports.
- ignore
Unresolvable BooleanHosts - Ignore unresolvable hosts.
- link
Max Number - 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.
- map
All Property Map - Specifies the users and groups to which non-root and root clients are mapped.
- map
Failure Property Map - Specifies the users and groups to which non-root and root clients are mapped.
- map
Full Boolean - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map
Lookup BooleanUid - 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.
- map
Non Property MapRoot - Specifies the users and groups to which non-root and root clients are mapped.
- map
Retry Boolean - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map
Root Property Map - Specifies the users and groups to which non-root and root clients are mapped.
- max
File NumberSize - 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.
- name
Max NumberSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- no
Truncate Boolean - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- read
Only Boolean - True if the export is set to read-only.
- read
Only List<String>Clients - Specifies the clients with read-only access to the export.
- read
Transfer NumberMax Size - 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.
- read
Transfer NumberMultiple - 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.
- read
Transfer NumberSize - 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.
- read
Write List<String>Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus Boolean
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus
Prefetch Number - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit
File BooleanIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root
Clients List<String> - Clients that have root access to the export.
- scope String
- 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.
- security
Flavors List<String> - Specifies the authentication types that are supported for this export.
- setattr
Asynchronous Boolean - True if set attribute operations execute asynchronously.
- snapshot String
- Specifies the snapshot for all mounts.
- symlinks Boolean
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time
Delta Number - Specifies the resolution of all time values that are returned to the clients
- write
Datasync StringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write
Datasync StringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write
Filesync StringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write
Filesync StringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write
Transfer NumberMax Size - 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.
- write
Transfer NumberMultiple - 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.
- write
Transfer NumberSize - 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.
- write
Unstable StringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write
Unstable StringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone String
- Specifies the zone in which the export is valid. Cannot be changed once set
Outputs
All input properties are implicitly available as output properties. Additionally, the NfsExport resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Nfs
Export doubleId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- Unresolved
Clients List<string> - Reports clients that cannot be resolved.
- Id string
- The provider-assigned unique ID for this managed resource.
- Nfs
Export float64Id - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- Unresolved
Clients []string - Reports clients that cannot be resolved.
- id String
- The provider-assigned unique ID for this managed resource.
- nfs
Export DoubleId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- unresolved
Clients List<String> - Reports clients that cannot be resolved.
- id string
- The provider-assigned unique ID for this managed resource.
- nfs
Export numberId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- unresolved
Clients string[] - Reports clients that cannot be resolved.
- id str
- The provider-assigned unique ID for this managed resource.
- nfs_
export_ floatid - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- unresolved_
clients Sequence[str] - Reports clients that cannot be resolved.
- id String
- The provider-assigned unique ID for this managed resource.
- nfs
Export NumberId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- unresolved
Clients List<String> - Reports clients that cannot be resolved.
Look up Existing NfsExport Resource
Get an existing NfsExport resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NfsExportState, opts?: CustomResourceOptions): NfsExport
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
all_dirs: Optional[bool] = None,
block_size: Optional[float] = None,
can_set_time: Optional[bool] = None,
case_insensitive: Optional[bool] = None,
case_preserving: Optional[bool] = None,
chown_restricted: Optional[bool] = None,
clients: Optional[Sequence[str]] = None,
commit_asynchronous: Optional[bool] = None,
conflicting_paths: Optional[Sequence[str]] = None,
description: Optional[str] = None,
directory_transfer_size: Optional[float] = None,
encoding: Optional[str] = None,
force: Optional[bool] = None,
ignore_bad_auth: Optional[bool] = None,
ignore_bad_paths: Optional[bool] = None,
ignore_conflicts: Optional[bool] = None,
ignore_unresolvable_hosts: Optional[bool] = None,
link_max: Optional[float] = None,
map_all: Optional[NfsExportMapAllArgs] = None,
map_failure: Optional[NfsExportMapFailureArgs] = None,
map_full: Optional[bool] = None,
map_lookup_uid: Optional[bool] = None,
map_non_root: Optional[NfsExportMapNonRootArgs] = None,
map_retry: Optional[bool] = None,
map_root: Optional[NfsExportMapRootArgs] = None,
max_file_size: Optional[float] = None,
name_max_size: Optional[float] = None,
nfs_export_id: Optional[float] = None,
no_truncate: Optional[bool] = None,
paths: Optional[Sequence[str]] = None,
read_only: Optional[bool] = None,
read_only_clients: Optional[Sequence[str]] = None,
read_transfer_max_size: Optional[float] = None,
read_transfer_multiple: Optional[float] = None,
read_transfer_size: Optional[float] = None,
read_write_clients: Optional[Sequence[str]] = None,
readdirplus: Optional[bool] = None,
readdirplus_prefetch: Optional[float] = None,
return32bit_file_ids: Optional[bool] = None,
root_clients: Optional[Sequence[str]] = None,
scope: Optional[str] = None,
security_flavors: Optional[Sequence[str]] = None,
setattr_asynchronous: Optional[bool] = None,
snapshot: Optional[str] = None,
symlinks: Optional[bool] = None,
time_delta: Optional[float] = None,
unresolved_clients: Optional[Sequence[str]] = None,
write_datasync_action: Optional[str] = None,
write_datasync_reply: Optional[str] = None,
write_filesync_action: Optional[str] = None,
write_filesync_reply: Optional[str] = None,
write_transfer_max_size: Optional[float] = None,
write_transfer_multiple: Optional[float] = None,
write_transfer_size: Optional[float] = None,
write_unstable_action: Optional[str] = None,
write_unstable_reply: Optional[str] = None,
zone: Optional[str] = None) -> NfsExport
func GetNfsExport(ctx *Context, name string, id IDInput, state *NfsExportState, opts ...ResourceOption) (*NfsExport, error)
public static NfsExport Get(string name, Input<string> id, NfsExportState? state, CustomResourceOptions? opts = null)
public static NfsExport get(String name, Output<String> id, NfsExportState state, CustomResourceOptions options)
resources: _: type: powerscale:NfsExport get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- All
Dirs bool - True if all directories under the specified paths are mountable.
- Block
Size double - Specifies the block size returned by the NFS statfs procedure.
- Can
Set boolTime - 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.
- Case
Insensitive bool - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Case
Preserving bool - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Chown
Restricted bool - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Clients List<string>
- Specifies the clients with root access to the export.
- Commit
Asynchronous bool - True if NFS commit requests execute asynchronously.
- Conflicting
Paths List<string> - Reports the paths that conflict with another export.
- Description string
- Specifies the user-defined string that is used to identify the export.
- Directory
Transfer doubleSize - 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.
- Encoding string
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- Force bool
- If true, the export will be created even if it conflicts with another export.
- Ignore
Bad boolAuth - Ignore invalid users.
- Ignore
Bad boolPaths - Ignore nonexistent or otherwise bad paths.
- Ignore
Conflicts bool - Ignore conflicts with existing exports.
- Ignore
Unresolvable boolHosts - Ignore unresolvable hosts.
- Link
Max double - 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.
- Map
All NfsExport Map All - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Failure NfsExport Map Failure - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Full bool - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- Map
Lookup boolUid - 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.
- Map
Non NfsRoot Export Map Non Root - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Retry bool - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- Map
Root NfsExport Map Root - Specifies the users and groups to which non-root and root clients are mapped.
- Max
File doubleSize - 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.
- Name
Max doubleSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Nfs
Export doubleId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- No
Truncate bool - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Paths List<string>
- Specifies the paths under /ifs that are exported.
- Read
Only bool - True if the export is set to read-only.
- Read
Only List<string>Clients - Specifies the clients with read-only access to the export.
- Read
Transfer doubleMax Size - 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.
- Read
Transfer doubleMultiple - 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.
- Read
Transfer doubleSize - 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.
- Read
Write List<string>Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- Readdirplus bool
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- Readdirplus
Prefetch double - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- Return32bit
File boolIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- Root
Clients List<string> - Clients that have root access to the export.
- Scope string
- 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.
- Security
Flavors List<string> - Specifies the authentication types that are supported for this export.
- Setattr
Asynchronous bool - True if set attribute operations execute asynchronously.
- Snapshot string
- Specifies the snapshot for all mounts.
- Symlinks bool
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- Time
Delta double - Specifies the resolution of all time values that are returned to the clients
- Unresolved
Clients List<string> - Reports clients that cannot be resolved.
- Write
Datasync stringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- Write
Datasync stringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- Write
Filesync stringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- Write
Filesync stringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- Write
Transfer doubleMax Size - 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.
- Write
Transfer doubleMultiple - 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.
- Write
Transfer doubleSize - 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.
- Write
Unstable stringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- Write
Unstable stringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- Zone string
- Specifies the zone in which the export is valid. Cannot be changed once set
- All
Dirs bool - True if all directories under the specified paths are mountable.
- Block
Size float64 - Specifies the block size returned by the NFS statfs procedure.
- Can
Set boolTime - 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.
- Case
Insensitive bool - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Case
Preserving bool - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Chown
Restricted bool - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Clients []string
- Specifies the clients with root access to the export.
- Commit
Asynchronous bool - True if NFS commit requests execute asynchronously.
- Conflicting
Paths []string - Reports the paths that conflict with another export.
- Description string
- Specifies the user-defined string that is used to identify the export.
- Directory
Transfer float64Size - 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.
- Encoding string
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- Force bool
- If true, the export will be created even if it conflicts with another export.
- Ignore
Bad boolAuth - Ignore invalid users.
- Ignore
Bad boolPaths - Ignore nonexistent or otherwise bad paths.
- Ignore
Conflicts bool - Ignore conflicts with existing exports.
- Ignore
Unresolvable boolHosts - Ignore unresolvable hosts.
- Link
Max float64 - 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.
- Map
All NfsExport Map All Args - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Failure NfsExport Map Failure Args - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Full bool - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- Map
Lookup boolUid - 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.
- Map
Non NfsRoot Export Map Non Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- Map
Retry bool - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- Map
Root NfsExport Map Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- Max
File float64Size - 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.
- Name
Max float64Size - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Nfs
Export float64Id - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- No
Truncate bool - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- Paths []string
- Specifies the paths under /ifs that are exported.
- Read
Only bool - True if the export is set to read-only.
- Read
Only []stringClients - Specifies the clients with read-only access to the export.
- Read
Transfer float64Max Size - 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.
- Read
Transfer float64Multiple - 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.
- Read
Transfer float64Size - 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.
- Read
Write []stringClients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- Readdirplus bool
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- Readdirplus
Prefetch float64 - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- Return32bit
File boolIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- Root
Clients []string - Clients that have root access to the export.
- Scope string
- 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.
- Security
Flavors []string - Specifies the authentication types that are supported for this export.
- Setattr
Asynchronous bool - True if set attribute operations execute asynchronously.
- Snapshot string
- Specifies the snapshot for all mounts.
- Symlinks bool
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- Time
Delta float64 - Specifies the resolution of all time values that are returned to the clients
- Unresolved
Clients []string - Reports clients that cannot be resolved.
- Write
Datasync stringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- Write
Datasync stringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- Write
Filesync stringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- Write
Filesync stringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- Write
Transfer float64Max Size - 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.
- Write
Transfer float64Multiple - 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.
- Write
Transfer float64Size - 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.
- Write
Unstable stringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- Write
Unstable stringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- Zone string
- Specifies the zone in which the export is valid. Cannot be changed once set
- all
Dirs Boolean - True if all directories under the specified paths are mountable.
- block
Size Double - Specifies the block size returned by the NFS statfs procedure.
- can
Set BooleanTime - 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.
- case
Insensitive Boolean - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case
Preserving Boolean - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown
Restricted Boolean - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients List<String>
- Specifies the clients with root access to the export.
- commit
Asynchronous Boolean - True if NFS commit requests execute asynchronously.
- conflicting
Paths List<String> - Reports the paths that conflict with another export.
- description String
- Specifies the user-defined string that is used to identify the export.
- directory
Transfer DoubleSize - 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.
- encoding String
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force Boolean
- If true, the export will be created even if it conflicts with another export.
- ignore
Bad BooleanAuth - Ignore invalid users.
- ignore
Bad BooleanPaths - Ignore nonexistent or otherwise bad paths.
- ignore
Conflicts Boolean - Ignore conflicts with existing exports.
- ignore
Unresolvable BooleanHosts - Ignore unresolvable hosts.
- link
Max Double - 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.
- map
All NfsExport Map All - Specifies the users and groups to which non-root and root clients are mapped.
- map
Failure NfsExport Map Failure - Specifies the users and groups to which non-root and root clients are mapped.
- map
Full Boolean - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map
Lookup BooleanUid - 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.
- map
Non NfsRoot Export Map Non Root - Specifies the users and groups to which non-root and root clients are mapped.
- map
Retry Boolean - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map
Root NfsExport Map Root - Specifies the users and groups to which non-root and root clients are mapped.
- max
File DoubleSize - 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.
- name
Max DoubleSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- nfs
Export DoubleId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- no
Truncate Boolean - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- paths List<String>
- Specifies the paths under /ifs that are exported.
- read
Only Boolean - True if the export is set to read-only.
- read
Only List<String>Clients - Specifies the clients with read-only access to the export.
- read
Transfer DoubleMax Size - 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.
- read
Transfer DoubleMultiple - 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.
- read
Transfer DoubleSize - 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.
- read
Write List<String>Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus Boolean
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus
Prefetch Double - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit
File BooleanIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root
Clients List<String> - Clients that have root access to the export.
- scope String
- 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.
- security
Flavors List<String> - Specifies the authentication types that are supported for this export.
- setattr
Asynchronous Boolean - True if set attribute operations execute asynchronously.
- snapshot String
- Specifies the snapshot for all mounts.
- symlinks Boolean
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time
Delta Double - Specifies the resolution of all time values that are returned to the clients
- unresolved
Clients List<String> - Reports clients that cannot be resolved.
- write
Datasync StringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write
Datasync StringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write
Filesync StringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write
Filesync StringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write
Transfer DoubleMax Size - 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.
- write
Transfer DoubleMultiple - 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.
- write
Transfer DoubleSize - 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.
- write
Unstable StringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write
Unstable StringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone String
- Specifies the zone in which the export is valid. Cannot be changed once set
- all
Dirs boolean - True if all directories under the specified paths are mountable.
- block
Size number - Specifies the block size returned by the NFS statfs procedure.
- can
Set booleanTime - 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.
- case
Insensitive boolean - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case
Preserving boolean - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown
Restricted boolean - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients string[]
- Specifies the clients with root access to the export.
- commit
Asynchronous boolean - True if NFS commit requests execute asynchronously.
- conflicting
Paths string[] - Reports the paths that conflict with another export.
- description string
- Specifies the user-defined string that is used to identify the export.
- directory
Transfer numberSize - 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.
- encoding string
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force boolean
- If true, the export will be created even if it conflicts with another export.
- ignore
Bad booleanAuth - Ignore invalid users.
- ignore
Bad booleanPaths - Ignore nonexistent or otherwise bad paths.
- ignore
Conflicts boolean - Ignore conflicts with existing exports.
- ignore
Unresolvable booleanHosts - Ignore unresolvable hosts.
- link
Max number - 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.
- map
All NfsExport Map All - Specifies the users and groups to which non-root and root clients are mapped.
- map
Failure NfsExport Map Failure - Specifies the users and groups to which non-root and root clients are mapped.
- map
Full boolean - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map
Lookup booleanUid - 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.
- map
Non NfsRoot Export Map Non Root - Specifies the users and groups to which non-root and root clients are mapped.
- map
Retry boolean - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map
Root NfsExport Map Root - Specifies the users and groups to which non-root and root clients are mapped.
- max
File numberSize - 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.
- name
Max numberSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- nfs
Export numberId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- no
Truncate boolean - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- paths string[]
- Specifies the paths under /ifs that are exported.
- read
Only boolean - True if the export is set to read-only.
- read
Only string[]Clients - Specifies the clients with read-only access to the export.
- read
Transfer numberMax Size - 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.
- read
Transfer numberMultiple - 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.
- read
Transfer numberSize - 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.
- read
Write string[]Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus boolean
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus
Prefetch number - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit
File booleanIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root
Clients string[] - Clients that have root access to the export.
- scope string
- 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.
- security
Flavors string[] - Specifies the authentication types that are supported for this export.
- setattr
Asynchronous boolean - True if set attribute operations execute asynchronously.
- snapshot string
- Specifies the snapshot for all mounts.
- symlinks boolean
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time
Delta number - Specifies the resolution of all time values that are returned to the clients
- unresolved
Clients string[] - Reports clients that cannot be resolved.
- write
Datasync stringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write
Datasync stringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write
Filesync stringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write
Filesync stringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write
Transfer numberMax Size - 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.
- write
Transfer numberMultiple - 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.
- write
Transfer numberSize - 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.
- write
Unstable stringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write
Unstable stringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone string
- Specifies the zone in which the export is valid. Cannot be changed once set
- all_
dirs bool - True if all directories under the specified paths are mountable.
- block_
size float - Specifies the block size returned by the NFS statfs procedure.
- can_
set_ booltime - 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.
- case_
insensitive bool - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case_
preserving bool - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown_
restricted bool - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients Sequence[str]
- Specifies the clients with root access to the export.
- commit_
asynchronous bool - True if NFS commit requests execute asynchronously.
- conflicting_
paths Sequence[str] - Reports the paths that conflict with another export.
- description str
- Specifies the user-defined string that is used to identify the export.
- directory_
transfer_ floatsize - 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.
- encoding str
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force bool
- If true, the export will be created even if it conflicts with another export.
- ignore_
bad_ boolauth - Ignore invalid users.
- ignore_
bad_ boolpaths - Ignore nonexistent or otherwise bad paths.
- ignore_
conflicts bool - Ignore conflicts with existing exports.
- ignore_
unresolvable_ boolhosts - Ignore unresolvable hosts.
- link_
max float - 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.
- map_
all NfsExport Map All Args - Specifies the users and groups to which non-root and root clients are mapped.
- map_
failure NfsExport Map Failure Args - Specifies the users and groups to which non-root and root clients are mapped.
- map_
full bool - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map_
lookup_ booluid - 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.
- map_
non_ Nfsroot Export Map Non Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- map_
retry bool - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map_
root NfsExport Map Root Args - Specifies the users and groups to which non-root and root clients are mapped.
- max_
file_ floatsize - 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.
- name_
max_ floatsize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- nfs_
export_ floatid - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- no_
truncate bool - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- paths Sequence[str]
- Specifies the paths under /ifs that are exported.
- read_
only bool - True if the export is set to read-only.
- read_
only_ Sequence[str]clients - Specifies the clients with read-only access to the export.
- read_
transfer_ floatmax_ size - 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.
- read_
transfer_ floatmultiple - 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.
- read_
transfer_ floatsize - 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.
- read_
write_ Sequence[str]clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus bool
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus_
prefetch float - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit_
file_ boolids - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root_
clients Sequence[str] - Clients that have root access to the export.
- scope str
- 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.
- security_
flavors Sequence[str] - Specifies the authentication types that are supported for this export.
- setattr_
asynchronous bool - True if set attribute operations execute asynchronously.
- snapshot str
- Specifies the snapshot for all mounts.
- symlinks bool
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time_
delta float - Specifies the resolution of all time values that are returned to the clients
- unresolved_
clients Sequence[str] - Reports clients that cannot be resolved.
- write_
datasync_ straction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write_
datasync_ strreply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write_
filesync_ straction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write_
filesync_ strreply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write_
transfer_ floatmax_ size - 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.
- write_
transfer_ floatmultiple - 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.
- write_
transfer_ floatsize - 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.
- write_
unstable_ straction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write_
unstable_ strreply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone str
- Specifies the zone in which the export is valid. Cannot be changed once set
- all
Dirs Boolean - True if all directories under the specified paths are mountable.
- block
Size Number - Specifies the block size returned by the NFS statfs procedure.
- can
Set BooleanTime - 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.
- case
Insensitive Boolean - True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- case
Preserving Boolean - True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- chown
Restricted Boolean - True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- clients List<String>
- Specifies the clients with root access to the export.
- commit
Asynchronous Boolean - True if NFS commit requests execute asynchronously.
- conflicting
Paths List<String> - Reports the paths that conflict with another export.
- description String
- Specifies the user-defined string that is used to identify the export.
- directory
Transfer NumberSize - 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.
- encoding String
- Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified.
- force Boolean
- If true, the export will be created even if it conflicts with another export.
- ignore
Bad BooleanAuth - Ignore invalid users.
- ignore
Bad BooleanPaths - Ignore nonexistent or otherwise bad paths.
- ignore
Conflicts Boolean - Ignore conflicts with existing exports.
- ignore
Unresolvable BooleanHosts - Ignore unresolvable hosts.
- link
Max Number - 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.
- map
All Property Map - Specifies the users and groups to which non-root and root clients are mapped.
- map
Failure Property Map - Specifies the users and groups to which non-root and root clients are mapped.
- map
Full Boolean - True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication.
- map
Lookup BooleanUid - 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.
- map
Non Property MapRoot - Specifies the users and groups to which non-root and root clients are mapped.
- map
Retry Boolean - Determines whether searches for users specified in 'mapall', 'maproot' or 'map_nonroot' are retried if the search fails.
- map
Root Property Map - Specifies the users and groups to which non-root and root clients are mapped.
- max
File NumberSize - 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.
- name
Max NumberSize - Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- nfs
Export NumberId - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method.
- no
Truncate Boolean - True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements.
- paths List<String>
- Specifies the paths under /ifs that are exported.
- read
Only Boolean - True if the export is set to read-only.
- read
Only List<String>Clients - Specifies the clients with read-only access to the export.
- read
Transfer NumberMax Size - 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.
- read
Transfer NumberMultiple - 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.
- read
Transfer NumberSize - 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.
- read
Write List<String>Clients - Specifies the clients with both read and write access to the export, even when the export is set to read-only.
- readdirplus Boolean
- True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3.
- readdirplus
Prefetch Number - Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.)
- return32bit
File BooleanIds - Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount).
- root
Clients List<String> - Clients that have root access to the export.
- scope String
- 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.
- security
Flavors List<String> - Specifies the authentication types that are supported for this export.
- setattr
Asynchronous Boolean - True if set attribute operations execute asynchronously.
- snapshot String
- Specifies the snapshot for all mounts.
- symlinks Boolean
- True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced.
- time
Delta Number - Specifies the resolution of all time values that are returned to the clients
- unresolved
Clients List<String> - Reports clients that cannot be resolved.
- write
Datasync StringAction - Specifies the action to be taken when an NFSv3+ datasync write is requested.
- write
Datasync StringReply - Specifies the stability disposition returned when an NFSv3+ datasync write is processed.
- write
Filesync StringAction - Specifies the action to be taken when an NFSv3+ filesync write is requested.
- write
Filesync StringReply - Specifies the stability disposition returned when an NFSv3+ filesync write is processed.
- write
Transfer NumberMax Size - 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.
- write
Transfer NumberMultiple - 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.
- write
Transfer NumberSize - 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.
- write
Unstable StringAction - Specifies the action to be taken when an NFSv3+ unstable write is requested.
- write
Unstable StringReply - Specifies the stability disposition returned when an NFSv3+ unstable write is processed.
- zone String
- Specifies the zone in which the export is valid. Cannot be changed once set
Supporting Types
NfsExportMapAll, NfsExportMapAllArgs
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map All Primary Group - Specifies the persona of the file group.
- Secondary
Groups List<NfsExport Map All Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map All User - Specifies the persona of the file group.
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map All Primary Group - Specifies the persona of the file group.
- Secondary
Groups []NfsExport Map All Secondary Group - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map All User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map All Primary Group - Specifies the persona of the file group.
- secondary
Groups List<NfsExport Map All Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map All User - Specifies the persona of the file group.
- enabled boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map All Primary Group - Specifies the persona of the file group.
- secondary
Groups NfsExport Map All Secondary Group[] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map All User - Specifies the persona of the file group.
- enabled bool
- True if the user mapping is applied.
- primary_
group NfsExport Map All Primary Group - Specifies the persona of the file group.
- secondary_
groups Sequence[NfsExport Map All Secondary Group] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map All User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group Property Map - Specifies the persona of the file group.
- secondary
Groups List<Property Map> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user Property Map
- Specifies the persona of the file group.
NfsExportMapAllPrimaryGroup, NfsExportMapAllPrimaryGroupArgs
NfsExportMapAllSecondaryGroup, NfsExportMapAllSecondaryGroupArgs
NfsExportMapAllUser, NfsExportMapAllUserArgs
NfsExportMapFailure, NfsExportMapFailureArgs
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map Failure Primary Group - Specifies the persona of the file group.
- Secondary
Groups List<NfsExport Map Failure Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map Failure User - Specifies the persona of the file group.
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map Failure Primary Group - Specifies the persona of the file group.
- Secondary
Groups []NfsExport Map Failure Secondary Group - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map Failure User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map Failure Primary Group - Specifies the persona of the file group.
- secondary
Groups List<NfsExport Map Failure Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Failure User - Specifies the persona of the file group.
- enabled boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map Failure Primary Group - Specifies the persona of the file group.
- secondary
Groups NfsExport Map Failure Secondary Group[] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Failure User - Specifies the persona of the file group.
- enabled bool
- True if the user mapping is applied.
- primary_
group NfsExport Map Failure Primary Group - Specifies the persona of the file group.
- secondary_
groups Sequence[NfsExport Map Failure Secondary Group] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Failure User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group Property Map - Specifies the persona of the file group.
- secondary
Groups List<Property Map> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user Property Map
- Specifies the persona of the file group.
NfsExportMapFailurePrimaryGroup, NfsExportMapFailurePrimaryGroupArgs
NfsExportMapFailureSecondaryGroup, NfsExportMapFailureSecondaryGroupArgs
NfsExportMapFailureUser, NfsExportMapFailureUserArgs
NfsExportMapNonRoot, NfsExportMapNonRootArgs
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map Non Root Primary Group - Specifies the persona of the file group.
- Secondary
Groups List<NfsExport Map Non Root Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map Non Root User - Specifies the persona of the file group.
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map Non Root Primary Group - Specifies the persona of the file group.
- Secondary
Groups []NfsExport Map Non Root Secondary Group - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map Non Root User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map Non Root Primary Group - Specifies the persona of the file group.
- secondary
Groups List<NfsExport Map Non Root Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Non Root User - Specifies the persona of the file group.
- enabled boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map Non Root Primary Group - Specifies the persona of the file group.
- secondary
Groups NfsExport Map Non Root Secondary Group[] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Non Root User - Specifies the persona of the file group.
- enabled bool
- True if the user mapping is applied.
- primary_
group NfsExport Map Non Root Primary Group - Specifies the persona of the file group.
- secondary_
groups Sequence[NfsExport Map Non Root Secondary Group] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Non Root User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group Property Map - Specifies the persona of the file group.
- secondary
Groups List<Property Map> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user Property Map
- Specifies the persona of the file group.
NfsExportMapNonRootPrimaryGroup, NfsExportMapNonRootPrimaryGroupArgs
NfsExportMapNonRootSecondaryGroup, NfsExportMapNonRootSecondaryGroupArgs
NfsExportMapNonRootUser, NfsExportMapNonRootUserArgs
NfsExportMapRoot, NfsExportMapRootArgs
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map Root Primary Group - Specifies the persona of the file group.
- Secondary
Groups List<NfsExport Map Root Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map Root User - Specifies the persona of the file group.
- Enabled bool
- True if the user mapping is applied.
- Primary
Group NfsExport Map Root Primary Group - Specifies the persona of the file group.
- Secondary
Groups []NfsExport Map Root Secondary Group - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- User
Nfs
Export Map Root User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map Root Primary Group - Specifies the persona of the file group.
- secondary
Groups List<NfsExport Map Root Secondary Group> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Root User - Specifies the persona of the file group.
- enabled boolean
- True if the user mapping is applied.
- primary
Group NfsExport Map Root Primary Group - Specifies the persona of the file group.
- secondary
Groups NfsExport Map Root Secondary Group[] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Root User - Specifies the persona of the file group.
- enabled bool
- True if the user mapping is applied.
- primary_
group NfsExport Map Root Primary Group - Specifies the persona of the file group.
- secondary_
groups Sequence[NfsExport Map Root Secondary Group] - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user
Nfs
Export Map Root User - Specifies the persona of the file group.
- enabled Boolean
- True if the user mapping is applied.
- primary
Group Property Map - Specifies the persona of the file group.
- secondary
Groups List<Property Map> - Specifies persona properties for the secondary user group. A persona consists of either a type and name, or an ID.
- user Property Map
- Specifies the persona of the file group.
NfsExportMapRootPrimaryGroup, NfsExportMapRootPrimaryGroupArgs
NfsExportMapRootSecondaryGroup, NfsExportMapRootSecondaryGroupArgs
NfsExportMapRootUser, NfsExportMapRootUserArgs
Import
Copyright (c) 2023-2024 Dell Inc., or its subsidiaries. All Rights Reserved.
Licensed under the Mozilla Public License Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://mozilla.org/MPL/2.0/
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
The command is
$ pulumi import powerscale:index/nfsExport:NfsExport example_export [<zoneID>]:<name>
Example 1:
$ pulumi import powerscale:index/nfsExport:NfsExport example_export example_export
Example 2:
$ pulumi import powerscale:index/nfsExport:NfsExport example_export zone_id:example_export
after running this command, populate the name field and other required parameters in the config file to start managing this resource.
Note: running “terraform show” after importing shows the current config/state of the resource. You can copy/paste that config to make it easier to manage the resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- powerscale dell/terraform-provider-powerscale
- License
- Notes
- This Pulumi package is based on the
powerscale
Terraform Provider.