-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathcommands.py
More file actions
26 lines (20 loc) · 1.36 KB
/
commands.py
File metadata and controls
26 lines (20 loc) · 1.36 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
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------
# pylint: disable=too-many-lines
# pylint: disable=too-many-statements
# from azure.cli.core.commands import CliCommandType
def load_command_table(self, _): # pylint: disable=unused-argument
with self.command_group('stack-hci cluster'):
from azext_stack_hci.custom import ClusterList, ClusterCreate, IdentityAssign, IdentityRemove
self.command_table['stack-hci cluster list'] = ClusterList(loader=self)
self.command_table['stack-hci cluster create'] = ClusterCreate(loader=self)
self.command_table['stack-hci cluster identity assign'] = IdentityAssign(loader=self)
self.command_table['stack-hci cluster identity remove'] = IdentityRemove(loader=self)
with self.command_group('stack-hci vmconnect'):
from azext_stack_hci.custom import VmConnectEnable, VmConnectDisable
self.command_table['stack-hci vmconnect enable'] = VmConnectEnable(loader=self)
self.command_table['stack-hci vmconnect disable'] = VmConnectDisable(loader=self)