|
6 | 6 | from SoftLayer.CLI import environment |
7 | 7 | from SoftLayer.CLI import exceptions |
8 | 8 |
|
| 9 | +MULTIPLE = '(Multiple allowed)' |
| 10 | + |
9 | 11 |
|
10 | 12 | @click.command(cls=SoftLayer.CLI.command.SLCommand, ) |
11 | 13 | @click.argument('volume_id') |
12 | 14 | @click.option('--hardware-id', '-h', multiple=True, |
13 | | - help='The id of one SoftLayer_Hardware to authorize') |
| 15 | + help='The id of one SoftLayer_Hardware to authorize ' + MULTIPLE) |
14 | 16 | @click.option('--virtual-id', '-v', multiple=True, |
15 | | - help='The id of one SoftLayer_Virtual_Guest to authorize') |
| 17 | + help='The id of one SoftLayer_Virtual_Guest to authorize ' + MULTIPLE) |
16 | 18 | @click.option('--ip-address-id', '-i', multiple=True, |
17 | 19 | help='The id of one SoftLayer_Network_Subnet_IpAddress' |
18 | | - ' to authorize') |
| 20 | + ' to authorize ' + MULTIPLE) |
19 | 21 | @click.option('--ip-address', multiple=True, |
20 | | - help='An IP address to authorize') |
| 22 | + help='An IP address to authorize ' + MULTIPLE) |
21 | 23 | @click.option('--subnet-id', '-s', multiple=True, |
22 | | - help='The id of one SoftLayer_Network_Subnet to authorize') |
| 24 | + help='The id of one SoftLayer_Network_Subnet to authorize ' + MULTIPLE) |
23 | 25 | @environment.pass_env |
24 | 26 | def cli(env, volume_id, hardware_id, virtual_id, ip_address_id, |
25 | 27 | ip_address, subnet_id): |
|
0 commit comments