Retrieve information about a MetroCluster operation
GET /cluster/metrocluster/operations/{uuid}
Introduced In: 9.8
Retrieves information about a specific MetroCluster operation.
Related ONTAP Commands
- 
metrocluster operation show 
Parameters
| Name | Type | In | Required | Description | 
|---|---|---|---|---|
uuid  | 
string  | 
path  | 
True  | 
Unique identifier for the operation.  | 
fields  | 
array[string]  | 
query  | 
False  | 
Specify the fields to return.  | 
Response
Status: 200, Ok
| Name | Type | Description | 
|---|---|---|
_links  | 
||
additional_info  | 
string  | 
Additional information for the auto heal.  | 
command_line  | 
string  | 
Command line executed with the options specified.  | 
end_time  | 
string  | 
End Time  | 
errors  | 
array[string]  | 
List of errors in the operation.  | 
node  | 
Node from where the command is executed.  | 
|
start_time  | 
string  | 
Start Time  | 
state  | 
string  | 
Indicates the state of the operation.  | 
type  | 
string  | 
Name of the operation.  | 
uuid  | 
string  | 
Identifier for the operation.  | 
Example response
{
  "_links": {
    "self": {
      "href": "/api/resourcelink"
    }
  },
  "additional_info": "MetroCluster switchover with auto heal completed successfully.",
  "command_line": "metrocluster switchover",
  "end_time": "2016-03-10T14:35:16-08:00",
  "errors": [
    "siteB (warning): Unable to prepare the partner cluster for a pending switchback operation. Reason: entry doesn't exist. Reboot the nodes in the partner cluster before using the \"metrocluster switchback\" command."
  ],
  "node": {
    "_links": {
      "self": {
        "href": "/api/resourcelink"
      }
    },
    "name": "node1",
    "uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"
  },
  "start_time": "2016-03-10T14:33:16-08:00",
  "state": "completed_with_warnings",
  "type": "switchover",
  "uuid": "11111111-2222-3333-4444-abcdefabcdef"
}
Error
Status: Default
ONTAP Error Response Codes
| Error Code | Description | 
|---|---|
2425734  | 
An internal error occurred. Wait a few minutes, and try the operation again. For further assistance, contact technical support.  | 
| 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  | 
self_link
| Name | Type | Description | 
|---|---|---|
self  | 
_links
| Name | Type | Description | 
|---|---|---|
self  | 
node
Node from where the command is executed.
| Name | Type | Description | 
|---|---|---|
_links  | 
||
name  | 
string  | 
|
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.  |