Retrieve an export policy rule
GET /protocols/nfs/export-policies/{policy.id}/rules/{index}
Introduced In: 9.6
Retrieves an export policy rule
Related ONTAP commands
- 
vserver export-policy rule show 
Learn more
Parameters
| Name | Type | In | Required | Description | 
|---|---|---|---|---|
policy.id  | 
integer  | 
path  | 
True  | 
Export Policy ID  | 
index  | 
integer  | 
path  | 
True  | 
Export Rule Index  | 
fields  | 
array[string]  | 
query  | 
False  | 
Specify the fields to return.  | 
Response
Status: 200, Ok
| Name | Type | Description | 
|---|---|---|
_links  | 
||
allow_device_creation  | 
boolean  | 
Specifies whether or not device creation is allowed.  | 
allow_suid  | 
boolean  | 
Specifies whether or not SetUID bits in SETATTR Op is to be honored.  | 
anonymous_user  | 
string  | 
User ID To Which Anonymous Users Are Mapped.  | 
chown_mode  | 
string  | 
Specifies who is authorized to change the ownership mode of a file.  | 
clients  | 
array[export_clients]  | 
Array of client matches  | 
index  | 
integer  | 
Index of the rule within the export policy.  | 
ntfs_unix_security  | 
string  | 
NTFS export UNIX security options.  | 
policy  | 
||
protocols  | 
array[string]  | 
|
ro_rule  | 
array[string]  | 
Authentication flavors that the read-only access rule governs  | 
rw_rule  | 
array[string]  | 
Authentication flavors that the read/write access rule governs  | 
superuser  | 
array[string]  | 
Authentication flavors that the superuser security type governs  | 
svm  | 
SVM, applies only to SVM-scoped objects.  | 
Example response
{
  "_links": {
    "self": {
      "href": "/api/resourcelink"
    }
  },
  "anonymous_user": "string",
  "chown_mode": "string",
  "clients": [
    {
      "match": "0.0.0.0/0"
    }
  ],
  "ntfs_unix_security": "string",
  "policy": {
    "name": "string"
  },
  "protocols": [
    "string"
  ],
  "ro_rule": [
    "string"
  ],
  "rw_rule": [
    "string"
  ],
  "superuser": [
    "string"
  ],
  "svm": {
    "_links": {
      "self": {
        "href": "/api/resourcelink"
      }
    },
    "name": "svm1",
    "uuid": "02c9e252-41be-11e9-81d5-00a0986138f7"
  }
}
Error
Status: Default
ONTAP Error Response Codes
| Error Code | Description | 
|---|---|
262197  | 
The value provided is invalid for the field  | 
6691623  | 
User is not authorized  | 
| Name | Type | Description | 
|---|---|---|
error  | 
Example error
{
  "error": {
    "arguments": [
      {
        "code": "string",
        "message": "string"
      }
    ],
    "code": "4",
    "message": "entry doesn't exist",
    "target": "uuid"
  }
}
Definitions
See Definitions
href
| Name | Type | Description | 
|---|---|---|
href  | 
string  | 
_links
| Name | Type | Description | 
|---|---|---|
self  | 
export_clients
| Name | Type | Description | 
|---|---|---|
match  | 
string  | 
Client Match Hostname, IP Address, Netgroup, or Domain. You can specify the match as a string value in any of the following formats: 
  | 
policy
| Name | Type | Description | 
|---|---|---|
id  | 
integer  | 
Export policy ID  | 
name  | 
string  | 
Export policy name  | 
svm
SVM, applies only to SVM-scoped objects.
| Name | Type | Description | 
|---|---|---|
_links  | 
||
name  | 
string  | 
The name of the SVM. This field cannot be specified in a PATCH method.  | 
uuid  | 
string  | 
The unique identifier of the SVM. This field cannot be specified in a PATCH method.  | 
error_arguments
| Name | Type | Description | 
|---|---|---|
code  | 
string  | 
Argument code  | 
message  | 
string  | 
Message argument  | 
returned_error
| Name | Type | Description | 
|---|---|---|
arguments  | 
array[error_arguments]  | 
Message arguments  | 
code  | 
string  | 
Error code  | 
message  | 
string  | 
Error message  | 
target  | 
string  | 
The target parameter that caused the error.  |