Show / Hide Table of Contents

Class UpdateExportDetails

Details for updating the export.

Inheritance
object
UpdateExportDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FilestorageService.Models
Assembly: OCI.DotNetSDK.Filestorage.dll
Syntax
public class UpdateExportDetails

Properties

ExportOptions

Declaration
[JsonProperty(PropertyName = "exportOptions")]
public List<ClientOptions> ExportOptions { get; set; }
Property Value
Type Description
List<ClientOptions>

New export options for the export.
Setting to the empty array will make the export invisible to all clients.
Leaving unset will leave the exportOptions unchanged.

IsIdmapGroupsForSysAuth

Declaration
[JsonProperty(PropertyName = "isIdmapGroupsForSysAuth")]
public bool? IsIdmapGroupsForSysAuth { get; set; }
Property Value
Type Description
bool?

Whether or not the export should use ID mapping for Unix groups rather than the group list provided within an NFS request's RPC header. When this flag is true the Unix UID from the RPC header is used to retrieve the list of secondary groups from a the ID mapping subsystem. The primary GID is always taken from the RPC header. If ID mapping is not configured, incorrectly configured, unavailable, or cannot be used to determine a list of secondary groups then an empty secondary group list is used for authorization. If the number of groups exceeds the limit of 256 groups, the list retrieved from LDAP is truncated to the first 256 groups read.

In this article
Back to top