Skip to content

Commit

Permalink
Updated compute spec to include properties in VMInstanceView and a ne…
Browse files Browse the repository at this point in the history
…w WriteAaccelerator property on disks. (Azure#2294)

* Updated spec to include properties in VMInstanceView and a new WriteAccelerator property on disks

* Resolved PR comment

* VirtualMachineInstanceView  is ReadOnly, so ReadOnly is not required on individual properties
  • Loading branch information
robhat1 authored and anuchandy committed Jan 23, 2018
1 parent e712adc commit 66a4190
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4312,6 +4312,10 @@
"$ref": "#/definitions/Caching",
"description": "Specifies the caching requirements. <br><br> Possible values are: <br><br> **None** <br><br> **ReadOnly** <br><br> **ReadWrite** <br><br> Default: **None for Standard storage. ReadOnly for Premium storage**"
},
"writeAcceleratorEnabled": {
"type": "boolean",
"description": "Specifies whether writeAccelerator should be enabled or disabled on the disk."
},
"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 @@ -4354,6 +4358,10 @@
"$ref": "#/definitions/Caching",
"description": "Specifies the caching requirements. <br><br> Possible values are: <br><br> **None** <br><br> **ReadOnly** <br><br> **ReadWrite** <br><br> Default: **None for Standard storage. ReadOnly for Premium storage**"
},
"writeAcceleratorEnabled": {
"type": "boolean",
"description": "Specifies whether writeAccelerator should be enabled or disabled on the disk."
},
"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 @@ -4829,6 +4837,18 @@
"format": "int32",
"description": "Specifies the fault domain of the virtual machine."
},
"computerName": {
"type": "string",
"description": "The computer name assigned to the virtual machine."
},
"osName": {
"type": "string",
"description": "The Operating System running on the virtual machine."
},
"osVersion": {
"type": "string",
"description": "The version of Operating System running on the virtual machine."
},
"rdpThumbPrint": {
"type": "string",
"description": "The Remote desktop certificate thumbprint."
Expand Down Expand Up @@ -5346,6 +5366,10 @@
"$ref": "#/definitions/Caching",
"description": "Specifies the caching requirements. <br><br> Possible values are: <br><br> **None** <br><br> **ReadOnly** <br><br> **ReadWrite** <br><br> Default: **None for Standard storage. ReadOnly for Premium storage**"
},
"writeAcceleratorEnabled": {
"type": "boolean",
"description": "Specifies whether writeAccelerator should be enabled or disabled on the disk."
},
"createOption": {
"$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."
Expand Down Expand Up @@ -5389,6 +5413,10 @@
"$ref": "#/definitions/Caching",
"description": "The caching type."
},
"writeAcceleratorEnabled": {
"type": "boolean",
"description": "Specifies whether writeAccelerator should be enabled or disabled on the disk."
},
"image": {
"$ref": "#/definitions/VirtualHardDisk",
"description": "The Source User Image VirtualHardDisk. This VirtualHardDisk will be copied before using it to attach to the Virtual Machine. If SourceImage is provided, the destination VirtualHardDisk should not exist."
Expand Down Expand Up @@ -5422,6 +5450,10 @@
"$ref": "#/definitions/Caching",
"description": "Specifies the caching requirements. <br><br> Possible values are: <br><br> **None** <br><br> **ReadOnly** <br><br> **ReadWrite** <br><br> Default: **None for Standard storage. ReadOnly for Premium storage**"
},
"writeAcceleratorEnabled": {
"type": "boolean",
"description": "Specifies whether writeAccelerator should be enabled or disabled on the disk."
},
"createOption": {
"$ref": "#/definitions/CreateOption",
"description": "The create option."
Expand Down

0 comments on commit 66a4190

Please sign in to comment.