generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d1d8ae
commit d6d2946
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"description": "generate a password for scratch org users\nGenerates and sets a random password for one or more scratch org users. Targets the usernames listed with the --onbehalfof parameter or the --targetusername parameter. Defaults to the defaultusername.\n\nIf you haven’t set a default Dev Hub, or if your scratch org isn’t associated with your default Dev Hub, --targetdevhubusername is required.\n\nTo change the password strength, set the --complexity parameter to a value between 0 and 5. Each value specifies the types of characters used in the generated password: \n\n0 - lower case letters only\n1 - lower case letters and numbers only\n2 - lower case letters and symbols only\n3 - lower and upper case letters and numbers only\n4 - lower and upper case letters and symbols only\n5 - lower and upper case letters and numbers and symbols only \n\nTo see a password that was previously generated, run \"sfdx force:user:display\".", | ||
"examples": [ | ||
"sfdx force:user:password:generate", | ||
"sfdx force:user:password:generate -l 12", | ||
"sfdx force:user:password:generate -c 3", | ||
"sfdx force:user:password:generate -u [email protected] --json", | ||
"sfdx force:user:password:generate -o \"[email protected],[email protected],[email protected]\"" | ||
"$ sfdx force:user:password:generate", | ||
"$ sfdx force:user:password:generate -l 12", | ||
"$ sfdx force:user:password:generate -c 3", | ||
"$ sfdx force:user:password:generate -u [email protected] --json", | ||
"$ sfdx force:user:password:generate -o \"[email protected],[email protected],[email protected]\"" | ||
], | ||
"flags": { | ||
"onBehalfOf": "comma-separated list of usernames or aliases to assign the password to", | ||
|