Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
"description": "Parameters supplied to the Create Availability Set operation."
},
{
"$ref": "../common.json#/parameters/ApiVersionParameter"
"$ref": "./common.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../common.json#/parameters/SubscriptionIdParameter"
"$ref": "./common.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
Expand All @@ -82,7 +82,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../common.json#/definitions/CloudError"
"$ref": "./common.json#/definitions/CloudError"
}
}
},
Expand Down Expand Up @@ -123,10 +123,10 @@
"description": "Parameters supplied to the Update Availability Set operation."
},
{
"$ref": "../common.json#/parameters/ApiVersionParameter"
"$ref": "./common.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../common.json#/parameters/SubscriptionIdParameter"
"$ref": "./common.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
Expand All @@ -139,7 +139,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../common.json#/definitions/CloudError"
"$ref": "./common.json#/definitions/CloudError"
}
}
},
Expand Down Expand Up @@ -174,10 +174,10 @@
"description": "The name of the availability set."
},
{
"$ref": "../common.json#/parameters/ApiVersionParameter"
"$ref": "./common.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../common.json#/parameters/SubscriptionIdParameter"
"$ref": "./common.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
Expand All @@ -190,7 +190,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../common.json#/definitions/CloudError"
"$ref": "./common.json#/definitions/CloudError"
}
}
},
Expand Down Expand Up @@ -225,10 +225,10 @@
"description": "The name of the availability set."
},
{
"$ref": "../common.json#/parameters/ApiVersionParameter"
"$ref": "./common.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../common.json#/parameters/SubscriptionIdParameter"
"$ref": "./common.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
Expand All @@ -241,7 +241,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../common.json#/definitions/CloudError"
"$ref": "./common.json#/definitions/CloudError"
}
}
},
Expand All @@ -264,10 +264,10 @@
"description": "Lists all availability sets in a subscription.",
"parameters": [
{
"$ref": "../common.json#/parameters/ApiVersionParameter"
"$ref": "./common.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../common.json#/parameters/SubscriptionIdParameter"
"$ref": "./common.json#/parameters/SubscriptionIdParameter"
},
{
"name": "$expand",
Expand All @@ -287,7 +287,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../common.json#/definitions/CloudError"
"$ref": "./common.json#/definitions/CloudError"
}
}
},
Expand Down Expand Up @@ -317,10 +317,10 @@
"description": "The name of the resource group."
},
{
"$ref": "../common.json#/parameters/ApiVersionParameter"
"$ref": "./common.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../common.json#/parameters/SubscriptionIdParameter"
"$ref": "./common.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
Expand All @@ -333,7 +333,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../common.json#/definitions/CloudError"
"$ref": "./common.json#/definitions/CloudError"
}
}
},
Expand Down Expand Up @@ -373,10 +373,10 @@
"description": "The name of the availability set."
},
{
"$ref": "../common.json#/parameters/ApiVersionParameter"
"$ref": "./common.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../common.json#/parameters/SubscriptionIdParameter"
"$ref": "./common.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
Expand All @@ -389,7 +389,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../common.json#/definitions/CloudError"
"$ref": "./common.json#/definitions/CloudError"
}
}
},
Expand Down Expand Up @@ -423,12 +423,12 @@
"virtualMachines": {
"type": "array",
"items": {
"$ref": "../common.json#/definitions/SubResource"
"$ref": "./common.json#/definitions/SubResource"
},
"description": "A list of references to all virtual machines in the availability set."
},
"proximityPlacementGroup": {
"$ref": "../common.json#/definitions/SubResource",
"$ref": "./common.json#/definitions/SubResource",
"description": "Specifies information about the proximity placement group that the availability set should be assigned to. <br><br>Minimum api-version: 2018-04-01."
},
"statuses": {
Expand Down Expand Up @@ -468,7 +468,7 @@
},
"allOf": [
{
"$ref": "../common.json#/definitions/Resource"
"$ref": "./common.json#/definitions/Resource"
}
],
"description": "Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see [Availability sets overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). <br><br> For more information on Azure planned maintenance, see [Maintenance and updates for Virtual Machines in Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates) <br><br> Currently, a VM can only be added to availability set at creation time. An existing VM cannot be added to an availability set."
Expand Down
Loading