File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
src/managednetworkfabric/azext_managednetworkfabric Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ # --------------------------------------------------------------------------------------------
2+ # Copyright (c) Microsoft Corporation. All rights reserved.
3+ # Licensed under the MIT License. See License.txt in the project root for license information.
4+ # --------------------------------------------------------------------------------------------
5+ from azure .cli .core .breaking_change import (
6+ register_command_group_deprecate ,
7+ register_argument_deprecate ,
8+ register_required_flag_breaking_change ,
9+ )
10+
11+ register_command_group_deprecate (
12+ "networkfabric fabric identity" , hide = True , target_version = "9.0.x"
13+ )
14+ register_required_flag_breaking_change (
15+ "networkfabric device upgrade" , "--version" , target_version = "9.0.x"
16+ )
17+ register_argument_deprecate (
18+ "networkfabric l3domain create" , "--route-prefix-limit" , target_version = "9.0.x"
19+ )
20+ register_argument_deprecate (
21+ "networkfabric l3domain update" , "--route-prefix-limit" , target_version = "9.0.x"
22+ )
You can’t perform that action at this time.
0 commit comments