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 @@ -232,6 +232,34 @@
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.Compute/availabilitySets": {
"get": {
"tags": [
"AvailabilitySets"
],
"operationId": "AvailabilitySets_ListBySubscription",
"description": "Lists all availability sets in a subscription.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/AvailabilitySetListResult"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets": {
"get": {
"tags": [
Expand Down Expand Up @@ -263,7 +291,7 @@
}
},
"x-ms-pageable": {
"nextLinkName": null
"nextLinkName": "nextLink"
}
}
},
Expand Down Expand Up @@ -4280,8 +4308,15 @@
"$ref": "#/definitions/AvailabilitySet"
},
"description": "The list of availability sets"
},
"nextLink": {
"type": "string",
"description": "The URI to fetch the next page of AvailabilitySets. Call ListNext() with this URI to fetch the next page of AvailabilitySets."
}
},
"required": [
"value"
],
"description": "The List Availability Set operation response."
},
"VirtualMachineSize": {
Expand Down Expand Up @@ -5081,10 +5116,11 @@
},
"StorageAccountType": {
"type": "string",
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS.",
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS, Premium_LRS, and StandardSSD_LRS.",
"enum": [
"Standard_LRS",
"Premium_LRS"
"Premium_LRS",
"StandardSSD_LRS"
],
"x-ms-enum": {
"name": "StorageAccountTypes",
Expand All @@ -5095,7 +5131,7 @@
"properties": {
"storageAccountType": {
"$ref": "#/definitions/StorageAccountType",
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS."
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS, Premium_LRS, and StandardSSD_LRS."
}
},
"allOf": [
Expand Down Expand Up @@ -6014,7 +6050,7 @@
},
"storageAccountType": {
"$ref": "#/definitions/StorageAccountType",
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS."
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS, Premium_LRS, and StandardSSD_LRS."
}
},
"required": [
Expand Down Expand Up @@ -6062,7 +6098,7 @@
},
"storageAccountType": {
"$ref": "#/definitions/StorageAccountType",
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS."
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS, Premium_LRS, and StandardSSD_LRS."
}
},
"required": [
Expand Down Expand Up @@ -6267,7 +6303,7 @@
"properties": {
"storageAccountType": {
"$ref": "#/definitions/StorageAccountType",
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS."
"description": "Specifies the storage account type for the managed disk. Possible values are: Standard_LRS, Premium_LRS, and StandardSSD_LRS."
}
},
"description": "Describes the parameters of a ScaleSet managed disk."
Expand Down