Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2709,6 +2709,29 @@
"accountDetails": {
"$ref": "#/definitions/DataAccountDetails",
"description": "Account details of the data to be transferred"
},
"logCollectionLevel": {
"description": "Level of the logs to be collected.",
"enum": [
"Error",
"Verbose"
],
"type": "string",
"x-ms-enum": {
"name": "LogCollectionLevel",
"modelAsExtensible": true,
"values": [
{
"value": "Error",
"description": "Only Errors will be collected in the logs."
},
{
"value": "Verbose",
"description": "Verbose logging (includes Errors, CRC, size information and others)."
}
]
},
"default": "Error"
}
}
},
Expand Down