-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy path_breaking_change.py
More file actions
22 lines (21 loc) · 993 Bytes
/
_breaking_change.py
File metadata and controls
22 lines (21 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# --------------------------------------------------------------------------------------------
# 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_command_group_deprecate,
# register_argument_deprecate,
# register_required_flag_breaking_change,
# )
# register_command_group_deprecate(
# "networkfabric fabric identity", hide=True, target_version="9.0.x"
# )
# register_required_flag_breaking_change(
# "networkfabric device upgrade", "--version", target_version="9.0.x"
# )
# register_argument_deprecate(
# "networkfabric l3domain create", "--route-prefix-limit", target_version="9.0.x"
# )
# register_argument_deprecate(
# "networkfabric l3domain update", "--route-prefix-limit", target_version="9.0.x"
# )