Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Compute] Fix List VM Extension API name, description updates and other fixes. #3152

Merged
merged 2 commits into from
Jun 2, 2018
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -5153,7 +5153,7 @@
},
"CreateOption": {
"type": "string",
"description": "Specifies how the virtual machine should be created.<br><br> Possible values are:<br><br> **Attach** This value is used when you are using a specialized disk to create the virtual machine.<br><br> **FromImage** 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.",
"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.",
"enum": [
"FromImage",
"Empty",
Expand Down Expand Up @@ -5230,7 +5230,7 @@
},
"createOption": {
"$ref": "#/definitions/CreateOption",
"description": "Specifies how the virtual machine should be created.<br><br> Possible values are:<br><br> **Attach** This value is used when you are using a specialized disk to create the virtual machine.<br><br> **FromImage** 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."
"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."
},
"diskSizeGB": {
"type": "integer",
Expand Down Expand Up @@ -5276,7 +5276,7 @@
},
"createOption": {
"$ref": "#/definitions/CreateOption",
"description": "Specifies how the virtual machine should be created.<br><br> Possible values are:<br><br> **Attach** This value is used when you are using a specialized disk to create the virtual machine.<br><br> **FromImage** 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."
"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."
},
"diskSizeGB": {
"type": "integer",
Expand Down Expand Up @@ -5984,7 +5984,7 @@
"type": "boolean",
"description": "Whether OS upgrades should automatically be applied to scale set instances in a rolling fashion when a newer version of the image becomes available."
},
"autoOSUpgradePolicy":{
"autoOSUpgradePolicy": {
"$ref": "#/definitions/AutoOSUpgradePolicy",
"description": "Configuration parameters used for performing automatic OS Upgrade."
}
Expand Down Expand Up @@ -6341,7 +6341,7 @@
},
"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** 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."
"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."
},
"osType": {
"type": "string",
Expand Down Expand Up @@ -7364,10 +7364,10 @@
"rollbackError" : {
"$ref": "#/definitions/ApiError",
"readOnly": true,
"description": "Error Details if OS rollback failed."
"description": "Error details if OS rollback failed."
}
},
"description": "Information about rollback on failed VM instances after a OS Upgrade operation"
"description": "Information about rollback on failed VM instances after a OS Upgrade operation."
},
"UpgradeOperationHistoryStatus": {
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@
"tags": [
"VirtualMachineExtensions"
],
"operationId": "VirtualMachines_GetExtensions",
"operationId": "VirtualMachineExtensions_List",
"description": "The operation to get all extensions of a Virtual Machine.",
"parameters": [
{
Expand Down Expand Up @@ -5890,7 +5890,7 @@
"type": "boolean",
"description": "Whether OS upgrades should automatically be applied to scale set instances in a rolling fashion when a newer version of the image becomes available."
},
"autoOSUpgradePolicy":{
"autoOSUpgradePolicy": {
"$ref": "#/definitions/AutoOSUpgradePolicy",
"description": "Configuration parameters used for performing automatic OS Upgrade."
}
Expand Down Expand Up @@ -7270,10 +7270,10 @@
"rollbackError" : {
"$ref": "#/definitions/ApiError",
"readOnly": true,
"description": "Error Details if OS rollback failed."
"description": "Error details if OS rollback failed."
}
},
"description": "Information about rollback on failed VM instances after a OS Upgrade operation"
"description": "Information about rollback on failed VM instances after a OS Upgrade operation."
},
"UpgradeOperationHistoryStatus": {
"properties": {
Expand Down
Loading