Update a service policy for network interfaces
- PDF of this doc site
Collection of separate PDF docs
Creating your file...
PATCH /network/ip/service-policies/{uuid}
Introduced In: 9.8
Updates a service policy for network interfaces.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
uuid |
string |
path |
True |
UUID of the service policy |
Request Body
Name | Type | Description |
---|---|---|
_links |
||
ipspace |
||
name |
string |
|
scope |
string |
Set to "svm" for interfaces owned by an SVM. Otherwise, set to "cluster". |
services |
array[string] |
|
svm |
||
uuid |
string |
Example request
{
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"ipspace": {
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"name": "exchange",
"uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"
},
"name": "default-intercluster",
"scope": "string",
"services": [
"data_nfs"
],
"svm": {
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"name": "svm1",
"uuid": "02c9e252-41be-11e9-81d5-00a0986138f7"
},
"uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"
}
Response
Status: 200, Ok
Error
Status: Default
ONTAP Error Response Codes
Error Code | Description |
---|---|
1376669 |
Port must reside in the same IPspace as the interface's SVM. |
53281929 |
Service policies cannot combine block and file services. |
53281930 |
Service policies maintained by the system cannot be renamed. |
53281931 |
Service policy names cannot start with "default-". |
53281933 |
A Cluster-scoped service cannot be added to a SVM-scoped service policy. |
53281934 |
An SVM-scoped service cannot be added to a Cluster-scoped service policy. |
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 |
ipspace
Name | Type | Description |
---|---|---|
_links |
||
name |
string |
IPspace name |
uuid |
string |
IPspace UUID |
svm
Name | Type | Description |
---|---|---|
_links |
||
name |
string |
The name of the SVM. |
uuid |
string |
The unique identifier of the SVM. |
ip_service_policy
Name | Type | Description |
---|---|---|
_links |
||
ipspace |
||
name |
string |
|
scope |
string |
Set to "svm" for interfaces owned by an SVM. Otherwise, set to "cluster". |
services |
array[string] |
|
svm |
||
uuid |
string |
error_arguments
Name | Type | Description |
---|---|---|
code |
string |
Argument code |
message |
string |
Message argument |
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. |