Class NfsExportOptions (1.0.0)

public sealed class NfsExportOptions : IMessage<NfsExportOptions>, IEquatable<NfsExportOptions>, IDeepCloneable<NfsExportOptions>, IBufferMessage, IMessage

NFS export options specifications.

Inheritance

Object > NfsExportOptions

Namespace

Google.Cloud.Filestore.V1

Assembly

Google.Cloud.Filestore.V1.dll

Constructors

NfsExportOptions()

public NfsExportOptions()

NfsExportOptions(NfsExportOptions)

public NfsExportOptions(NfsExportOptions other)
Parameter
NameDescription
otherNfsExportOptions

Properties

AccessMode

public NfsExportOptions.Types.AccessMode AccessMode { get; set; }

Either READ_ONLY, for allowing only read requests on the exported directory, or READ_WRITE, for allowing both read and write requests. The default is READ_WRITE.

Property Value
TypeDescription
NfsExportOptions.Types.AccessMode

AnonGid

public long AnonGid { get; set; }

An integer representing the anonymous group id with a default value of 65534. Anon_gid may only be set with squash_mode of ROOT_SQUASH. An error will be returned if this field is specified for other squash_mode settings.

Property Value
TypeDescription
Int64

AnonUid

public long AnonUid { get; set; }

An integer representing the anonymous user id with a default value of 65534. Anon_uid may only be set with squash_mode of ROOT_SQUASH. An error will be returned if this field is specified for other squash_mode settings.

Property Value
TypeDescription
Int64

IpRanges

public RepeatedField<string> IpRanges { get; }

List of either an IPv4 addresses in the format {octet 1}.{octet 2}.{octet 3}.{octet 4} or CIDR ranges in the format {octet 1}.{octet 2}.{octet 3}.{octet 4}/{mask size} which may mount the file share. Overlapping IP ranges are not allowed, both within and across NfsExportOptions. An error will be returned. The limit is 64 IP ranges/addresses for each FileShareConfig among all NfsExportOptions.

Property Value
TypeDescription
RepeatedField<String>

SquashMode

public NfsExportOptions.Types.SquashMode SquashMode { get; set; }

Either NO_ROOT_SQUASH, for allowing root access on the exported directory, or ROOT_SQUASH, for not allowing root access. The default is NO_ROOT_SQUASH.

Property Value
TypeDescription
NfsExportOptions.Types.SquashMode