Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Added diffDiskSettings property as part of Swagger changes needed for…
… Ephemeral VM\VMSS
  • Loading branch information
hari-bodicherla committed Sep 18, 2018
commit fa038507f03d312016603241a1d94bc6384619e1
Original file line number Diff line number Diff line change
Expand Up @@ -5176,6 +5176,31 @@
"modelAsString": true
}
},
"DiffDiskOption": {
"type": "string",
"description": "Specifies the diff disk option for operating system disk. Possible values are: Local.",
"enum": [
"Local"
],
"x-ms-enum": {
"name": "DiffDiskOption",
"modelAsString": true
}
},
"DiffDiskSettings": {
"properties": {
"option": {
"$ref": "#/definitions/DiffDiskOption",
"description": "Specifies the diff disk option for operating system disk. Possible values are: Local"
}
},
"allOf": [
{
"$ref": "#/definitions/SubResource"
}
],
"description": "The parameters of a DiffDiskSettings for operating system disk."
},
"ManagedDiskParameters": {
"properties": {
"storageAccountType": {
Expand Down Expand Up @@ -5228,6 +5253,10 @@
"type": "boolean",
"description": "Specifies whether writeAccelerator should be enabled or disabled on the disk."
},
"diffDiskSettings": {
"$ref": "#/definitions/DiffDiskSettings",
"description": "Specifies the Diff Disk Settings for the operating system disk used by the virtual machine."
},
"createOption": {
"$ref": "#/definitions/CreateOption",
"description": "Specifies how the virtual machine should be created.<br><br> Possible values are:<br><br> **Attach** \\u2013 This value is used when you are using a specialized disk to create the virtual machine.<br><br> **FromImage** \\u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described."
Expand Down Expand Up @@ -6388,6 +6417,10 @@
"$ref": "#/definitions/CreateOption",
"description": "Specifies how the virtual machines in the scale set should be created.<br><br> The only allowed value is: **FromImage** \\u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described."
},
"diffDiskSettings": {
"$ref": "#/definitions/DiffDiskSettings",
"description": "Specifies the Diff Disk Settings for the operating system disk used by the virtual machine scale set."
},
"diskSizeGB": {
"type": "integer",
"format": "int32",
Expand Down