Module netapp_ontap.resources.nfs_service
Copyright © 2023 NetApp Inc. All rights reserved.
This file has been automatically generated based on the ONTAP REST API documentation.
Retrieving an NFS configuration
from netapp_ontap import HostConnection
from netapp_ontap.resources import NfsService
with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
print(list(NfsService.get_collection()))
Retrieving the mount permissions for a specified volume for a given IP address.
from netapp_ontap import HostConnection
from netapp_ontap.resources import NfsService
with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
print(
list(
NfsService.get_collection(
fields="*",
return_timeout=15,
**{
"protocol_access_rules.volume": "testvol12",
"protocol_access_rules.client_ip": "1.2.3.4",
"protocol_access_rules.auth_type": "sys",
"svm.uuid": "525928e9-9f84-11eb-a89f-005056bb70a8",
}
)
)
)
Creating an NFS configuration for an SVM
from netapp_ontap import HostConnection
from netapp_ontap.resources import NfsService
with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
resource = NfsService()
resource.svm = {"uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"}
resource.protocol = {"v4_id_domain": "nfs-nsr-w01.rtp.netapp.com"}
resource.vstorage_enabled = True
resource.post(hydrate=True)
print(resource)
Updating an NFS configuration for an SVM
from netapp_ontap import HostConnection
from netapp_ontap.resources import NfsService
with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
resource = NfsService(**{"svm.uuid": "4a415601-548c-11e8-a21d-0050568bcbc9"})
resource.protocol = {"v4_id_domain": "nfs-nsr-w01.rtp.netapp.com"}
resource.vstorage_enabled = False
resource.patch()
Deleting an NFS configuration for an SVM
from netapp_ontap import HostConnection
from netapp_ontap.resources import NfsService
with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
resource = NfsService(**{"svm.uuid": "4a415601-548c-11e8-a21d-0050568bcbc9"})
resource.delete()
Performance monitoring
Performance of the SVM can be monitored by the metric.*
and statistics.*
properties. These show the performance of the SVM in terms of IOPS, latency and throughput. The metric.*
properties denote an average whereas statistics.*
properties denote a real-time monotonically increasing value aggregated across all nodes.
Classes
class NfsService (*args, **kwargs)
-
Allows interaction with NfsService objects on the host
Initialize the instance of the resource.
Any keyword arguments are set on the instance as properties. For example, if the class was named 'MyResource', then this statement would be true:
MyResource(name='foo').name == 'foo'
Args
*args
- Each positional argument represents a parent key as used in the URL of the object. That is, each value will be used to fill in a segment of the URL which refers to some parent object. The order of these arguments must match the order they are specified in the URL, from left to right.
**kwargs
- each entry will have its key set as an attribute name on the instance and its value will be the value of that attribute.
Ancestors
Static methods
def count_collection (*args, connection: HostConnection = None, **kwargs) -> int
-
Returns a count of all NfsService resources that match the provided query
This calls GET on the object to determine the number of records. It is more efficient than calling get_collection() because it will not construct any objects. Query parameters can be passed in as kwargs to determine a count of objects that match some filtered criteria.
Args
*args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the count of bars for a particular foo, the foo.name value should be passed.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will be sent as query parameters to the host. These query parameters can affect the count. A return_records query param will be ignored.
Returns
On success, returns an integer count of the objects of this type. On failure, returns -1.
Raises
NetAppRestError
: If the API call returned a status code >= 400, or if there is no connection available to use either passed in or on the library. def delete_collection (*args, records: Iterable[_ForwardRef('NfsService')] = None, body: Union[Resource, dict] = None, poll: bool = True, poll_interval: Optional[int] = None, poll_timeout: Optional[int] = None, connection: HostConnection = None, **kwargs) -> NetAppResponse
-
Deletes the NFS configuration of an SVM.
Related ONTAP commands
vserver nfs delete
Learn more
Delete all objects in a collection which match the given query.
All records on the host which match the query will be deleted.
Args
*args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to delete the collection of bars for a particular foo, the foo.name value should be passed.
records
- Can be provided in place of a query. If so, this list of objects will be deleted from the host.
body
- The body of the delete request. This could be a Resource instance or a dictionary object.
poll
- If set to True, the call will not return until the asynchronous job on the host has completed. Has no effect if the host did not return a job response.
poll_interval
- If the operation returns a job, this specifies how often to query the job for updates.
poll_timeout
- If the operation returns a job, this specifies how long to continue monitoring the job's status for completion.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will be sent as query parameters to the host. Only resources matching this query will be deleted.
Returns
A
NetAppResponse
object containing the details of the HTTP response.Raises
NetAppRestError
: If the API call returned a status code >= 400 def find (*args, connection: HostConnection = None, **kwargs) -> Resource
-
Retrieves the NFS configuration of SVMs.
Expensive properties
There is an added computational cost to retrieving values for these properties. They are not included by default in GET results and must be explicitly requested using the
fields
query parameter. SeeRequesting specific fields
to learn more. *statistics.*
*metric.*
Advanced properties
security.rpcsec_context_idle
security.ntfs_unix_security
security.chown_mode
security.nt_acl_display_permission
protocol.v3_features.ejukebox_enabled
protocol.v3_features.connection_drop
protocol.v3_features.fsid_change
protocol.v3_features.mount_daemon_port
protocol.v3_features.network_lock_manager_port
protocol.v3_features.network_status_monitor_port
protocol.v3_features.rquota_daemon_port
protocol.v3_features.hide_snapshot_enabled
protocol.v41_features.implementation_domain
protocol.v41_features.implementation_name
protocol.v40_features.acl_max_aces
windows.map_unknown_uid_to_default_user
exports.netgroup_trust_any_nsswitch_no_match
credential_cache.negative_ttl
transport.tcp_max_transfer_size
root.*
protocol.v41_features.trunking_enabled
protocol.v42_features.seclabel_enabled
protocol.v42_features.sparsefile_ops_enabled
protocol.v42_features.xattrs_enabled
protocol.v40_features.referrals_enabled
protocol.v41_features.referrals_enabled
protocol.v4_lease_seconds
protocol.v4_session_slots
protocol.v4_session_slot_reply_cache_size
protocol.v4_fsid_change
Diagnostic properties
credential_cache.transient_error_ttl
access_cache_config.ttl_failure
Related ONTAP commands
vserver nfs show
vserver nfs status
Learn more
Find an instance of an object on the host given a query.
The host will be queried with the provided key/value pairs to find a matching resource. If 0 are found, None will be returned. If more than 1 is found, an error will be raised or returned. If there is exactly 1 matching record, then it will be returned.
Args
*args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to find a bar for a particular foo, the foo.name value should be passed.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will be sent as query parameters to the host.
Returns
A
Resource
object containing the details of the object or None if no matches were found.Raises
NetAppRestError
: If the API call returned more than 1 matching resource. def get_collection (*args, connection: HostConnection = None, max_records: int = None, **kwargs) -> Iterable[Resource]
-
Retrieves the NFS configuration of SVMs.
Expensive properties
There is an added computational cost to retrieving values for these properties. They are not included by default in GET results and must be explicitly requested using the
fields
query parameter. SeeRequesting specific fields
to learn more. *statistics.*
*metric.*
Advanced properties
security.rpcsec_context_idle
security.ntfs_unix_security
security.chown_mode
security.nt_acl_display_permission
protocol.v3_features.ejukebox_enabled
protocol.v3_features.connection_drop
protocol.v3_features.fsid_change
protocol.v3_features.mount_daemon_port
protocol.v3_features.network_lock_manager_port
protocol.v3_features.network_status_monitor_port
protocol.v3_features.rquota_daemon_port
protocol.v3_features.hide_snapshot_enabled
protocol.v41_features.implementation_domain
protocol.v41_features.implementation_name
protocol.v40_features.acl_max_aces
windows.map_unknown_uid_to_default_user
exports.netgroup_trust_any_nsswitch_no_match
credential_cache.negative_ttl
transport.tcp_max_transfer_size
root.*
protocol.v41_features.trunking_enabled
protocol.v42_features.seclabel_enabled
protocol.v42_features.sparsefile_ops_enabled
protocol.v42_features.xattrs_enabled
protocol.v40_features.referrals_enabled
protocol.v41_features.referrals_enabled
protocol.v4_lease_seconds
protocol.v4_session_slots
protocol.v4_session_slot_reply_cache_size
protocol.v4_fsid_change
Diagnostic properties
credential_cache.transient_error_ttl
access_cache_config.ttl_failure
Related ONTAP commands
vserver nfs show
vserver nfs status
Learn more
Fetch a list of all objects of this type from the host.
This is a lazy fetch, making API calls only as necessary when the result of this call is iterated over. For instance, if max_records is set to 5, then iterating over the collection causes an API call to be sent to the server once for every 5 records. If the client stops iterating before getting to the 6th record, then no additional API calls are made.
Args
*args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the collection of bars for a particular foo, the foo.name value should be passed.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. max_records
- The maximum number of records to return per call
**kwargs
- Any key/value pairs passed will be sent as query parameters to the host.
Returns
A list of
Resource
objectsRaises
NetAppRestError
: If there is no connection available to use either passed in or on the library. This would be not be raised when get_collection() is called, but rather when the result is iterated. def patch_collection (body: dict, *args, records: Iterable[_ForwardRef('NfsService')] = None, poll: bool = True, poll_interval: Optional[int] = None, poll_timeout: Optional[int] = None, connection: HostConnection = None, **kwargs) -> NetAppResponse
-
Updates the NFS configuration of an SVM.
Related ONTAP commands
vserver nfs modify
vserver nfs on
vserver nfs off
vserver nfs start
vserver nfs stop
Learn more
Patch all objects in a collection which match the given query.
All records on the host which match the query will be patched with the provided body.
Args
body
- A dictionary of name/value pairs to set on all matching members of the collection. The body argument will be ignored if records is provided.
*args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to patch the collection of bars for a particular foo, the foo.name value should be passed.
records
- Can be provided in place of a query. If so, this list of objects will be patched on the host.
poll
- If set to True, the call will not return until the asynchronous job on the host has completed. Has no effect if the host did not return a job response.
poll_interval
- If the operation returns a job, this specifies how often to query the job for updates.
poll_timeout
- If the operation returns a job, this specifies how long to continue monitoring the job's status for completion.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will be sent as query parameters to the host. Only resources matching this query will be patched.
Returns
A
NetAppResponse
object containing the details of the HTTP response.Raises
NetAppRestError
: If the API call returned a status code >= 400 def post_collection (records: Iterable[_ForwardRef('NfsService')], *args, hydrate: bool = False, poll: bool = True, poll_interval: Optional[int] = None, poll_timeout: Optional[int] = None, connection: HostConnection = None, **kwargs) -> Union[List[NfsService], NetAppResponse]
-
Creates an NFS configuration for an SVM.
Required properties
svm.uuid
orsvm.name
- Existing SVM for which to create the NFS configuration.
Default property values
If not specified in POST, the following default property values are assigned: *
enabled
- true *state
- online *transport.udp_enabled
- true *transport.tcp_enabled
- true *transport.rdma_enabled
- true *protocol.v3_enabled
- true *protocol.v3_64bit_identifiers_enabled
- false *protocol.v4_id_domain
- defaultv4iddomain.com *protocol.v4_64bit_identifiers_enabled
- true *protocol.v4_enabled
- false *protocol.v41_enabled
- false *protocol.v40_features.acl_enabled
- false *protocol.v40_features.read_delegation_enabled
- false *protocol.v40_features.write_delegation_enabled
- false *protocol.v41_features.acl_enabled
- false *protocol.v41_features.read_delegation_enabled
- false *protocol.v41_features.write_delegation_enabled
- false *protocol.v41_features.pnfs_enabled
- false *vstorage_enabled
- false *rquota_enabled
- false *showmount_enabled
- true *auth_sys_extended_groups_enabled
- false *extended_groups_limit
- 32 *qtree.export_enabled
- false *qtree.validate_export
- true *access_cache_config.ttl_positive
- 60 *access_cache_config.ttl_negative
- 30 *access_cache_config.ttl_failure
- 1 *access_cache_config.harvest_timeout
- 3600 *access_cache_config.isDnsTTLEnabled
- false *file_session_io_grouping_count
- 5000 *file_session_io_grouping_duration
- 120 *security.nt_acl_display_permission
- false *exports.netgroup_trust_any_nsswitch_no_match
- false *exports.name_service_lookup_protocol
- udp *security.permitted_encryption_types
- [aes-256,aes-128,des3,des] *security.rpcsec_context_idle
- 0 *security.chown_mode
- use_export_policy *security.ntfs_unix_security
- use_export_policy *windows.v3_ms_dos_client_enabled
- false *windows.default_user
- "" *windows.map_unknown_uid_to_default_user
- true *credential_cache.positive_ttl
- 86400000 *credential_cache.negative_ttl
- 7200000 *credential_cache.transient_error_ttl
- 30000 *protocol.v40_features.acl_preserve
- true *protocol.v41_features.implementation_domain
- 'netapp.com' *protocol.v40_features.acl_max_aces
- 400 *protocol.v3_features.ejukebox_enabled
- true *protocol.v3_features.connection_drop
- true *protocol.v3_features.fsid_change
- true *protocol.v3_features.mount_daemon_port
- 635 *protocol.v3_features.network_lock_manager_port
- 4045 *protocol.v3_features.network_status_monitor_port
- 4046 *protocol.v3_features.rquota_daemon_port
- 4046 *protocol.v3_features.mount_root_only
- true *transport.tcp_max_transfer_size
- 65536 *root.ignore_nt_acl
- false *root.skip_write_permission_check
- false *protocol.v40_features.referrals_enabled
- false *protocol.v41_features.referrals_enabled
- false *protocol.v4_fsid_change
- true *protocol.v4_lease_seconds
- 30 *protocol.v4_grace_seconds
- 45 *protocol.v4_session_slots
- 180 *protocol.v4_session_slot_reply_cache_size
- 640Related ONTAP commands
vserver nfs create
export-policy access-cache config show
Learn more
Send this collection of objects to the host as a creation request.
Args
records
- A list of
Resource
objects to send to the server to be created. *args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to create a bar for a particular foo, the foo.name value should be passed.
hydrate
- If set to True, after the response is received from the call, a a GET call will be made to refresh all fields of each object. When hydrate is set to True, poll must also be set to True.
poll
- If set to True, the call will not return until the asynchronous job on the host has completed. Has no effect if the host did not return a job response.
poll_interval
- If the operation returns a job, this specifies how often to query the job for updates.
poll_timeout
- If the operation returns a job, this specifies how long to continue monitoring the job's status for completion.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will be sent as query parameters to the host. Only resources matching this query will be patched.
Returns
A list of
Resource
objects matching the provided type which have been created by the host and returned. This is not the same list that was provided, so to continue using the object, you should save this list. If poll is set to False, then aNetAppResponse
object is returned instead.Raises
NetAppRestError
: If the API call returned a status code >= 400
Methods
def delete (self, body: Union[Resource, dict] = None, poll: bool = True, poll_interval: Optional[int] = None, poll_timeout: Optional[int] = None, **kwargs) -> NetAppResponse
-
Deletes the NFS configuration of an SVM.
Related ONTAP commands
vserver nfs delete
Learn more
Send a deletion request to the host for this object.
Args
body
- The body of the delete request. This could be a Resource instance or a dictionary object.
poll
- If set to True, the call will not return until the asynchronous job on the host has completed. Has no effect if the host did not return a job response.
poll_interval
- If the operation returns a job, this specifies how often to query the job for updates.
poll_timeout
- If the operation returns a job, this specifies how long to continue monitoring the job's status for completion.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will be sent as query parameters to the host.
Returns
A
NetAppResponse
object containing the details of the HTTP response.Raises
NetAppRestError
: If the API call returned a status code >= 400 def get (self, **kwargs) -> NetAppResponse
-
Retrieves the NFS configuration of an SVM.
Related ONTAP commands
vserver nfs show
vserver nfs status
Learn more
Fetch the details of the object from the host.
Requires the keys to be set (if any). After returning, new or changed properties from the host will be set on the instance.
Returns
A
NetAppResponse
object containing the details of the HTTP response.Raises
NetAppRestError
: If the API call returned a status code >= 400 def patch (self, hydrate: bool = False, poll: bool = True, poll_interval: Optional[int] = None, poll_timeout: Optional[int] = None, **kwargs) -> NetAppResponse
-
Updates the NFS configuration of an SVM.
Related ONTAP commands
vserver nfs modify
vserver nfs on
vserver nfs off
vserver nfs start
vserver nfs stop
Learn more
Send the difference in the object's state to the host as a modification request.
Calculates the difference in the object's state since the last time we interacted with the host and sends this in the request body.
Args
hydrate
- If set to True, after the response is received from the call, a a GET call will be made to refresh all fields of the object.
poll
- If set to True, the call will not return until the asynchronous job on the host has completed. Has no effect if the host did not return a job response.
poll_interval
- If the operation returns a job, this specifies how often to query the job for updates.
poll_timeout
- If the operation returns a job, this specifies how long to continue monitoring the job's status for completion.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will normally be sent as query parameters to the host. If any of these pairs are parameters that are sent as formdata then only parameters of that type will be accepted and all others will be discarded.
Returns
A
NetAppResponse
object containing the details of the HTTP response.Raises
NetAppRestError
: If the API call returned a status code >= 400 def post (self, hydrate: bool = False, poll: bool = True, poll_interval: Optional[int] = None, poll_timeout: Optional[int] = None, **kwargs) -> NetAppResponse
-
Creates an NFS configuration for an SVM.
Required properties
svm.uuid
orsvm.name
- Existing SVM for which to create the NFS configuration.
Default property values
If not specified in POST, the following default property values are assigned: *
enabled
- true *state
- online *transport.udp_enabled
- true *transport.tcp_enabled
- true *transport.rdma_enabled
- true *protocol.v3_enabled
- true *protocol.v3_64bit_identifiers_enabled
- false *protocol.v4_id_domain
- defaultv4iddomain.com *protocol.v4_64bit_identifiers_enabled
- true *protocol.v4_enabled
- false *protocol.v41_enabled
- false *protocol.v40_features.acl_enabled
- false *protocol.v40_features.read_delegation_enabled
- false *protocol.v40_features.write_delegation_enabled
- false *protocol.v41_features.acl_enabled
- false *protocol.v41_features.read_delegation_enabled
- false *protocol.v41_features.write_delegation_enabled
- false *protocol.v41_features.pnfs_enabled
- false *vstorage_enabled
- false *rquota_enabled
- false *showmount_enabled
- true *auth_sys_extended_groups_enabled
- false *extended_groups_limit
- 32 *qtree.export_enabled
- false *qtree.validate_export
- true *access_cache_config.ttl_positive
- 60 *access_cache_config.ttl_negative
- 30 *access_cache_config.ttl_failure
- 1 *access_cache_config.harvest_timeout
- 3600 *access_cache_config.isDnsTTLEnabled
- false *file_session_io_grouping_count
- 5000 *file_session_io_grouping_duration
- 120 *security.nt_acl_display_permission
- false *exports.netgroup_trust_any_nsswitch_no_match
- false *exports.name_service_lookup_protocol
- udp *security.permitted_encryption_types
- [aes-256,aes-128,des3,des] *security.rpcsec_context_idle
- 0 *security.chown_mode
- use_export_policy *security.ntfs_unix_security
- use_export_policy *windows.v3_ms_dos_client_enabled
- false *windows.default_user
- "" *windows.map_unknown_uid_to_default_user
- true *credential_cache.positive_ttl
- 86400000 *credential_cache.negative_ttl
- 7200000 *credential_cache.transient_error_ttl
- 30000 *protocol.v40_features.acl_preserve
- true *protocol.v41_features.implementation_domain
- 'netapp.com' *protocol.v40_features.acl_max_aces
- 400 *protocol.v3_features.ejukebox_enabled
- true *protocol.v3_features.connection_drop
- true *protocol.v3_features.fsid_change
- true *protocol.v3_features.mount_daemon_port
- 635 *protocol.v3_features.network_lock_manager_port
- 4045 *protocol.v3_features.network_status_monitor_port
- 4046 *protocol.v3_features.rquota_daemon_port
- 4046 *protocol.v3_features.mount_root_only
- true *transport.tcp_max_transfer_size
- 65536 *root.ignore_nt_acl
- false *root.skip_write_permission_check
- false *protocol.v40_features.referrals_enabled
- false *protocol.v41_features.referrals_enabled
- false *protocol.v4_fsid_change
- true *protocol.v4_lease_seconds
- 30 *protocol.v4_grace_seconds
- 45 *protocol.v4_session_slots
- 180 *protocol.v4_session_slot_reply_cache_size
- 640Related ONTAP commands
vserver nfs create
export-policy access-cache config show
Learn more
Send this object to the host as a creation request.
Args
hydrate
- If set to True, after the response is received from the call, a a GET call will be made to refresh all fields of the object.
poll
- If set to True, the call will not return until the asynchronous job on the host has completed. Has no effect if the host did not return a job response.
poll_interval
- If the operation returns a job, this specifies how often to query the job for updates.
poll_timeout
- If the operation returns a job, this specifies how long to continue monitoring the job's status for completion.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will normally be sent as query parameters to the host. If any of these pairs are parameters that are sent as formdata then only parameters of that type will be accepted and all others will be discarded.
Returns
A
NetAppResponse
object containing the details of the HTTP response.Raises
NetAppRestError
: If the API call returned a status code >= 400
Inherited members
class NfsServiceSchema (*, only: Union[Sequence[str], Set[str]] = None, exclude: Union[Sequence[str], Set[str]] = (), many: bool = False, context: Dict = None, load_only: Union[Sequence[str], Set[str]] = (), dump_only: Union[Sequence[str], Set[str]] = (), partial: Union[bool, Sequence[str], Set[str]] = False, unknown: str = None)
-
The fields of the NfsService object
Ancestors
- netapp_ontap.resource.ResourceSchema
- marshmallow.schema.Schema
- marshmallow.base.SchemaABC
Class variables
-
access_cache_config: NfsServiceAccessCacheConfig GET POST PATCH
-
The access_cache_config field of the nfs_service.
-
auth_sys_extended_groups_enabled: bool GET POST PATCH
-
Specifies whether or not extended groups support over AUTH_SYS is enabled.
-
credential_cache: NfsServiceCredentialCache GET POST PATCH
-
The credential_cache field of the nfs_service.
-
enabled: bool GET POST PATCH
-
Specifies if the NFS service is administratively enabled.
-
exports: NfsServiceExports GET POST PATCH
-
The exports field of the nfs_service.
-
extended_groups_limit: Size GET POST PATCH
-
Specifies the maximum auxiliary groups supported over AUTH_SYS and RPCSEC_GSS.
Example: 32
-
file_session_io_grouping_count: Size GET POST PATCH
-
Number of I/O operations on a file to be grouped and considered as one session for event generation applications, such as FPolicy.
Example: 5000
-
file_session_io_grouping_duration: Size GET POST PATCH
-
The duration for which I/O operations on a file will be grouped and considered as one session for event generation applications, such as FPolicy.
Example: 120
-
links: SelfLink GET
-
The links field of the nfs_service.
-
metric: PerformanceSvmNfsMetric GET
-
The metric field of the nfs_service.
-
protocol: NfsServiceProtocol GET POST PATCH
-
The protocol field of the nfs_service.
-
protocol_access_rules: NfsServiceProtocolAccessRules GET POST PATCH
-
The protocol_access_rules field of the nfs_service.
-
qtree: NfsServiceQtree GET POST PATCH
-
The qtree field of the nfs_service.
-
root: NfsServiceRoot GET POST PATCH
-
The root field of the nfs_service.
-
rquota_enabled: bool GET POST PATCH
-
Specifies whether or not the remote quota feature is enabled.
-
security: NfsServiceSecurity GET POST PATCH
-
The security field of the nfs_service.
-
showmount_enabled: bool GET POST PATCH
-
Specifies whether or not the showmount feature is enabled.
-
state: str GET
-
Specifies the state of the NFS service on the SVM. The following values are supported:
* online - NFS server is ready to accept client requests. * offline - NFS server is not ready to accept client requests.
Valid choices:
- online
- offline
-
statistics: PerformanceSvmNfsStatistics GET
-
The statistics field of the nfs_service.
-
svm: Svm GET POST PATCH
-
The svm field of the nfs_service.
-
transport: NfsServiceTransport GET POST PATCH
-
The transport field of the nfs_service.
-
vstorage_enabled: bool GET POST PATCH
-
Specifies whether or not the VMware vstorage feature is enabled.
-
windows: NfsServiceWindows GET POST PATCH
-
The windows field of the nfs_service.