-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy path__init__.py
More file actions
36 lines (26 loc) · 1.2 KB
/
__init__.py
File metadata and controls
36 lines (26 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# --------------------------------------------------------------------------------------------
# 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 import AzCommandsLoader
from azure.cli.core.profiles import ResourceType
class MigrateCommandsLoader(AzCommandsLoader):
def __init__(self, cli_ctx=None):
from azure.cli.core.commands import CliCommandType
migrate_custom = CliCommandType(
operations_tmpl='azext_migrate.custom#{}',
)
super().__init__(
cli_ctx=cli_ctx,
custom_command_type=migrate_custom,
resource_type=ResourceType.MGMT_MIGRATE
)
def load_command_table(self, args):
from azext_migrate.commands \
import load_command_table
load_command_table(self, args)
return self.command_table
def load_arguments(self, command):
from azext_migrate._params import load_arguments
load_arguments(self, command)
COMMAND_LOADER_CLS = MigrateCommandsLoader