@salesforce/plugin-data 3.0.1-test.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +102 -102
- package/oclif.lock +192 -241
- package/oclif.manifest.json +155 -155
- package/package.json +9 -13
package/README.md
CHANGED
|
@@ -102,13 +102,13 @@ USAGE
|
|
|
102
102
|
$ sf data create record -o <value> -s <value> -v <value> [--json] [--api-version <value>] [-t]
|
|
103
103
|
|
|
104
104
|
FLAGS
|
|
105
|
-
-o, --target-org=<value>
|
|
106
|
-
-s, --sobject=<value>
|
|
107
|
-
|
|
108
|
-
-t, --use-tooling-api
|
|
109
|
-
-v, --values=<value>
|
|
110
|
-
|
|
111
|
-
|
|
105
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
106
|
+
-s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that you're inserting a record
|
|
107
|
+
into.
|
|
108
|
+
-t, --use-tooling-api Use Tooling API so you can insert a record in a Tooling API object.
|
|
109
|
+
-v, --values=<value> (required) Values for the flags in the form <fieldName>=<value>, separate multiple pairs
|
|
110
|
+
with spaces.
|
|
111
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
112
112
|
|
|
113
113
|
GLOBAL FLAGS
|
|
114
114
|
--json Format output as json.
|
|
@@ -145,7 +145,7 @@ EXAMPLES
|
|
|
145
145
|
TracedEntityId=01p17000000R6bLAAS"
|
|
146
146
|
```
|
|
147
147
|
|
|
148
|
-
_See code: [src/commands/data/create/record.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
148
|
+
_See code: [src/commands/data/create/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/create/record.ts)_
|
|
149
149
|
|
|
150
150
|
## `sf data delete bulk`
|
|
151
151
|
|
|
@@ -156,15 +156,15 @@ USAGE
|
|
|
156
156
|
$ sf data delete bulk -o <value> -f <value> -s <value> [--json] [--api-version <value>] [-w <value> | -a] [--verbose]
|
|
157
157
|
|
|
158
158
|
FLAGS
|
|
159
|
-
-a, --async
|
|
160
|
-
-f, --file=<value>
|
|
161
|
-
-o, --target-org=<value>
|
|
162
|
-
-s, --sobject=<value>
|
|
163
|
-
|
|
164
|
-
-w, --wait=<value>
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
159
|
+
-a, --async Run the command asynchronously.
|
|
160
|
+
-f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
|
|
161
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
162
|
+
-s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
|
|
163
|
+
update or delete records from.
|
|
164
|
+
-w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
|
|
165
|
+
displaying the results.
|
|
166
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
167
|
+
--verbose Print verbose output of failed records if result is available.
|
|
168
168
|
|
|
169
169
|
GLOBAL FLAGS
|
|
170
170
|
--json Format output as json.
|
|
@@ -189,7 +189,7 @@ EXAMPLES
|
|
|
189
189
|
$ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
190
190
|
```
|
|
191
191
|
|
|
192
|
-
_See code: [src/commands/data/delete/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
192
|
+
_See code: [src/commands/data/delete/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/delete/bulk.ts)_
|
|
193
193
|
|
|
194
194
|
## `sf data delete record`
|
|
195
195
|
|
|
@@ -200,13 +200,13 @@ USAGE
|
|
|
200
200
|
$ sf data delete record -o <value> -s <value> [--json] [--api-version <value>] [-i <value>] [-w <value>] [-t]
|
|
201
201
|
|
|
202
202
|
FLAGS
|
|
203
|
-
-i, --record-id=<value>
|
|
204
|
-
-o, --target-org=<value>
|
|
205
|
-
-s, --sobject=<value>
|
|
206
|
-
|
|
207
|
-
-t, --use-tooling-api
|
|
208
|
-
-w, --where=<value>
|
|
209
|
-
|
|
203
|
+
-i, --record-id=<value> ID of the record you’re deleting.
|
|
204
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
205
|
+
-s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that you're deleting a record
|
|
206
|
+
from.
|
|
207
|
+
-t, --use-tooling-api Use Tooling API so you can delete a record from a Tooling API object.
|
|
208
|
+
-w, --where=<value> List of <fieldName>=<value> pairs that identify the record you want to delete.
|
|
209
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
210
210
|
|
|
211
211
|
GLOBAL FLAGS
|
|
212
212
|
--json Format output as json.
|
|
@@ -247,7 +247,7 @@ EXAMPLES
|
|
|
247
247
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
248
248
|
```
|
|
249
249
|
|
|
250
|
-
_See code: [src/commands/data/delete/record.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
250
|
+
_See code: [src/commands/data/delete/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/delete/record.ts)_
|
|
251
251
|
|
|
252
252
|
## `sf data delete resume`
|
|
253
253
|
|
|
@@ -259,12 +259,12 @@ USAGE
|
|
|
259
259
|
<value>]
|
|
260
260
|
|
|
261
261
|
FLAGS
|
|
262
|
-
-i, --job-id=<value>
|
|
263
|
-
-o, --target-org=<value>
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
262
|
+
-i, --job-id=<value> ID of the job you want to resume.
|
|
263
|
+
-o, --target-org=<value> Org alias or username to use for the target org.
|
|
264
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
265
|
+
--use-most-recent Use the ID of the most recently-run bulk job.
|
|
266
|
+
--wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
|
|
267
|
+
displaying the results.
|
|
268
268
|
|
|
269
269
|
GLOBAL FLAGS
|
|
270
270
|
--json Format output as json.
|
|
@@ -284,7 +284,7 @@ EXAMPLES
|
|
|
284
284
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
285
285
|
```
|
|
286
286
|
|
|
287
|
-
_See code: [src/commands/data/delete/resume.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
287
|
+
_See code: [src/commands/data/delete/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/delete/resume.ts)_
|
|
288
288
|
|
|
289
289
|
## `sf data export tree`
|
|
290
290
|
|
|
@@ -295,12 +295,12 @@ USAGE
|
|
|
295
295
|
$ sf data export tree -o <value> -q <value> [--json] [--api-version <value>] [-p] [-x <value>] [-d <value>]
|
|
296
296
|
|
|
297
297
|
FLAGS
|
|
298
|
-
-d, --output-dir=<value>
|
|
299
|
-
-o, --target-org=<value>
|
|
300
|
-
-p, --plan
|
|
301
|
-
-q, --query=<value>
|
|
302
|
-
-x, --prefix=<value>
|
|
303
|
-
|
|
298
|
+
-d, --output-dir=<value> Directory in which to generate the JSON files; default is current directory.
|
|
299
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
300
|
+
-p, --plan Generate multiple sObject tree files and a plan definition file for aggregated import.
|
|
301
|
+
-q, --query=<value> (required) SOQL query, or filepath of a file that contains the query, to retrieve records.
|
|
302
|
+
-x, --prefix=<value> Prefix of generated files.
|
|
303
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
304
304
|
|
|
305
305
|
GLOBAL FLAGS
|
|
306
306
|
--json Format output as json.
|
|
@@ -341,7 +341,7 @@ EXAMPLES
|
|
|
341
341
|
my-scratch
|
|
342
342
|
```
|
|
343
343
|
|
|
344
|
-
_See code: [src/commands/data/export/tree.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
344
|
+
_See code: [src/commands/data/export/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/export/tree.ts)_
|
|
345
345
|
|
|
346
346
|
## `sf data get record`
|
|
347
347
|
|
|
@@ -352,13 +352,13 @@ USAGE
|
|
|
352
352
|
$ sf data get record -o <value> -s <value> [--json] [--api-version <value>] [-i <value>] [-w <value>] [-t]
|
|
353
353
|
|
|
354
354
|
FLAGS
|
|
355
|
-
-i, --record-id=<value>
|
|
356
|
-
-o, --target-org=<value>
|
|
357
|
-
-s, --sobject=<value>
|
|
358
|
-
|
|
359
|
-
-t, --use-tooling-api
|
|
360
|
-
-w, --where=<value>
|
|
361
|
-
|
|
355
|
+
-i, --record-id=<value> ID of the record you’re retrieving.
|
|
356
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
357
|
+
-s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that you're retrieving a record
|
|
358
|
+
from.
|
|
359
|
+
-t, --use-tooling-api Use Tooling API so you can retrieve a record from a Tooling API object.
|
|
360
|
+
-w, --where=<value> List of <fieldName>=<value> pairs that identify the record you want to display.
|
|
361
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
362
362
|
|
|
363
363
|
GLOBAL FLAGS
|
|
364
364
|
--json Format output as json.
|
|
@@ -402,7 +402,7 @@ EXAMPLES
|
|
|
402
402
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
403
403
|
```
|
|
404
404
|
|
|
405
|
-
_See code: [src/commands/data/get/record.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
405
|
+
_See code: [src/commands/data/get/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/get/record.ts)_
|
|
406
406
|
|
|
407
407
|
## `sf data import tree`
|
|
408
408
|
|
|
@@ -413,13 +413,13 @@ USAGE
|
|
|
413
413
|
$ sf data import tree -o <value> [--json] [--api-version <value>] [-f <value> | -p <value>] [--config-help]
|
|
414
414
|
|
|
415
415
|
FLAGS
|
|
416
|
-
-f, --files=<value>...
|
|
417
|
-
|
|
418
|
-
-o, --target-org=<value>
|
|
419
|
-
-p, --plan=<value>
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
416
|
+
-f, --files=<value>... Comma-separated and in-order JSON files that contain the records, in sObject tree format,
|
|
417
|
+
that you want to insert.
|
|
418
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
419
|
+
-p, --plan=<value> Plan definition file to insert multiple data files.
|
|
420
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
421
|
+
--config-help Display schema information for the --plan configuration file to stdout; if you specify this
|
|
422
|
+
flag, all other flags except --json are ignored.
|
|
423
423
|
|
|
424
424
|
GLOBAL FLAGS
|
|
425
425
|
--json Format output as json.
|
|
@@ -452,7 +452,7 @@ EXAMPLES
|
|
|
452
452
|
$ sf data import tree --plan Account-Contact-plan.json
|
|
453
453
|
```
|
|
454
454
|
|
|
455
|
-
_See code: [src/commands/data/import/tree.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
455
|
+
_See code: [src/commands/data/import/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/import/tree.ts)_
|
|
456
456
|
|
|
457
457
|
## `sf data query`
|
|
458
458
|
|
|
@@ -472,9 +472,9 @@ FLAGS
|
|
|
472
472
|
<options: human|json|csv>
|
|
473
473
|
-t, --use-tooling-api Use Tooling API so you can run queries on Tooling API objects.
|
|
474
474
|
-w, --wait=<value> Time to wait for the command to finish, in minutes.
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
475
|
+
--all-rows Include deleted records. By default, deleted records are not returned.
|
|
476
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
477
|
+
--async Use Bulk API 2.0, but don't wait for the job to complete.
|
|
478
478
|
|
|
479
479
|
GLOBAL FLAGS
|
|
480
480
|
--json Format output as json.
|
|
@@ -514,7 +514,7 @@ EXAMPLES
|
|
|
514
514
|
$ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
|
|
515
515
|
```
|
|
516
516
|
|
|
517
|
-
_See code: [src/commands/data/query.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
517
|
+
_See code: [src/commands/data/query.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/query.ts)_
|
|
518
518
|
|
|
519
519
|
## `sf data query resume`
|
|
520
520
|
|
|
@@ -530,8 +530,8 @@ FLAGS
|
|
|
530
530
|
-o, --target-org=<value> Org alias or username to use for the target org.
|
|
531
531
|
-r, --result-format=<option> [default: human] Format to display the results; the --json flag overrides this flag.
|
|
532
532
|
<options: human|json|csv>
|
|
533
|
-
|
|
534
|
-
|
|
533
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
534
|
+
--use-most-recent Use the most recent bulk query ID from cache.
|
|
535
535
|
|
|
536
536
|
GLOBAL FLAGS
|
|
537
537
|
--json Format output as json.
|
|
@@ -550,7 +550,7 @@ EXAMPLES
|
|
|
550
550
|
$ sf data query resume --bulk-query-id 7500x000005BdFzXXX
|
|
551
551
|
```
|
|
552
552
|
|
|
553
|
-
_See code: [src/commands/data/query/resume.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
553
|
+
_See code: [src/commands/data/query/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/query/resume.ts)_
|
|
554
554
|
|
|
555
555
|
## `sf data resume`
|
|
556
556
|
|
|
@@ -561,10 +561,10 @@ USAGE
|
|
|
561
561
|
$ sf data resume -o <value> -i <value> [--json] [--api-version <value>] [-b <value>]
|
|
562
562
|
|
|
563
563
|
FLAGS
|
|
564
|
-
-b, --batch-id=<value>
|
|
565
|
-
-i, --job-id=<value>
|
|
566
|
-
-o, --target-org=<value>
|
|
567
|
-
|
|
564
|
+
-b, --batch-id=<value> ID of the batch whose status you want to view; you must also specify the job ID.
|
|
565
|
+
-i, --job-id=<value> (required) ID of the job whose status you want to view.
|
|
566
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
567
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
568
568
|
|
|
569
569
|
GLOBAL FLAGS
|
|
570
570
|
--json Format output as json.
|
|
@@ -585,7 +585,7 @@ EXAMPLES
|
|
|
585
585
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
586
586
|
```
|
|
587
587
|
|
|
588
|
-
_See code: [src/commands/data/resume.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
588
|
+
_See code: [src/commands/data/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/resume.ts)_
|
|
589
589
|
|
|
590
590
|
## `sf data update record`
|
|
591
591
|
|
|
@@ -597,14 +597,14 @@ USAGE
|
|
|
597
597
|
[-t]
|
|
598
598
|
|
|
599
599
|
FLAGS
|
|
600
|
-
-i, --record-id=<value>
|
|
601
|
-
-o, --target-org=<value>
|
|
602
|
-
-s, --sobject=<value>
|
|
603
|
-
|
|
604
|
-
-t, --use-tooling-api
|
|
605
|
-
-v, --values=<value>
|
|
606
|
-
-w, --where=<value>
|
|
607
|
-
|
|
600
|
+
-i, --record-id=<value> ID of the record you’re updating.
|
|
601
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
602
|
+
-s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that contains the record you're
|
|
603
|
+
updating.
|
|
604
|
+
-t, --use-tooling-api Use Tooling API so you can update a record in a Tooling API object.
|
|
605
|
+
-v, --values=<value> (required) Fields that you're updating, in the format of <fieldName>=<value> pairs.
|
|
606
|
+
-w, --where=<value> List of <fieldName>=<value> pairs that identify the record you want to update.
|
|
607
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
608
608
|
|
|
609
609
|
GLOBAL FLAGS
|
|
610
610
|
--json Format output as json.
|
|
@@ -645,7 +645,7 @@ EXAMPLES
|
|
|
645
645
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
646
646
|
```
|
|
647
647
|
|
|
648
|
-
_See code: [src/commands/data/update/record.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
648
|
+
_See code: [src/commands/data/update/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/update/record.ts)_
|
|
649
649
|
|
|
650
650
|
## `sf data upsert bulk`
|
|
651
651
|
|
|
@@ -665,8 +665,8 @@ FLAGS
|
|
|
665
665
|
update or delete records from.
|
|
666
666
|
-w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
|
|
667
667
|
displaying the results.
|
|
668
|
-
|
|
669
|
-
|
|
668
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
669
|
+
--verbose Print verbose output of failed records if result is available.
|
|
670
670
|
|
|
671
671
|
GLOBAL FLAGS
|
|
672
672
|
--json Format output as json.
|
|
@@ -696,7 +696,7 @@ EXAMPLES
|
|
|
696
696
|
my-scratch
|
|
697
697
|
```
|
|
698
698
|
|
|
699
|
-
_See code: [src/commands/data/upsert/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
699
|
+
_See code: [src/commands/data/upsert/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/upsert/bulk.ts)_
|
|
700
700
|
|
|
701
701
|
## `sf data upsert resume`
|
|
702
702
|
|
|
@@ -708,12 +708,12 @@ USAGE
|
|
|
708
708
|
<value>]
|
|
709
709
|
|
|
710
710
|
FLAGS
|
|
711
|
-
-i, --job-id=<value>
|
|
712
|
-
-o, --target-org=<value>
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
711
|
+
-i, --job-id=<value> ID of the job you want to resume.
|
|
712
|
+
-o, --target-org=<value> Org alias or username to use for the target org.
|
|
713
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
714
|
+
--use-most-recent Use the ID of the most recently-run bulk job.
|
|
715
|
+
--wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
|
|
716
|
+
displaying the results.
|
|
717
717
|
|
|
718
718
|
GLOBAL FLAGS
|
|
719
719
|
--json Format output as json.
|
|
@@ -733,7 +733,7 @@ EXAMPLES
|
|
|
733
733
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
734
734
|
```
|
|
735
735
|
|
|
736
|
-
_See code: [src/commands/data/upsert/resume.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
736
|
+
_See code: [src/commands/data/upsert/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/upsert/resume.ts)_
|
|
737
737
|
|
|
738
738
|
## `sf force data bulk delete`
|
|
739
739
|
|
|
@@ -744,13 +744,13 @@ USAGE
|
|
|
744
744
|
$ sf force data bulk delete -o <value> -f <value> -s <value> [--json] [--api-version <value>] [-w <value>]
|
|
745
745
|
|
|
746
746
|
FLAGS
|
|
747
|
-
-f, --file=<value>
|
|
748
|
-
-o, --target-org=<value>
|
|
749
|
-
-s, --sobject=<value>
|
|
750
|
-
|
|
751
|
-
-w, --wait=<value>
|
|
752
|
-
|
|
753
|
-
|
|
747
|
+
-f, --file=<value> (required) CSV file that contains the IDs of the records to delete.
|
|
748
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
749
|
+
-s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
|
|
750
|
+
delete records from.
|
|
751
|
+
-w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
|
|
752
|
+
displaying the results.
|
|
753
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
754
754
|
|
|
755
755
|
GLOBAL FLAGS
|
|
756
756
|
--json Format output as json.
|
|
@@ -777,7 +777,7 @@ EXAMPLES
|
|
|
777
777
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
778
778
|
```
|
|
779
779
|
|
|
780
|
-
_See code: [src/commands/force/data/bulk/delete.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
780
|
+
_See code: [src/commands/force/data/bulk/delete.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/force/data/bulk/delete.ts)_
|
|
781
781
|
|
|
782
782
|
## `sf force data bulk status`
|
|
783
783
|
|
|
@@ -788,10 +788,10 @@ USAGE
|
|
|
788
788
|
$ sf force data bulk status -o <value> -i <value> [--json] [--api-version <value>] [-b <value>]
|
|
789
789
|
|
|
790
790
|
FLAGS
|
|
791
|
-
-b, --batch-id=<value>
|
|
792
|
-
-i, --job-id=<value>
|
|
793
|
-
-o, --target-org=<value>
|
|
794
|
-
|
|
791
|
+
-b, --batch-id=<value> ID of the batch whose status you want to view; you must also specify the job ID.
|
|
792
|
+
-i, --job-id=<value> (required) ID of the job whose status you want to view.
|
|
793
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
794
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
795
795
|
|
|
796
796
|
GLOBAL FLAGS
|
|
797
797
|
--json Format output as json.
|
|
@@ -812,7 +812,7 @@ EXAMPLES
|
|
|
812
812
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
813
813
|
```
|
|
814
814
|
|
|
815
|
-
_See code: [src/commands/force/data/bulk/status.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
815
|
+
_See code: [src/commands/force/data/bulk/status.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/force/data/bulk/status.ts)_
|
|
816
816
|
|
|
817
817
|
## `sf force data bulk upsert`
|
|
818
818
|
|
|
@@ -832,7 +832,7 @@ FLAGS
|
|
|
832
832
|
upsert records to.
|
|
833
833
|
-w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
|
|
834
834
|
displaying the results.
|
|
835
|
-
|
|
835
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
836
836
|
|
|
837
837
|
GLOBAL FLAGS
|
|
838
838
|
--json Format output as json.
|
|
@@ -868,6 +868,6 @@ EXAMPLES
|
|
|
868
868
|
--target-org my-scratch
|
|
869
869
|
```
|
|
870
870
|
|
|
871
|
-
_See code: [src/commands/force/data/bulk/upsert.ts](https://github.com/salesforcecli/plugin-data/blob/
|
|
871
|
+
_See code: [src/commands/force/data/bulk/upsert.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/force/data/bulk/upsert.ts)_
|
|
872
872
|
|
|
873
873
|
<!-- commandsstop -->
|