forked from Azure/azure-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
37 lines (27 loc) · 1.26 KB
/
__init__.py
File metadata and controls
37 lines (27 loc) · 1.26 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
37
# --------------------------------------------------------------------------------------------
# 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='azure.cli.command_modules.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 azure.cli.command_modules.migrate.commands \
import load_command_table
load_command_table(self, args)
return self.command_table
def load_arguments(self, command):
from azure.cli.command_modules.migrate._params import load_arguments
load_arguments(self, command)
COMMAND_LOADER_CLS = MigrateCommandsLoader