@@ -129,8 +129,7 @@ EXAMPLES
129129 sfdx force:data:bulk:delete -s MyObject__c -f ./path/to/file.csv
130130```
131131
132- _ See
133- code: [ src/commands/force/data/bulk/delete.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/bulk/delete.ts ) _
132+ _ See code: [ src/commands/force/data/bulk/delete.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/bulk/delete.ts ) _
134133
135134## ` sfdx force:data:bulk:status -i <string> [-b <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
136135
@@ -169,24 +168,13 @@ EXAMPLES
169168 sfdx force:data:bulk:status -i 750xx000000005sAAA -b 751xx000000005nAAA
170169```
171170
172- _ See
173- code: [ src/commands/force/data/bulk/status.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/bulk/status.ts ) _
171+ _ See code: [ src/commands/force/data/bulk/status.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/bulk/status.ts ) _
174172
175173## ` sfdx force:data:bulk:upsert -i <string> -f <filepath> -s <string> [-w <minutes>] [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
176174
177175bulk upsert records from a CSV file
178176
179177```
180- bulk upsert records from a CSV file
181- Inserts or updates records from a CSV file.
182-
183- One job can contain many batches, depending on the length of the CSV file.
184- Returns a job ID and a batch ID. Use these IDs to check job status with data:bulk:status.
185-
186- For information about formatting your CSV file, see "Prepare CSV Files" in the Bulk API Developer Guide.
187-
188- By default, the job runs the batches in parallel. Specify --serial to run them serially.
189-
190178USAGE
191179 $ sfdx force:data:bulk:upsert -i <string> -f <filepath> -s <string> [-w <minutes>] [-r] [-u <string>] [--apiversion
192180 <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
@@ -233,8 +221,7 @@ EXAMPLES
233221 sfdx force:data:bulk:upsert -s MyObject__c -f ./path/to/file.csv -i Id -w 2
234222```
235223
236- _ See
237- code: [ src/commands/force/data/bulk/upsert.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/bulk/upsert.ts ) _
224+ _ See code: [ src/commands/force/data/bulk/upsert.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/bulk/upsert.ts ) _
238225
239226## ` sfdx force:data:record:create -s <string> -v <string> [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
240227
@@ -284,8 +271,7 @@ EXAMPLES
284271 sfdx force:data:record:create -s Account -v "Name=Acme" --perflog --json
285272```
286273
287- _ See
288- code: [ src/commands/force/data/record/create.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/record/create.ts ) _
274+ _ See code: [ src/commands/force/data/record/create.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/record/create.ts ) _
289275
290276## ` sfdx force:data:record:delete -s <string> [-i <id> | -w <string>] [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
291277
@@ -336,8 +322,7 @@ EXAMPLES
336322 sfdx force:data:record:delete -t -s TraceFlag -i 7tf170000009cU6AAI --perflog --json
337323```
338324
339- _ See
340- code: [ src/commands/force/data/record/delete.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/record/delete.ts ) _
325+ _ See code: [ src/commands/force/data/record/delete.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/record/delete.ts ) _
341326
342327## ` sfdx force:data:record:get -s <string> [-i <id> | -w <string>] [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
343328
@@ -389,8 +374,7 @@ EXAMPLES
389374 sfdx force:data:record:get -t -s TraceFlag -i 7tf170000009cUBAAY --perflog --json
390375```
391376
392- _ See
393- code: [ src/commands/force/data/record/get.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/record/get.ts ) _
377+ _ See code: [ src/commands/force/data/record/get.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/record/get.ts ) _
394378
395379## ` sfdx force:data:record:update -s <string> -v <string> [-i <id> | -w <string>] [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
396380
@@ -443,8 +427,7 @@ EXAMPLES
443427 sfdx force:data:record:update -s Account -i 001D000000Kv3dl -v "Name=NewAcme" --perflog --json
444428```
445429
446- _ See
447- code: [ src/commands/force/data/record/update.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/record/update.ts ) _
430+ _ See code: [ src/commands/force/data/record/update.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/record/update.ts ) _
448431
449432## ` sfdx force:data:soql:query -q <string> [-t] [-r human|csv|json] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
450433
@@ -489,8 +472,7 @@ EXAMPLES
489472 sfdx force:data:soql:query -q "SELECT Name FROM ApexTrigger" -t
490473```
491474
492- _ See
493- code: [ src/commands/force/data/soql/query.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/soql/query.ts ) _
475+ _ See code: [ src/commands/force/data/soql/query.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/soql/query.ts ) _
494476
495477## ` sfdx force:data:tree:export -q <string> [-p] [-x <string>] [-d <directory>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
496478
@@ -535,8 +517,7 @@ EXAMPLES
535517 sfdx force:data:tree:export -q <path to file containing soql query> -x export-demo -d /tmp/sfdx-out -p
536518```
537519
538- _ See
539- code: [ src/commands/force/data/tree/export.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/tree/export.ts ) _
520+ _ See code: [ src/commands/force/data/tree/export.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/tree/export.ts ) _
540521
541522## ` sfdx force:data:tree:import [-f <array> | -p <filepath>] [--confighelp] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
542523
@@ -587,13 +568,6 @@ EXAMPLES
587568 sfdx force:data:tree:import -p Account-Contact-plan.json -u me@my.org
588569```
589570
590- <<<<<<< HEAD
591- _ See
592- code: [ src/commands/force/data/tree/import.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.5/src/commands/force/data/tree/import.ts ) _
593- =======
594- _ See
595- code: [ src/commands/force/data/tree/import.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.9/src/commands/force/data/tree/import.ts ) _
596-
597- > > > > > > > main
571+ _ See code: [ src/commands/force/data/tree/import.ts] ( https://github.com/salesforcecli/plugin-data/blob/v0.6.10/src/commands/force/data/tree/import.ts ) _
598572
599573<!-- commandsstop -->
0 commit comments