forked from Azure/azure-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_breaking_change.py
More file actions
17 lines (15 loc) · 1.05 KB
/
_breaking_change.py
File metadata and controls
17 lines (15 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from azure.cli.core.breaking_change import register_default_value_breaking_change
register_default_value_breaking_change(command_name='vm create',
arg='--size',
current_default='Standard_DS1_v2',
new_default='Standard_D2s_v5',
target_version=None)
register_default_value_breaking_change(command_name='vmss create',
arg='--vm-sku',
current_default='Standard_DS1_v2',
new_default='Standard_D2s_v5',
target_version=None)