@@ -106,7 +106,8 @@ FLAGS
106106 -d, --output-dir=<value> Directory for saving the log files.
107107 -i, --log-id=<value> ID of the specific log to display.
108108 -n, --number=<value> Number of the most recent logs to display.
109- -o, --target-org=<value> (required) Username or alias of the target org.
109+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
110+ configuration variable is already set.
110111 --api-version=<value> Override the api version used for api requests made by this command
111112
112113GLOBAL FLAGS
@@ -145,7 +146,7 @@ FLAG DESCRIPTIONS
145146 directory.
146147```
147148
148- _ See code: [ src/commands/apex/get/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.8 /src/commands/apex/get/log.ts ) _
149+ _ See code: [ src/commands/apex/get/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.9 /src/commands/apex/get/log.ts ) _
149150
150151## ` sf apex get test `
151152
@@ -160,7 +161,8 @@ FLAGS
160161 -c, --code-coverage Retrieve code coverage results.
161162 -d, --output-dir=<value> Directory in which to store test result files.
162163 -i, --test-run-id=<value> (required) ID of the test run.
163- -o, --target-org=<value> (required) Username or alias of the target org.
164+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
165+ configuration variable is already set.
164166 -r, --result-format=<option> [default: human] Format of the results.
165167 <options: human|tap|junit|json>
166168 --api-version=<value> Override the api version used for api requests made by this command
@@ -197,7 +199,7 @@ EXAMPLES
197199 me@myorg',
198200```
199201
200- _ See code: [ src/commands/apex/get/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.8 /src/commands/apex/get/test.ts ) _
202+ _ See code: [ src/commands/apex/get/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.9 /src/commands/apex/get/test.ts ) _
201203
202204## ` sf apex list log `
203205
@@ -208,7 +210,8 @@ USAGE
208210 $ sf apex list log -o <value> [--json] [--api-version <value>]
209211
210212FLAGS
211- -o, --target-org=<value> (required) Username or alias of the target org.
213+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
214+ configuration variable is already set.
212215 --api-version=<value> Override the api version used for api requests made by this command
213216
214217GLOBAL FLAGS
@@ -235,7 +238,7 @@ EXAMPLES
235238 $ sf apex list log --target-org [email protected] 236239```
237240
238- _ See code: [ src/commands/apex/list/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.8 /src/commands/apex/list/log.ts ) _
241+ _ See code: [ src/commands/apex/list/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.9 /src/commands/apex/list/log.ts ) _
239242
240243## ` sf apex run `
241244
@@ -247,7 +250,8 @@ USAGE
247250
248251FLAGS
249252 -f, --file=<value> Path to a local file that contains Apex code.
250- -o, --target-org=<value> (required) Username or alias of the target org.
253+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
254+ configuration variable is already set.
251255 --api-version=<value> Override the api version used for api requests made by this command
252256
253257GLOBAL FLAGS
@@ -280,7 +284,7 @@ EXAMPLES
280284 $ sf apex run
281285```
282286
283- _ See code: [ src/commands/apex/run.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.8 /src/commands/apex/run.ts ) _
287+ _ See code: [ src/commands/apex/run.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.9 /src/commands/apex/run.ts ) _
284288
285289## ` sf apex run test `
286290
@@ -298,7 +302,8 @@ FLAGS
298302 -l, --test-level=<option> Level of tests to run; default is RunLocalTests.
299303 <options: RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests>
300304 -n, --class-names=<value>... Apex test class names to run; default is all classes.
301- -o, --target-org=<value> (required) Username or alias of the target org.
305+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
306+ configuration variable is already set.
302307 -r, --result-format=<option> [default: human] Format of the test results.
303308 <options: human|tap|junit|json>
304309 -s, --suite-names=<value>... Apex test suite names to run.
@@ -386,7 +391,7 @@ FLAG DESCRIPTIONS
386391 --tests Test1 --tests Test2
387392```
388393
389- _ See code: [ src/commands/apex/run/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.8 /src/commands/apex/run/test.ts ) _
394+ _ See code: [ src/commands/apex/run/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.9 /src/commands/apex/run/test.ts ) _
390395
391396## ` sf apex tail log `
392397
@@ -399,7 +404,8 @@ USAGE
399404FLAGS
400405 -c, --color Apply default colors to noteworthy log lines.
401406 -d, --debug-level=<value> Debug level to set on the DEVELOPER_LOG trace flag for your user.
402- -o, --target-org=<value> (required) Username or alias of the target org.
407+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
408+ configuration variable is already set.
403409 -s, --skip-trace-flag Skip trace flag setup. Assumes that a trace flag and debug level are fully set up.
404410 --api-version=<value> Override the api version used for api requests made by this command
405411
@@ -425,6 +431,6 @@ EXAMPLES
425431 $ sf apex tail log --color --skip-trace-flag
426432```
427433
428- _ See code: [ src/commands/apex/tail/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.8 /src/commands/apex/tail/log.ts ) _
434+ _ See code: [ src/commands/apex/tail/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.9 /src/commands/apex/tail/log.ts ) _
429435
430436<!-- commandsstop -->
0 commit comments