Retrieve a multi-admin-verify rule
GET /security/multi-admin-verify/rules/{owner.uuid}/{operation}
Introduced In: 9.11
Retrieves a multi-admin-verify rule.
Parameters
| Name | Type | In | Required | Description | 
|---|---|---|---|---|
owner.uuid  | 
string  | 
path  | 
True  | 
|
operation  | 
string  | 
path  | 
True  | 
|
fields  | 
array[string]  | 
query  | 
False  | 
Specify the fields to return.  | 
Response
Status: 200, Ok
| Name | Type | Description | 
|---|---|---|
approval_expiry  | 
string  | 
Time for requests to be approved, in ISO-8601 duration format. If not set, the global setting is used.  | 
approval_groups  | 
array[approval_groups]  | 
List of approval groups that are allowed to approve requests for rules that don't have approval groups.  | 
auto_request_create  | 
boolean  | 
When true, ONTAP automatically creates a request for any failed operation where there is no matching pending request. 
  | 
create_time  | 
string  | 
|
execution_expiry  | 
string  | 
Time for requests to be executed once approved, in ISO-8601 duration format. If not set, the global setting is used.  | 
operation  | 
string  | 
Command that requires one or more approvals.  | 
owner  | 
The owner of the rule. The only valid owner is currently the cluster.  | 
|
query  | 
string  | 
When specified, this property limits the entries that require approvals to those that match the specified query.  | 
required_approvers  | 
integer  | 
The number of required approvers, excluding the user that made the request.  | 
system_defined  | 
boolean  | 
Specifies whether the rule is system-defined or user-defined.  | 
Example response
{
  "approval_expiry": "string",
  "approval_groups": [
    {
      "name": "string"
    }
  ],
  "create_time": "string",
  "execution_expiry": "string",
  "operation": "string",
  "owner": {
    "_links": {
      "self": {
        "href": "/api/resourcelink"
      }
    },
    "name": "svm1",
    "uuid": "02c9e252-41be-11e9-81d5-00a0986138f7"
  },
  "query": "string"
}
Error
Status: Default, Error
| Name | Type | Description | 
|---|---|---|
error  | 
Example error
{
  "error": {
    "arguments": [
      {
        "code": "string",
        "message": "string"
      }
    ],
    "code": "4",
    "message": "entry doesn't exist",
    "target": "uuid"
  }
}
Definitions
See Definitions
approval_groups
| Name | Type | Description | 
|---|---|---|
name  | 
string  | 
Name of the approval group.  | 
href
| Name | Type | Description | 
|---|---|---|
href  | 
string  | 
_links
| Name | Type | Description | 
|---|---|---|
self  | 
owner
The owner of the rule. The only valid owner is currently the cluster.
| Name | Type | Description | 
|---|---|---|
_links  | 
||
name  | 
string  | 
The name of the SVM.  | 
uuid  | 
string  | 
The unique identifier of the SVM.  | 
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.  |