You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machine-scale-sets/virtual-machine-scale-sets-automatic-upgrade.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: mimckitt
5
5
tags: azure-resource-manager
6
6
ms.service: virtual-machine-scale-sets
7
7
ms.topic: conceptual
8
-
ms.date: 03/18/2020
8
+
ms.date: 04/14/2020
9
9
ms.author: mimckitt
10
10
11
11
---
@@ -104,7 +104,7 @@ GET on `/subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/M
104
104
Once the feature has been registered for your subscription, complete the opt-in process by propagating the change into the Compute resource provider.
105
105
106
106
```
107
-
POST on `/subscriptions/{subscriptionId}/providers/Microsoft.Compute/register?api-version=2019-10-01`
107
+
POST on `/subscriptions/{subscriptionId}/providers/Microsoft.Compute/register?api-version=2019-12-01`
108
108
```
109
109
110
110
### Azure PowerShell
@@ -163,7 +163,7 @@ To configure automatic OS image upgrade, ensure that the *automaticOSUpgradePoli
163
163
The following example describes how to set automatic OS upgrades on a scale set model:
164
164
165
165
```
166
-
PUT or PATCH on `/subscriptions/subscription_id/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/myScaleSet?api-version=2018-10-01`
166
+
PUT or PATCH on `/subscriptions/subscription_id/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/myScaleSet?api-version=2019-12-01`
167
167
```
168
168
169
169
```json
@@ -242,7 +242,7 @@ You can check the history of the most recent OS upgrade performed on your scale
242
242
The following example uses [REST API](/rest/api/compute/virtualmachinescalesets/getosupgradehistory) to check the status for the scale set named *myScaleSet* in the resource group named *myResourceGroup*:
243
243
244
244
```
245
-
GET on `/subscriptions/subscription_id/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/myScaleSet/osUpgradeHistory?api-version=2018-10-01`
245
+
GET on `/subscriptions/subscription_id/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/myScaleSet/osUpgradeHistory?api-version=2019-12-01`
246
246
```
247
247
248
248
The GET call returns properties similar to the following example output:
@@ -302,7 +302,7 @@ You can get the available image versions for automatic OS upgrade supported SKUs
302
302
303
303
### REST API
304
304
```
305
-
GET on `/subscriptions/subscription_id/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions?api-version=2018-10-01`
305
+
GET on `/subscriptions/subscription_id/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions?api-version=2019-12-01`
306
306
```
307
307
308
308
### Azure PowerShell
@@ -327,7 +327,7 @@ For specific cases where you do not want to wait for the orchestrator to apply t
327
327
Use the [Start OS Upgrade](/rest/api/compute/virtualmachinescalesetrollingupgrades/startosupgrade) API call to start a rolling upgrade to move all virtual machine scale set instances to the latest available image OS version. Instances that are already running the latest available OS version are not affected. The following example details how you can start a rolling OS upgrade on a scale set named *myScaleSet* in the resource group named *myResourceGroup*:
328
328
329
329
```
330
-
POST on `/subscriptions/subscription_id/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/myScaleSet/osRollingUpgrade?api-version=2018-10-01`
330
+
POST on `/subscriptions/subscription_id/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/myScaleSet/osRollingUpgrade?api-version=2019-12-01`
0 commit comments