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 @@ -7775,6 +7775,13 @@
"items": {
"$ref": "#/definitions/A2AProtectedDiskDetails"
}
},
"unprotectedDisks": {
"description": "The list of unprotected disks.",
"type": "array",
"items": {
"$ref": "#/definitions/A2AUnprotectedDiskDetails"
}
},
"protectedManagedDisks": {
"description": "The list of protected managed disks.",
Expand Down Expand Up @@ -7986,7 +7993,18 @@
},
"x-ms-discriminator-value": "A2A"
},
"A2AUpdateContainerMappingInput": {
"A2AUnprotectedDiskDetails": {
"description": "A2A unprotected disk details.",
"type": "object",
"properties": {
"diskLunId": {
"format": "int32",
"description": "The source lun Id for the data disk.",
"type": "integer"
}
}
},
"A2AUpdateContainerMappingInput": {
"description": "A2A update protection container mapping.",
"type": "object",
"allOf": [
Expand Down