Skip to content

Commit

Permalink
Introduce toBeDetached flag for Datadisks for ApiVersion 2019-03-01 (#…
Browse files Browse the repository at this point in the history
…5704)

* ToBeDetached added in Json and an example added

* Removed from OS disk and added to dataDisk
  • Loading branch information
vamuzumd authored and dsgouda committed Apr 24, 2019
1 parent 7d045f8 commit bcb198a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5873,6 +5873,10 @@
"managedDisk": {
"description": "The managed disk parameters.",
"$ref": "#/definitions/ManagedDiskParameters"
},
"toBeDetached": {
"type": "boolean",
"description": "Specifies whether the datadisk is in process of detachment from the VirtualMachine/VirtualMachineScaleset"
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@
},
"createOption": "Empty",
"lun": 0,
"diskSizeGB": 1023
"diskSizeGB": 1023,
"toBeDetached": false
},
{
"caching": "None",
Expand All @@ -186,7 +187,8 @@
},
"createOption": "Empty",
"lun": 1,
"diskSizeGB": 1023
"diskSizeGB": 1023,
"toBeDetached": false
}
]
},
Expand Down

0 comments on commit bcb198a

Please sign in to comment.