-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy path_params.py
More file actions
21 lines (17 loc) · 1.26 KB
/
_params.py
File metadata and controls
21 lines (17 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
# --------------------------------------------------------------------------------------------
# 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
def load_arguments(self, _): # pylint: disable=unused-argument
with self.argument_context('stack-hci vmconnect enable') as c:
c.argument('cluster_name', options_list=['--cluster-name', '-n'], help='The name of the cluster.')
c.argument('resource_group', options_list=['--resource-group', '-g'], help='Name of resource group.')
c.argument('vm_name', options_list=['--vm-name'], help='The name of the virtual machine.')
with self.argument_context('stack-hci vmconnect disable') as c:
c.argument('cluster_name', options_list=['--cluster-name', '-n'], help='The name of the cluster.')
c.argument('resource_group', options_list=['--resource-group', '-g'], help='Name of resource group.')
c.argument('vm_name', options_list=['--vm-name'], help='The name of the virtual machine.')