@@ -177,6 +177,10 @@ EXAMPLES
177177 $ sf org create sandbox --source-sandbox-name ExistingSandbox --name NewClonedSandbox --target-org prodOrg \
178178 --alias MyDevSandbox --set-default --wait 30
179179
180+ Clone the existing sandbox with ID "0GQB0000000TVobOAG" and do not wait.
181+
182+ $ sf org create sandbox --source-id 0GQB0000000TVobOAG --name SbxClone --target-org prodOrg --async
183+
180184FLAG DESCRIPTIONS
181185 -a, --alias=<value> Alias for the sandbox org.
182186
@@ -228,8 +232,9 @@ FLAG DESCRIPTIONS
228232
229233 --source-id=<value> ID of the sandbox org to clone.
230234
231- The value of --source-id must be an existing sandbox. The existing sandbox, and the new sandbox specified with the
232- --name flag, must both be associated with the production org (--target-org) that contains the sandbox licenses.
235+ The value of --source-id must be an existing sandbox (SandboxInfo.Id). The existing sandbox, and the new sandbox
236+ specified with the --name flag, must both be associated with the production org (--target-org) that contains the
237+ sandbox licenses.
233238
234239 You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
235240
@@ -242,7 +247,7 @@ FLAG DESCRIPTIONS
242247 You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
243248```
244249
245- _ See code: [ src/commands/org/create/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/create/sandbox.ts ) _
250+ _ See code: [ src/commands/org/create/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/create/sandbox.ts ) _
246251
247252## ` sf org create scratch `
248253
@@ -424,7 +429,7 @@ FLAG DESCRIPTIONS
424429 Omit this flag to have Salesforce generate a unique username for your org.
425430```
426431
427- _ See code: [ src/commands/org/create/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/create/scratch.ts ) _
432+ _ See code: [ src/commands/org/create/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/create/scratch.ts ) _
428433
429434## ` sf org delete sandbox `
430435
@@ -470,7 +475,7 @@ EXAMPLES
470475 $ sf org delete sandbox --target-org my-sandbox --no-prompt
471476```
472477
473- _ See code: [ src/commands/org/delete/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/delete/sandbox.ts ) _
478+ _ See code: [ src/commands/org/delete/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/delete/sandbox.ts ) _
474479
475480## ` sf org delete scratch `
476481
@@ -514,7 +519,7 @@ EXAMPLES
514519 $ sf org delete scratch --target-org my-scratch-org --no-prompt
515520```
516521
517- _ See code: [ src/commands/org/delete/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/delete/scratch.ts ) _
522+ _ See code: [ src/commands/org/delete/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/delete/scratch.ts ) _
518523
519524## ` sf org disable tracking `
520525
@@ -553,7 +558,7 @@ EXAMPLES
553558 $ sf org disable tracking
554559```
555560
556- _ See code: [ src/commands/org/disable/tracking.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/disable/tracking.ts ) _
561+ _ See code: [ src/commands/org/disable/tracking.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/disable/tracking.ts ) _
557562
558563## ` sf org display `
559564
@@ -598,7 +603,7 @@ EXAMPLES
598603 $ sf org display --target-org TestOrg1 --verbose
599604```
600605
601- _ See code: [ src/commands/org/display.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/display.ts ) _
606+ _ See code: [ src/commands/org/display.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/display.ts ) _
602607
603608## ` sf org enable tracking `
604609
@@ -640,7 +645,7 @@ EXAMPLES
640645 $ sf org enable tracking
641646```
642647
643- _ See code: [ src/commands/org/enable/tracking.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/enable/tracking.ts ) _
648+ _ See code: [ src/commands/org/enable/tracking.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/enable/tracking.ts ) _
644649
645650## ` sf org list `
646651
@@ -679,7 +684,7 @@ EXAMPLES
679684 $ sf org list --clean
680685```
681686
682- _ See code: [ src/commands/org/list.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/list.ts ) _
687+ _ See code: [ src/commands/org/list.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/list.ts ) _
683688
684689## ` sf org list metadata `
685690
@@ -746,7 +751,7 @@ FLAG DESCRIPTIONS
746751 Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
747752```
748753
749- _ See code: [ src/commands/org/list/metadata.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/list/metadata.ts ) _
754+ _ See code: [ src/commands/org/list/metadata.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/list/metadata.ts ) _
750755
751756## ` sf org list metadata-types `
752757
@@ -801,7 +806,7 @@ FLAG DESCRIPTIONS
801806 Override the api version used for api requests made by this command
802807```
803808
804- _ See code: [ src/commands/org/list/metadata-types.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/list/metadata-types.ts ) _
809+ _ See code: [ src/commands/org/list/metadata-types.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/list/metadata-types.ts ) _
805810
806811## ` sf org open `
807812
@@ -877,7 +882,7 @@ EXAMPLES
877882 $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
878883```
879884
880- _ See code: [ src/commands/org/open.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/open.ts ) _
885+ _ See code: [ src/commands/org/open.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/open.ts ) _
881886
882887## ` sf org open agent `
883888
@@ -928,7 +933,7 @@ EXAMPLES
928933 $ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
929934```
930935
931- _ See code: [ src/commands/org/open/agent.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/open/agent.ts ) _
936+ _ See code: [ src/commands/org/open/agent.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/open/agent.ts ) _
932937
933938## ` sf org refresh sandbox `
934939
@@ -1031,7 +1036,7 @@ FLAG DESCRIPTIONS
10311036 You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
10321037```
10331038
1034- _ See code: [ src/commands/org/refresh/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/refresh/sandbox.ts ) _
1039+ _ See code: [ src/commands/org/refresh/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/refresh/sandbox.ts ) _
10351040
10361041## ` sf org resume sandbox `
10371042
@@ -1094,7 +1099,7 @@ FLAG DESCRIPTIONS
10941099 returns the job ID. To resume checking the sandbox creation, rerun this command.
10951100```
10961101
1097- _ See code: [ src/commands/org/resume/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/resume/sandbox.ts ) _
1102+ _ See code: [ src/commands/org/resume/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/resume/sandbox.ts ) _
10981103
10991104## ` sf org resume scratch `
11001105
@@ -1147,6 +1152,6 @@ FLAG DESCRIPTIONS
11471152 returns the job ID. To resume checking the scratch creation, rerun this command.
11481153```
11491154
1150- _ See code: [ src/commands/org/resume/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.8.5 /src/commands/org/resume/scratch.ts ) _
1155+ _ See code: [ src/commands/org/resume/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/5.9.0 /src/commands/org/resume/scratch.ts ) _
11511156
11521157<!-- commandsstop -->
0 commit comments