@@ -97,7 +97,7 @@ For more NUT options and examples, see <https://github.com/salesforcecli/cli-plu
97
97
98
98
## ` sf org assign permset `
99
99
100
- Assign a permission set to one or more users of a scratch org.
100
+ Assign a permission set to one or more org users .
101
101
102
102
```
103
103
USAGE
@@ -107,15 +107,16 @@ USAGE
107
107
FLAGS
108
108
-b, --on-behalf-of=<value>... Username or alias to assign the permission set to.
109
109
-n, --name=<value>... (required) Permission set to assign.
110
- -o, --target-org=<value> (required) Scratch org alias or login user.
110
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
111
+ configuration variable is already set.
111
112
--api-version=<value> Override the api version used for api requests made by this command
112
113
113
114
GLOBAL FLAGS
114
115
--flags-dir=<value> Import flag values from a directory.
115
116
--json Format output as json.
116
117
117
118
DESCRIPTION
118
- Assign a permission set to one or more users of a scratch org.
119
+ Assign a permission set to one or more org users .
119
120
120
121
To specify an alias for the --target-org or --on-behalf-of flags, use the CLI username alias, such as the one you set
121
122
with the "alias set" command. Don't use the value of the Alias field of the User Salesforce object for the org user.
@@ -125,24 +126,24 @@ DESCRIPTION
125
126
--on-behalf-of.
126
127
127
128
EXAMPLES
128
- Assign two permission sets called DreamHouse and CloudHouse to original admin user of your default scratch org:
129
+ Assign two permission sets called DreamHouse and CloudHouse to original admin user of your default org:
129
130
130
131
$ sf org assign permset --name DreamHouse --name CloudHouse
131
132
132
- Assign the Dreamhouse permission set to the original admin user of the scratch org with alias "my-scratch":
133
+ Assign the Dreamhouse permission set to the original admin user of the org with alias "my-scratch":
133
134
134
135
$ sf org assign permset --name DreamHouse --target-org my-scratch
135
136
136
- Assign the Dreamhouse permission set to the specified list of users of your default scratch org:
137
+ Assign the Dreamhouse permission set to the specified list of users of your default org:
137
138
138
139
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
139
140
```
140
141
141
- _ See code: [ src/commands/org/assign/permset.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.9 /src/commands/org/assign/permset.ts ) _
142
+ _ See code: [ src/commands/org/assign/permset.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.10 /src/commands/org/assign/permset.ts ) _
142
143
143
144
## ` sf org assign permsetlicense `
144
145
145
- Assign a permission set license to one or more users of a scratch org.
146
+ Assign a permission set license to one or more org users .
146
147
147
148
```
148
149
USAGE
@@ -152,15 +153,16 @@ USAGE
152
153
FLAGS
153
154
-b, --on-behalf-of=<value>... Usernames or alias to assign the permission set license to.
154
155
-n, --name=<value>... (required) Name of the permission set license to assign.
155
- -o, --target-org=<value> (required) Scratch org alias or login user.
156
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
157
+ configuration variable is already set.
156
158
--api-version=<value> Override the api version used for api requests made by this command
157
159
158
160
GLOBAL FLAGS
159
161
--flags-dir=<value> Import flag values from a directory.
160
162
--json Format output as json.
161
163
162
164
DESCRIPTION
163
- Assign a permission set license to one or more users of a scratch org.
165
+ Assign a permission set license to one or more org users .
164
166
165
167
To specify an alias for the --target-org or --on-behalf-of flags, use the CLI username alias, such as the one you set
166
168
with the "alias set" command. Don't use the value of the Alias field of the User Salesforce object for the org user.
@@ -170,21 +172,21 @@ DESCRIPTION
170
172
--on-behalf-of.
171
173
172
174
EXAMPLES
173
- Assign the DreamHouse permission set license to original admin user of your default scratch org:
175
+ Assign the DreamHouse permission set license to original admin user of your default org:
174
176
175
177
$ sf org assign permsetlicense --name DreamHouse
176
178
177
- Assign two permission set licenses to the original admin user of the scratch org with alias "my-scratch":
179
+ Assign two permission set licenses to the original admin user of the org with alias "my-scratch":
178
180
179
181
$ sf org assign permsetlicense --name DreamHouse --name CloudHouse --target-org my-scratch
180
182
181
- Assign the Dreamhouse permission set license to the specified list of users of your default scratch org:
183
+ Assign the Dreamhouse permission set license to the specified list of users of your default org:
182
184
183
185
$ sf org assign permsetlicense --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of \
184
186
user3
185
187
```
186
188
187
- _ See code: [ src/commands/org/assign/permsetlicense.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.9 /src/commands/org/assign/permsetlicense.ts ) _
189
+ _ See code: [ src/commands/org/assign/permsetlicense.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.10 /src/commands/org/assign/permsetlicense.ts ) _
188
190
189
191
## ` sf org create user `
190
192
@@ -292,7 +294,7 @@ FLAG DESCRIPTIONS
292
294
might be different than what you specify in the definition file.
293
295
```
294
296
295
- _ See code: [ src/commands/org/create/user.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.9 /src/commands/org/create/user.ts ) _
297
+ _ See code: [ src/commands/org/create/user.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.10 /src/commands/org/create/user.ts ) _
296
298
297
299
## ` sf org display user `
298
300
@@ -331,7 +333,7 @@ EXAMPLES
331
333
$ sf org display user --target-org me@my.org --json
332
334
```
333
335
334
- _ See code: [ src/commands/org/display/user.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.9 /src/commands/org/display/user.ts ) _
336
+ _ See code: [ src/commands/org/display/user.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.10 /src/commands/org/display/user.ts ) _
335
337
336
338
## ` sf org generate password `
337
339
@@ -398,7 +400,7 @@ EXAMPLES
398
400
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
399
401
```
400
402
401
- _ See code: [ src/commands/org/generate/password.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.9 /src/commands/org/generate/password.ts ) _
403
+ _ See code: [ src/commands/org/generate/password.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.10 /src/commands/org/generate/password.ts ) _
402
404
403
405
## ` sf org list users `
404
406
@@ -436,6 +438,6 @@ EXAMPLES
436
438
$ sf org list users --target-org me@my.org
437
439
```
438
440
439
- _ See code: [ src/commands/org/list/users.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.9 /src/commands/org/list/users.ts ) _
441
+ _ See code: [ src/commands/org/list/users.ts] ( https://github.com/salesforcecli/plugin-user/blob/3.6.10 /src/commands/org/list/users.ts ) _
440
442
441
443
<!-- commandsstop -->
0 commit comments