We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f54926 commit 67cfb70Copy full SHA for 67cfb70
SoftLayer/CLI/block/access/password.py
@@ -7,12 +7,12 @@
7
8
9
@click.command()
10
-@click.argument('access_id', help="allowed_host_id for the password you want to change")
+@click.argument('access_id', "")
11
@click.option('--password', '-p', multiple=False,
12
help='Password you want to set, this command will fail if the password is not strong')
13
@environment.pass_env
14
def cli(env, access_id, password):
15
- """Modifies a password for a volume's access"""
+ """Modifies a password for a volume's access, requires the allowed_host_id for the password you want to change"""
16
block_manager = SoftLayer.BlockStorageManager(env.client)
17
18
result = block_manager.set_credential_password(access_id=access_id, password=password)
0 commit comments