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 38 39 40 41 42 43
|
"""Assign block storage subnets to the given host id."""
# :license: MIT, see LICENSE for more details.
import click
import SoftLayer
from SoftLayer.CLI import environment
@click.command(cls=SoftLayer.CLI.command.SLCommand, )
@click.argument('access_id', type=int)
@click.option('--subnet-id', multiple=True, type=int,
help="ID of the subnets to assign; e.g.: --subnet-id 1234")
@environment.pass_env
def cli(env, access_id, subnet_id):
"""Assign block storage subnets to the given host id.
EXAMPLE::
slcli block subnets-assign 111111 --subnet-id 222222
slcli block subnets-assign 111111 --subnet-id 222222 --subnet-id 333333
ACCESS_ID is the host_id obtained by: softlayer slcli block access-list <volume_id>
access_id is the host_id obtained by: slcli block access-list <volume_id>
SoftLayer_Account::iscsiisolationdisabled must be False to use this command
"""
try:
subnet_ids = list(subnet_id)
block_manager = SoftLayer.BlockStorageManager(env.client)
assigned_subnets = block_manager.assign_subnets_to_acl(access_id, subnet_ids)
for subnet in assigned_subnets:
message = f"Successfully assigned subnet id: {subnet} to allowed host id: {access_id}"
click.echo(message)
failed_to_assign_subnets = list(set(subnet_ids) - set(assigned_subnets))
for subnet in failed_to_assign_subnets:
message = f"Failed to assign subnet id: {subnet} to allowed host id: {access_id}"
click.echo(message)
except SoftLayer.SoftLayerAPIError as ex:
message = f"Unable to assign subnets.\nReason: {ex.faultString}"
click.echo(message)
|