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 e61c34b commit d8f0b82Copy full SHA for d8f0b82
SoftLayer/CLI/block/access/password.py
@@ -12,7 +12,11 @@
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, requires the allowed_host_id for the password you want to change"""
+ """Changes a password for a volume's access.
16
+
17
+ access id is the allowed_host_id from slcli block access-list
18
+ """
19
20
block_manager = SoftLayer.BlockStorageManager(env.client)
21
22
result = block_manager.set_credential_password(access_id=access_id, password=password)
0 commit comments