Summary
          Restore Device Config
          Description
          Restore entire device config with the given config
          Route
          No Northbound API Available
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | deviceName | string | yes | Device Name | 
    | Configuration | string | yes | Native Device Config | 
            
          
          
            Copied to Clipboard
            
            {
  "deviceName": "exercitation qui Ut consequat",
  "Configuration": "qui"
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "deviceName": {
      "type": "string"
    },
    "Configuration": {
      "type": "string"
    }
  },
  "required": [
    "deviceName",
    "Configuration"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | Result of restore action | 
            
          
          
            Copied to Clipboard
            
            {
  "status": false,
  "result": []
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "description": "Result when commit is performed",
  "properties": {
    "status": {
      "description": "Status of carrying out action",
      "type": "boolean"
    },
    "result": {
      "type": "array",
      "description": "Array of results",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "status",
    "result"
  ]
}