@salesforce/plugin-data 4.0.9 → 4.0.11
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 +25 -25
- package/oclif.manifest.json +578 -578
- package/package.json +6 -6
package/oclif.manifest.json
CHANGED
|
@@ -775,14 +775,13 @@
|
|
|
775
775
|
"record:create:data"
|
|
776
776
|
]
|
|
777
777
|
},
|
|
778
|
-
"data:
|
|
778
|
+
"data:delete:bulk": {
|
|
779
779
|
"aliases": [],
|
|
780
780
|
"args": {},
|
|
781
|
-
"description": "
|
|
781
|
+
"description": "The CSV file must have only one column (\"Id\") and then the list of record IDs you want to delete, one ID per line.\n\nWhen you execute this command, it starts a job, displays the ID, and then immediately returns control of the terminal to you by default. If you prefer to wait, set the --wait flag to the number of minutes; if it times out, the command outputs the IDs. Use the job ID to check the status of the job with the \"<%= config.bin %> data delete resume\" command.",
|
|
782
782
|
"examples": [
|
|
783
|
-
"
|
|
784
|
-
"
|
|
785
|
-
"Export asynchronously; the command immediately returns a job ID that you then pass to the \"sf data export resume\" command:\n<%= config.bin %> <%= command.id %> --query \"SELECT Id, Name, Account.Name FROM Contact\" --output-file export-accounts.json --result-format json --async"
|
|
783
|
+
"Bulk delete Account records from your default org using the list of IDs in the \"files/delete.csv\" file:\n<%= config.bin %> <%= command.id %> --sobject Account --file files/delete.csv",
|
|
784
|
+
"Bulk delete records from a custom object in an org with alias my-scratch and wait 5 minutes for the command to complete:\n<%= config.bin %> <%= command.id %> --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch"
|
|
786
785
|
],
|
|
787
786
|
"flags": {
|
|
788
787
|
"json": {
|
|
@@ -801,7 +800,12 @@
|
|
|
801
800
|
"type": "option"
|
|
802
801
|
},
|
|
803
802
|
"target-org": {
|
|
803
|
+
"aliases": [
|
|
804
|
+
"targetusername",
|
|
805
|
+
"u"
|
|
806
|
+
],
|
|
804
807
|
"char": "o",
|
|
808
|
+
"deprecateAliases": true,
|
|
805
809
|
"name": "target-org",
|
|
806
810
|
"noCacheDefault": true,
|
|
807
811
|
"required": true,
|
|
@@ -811,163 +815,144 @@
|
|
|
811
815
|
"type": "option"
|
|
812
816
|
},
|
|
813
817
|
"api-version": {
|
|
818
|
+
"aliases": [
|
|
819
|
+
"apiversion"
|
|
820
|
+
],
|
|
821
|
+
"deprecateAliases": true,
|
|
814
822
|
"description": "Override the api version used for api requests made by this command",
|
|
815
823
|
"name": "api-version",
|
|
816
824
|
"hasDynamicHelp": false,
|
|
817
825
|
"multiple": false,
|
|
818
826
|
"type": "option"
|
|
819
827
|
},
|
|
828
|
+
"loglevel": {
|
|
829
|
+
"deprecated": {
|
|
830
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
831
|
+
},
|
|
832
|
+
"hidden": true,
|
|
833
|
+
"name": "loglevel",
|
|
834
|
+
"hasDynamicHelp": false,
|
|
835
|
+
"multiple": false,
|
|
836
|
+
"type": "option"
|
|
837
|
+
},
|
|
838
|
+
"file": {
|
|
839
|
+
"aliases": [
|
|
840
|
+
"csvfile"
|
|
841
|
+
],
|
|
842
|
+
"char": "f",
|
|
843
|
+
"deprecateAliases": true,
|
|
844
|
+
"name": "file",
|
|
845
|
+
"required": true,
|
|
846
|
+
"summary": "CSV file that contains the IDs of the records to update or delete.",
|
|
847
|
+
"hasDynamicHelp": false,
|
|
848
|
+
"multiple": false,
|
|
849
|
+
"type": "option"
|
|
850
|
+
},
|
|
851
|
+
"sobject": {
|
|
852
|
+
"aliases": [
|
|
853
|
+
"sobjecttype"
|
|
854
|
+
],
|
|
855
|
+
"char": "s",
|
|
856
|
+
"deprecateAliases": true,
|
|
857
|
+
"name": "sobject",
|
|
858
|
+
"required": true,
|
|
859
|
+
"summary": "API name of the Salesforce object, either standard or custom, that you want to update or delete records from.",
|
|
860
|
+
"hasDynamicHelp": false,
|
|
861
|
+
"multiple": false,
|
|
862
|
+
"type": "option"
|
|
863
|
+
},
|
|
820
864
|
"wait": {
|
|
821
865
|
"char": "w",
|
|
822
866
|
"exclusive": [
|
|
823
867
|
"async"
|
|
824
868
|
],
|
|
825
869
|
"name": "wait",
|
|
826
|
-
"summary": "
|
|
870
|
+
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
871
|
+
"default": "0 minutes",
|
|
827
872
|
"hasDynamicHelp": true,
|
|
828
|
-
"helpValue": "<minutes>",
|
|
829
873
|
"multiple": false,
|
|
830
874
|
"type": "option"
|
|
831
875
|
},
|
|
832
876
|
"async": {
|
|
877
|
+
"char": "a",
|
|
833
878
|
"exclusive": [
|
|
834
879
|
"wait"
|
|
835
880
|
],
|
|
836
881
|
"name": "async",
|
|
837
|
-
"summary": "
|
|
882
|
+
"summary": "Run the command asynchronously.",
|
|
838
883
|
"allowNo": false,
|
|
839
884
|
"type": "boolean"
|
|
840
885
|
},
|
|
841
|
-
"
|
|
842
|
-
"
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
"
|
|
847
|
-
"summary": "SOQL query to execute.",
|
|
848
|
-
"hasDynamicHelp": false,
|
|
849
|
-
"multiple": false,
|
|
850
|
-
"type": "option"
|
|
851
|
-
},
|
|
852
|
-
"query-file": {
|
|
853
|
-
"exclusive": [
|
|
854
|
-
"query"
|
|
855
|
-
],
|
|
856
|
-
"name": "query-file",
|
|
857
|
-
"summary": "File that contains the SOQL query.",
|
|
858
|
-
"hasDynamicHelp": false,
|
|
859
|
-
"multiple": false,
|
|
860
|
-
"type": "option"
|
|
861
|
-
},
|
|
862
|
-
"all-rows": {
|
|
863
|
-
"name": "all-rows",
|
|
864
|
-
"summary": "Include records that have been soft-deleted due to a merge or delete. By default, deleted records are not returned.",
|
|
886
|
+
"verbose": {
|
|
887
|
+
"deprecated": {
|
|
888
|
+
"message": "The --verbose flag is deprecated and will be removed after March 2025, use \"sf data bulk results\" to get job results instead."
|
|
889
|
+
},
|
|
890
|
+
"name": "verbose",
|
|
891
|
+
"summary": "Print verbose output of failed records if result is available.",
|
|
865
892
|
"allowNo": false,
|
|
866
893
|
"type": "boolean"
|
|
867
894
|
},
|
|
868
|
-
"output-file": {
|
|
869
|
-
"name": "output-file",
|
|
870
|
-
"required": true,
|
|
871
|
-
"summary": "File where records are written.",
|
|
872
|
-
"hasDynamicHelp": false,
|
|
873
|
-
"multiple": false,
|
|
874
|
-
"type": "option"
|
|
875
|
-
},
|
|
876
|
-
"result-format": {
|
|
877
|
-
"char": "r",
|
|
878
|
-
"name": "result-format",
|
|
879
|
-
"required": true,
|
|
880
|
-
"summary": "Format to write the results.",
|
|
881
|
-
"default": "csv",
|
|
882
|
-
"hasDynamicHelp": false,
|
|
883
|
-
"multiple": false,
|
|
884
|
-
"options": [
|
|
885
|
-
"csv",
|
|
886
|
-
"json"
|
|
887
|
-
],
|
|
888
|
-
"type": "option"
|
|
889
|
-
},
|
|
890
|
-
"column-delimiter": {
|
|
891
|
-
"name": "column-delimiter",
|
|
892
|
-
"relationships": [
|
|
893
|
-
{
|
|
894
|
-
"type": "some",
|
|
895
|
-
"flags": [
|
|
896
|
-
{
|
|
897
|
-
"name": "result-format"
|
|
898
|
-
}
|
|
899
|
-
]
|
|
900
|
-
}
|
|
901
|
-
],
|
|
902
|
-
"summary": "Column delimiter to be used when writing CSV output. Default is COMMA.",
|
|
903
|
-
"hasDynamicHelp": false,
|
|
904
|
-
"multiple": false,
|
|
905
|
-
"options": [
|
|
906
|
-
"BACKQUOTE",
|
|
907
|
-
"CARET",
|
|
908
|
-
"COMMA",
|
|
909
|
-
"PIPE",
|
|
910
|
-
"SEMICOLON",
|
|
911
|
-
"TAB"
|
|
912
|
-
],
|
|
913
|
-
"type": "option"
|
|
914
|
-
},
|
|
915
895
|
"line-ending": {
|
|
916
|
-
"
|
|
917
|
-
|
|
918
|
-
{
|
|
919
|
-
"type": "some",
|
|
920
|
-
"flags": [
|
|
921
|
-
{
|
|
922
|
-
"name": "result-format"
|
|
923
|
-
}
|
|
924
|
-
]
|
|
925
|
-
}
|
|
896
|
+
"dependsOn": [
|
|
897
|
+
"file"
|
|
926
898
|
],
|
|
927
|
-
"
|
|
899
|
+
"name": "line-ending",
|
|
900
|
+
"summary": "Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and Linux it's `LF`.",
|
|
928
901
|
"hasDynamicHelp": false,
|
|
929
902
|
"multiple": false,
|
|
930
903
|
"options": [
|
|
931
|
-
"
|
|
932
|
-
"
|
|
904
|
+
"CRLF",
|
|
905
|
+
"LF"
|
|
933
906
|
],
|
|
934
907
|
"type": "option"
|
|
908
|
+
},
|
|
909
|
+
"hard-delete": {
|
|
910
|
+
"description": "You must have the \"Bulk API Hard Delete\" system permission to use this flag. The permission is disabled by default and can be enabled only by a system administrator.",
|
|
911
|
+
"name": "hard-delete",
|
|
912
|
+
"summary": "Mark the records as immediately eligible for deletion by your org. If you don't specify this flag, the deleted records go into the Recycle Bin.",
|
|
913
|
+
"allowNo": false,
|
|
914
|
+
"type": "boolean"
|
|
935
915
|
}
|
|
936
916
|
},
|
|
937
917
|
"hasDynamicHelp": true,
|
|
938
918
|
"hiddenAliases": [],
|
|
939
|
-
"id": "data:
|
|
919
|
+
"id": "data:delete:bulk",
|
|
940
920
|
"pluginAlias": "@salesforce/plugin-data",
|
|
941
921
|
"pluginName": "@salesforce/plugin-data",
|
|
942
922
|
"pluginType": "core",
|
|
943
923
|
"strict": true,
|
|
944
|
-
"summary": "Bulk
|
|
924
|
+
"summary": "Bulk delete records from an org using a CSV file. Uses Bulk API 2.0.",
|
|
945
925
|
"enableJsonFlag": true,
|
|
946
926
|
"isESM": true,
|
|
947
927
|
"relativePath": [
|
|
948
928
|
"lib",
|
|
949
929
|
"commands",
|
|
950
930
|
"data",
|
|
951
|
-
"
|
|
931
|
+
"delete",
|
|
952
932
|
"bulk.js"
|
|
953
933
|
],
|
|
954
934
|
"aliasPermutations": [],
|
|
955
935
|
"permutations": [
|
|
956
|
-
"data:
|
|
957
|
-
"
|
|
958
|
-
"
|
|
959
|
-
"data:bulk:
|
|
960
|
-
"bulk:data:
|
|
961
|
-
"bulk:
|
|
936
|
+
"data:delete:bulk",
|
|
937
|
+
"delete:data:bulk",
|
|
938
|
+
"delete:bulk:data",
|
|
939
|
+
"data:bulk:delete",
|
|
940
|
+
"bulk:data:delete",
|
|
941
|
+
"bulk:delete:data"
|
|
962
942
|
]
|
|
963
943
|
},
|
|
964
|
-
"data:
|
|
965
|
-
"aliases": [
|
|
944
|
+
"data:delete:record": {
|
|
945
|
+
"aliases": [
|
|
946
|
+
"force:data:record:delete"
|
|
947
|
+
],
|
|
966
948
|
"args": {},
|
|
967
|
-
"
|
|
949
|
+
"deprecateAliases": true,
|
|
950
|
+
"description": "Specify the record you want to delete with either its ID or with a list of field-value pairs that identify the record. If your list of fields identifies more than one record, the delete fails; the error displays how many records were found.\n\nWhen specifying field-value pairs, use the format <fieldName>=<value>. Enclose all field-value pairs in one set of double quotation marks, delimited by spaces. Enclose values that contain spaces in single quotes.\n\nThis command deletes a record from Salesforce objects by default. Use the --use-tooling-api flag to delete from a Tooling API object.",
|
|
968
951
|
"examples": [
|
|
969
|
-
"
|
|
970
|
-
"
|
|
952
|
+
"Delete a record from Account with the specified (truncated) ID:\n<%= config.bin %> <%= command.id %> --sobject Account --record-id 00180XX",
|
|
953
|
+
"Delete a record from Account whose name equals \"Acme\":\n<%= config.bin %> <%= command.id %> --sobject Account --where \"Name=Acme\"",
|
|
954
|
+
"Delete a record from Account identified with two field values, one that contains a space; the command uses the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --sobject Account --where \"Name='Universal Containers' Phone='(123) 456-7890'\" --target-org myscratch",
|
|
955
|
+
"Delete a record from the Tooling API object TraceFlag with the specified (truncated) ID:\n<%= config.bin %> <%= command.id %> --use-tooling-api --sobject TraceFlag --record-id 7tf8c"
|
|
971
956
|
],
|
|
972
957
|
"flags": {
|
|
973
958
|
"json": {
|
|
@@ -985,66 +970,158 @@
|
|
|
985
970
|
"multiple": false,
|
|
986
971
|
"type": "option"
|
|
987
972
|
},
|
|
988
|
-
"
|
|
989
|
-
"
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
973
|
+
"target-org": {
|
|
974
|
+
"aliases": [
|
|
975
|
+
"targetusername",
|
|
976
|
+
"u"
|
|
977
|
+
],
|
|
978
|
+
"char": "o",
|
|
979
|
+
"deprecateAliases": true,
|
|
980
|
+
"name": "target-org",
|
|
981
|
+
"noCacheDefault": true,
|
|
982
|
+
"required": true,
|
|
983
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
984
|
+
"hasDynamicHelp": true,
|
|
993
985
|
"multiple": false,
|
|
994
986
|
"type": "option"
|
|
995
987
|
},
|
|
996
|
-
"use-most-recent": {
|
|
997
|
-
"name": "use-most-recent",
|
|
998
|
-
"summary": "Use the job ID of the bulk export job that was most recently run.",
|
|
999
|
-
"allowNo": false,
|
|
1000
|
-
"type": "boolean"
|
|
1001
|
-
},
|
|
1002
988
|
"api-version": {
|
|
989
|
+
"aliases": [
|
|
990
|
+
"apiversion"
|
|
991
|
+
],
|
|
992
|
+
"deprecateAliases": true,
|
|
1003
993
|
"description": "Override the api version used for api requests made by this command",
|
|
1004
994
|
"name": "api-version",
|
|
1005
995
|
"hasDynamicHelp": false,
|
|
1006
996
|
"multiple": false,
|
|
1007
997
|
"type": "option"
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
"
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
998
|
+
},
|
|
999
|
+
"loglevel": {
|
|
1000
|
+
"deprecated": {
|
|
1001
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1002
|
+
},
|
|
1003
|
+
"hidden": true,
|
|
1004
|
+
"name": "loglevel",
|
|
1005
|
+
"hasDynamicHelp": false,
|
|
1006
|
+
"multiple": false,
|
|
1007
|
+
"type": "option"
|
|
1008
|
+
},
|
|
1009
|
+
"sobject": {
|
|
1010
|
+
"aliases": [
|
|
1011
|
+
"sobjecttype"
|
|
1012
|
+
],
|
|
1013
|
+
"char": "s",
|
|
1014
|
+
"deprecateAliases": true,
|
|
1015
|
+
"name": "sobject",
|
|
1016
|
+
"required": true,
|
|
1017
|
+
"summary": "API name of the Salesforce or Tooling API object that you're deleting a record from.",
|
|
1018
|
+
"hasDynamicHelp": false,
|
|
1019
|
+
"multiple": false,
|
|
1020
|
+
"type": "option"
|
|
1021
|
+
},
|
|
1022
|
+
"record-id": {
|
|
1023
|
+
"aliases": [
|
|
1024
|
+
"sobjectid"
|
|
1025
|
+
],
|
|
1026
|
+
"char": "i",
|
|
1027
|
+
"deprecateAliases": true,
|
|
1028
|
+
"name": "record-id",
|
|
1029
|
+
"summary": "ID of the record you’re deleting.",
|
|
1030
|
+
"hasDynamicHelp": false,
|
|
1031
|
+
"multiple": false,
|
|
1032
|
+
"type": "option"
|
|
1033
|
+
},
|
|
1034
|
+
"where": {
|
|
1035
|
+
"char": "w",
|
|
1036
|
+
"name": "where",
|
|
1037
|
+
"summary": "List of <fieldName>=<value> pairs that identify the record you want to delete.",
|
|
1038
|
+
"hasDynamicHelp": false,
|
|
1039
|
+
"multiple": false,
|
|
1040
|
+
"type": "option"
|
|
1041
|
+
},
|
|
1042
|
+
"use-tooling-api": {
|
|
1043
|
+
"aliases": [
|
|
1044
|
+
"usetoolingapi"
|
|
1045
|
+
],
|
|
1046
|
+
"char": "t",
|
|
1047
|
+
"deprecateAliases": true,
|
|
1048
|
+
"name": "use-tooling-api",
|
|
1049
|
+
"summary": "Use Tooling API so you can delete a record from a Tooling API object.",
|
|
1050
|
+
"allowNo": false,
|
|
1051
|
+
"type": "boolean"
|
|
1052
|
+
},
|
|
1053
|
+
"perflog": {
|
|
1054
|
+
"deprecated": {
|
|
1055
|
+
"version": "57"
|
|
1056
|
+
},
|
|
1057
|
+
"description": "Gets data on API performance metrics from the server. The data is stored in $HOME/.sfdx/apiPerformanceLog.json.",
|
|
1058
|
+
"hidden": true,
|
|
1059
|
+
"name": "perflog",
|
|
1060
|
+
"summary": "Get API performance data.",
|
|
1061
|
+
"allowNo": false,
|
|
1062
|
+
"type": "boolean"
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
"hasDynamicHelp": true,
|
|
1066
|
+
"hiddenAliases": [],
|
|
1067
|
+
"id": "data:delete:record",
|
|
1068
|
+
"pluginAlias": "@salesforce/plugin-data",
|
|
1069
|
+
"pluginName": "@salesforce/plugin-data",
|
|
1070
|
+
"pluginType": "core",
|
|
1071
|
+
"strict": true,
|
|
1072
|
+
"summary": "Deletes a single record from a Salesforce or Tooling API object.",
|
|
1073
|
+
"enableJsonFlag": true,
|
|
1074
|
+
"isESM": true,
|
|
1075
|
+
"relativePath": [
|
|
1076
|
+
"lib",
|
|
1077
|
+
"commands",
|
|
1078
|
+
"data",
|
|
1079
|
+
"delete",
|
|
1080
|
+
"record.js"
|
|
1040
1081
|
],
|
|
1082
|
+
"aliasPermutations": [
|
|
1083
|
+
"force:data:record:delete",
|
|
1084
|
+
"data:force:record:delete",
|
|
1085
|
+
"data:record:force:delete",
|
|
1086
|
+
"data:record:delete:force",
|
|
1087
|
+
"force:record:data:delete",
|
|
1088
|
+
"record:force:data:delete",
|
|
1089
|
+
"record:data:force:delete",
|
|
1090
|
+
"record:data:delete:force",
|
|
1091
|
+
"force:record:delete:data",
|
|
1092
|
+
"record:force:delete:data",
|
|
1093
|
+
"record:delete:force:data",
|
|
1094
|
+
"record:delete:data:force",
|
|
1095
|
+
"force:data:delete:record",
|
|
1096
|
+
"data:force:delete:record",
|
|
1097
|
+
"data:delete:force:record",
|
|
1098
|
+
"data:delete:record:force",
|
|
1099
|
+
"force:delete:data:record",
|
|
1100
|
+
"delete:force:data:record",
|
|
1101
|
+
"delete:data:force:record",
|
|
1102
|
+
"delete:data:record:force",
|
|
1103
|
+
"force:delete:record:data",
|
|
1104
|
+
"delete:force:record:data",
|
|
1105
|
+
"delete:record:force:data",
|
|
1106
|
+
"delete:record:data:force"
|
|
1107
|
+
],
|
|
1108
|
+
"permutations": [
|
|
1109
|
+
"data:delete:record",
|
|
1110
|
+
"delete:data:record",
|
|
1111
|
+
"delete:record:data",
|
|
1112
|
+
"data:record:delete",
|
|
1113
|
+
"record:data:delete",
|
|
1114
|
+
"record:delete:data"
|
|
1115
|
+
]
|
|
1116
|
+
},
|
|
1117
|
+
"data:delete:resume": {
|
|
1118
|
+
"aliases": [],
|
|
1041
1119
|
"args": {},
|
|
1042
1120
|
"deprecateAliases": true,
|
|
1043
|
-
"description": "
|
|
1121
|
+
"description": "The command uses the job ID returned by the \"<%= config.bin %> data delete bulk\" command or the most recently-run bulk delete job.",
|
|
1044
1122
|
"examples": [
|
|
1045
|
-
"
|
|
1046
|
-
"
|
|
1047
|
-
"Prepend \"export-demo\" before each generated file and generate the files in the \"export-out\" directory; run the command on the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --query query.txt --plan --prefix export-demo --output-dir export-out --target-org my-scratch"
|
|
1123
|
+
"Resume a bulk delete job from your default org using an ID:\n<%= config.bin %> <%= command.id %> --job-id 750xx000000005sAAA",
|
|
1124
|
+
"Resume the most recently run bulk delete job for an org with alias my-scratch:\n<%= config.bin %> <%= command.id %> --use-most-recent --target-org my-scratch"
|
|
1048
1125
|
],
|
|
1049
1126
|
"flags": {
|
|
1050
1127
|
"json": {
|
|
@@ -1071,17 +1148,41 @@
|
|
|
1071
1148
|
"deprecateAliases": true,
|
|
1072
1149
|
"name": "target-org",
|
|
1073
1150
|
"noCacheDefault": true,
|
|
1074
|
-
"
|
|
1075
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1151
|
+
"summary": "Username or alias of the target org. Not required if the \"target-org\" configuration variable is already set.",
|
|
1076
1152
|
"hasDynamicHelp": true,
|
|
1077
1153
|
"multiple": false,
|
|
1078
1154
|
"type": "option"
|
|
1079
1155
|
},
|
|
1080
|
-
"
|
|
1156
|
+
"job-id": {
|
|
1081
1157
|
"aliases": [
|
|
1082
|
-
"
|
|
1158
|
+
"jobid"
|
|
1083
1159
|
],
|
|
1160
|
+
"char": "i",
|
|
1084
1161
|
"deprecateAliases": true,
|
|
1162
|
+
"name": "job-id",
|
|
1163
|
+
"summary": "ID of the job you want to resume.",
|
|
1164
|
+
"hasDynamicHelp": false,
|
|
1165
|
+
"multiple": false,
|
|
1166
|
+
"type": "option"
|
|
1167
|
+
},
|
|
1168
|
+
"use-most-recent": {
|
|
1169
|
+
"exclusive": [
|
|
1170
|
+
"job-id"
|
|
1171
|
+
],
|
|
1172
|
+
"name": "use-most-recent",
|
|
1173
|
+
"summary": "Use the ID of the most recently-run bulk job.",
|
|
1174
|
+
"allowNo": false,
|
|
1175
|
+
"type": "boolean"
|
|
1176
|
+
},
|
|
1177
|
+
"wait": {
|
|
1178
|
+
"name": "wait",
|
|
1179
|
+
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
1180
|
+
"default": "5 minutes",
|
|
1181
|
+
"hasDynamicHelp": true,
|
|
1182
|
+
"multiple": false,
|
|
1183
|
+
"type": "option"
|
|
1184
|
+
},
|
|
1185
|
+
"api-version": {
|
|
1085
1186
|
"description": "Override the api version used for api requests made by this command",
|
|
1086
1187
|
"name": "api-version",
|
|
1087
1188
|
"hasDynamicHelp": false,
|
|
@@ -1097,52 +1198,202 @@
|
|
|
1097
1198
|
"hasDynamicHelp": false,
|
|
1098
1199
|
"multiple": false,
|
|
1099
1200
|
"type": "option"
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
"hasDynamicHelp": true,
|
|
1204
|
+
"hiddenAliases": [],
|
|
1205
|
+
"id": "data:delete:resume",
|
|
1206
|
+
"pluginAlias": "@salesforce/plugin-data",
|
|
1207
|
+
"pluginName": "@salesforce/plugin-data",
|
|
1208
|
+
"pluginType": "core",
|
|
1209
|
+
"strict": true,
|
|
1210
|
+
"summary": "Resume a bulk delete job that you previously started. Uses Bulk API 2.0.",
|
|
1211
|
+
"enableJsonFlag": true,
|
|
1212
|
+
"isESM": true,
|
|
1213
|
+
"relativePath": [
|
|
1214
|
+
"lib",
|
|
1215
|
+
"commands",
|
|
1216
|
+
"data",
|
|
1217
|
+
"delete",
|
|
1218
|
+
"resume.js"
|
|
1219
|
+
],
|
|
1220
|
+
"aliasPermutations": [],
|
|
1221
|
+
"permutations": [
|
|
1222
|
+
"data:delete:resume",
|
|
1223
|
+
"delete:data:resume",
|
|
1224
|
+
"delete:resume:data",
|
|
1225
|
+
"data:resume:delete",
|
|
1226
|
+
"resume:data:delete",
|
|
1227
|
+
"resume:delete:data"
|
|
1228
|
+
]
|
|
1229
|
+
},
|
|
1230
|
+
"data:export:bulk": {
|
|
1231
|
+
"aliases": [],
|
|
1232
|
+
"args": {},
|
|
1233
|
+
"description": "You can use this command to export millions of records from an org, either to migrate data or to back it up.\n\nUse a SOQL query to specify the fields of a standard or custom object that you want to export. Specify the SOQL query either at the command line with the --query flag or read it from a file with the --query-file flag; you can't specify both flags. The --output-file flag is required, which means you can only write the records to a file, in either CSV or JSON format. \n\nBulk exports can take a while, depending on how many records are returned by the SOQL query. If the command times out, or you specified the --async flag, the command displays the job ID. To see the status and get the results of the job, run \"sf data export resume\" and pass the job ID to the --job-id flag.\n\nIMPORTANT: This command uses Bulk API 2.0, which limits the type of SOQL queries you can run. For example, you can't use aggregate functions such as count(). For the complete list of limitations, see the \"SOQL Considerations\" section in the \"Bulk API 2.0 and Bulk API Developer Guide\" (https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm).",
|
|
1234
|
+
"examples": [
|
|
1235
|
+
"Export the Id, Name, and Account.Name fields of the Contact object into a CSV-formatted file; if the export doesn't complete in 10 minutes, the command ends and displays a job ID. Use the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --query \"SELECT Id, Name, Account.Name FROM Contact\" --output-file export-accounts.csv --wait 10 --target-org my-scratch",
|
|
1236
|
+
"Similar to previous example, but use the default org, export the records into a JSON-formatted file, and include records that have been soft deleted:\n<%= config.bin %> <%= command.id %> --query \"SELECT Id, Name, Account.Name FROM Contact\" --output-file export-accounts.json --result-format json --wait 10 --all-rows",
|
|
1237
|
+
"Export asynchronously; the command immediately returns a job ID that you then pass to the \"sf data export resume\" command:\n<%= config.bin %> <%= command.id %> --query \"SELECT Id, Name, Account.Name FROM Contact\" --output-file export-accounts.json --result-format json --async"
|
|
1238
|
+
],
|
|
1239
|
+
"flags": {
|
|
1240
|
+
"json": {
|
|
1241
|
+
"description": "Format output as json.",
|
|
1242
|
+
"helpGroup": "GLOBAL",
|
|
1243
|
+
"name": "json",
|
|
1244
|
+
"allowNo": false,
|
|
1245
|
+
"type": "boolean"
|
|
1246
|
+
},
|
|
1247
|
+
"flags-dir": {
|
|
1248
|
+
"helpGroup": "GLOBAL",
|
|
1249
|
+
"name": "flags-dir",
|
|
1250
|
+
"summary": "Import flag values from a directory.",
|
|
1251
|
+
"hasDynamicHelp": false,
|
|
1252
|
+
"multiple": false,
|
|
1253
|
+
"type": "option"
|
|
1254
|
+
},
|
|
1255
|
+
"target-org": {
|
|
1256
|
+
"char": "o",
|
|
1257
|
+
"name": "target-org",
|
|
1258
|
+
"noCacheDefault": true,
|
|
1259
|
+
"required": true,
|
|
1260
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1261
|
+
"hasDynamicHelp": true,
|
|
1262
|
+
"multiple": false,
|
|
1263
|
+
"type": "option"
|
|
1264
|
+
},
|
|
1265
|
+
"api-version": {
|
|
1266
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1267
|
+
"name": "api-version",
|
|
1268
|
+
"hasDynamicHelp": false,
|
|
1269
|
+
"multiple": false,
|
|
1270
|
+
"type": "option"
|
|
1271
|
+
},
|
|
1272
|
+
"wait": {
|
|
1273
|
+
"char": "w",
|
|
1274
|
+
"exclusive": [
|
|
1275
|
+
"async"
|
|
1276
|
+
],
|
|
1277
|
+
"name": "wait",
|
|
1278
|
+
"summary": "Time to wait for the command to finish, in minutes.",
|
|
1279
|
+
"hasDynamicHelp": true,
|
|
1280
|
+
"helpValue": "<minutes>",
|
|
1281
|
+
"multiple": false,
|
|
1282
|
+
"type": "option"
|
|
1283
|
+
},
|
|
1284
|
+
"async": {
|
|
1285
|
+
"exclusive": [
|
|
1286
|
+
"wait"
|
|
1287
|
+
],
|
|
1288
|
+
"name": "async",
|
|
1289
|
+
"summary": "Don't wait for the job to complete.",
|
|
1290
|
+
"allowNo": false,
|
|
1291
|
+
"type": "boolean"
|
|
1100
1292
|
},
|
|
1101
1293
|
"query": {
|
|
1102
1294
|
"char": "q",
|
|
1295
|
+
"exclusive": [
|
|
1296
|
+
"query-file"
|
|
1297
|
+
],
|
|
1103
1298
|
"name": "query",
|
|
1104
|
-
"
|
|
1105
|
-
"summary": "SOQL query, or filepath of a file that contains the query, to retrieve records.",
|
|
1299
|
+
"summary": "SOQL query to execute.",
|
|
1106
1300
|
"hasDynamicHelp": false,
|
|
1107
|
-
"multiple":
|
|
1301
|
+
"multiple": false,
|
|
1108
1302
|
"type": "option"
|
|
1109
1303
|
},
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1112
|
-
|
|
1113
|
-
|
|
1304
|
+
"query-file": {
|
|
1305
|
+
"exclusive": [
|
|
1306
|
+
"query"
|
|
1307
|
+
],
|
|
1308
|
+
"name": "query-file",
|
|
1309
|
+
"summary": "File that contains the SOQL query.",
|
|
1310
|
+
"hasDynamicHelp": false,
|
|
1311
|
+
"multiple": false,
|
|
1312
|
+
"type": "option"
|
|
1313
|
+
},
|
|
1314
|
+
"all-rows": {
|
|
1315
|
+
"name": "all-rows",
|
|
1316
|
+
"summary": "Include records that have been soft-deleted due to a merge or delete. By default, deleted records are not returned.",
|
|
1114
1317
|
"allowNo": false,
|
|
1115
1318
|
"type": "boolean"
|
|
1116
1319
|
},
|
|
1117
|
-
"
|
|
1118
|
-
"
|
|
1119
|
-
"
|
|
1120
|
-
"summary": "
|
|
1320
|
+
"output-file": {
|
|
1321
|
+
"name": "output-file",
|
|
1322
|
+
"required": true,
|
|
1323
|
+
"summary": "File where records are written.",
|
|
1121
1324
|
"hasDynamicHelp": false,
|
|
1122
1325
|
"multiple": false,
|
|
1123
1326
|
"type": "option"
|
|
1124
1327
|
},
|
|
1125
|
-
"
|
|
1126
|
-
"
|
|
1127
|
-
|
|
1328
|
+
"result-format": {
|
|
1329
|
+
"char": "r",
|
|
1330
|
+
"name": "result-format",
|
|
1331
|
+
"required": true,
|
|
1332
|
+
"summary": "Format to write the results.",
|
|
1333
|
+
"default": "csv",
|
|
1334
|
+
"hasDynamicHelp": false,
|
|
1335
|
+
"multiple": false,
|
|
1336
|
+
"options": [
|
|
1337
|
+
"csv",
|
|
1338
|
+
"json"
|
|
1128
1339
|
],
|
|
1129
|
-
"
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
"
|
|
1340
|
+
"type": "option"
|
|
1341
|
+
},
|
|
1342
|
+
"column-delimiter": {
|
|
1343
|
+
"name": "column-delimiter",
|
|
1344
|
+
"relationships": [
|
|
1345
|
+
{
|
|
1346
|
+
"type": "some",
|
|
1347
|
+
"flags": [
|
|
1348
|
+
{
|
|
1349
|
+
"name": "result-format"
|
|
1350
|
+
}
|
|
1351
|
+
]
|
|
1352
|
+
}
|
|
1353
|
+
],
|
|
1354
|
+
"summary": "Column delimiter to be used when writing CSV output. Default is COMMA.",
|
|
1355
|
+
"hasDynamicHelp": false,
|
|
1356
|
+
"multiple": false,
|
|
1357
|
+
"options": [
|
|
1358
|
+
"BACKQUOTE",
|
|
1359
|
+
"CARET",
|
|
1360
|
+
"COMMA",
|
|
1361
|
+
"PIPE",
|
|
1362
|
+
"SEMICOLON",
|
|
1363
|
+
"TAB"
|
|
1364
|
+
],
|
|
1365
|
+
"type": "option"
|
|
1366
|
+
},
|
|
1367
|
+
"line-ending": {
|
|
1368
|
+
"name": "line-ending",
|
|
1369
|
+
"relationships": [
|
|
1370
|
+
{
|
|
1371
|
+
"type": "some",
|
|
1372
|
+
"flags": [
|
|
1373
|
+
{
|
|
1374
|
+
"name": "result-format"
|
|
1375
|
+
}
|
|
1376
|
+
]
|
|
1377
|
+
}
|
|
1378
|
+
],
|
|
1379
|
+
"summary": "Line ending to be used when writing CSV output. Default value on Windows is is `CRLF`; on macOS and Linux it's `LR`.",
|
|
1133
1380
|
"hasDynamicHelp": false,
|
|
1134
1381
|
"multiple": false,
|
|
1382
|
+
"options": [
|
|
1383
|
+
"LF",
|
|
1384
|
+
"CRLF"
|
|
1385
|
+
],
|
|
1135
1386
|
"type": "option"
|
|
1136
1387
|
}
|
|
1137
1388
|
},
|
|
1138
1389
|
"hasDynamicHelp": true,
|
|
1139
1390
|
"hiddenAliases": [],
|
|
1140
|
-
"id": "data:export:
|
|
1391
|
+
"id": "data:export:bulk",
|
|
1141
1392
|
"pluginAlias": "@salesforce/plugin-data",
|
|
1142
1393
|
"pluginName": "@salesforce/plugin-data",
|
|
1143
1394
|
"pluginType": "core",
|
|
1144
1395
|
"strict": true,
|
|
1145
|
-
"summary": "
|
|
1396
|
+
"summary": "Bulk export records from an org into a file using a SOQL query. Uses Bulk API 2.0.",
|
|
1146
1397
|
"enableJsonFlag": true,
|
|
1147
1398
|
"isESM": true,
|
|
1148
1399
|
"relativePath": [
|
|
@@ -1150,55 +1401,25 @@
|
|
|
1150
1401
|
"commands",
|
|
1151
1402
|
"data",
|
|
1152
1403
|
"export",
|
|
1153
|
-
"
|
|
1154
|
-
],
|
|
1155
|
-
"aliasPermutations": [
|
|
1156
|
-
"force:data:tree:export",
|
|
1157
|
-
"data:force:tree:export",
|
|
1158
|
-
"data:tree:force:export",
|
|
1159
|
-
"data:tree:export:force",
|
|
1160
|
-
"force:tree:data:export",
|
|
1161
|
-
"tree:force:data:export",
|
|
1162
|
-
"tree:data:force:export",
|
|
1163
|
-
"tree:data:export:force",
|
|
1164
|
-
"force:tree:export:data",
|
|
1165
|
-
"tree:force:export:data",
|
|
1166
|
-
"tree:export:force:data",
|
|
1167
|
-
"tree:export:data:force",
|
|
1168
|
-
"force:data:export:tree",
|
|
1169
|
-
"data:force:export:tree",
|
|
1170
|
-
"data:export:force:tree",
|
|
1171
|
-
"data:export:tree:force",
|
|
1172
|
-
"force:export:data:tree",
|
|
1173
|
-
"export:force:data:tree",
|
|
1174
|
-
"export:data:force:tree",
|
|
1175
|
-
"export:data:tree:force",
|
|
1176
|
-
"force:export:tree:data",
|
|
1177
|
-
"export:force:tree:data",
|
|
1178
|
-
"export:tree:force:data",
|
|
1179
|
-
"export:tree:data:force"
|
|
1404
|
+
"bulk.js"
|
|
1180
1405
|
],
|
|
1406
|
+
"aliasPermutations": [],
|
|
1181
1407
|
"permutations": [
|
|
1182
|
-
"data:export:
|
|
1183
|
-
"export:data:
|
|
1184
|
-
"export:
|
|
1185
|
-
"data:
|
|
1186
|
-
"
|
|
1187
|
-
"
|
|
1408
|
+
"data:export:bulk",
|
|
1409
|
+
"export:data:bulk",
|
|
1410
|
+
"export:bulk:data",
|
|
1411
|
+
"data:bulk:export",
|
|
1412
|
+
"bulk:data:export",
|
|
1413
|
+
"bulk:export:data"
|
|
1188
1414
|
]
|
|
1189
1415
|
},
|
|
1190
|
-
"data:
|
|
1191
|
-
"aliases": [
|
|
1192
|
-
"force:data:record:get"
|
|
1193
|
-
],
|
|
1416
|
+
"data:export:resume": {
|
|
1417
|
+
"aliases": [],
|
|
1194
1418
|
"args": {},
|
|
1195
|
-
"
|
|
1196
|
-
"description": "Specify the record you want to retrieve with either its ID or with a list of field-value pairs that identify the record. If your list of fields identifies more than one record, the command fails; the error displays how many records were found.\n\nWhen specifying field-value pairs, use the format <fieldName>=<value>. Enclose all field-value pairs in one set of double quotation marks, delimited by spaces. Enclose values that contain spaces in single quotes.\n\nThe command displays all the record's fields and their values, one field per terminal line. Fields with no values are displayed as \"null\".\n\nThis command retrieves a record from Salesforce objects by default. Use the --use-tooling-api flag to retrieve from a Tooling API object.",
|
|
1419
|
+
"description": "When the original \"data export bulk\" command either times out or is run with the --async flag, it displays a job ID. To see the status and get the results of the bulk export, run this command by either passing it the job ID or using the --use-most-recent flag to specify the most recent bulk export job.",
|
|
1197
1420
|
"examples": [
|
|
1198
|
-
"
|
|
1199
|
-
"
|
|
1200
|
-
"Retrieve a record from Account identified with two field values, one that contains a space; the command uses the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --sobject Account --where \"Name='Universal Containers' Phone='(123) 456-7890'\" --target-org myscratch",
|
|
1201
|
-
"Retrieve a record from the Tooling API object TraceFlag with the specified (truncated) ID:\n<%= config.bin %> <%= command.id %> --use-tooling-api --sobject TraceFlag --record-id 7tf8c"
|
|
1421
|
+
"Resume a bulk export job run on your default org by specifying a job ID:\nsf <%= command.id %> --job-id 750xx000000005sAAA",
|
|
1422
|
+
"Resume the most recently-run bulk export job for an org with alias my-scratch:\nsf data export resume --use-most-recent --target-org my-scratch"
|
|
1202
1423
|
],
|
|
1203
1424
|
"flags": {
|
|
1204
1425
|
"json": {
|
|
@@ -1216,157 +1437,66 @@
|
|
|
1216
1437
|
"multiple": false,
|
|
1217
1438
|
"type": "option"
|
|
1218
1439
|
},
|
|
1219
|
-
"
|
|
1220
|
-
"
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
"char": "o",
|
|
1225
|
-
"deprecateAliases": true,
|
|
1226
|
-
"name": "target-org",
|
|
1227
|
-
"noCacheDefault": true,
|
|
1228
|
-
"required": true,
|
|
1229
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1230
|
-
"hasDynamicHelp": true,
|
|
1440
|
+
"job-id": {
|
|
1441
|
+
"char": "i",
|
|
1442
|
+
"name": "job-id",
|
|
1443
|
+
"summary": "Job ID of the bulk export.",
|
|
1444
|
+
"hasDynamicHelp": false,
|
|
1231
1445
|
"multiple": false,
|
|
1232
1446
|
"type": "option"
|
|
1233
1447
|
},
|
|
1448
|
+
"use-most-recent": {
|
|
1449
|
+
"name": "use-most-recent",
|
|
1450
|
+
"summary": "Use the job ID of the bulk export job that was most recently run.",
|
|
1451
|
+
"allowNo": false,
|
|
1452
|
+
"type": "boolean"
|
|
1453
|
+
},
|
|
1234
1454
|
"api-version": {
|
|
1235
|
-
"aliases": [
|
|
1236
|
-
"apiversion"
|
|
1237
|
-
],
|
|
1238
|
-
"deprecateAliases": true,
|
|
1239
1455
|
"description": "Override the api version used for api requests made by this command",
|
|
1240
1456
|
"name": "api-version",
|
|
1241
1457
|
"hasDynamicHelp": false,
|
|
1242
1458
|
"multiple": false,
|
|
1243
1459
|
"type": "option"
|
|
1244
|
-
},
|
|
1245
|
-
"loglevel": {
|
|
1246
|
-
"deprecated": {
|
|
1247
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1248
|
-
},
|
|
1249
|
-
"hidden": true,
|
|
1250
|
-
"name": "loglevel",
|
|
1251
|
-
"hasDynamicHelp": false,
|
|
1252
|
-
"multiple": false,
|
|
1253
|
-
"type": "option"
|
|
1254
|
-
},
|
|
1255
|
-
"sobject": {
|
|
1256
|
-
"aliases": [
|
|
1257
|
-
"sobjecttype"
|
|
1258
|
-
],
|
|
1259
|
-
"char": "s",
|
|
1260
|
-
"deprecateAliases": true,
|
|
1261
|
-
"name": "sobject",
|
|
1262
|
-
"required": true,
|
|
1263
|
-
"summary": "API name of the Salesforce or Tooling API object that you're retrieving a record from.",
|
|
1264
|
-
"hasDynamicHelp": false,
|
|
1265
|
-
"multiple": false,
|
|
1266
|
-
"type": "option"
|
|
1267
|
-
},
|
|
1268
|
-
"record-id": {
|
|
1269
|
-
"aliases": [
|
|
1270
|
-
"sobjectid"
|
|
1271
|
-
],
|
|
1272
|
-
"char": "i",
|
|
1273
|
-
"deprecateAliases": true,
|
|
1274
|
-
"name": "record-id",
|
|
1275
|
-
"summary": "ID of the record you’re retrieving.",
|
|
1276
|
-
"hasDynamicHelp": false,
|
|
1277
|
-
"multiple": false,
|
|
1278
|
-
"type": "option"
|
|
1279
|
-
},
|
|
1280
|
-
"where": {
|
|
1281
|
-
"char": "w",
|
|
1282
|
-
"name": "where",
|
|
1283
|
-
"summary": "List of <fieldName>=<value> pairs that identify the record you want to display.",
|
|
1284
|
-
"hasDynamicHelp": false,
|
|
1285
|
-
"multiple": false,
|
|
1286
|
-
"type": "option"
|
|
1287
|
-
},
|
|
1288
|
-
"use-tooling-api": {
|
|
1289
|
-
"aliases": [
|
|
1290
|
-
"usetoolingapi"
|
|
1291
|
-
],
|
|
1292
|
-
"char": "t",
|
|
1293
|
-
"deprecateAliases": true,
|
|
1294
|
-
"name": "use-tooling-api",
|
|
1295
|
-
"summary": "Use Tooling API so you can retrieve a record from a Tooling API object.",
|
|
1296
|
-
"allowNo": false,
|
|
1297
|
-
"type": "boolean"
|
|
1298
|
-
},
|
|
1299
|
-
"perflog": {
|
|
1300
|
-
"deprecated": {
|
|
1301
|
-
"version": "57"
|
|
1302
|
-
},
|
|
1303
|
-
"description": "Gets data on API performance metrics from the server. The data is stored in $HOME/.sfdx/apiPerformanceLog.json.",
|
|
1304
|
-
"hidden": true,
|
|
1305
|
-
"name": "perflog",
|
|
1306
|
-
"summary": "Get API performance data.",
|
|
1307
|
-
"allowNo": false,
|
|
1308
|
-
"type": "boolean"
|
|
1309
1460
|
}
|
|
1310
1461
|
},
|
|
1311
|
-
"hasDynamicHelp":
|
|
1462
|
+
"hasDynamicHelp": false,
|
|
1312
1463
|
"hiddenAliases": [],
|
|
1313
|
-
"id": "data:
|
|
1464
|
+
"id": "data:export:resume",
|
|
1314
1465
|
"pluginAlias": "@salesforce/plugin-data",
|
|
1315
1466
|
"pluginName": "@salesforce/plugin-data",
|
|
1316
1467
|
"pluginType": "core",
|
|
1317
1468
|
"strict": true,
|
|
1318
|
-
"summary": "
|
|
1469
|
+
"summary": "Resume a bulk export job that you previously started. Uses Bulk API 2.0.",
|
|
1319
1470
|
"enableJsonFlag": true,
|
|
1320
1471
|
"isESM": true,
|
|
1321
1472
|
"relativePath": [
|
|
1322
1473
|
"lib",
|
|
1323
1474
|
"commands",
|
|
1324
1475
|
"data",
|
|
1325
|
-
"
|
|
1326
|
-
"
|
|
1327
|
-
],
|
|
1328
|
-
"aliasPermutations": [
|
|
1329
|
-
"force:data:record:get",
|
|
1330
|
-
"data:force:record:get",
|
|
1331
|
-
"data:record:force:get",
|
|
1332
|
-
"data:record:get:force",
|
|
1333
|
-
"force:record:data:get",
|
|
1334
|
-
"record:force:data:get",
|
|
1335
|
-
"record:data:force:get",
|
|
1336
|
-
"record:data:get:force",
|
|
1337
|
-
"force:record:get:data",
|
|
1338
|
-
"record:force:get:data",
|
|
1339
|
-
"record:get:force:data",
|
|
1340
|
-
"record:get:data:force",
|
|
1341
|
-
"force:data:get:record",
|
|
1342
|
-
"data:force:get:record",
|
|
1343
|
-
"data:get:force:record",
|
|
1344
|
-
"data:get:record:force",
|
|
1345
|
-
"force:get:data:record",
|
|
1346
|
-
"get:force:data:record",
|
|
1347
|
-
"get:data:force:record",
|
|
1348
|
-
"get:data:record:force",
|
|
1349
|
-
"force:get:record:data",
|
|
1350
|
-
"get:force:record:data",
|
|
1351
|
-
"get:record:force:data",
|
|
1352
|
-
"get:record:data:force"
|
|
1476
|
+
"export",
|
|
1477
|
+
"resume.js"
|
|
1353
1478
|
],
|
|
1479
|
+
"aliasPermutations": [],
|
|
1354
1480
|
"permutations": [
|
|
1355
|
-
"data:
|
|
1356
|
-
"
|
|
1357
|
-
"
|
|
1358
|
-
"data:
|
|
1359
|
-
"
|
|
1360
|
-
"
|
|
1481
|
+
"data:export:resume",
|
|
1482
|
+
"export:data:resume",
|
|
1483
|
+
"export:resume:data",
|
|
1484
|
+
"data:resume:export",
|
|
1485
|
+
"resume:data:export",
|
|
1486
|
+
"resume:export:data"
|
|
1361
1487
|
]
|
|
1362
1488
|
},
|
|
1363
|
-
"data:
|
|
1364
|
-
"aliases": [
|
|
1489
|
+
"data:export:tree": {
|
|
1490
|
+
"aliases": [
|
|
1491
|
+
"force:data:tree:export"
|
|
1492
|
+
],
|
|
1365
1493
|
"args": {},
|
|
1366
|
-
"
|
|
1494
|
+
"deprecateAliases": true,
|
|
1495
|
+
"description": "Specify a SOQL query, either directly at the command line or read from a file, to retrieve the data you want to export. The exported data is written to JSON files in sObject tree format, which is a collection of nested, parent-child records with a single root record. Use these JSON files to import data into an org with the \"<%= config.bin %> data import tree\" command.\n\nIf your SOQL query references multiple objects, the command generates a single JSON file by default. You can specify the --plan flag to generate separate JSON files for each object and a plan definition file that aggregates them. You then specify just this plan definition file when you import the data into an org.\n\nThe SOQL query can return a maximum of 2,000 records. For more information, see the REST API Developer Guide. (https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobject_tree.htm).",
|
|
1367
1496
|
"examples": [
|
|
1368
|
-
"
|
|
1369
|
-
"
|
|
1497
|
+
"Export records retrieved with the specified SOQL query into a single JSON file in the current directory; the command uses your default org:\n<%= config.bin %> <%= command.id %> --query \"SELECT Id, Name, (SELECT Name, Address__c FROM Properties__r) FROM Broker__c\"",
|
|
1498
|
+
"Export data using a SOQL query in the \"query.txt\" file and generate JSON files for each object and a plan that aggregates them:\n<%= config.bin %> <%= command.id %> --query query.txt --plan",
|
|
1499
|
+
"Prepend \"export-demo\" before each generated file and generate the files in the \"export-out\" directory; run the command on the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --query query.txt --plan --prefix export-demo --output-dir export-out --target-org my-scratch"
|
|
1370
1500
|
],
|
|
1371
1501
|
"flags": {
|
|
1372
1502
|
"json": {
|
|
@@ -1420,124 +1550,107 @@
|
|
|
1420
1550
|
"multiple": false,
|
|
1421
1551
|
"type": "option"
|
|
1422
1552
|
},
|
|
1423
|
-
"
|
|
1424
|
-
"
|
|
1425
|
-
|
|
1426
|
-
],
|
|
1427
|
-
"char": "f",
|
|
1428
|
-
"deprecateAliases": true,
|
|
1429
|
-
"name": "file",
|
|
1430
|
-
"required": true,
|
|
1431
|
-
"summary": "CSV file that contains the IDs of the records to update or delete.",
|
|
1432
|
-
"hasDynamicHelp": false,
|
|
1433
|
-
"multiple": false,
|
|
1434
|
-
"type": "option"
|
|
1435
|
-
},
|
|
1436
|
-
"sobject": {
|
|
1437
|
-
"aliases": [
|
|
1438
|
-
"sobjecttype"
|
|
1439
|
-
],
|
|
1440
|
-
"char": "s",
|
|
1441
|
-
"deprecateAliases": true,
|
|
1442
|
-
"name": "sobject",
|
|
1553
|
+
"query": {
|
|
1554
|
+
"char": "q",
|
|
1555
|
+
"name": "query",
|
|
1443
1556
|
"required": true,
|
|
1444
|
-
"summary": "
|
|
1557
|
+
"summary": "SOQL query, or filepath of a file that contains the query, to retrieve records.",
|
|
1445
1558
|
"hasDynamicHelp": false,
|
|
1446
|
-
"multiple":
|
|
1447
|
-
"type": "option"
|
|
1448
|
-
},
|
|
1449
|
-
"wait": {
|
|
1450
|
-
"char": "w",
|
|
1451
|
-
"exclusive": [
|
|
1452
|
-
"async"
|
|
1453
|
-
],
|
|
1454
|
-
"name": "wait",
|
|
1455
|
-
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
1456
|
-
"default": "0 minutes",
|
|
1457
|
-
"hasDynamicHelp": true,
|
|
1458
|
-
"multiple": false,
|
|
1559
|
+
"multiple": true,
|
|
1459
1560
|
"type": "option"
|
|
1460
1561
|
},
|
|
1461
|
-
"
|
|
1462
|
-
"char": "
|
|
1463
|
-
"
|
|
1464
|
-
|
|
1465
|
-
],
|
|
1466
|
-
"name": "async",
|
|
1467
|
-
"summary": "Run the command asynchronously.",
|
|
1468
|
-
"allowNo": false,
|
|
1469
|
-
"type": "boolean"
|
|
1470
|
-
},
|
|
1471
|
-
"verbose": {
|
|
1472
|
-
"deprecated": {
|
|
1473
|
-
"message": "The --verbose flag is deprecated and will be removed after March 2025, use \"sf data bulk results\" to get job results instead."
|
|
1474
|
-
},
|
|
1475
|
-
"name": "verbose",
|
|
1476
|
-
"summary": "Print verbose output of failed records if result is available.",
|
|
1562
|
+
"plan": {
|
|
1563
|
+
"char": "p",
|
|
1564
|
+
"name": "plan",
|
|
1565
|
+
"summary": "Generate multiple sObject tree files and a plan definition file for aggregated import.",
|
|
1477
1566
|
"allowNo": false,
|
|
1478
1567
|
"type": "boolean"
|
|
1479
1568
|
},
|
|
1480
|
-
"
|
|
1481
|
-
"
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
"name": "line-ending",
|
|
1485
|
-
"summary": "Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and Linux it's `LF`.",
|
|
1569
|
+
"prefix": {
|
|
1570
|
+
"char": "x",
|
|
1571
|
+
"name": "prefix",
|
|
1572
|
+
"summary": "Prefix of generated files.",
|
|
1486
1573
|
"hasDynamicHelp": false,
|
|
1487
1574
|
"multiple": false,
|
|
1488
|
-
"
|
|
1489
|
-
|
|
1490
|
-
|
|
1575
|
+
"type": "option"
|
|
1576
|
+
},
|
|
1577
|
+
"output-dir": {
|
|
1578
|
+
"aliases": [
|
|
1579
|
+
"outputdir"
|
|
1491
1580
|
],
|
|
1581
|
+
"char": "d",
|
|
1582
|
+
"deprecateAliases": true,
|
|
1583
|
+
"name": "output-dir",
|
|
1584
|
+
"summary": "Directory in which to generate the JSON files; default is current directory.",
|
|
1585
|
+
"hasDynamicHelp": false,
|
|
1586
|
+
"multiple": false,
|
|
1492
1587
|
"type": "option"
|
|
1493
|
-
},
|
|
1494
|
-
"hard-delete": {
|
|
1495
|
-
"description": "You must have the \"Bulk API Hard Delete\" system permission to use this flag. The permission is disabled by default and can be enabled only by a system administrator.",
|
|
1496
|
-
"name": "hard-delete",
|
|
1497
|
-
"summary": "Mark the records as immediately eligible for deletion by your org. If you don't specify this flag, the deleted records go into the Recycle Bin.",
|
|
1498
|
-
"allowNo": false,
|
|
1499
|
-
"type": "boolean"
|
|
1500
1588
|
}
|
|
1501
1589
|
},
|
|
1502
1590
|
"hasDynamicHelp": true,
|
|
1503
1591
|
"hiddenAliases": [],
|
|
1504
|
-
"id": "data:
|
|
1592
|
+
"id": "data:export:tree",
|
|
1505
1593
|
"pluginAlias": "@salesforce/plugin-data",
|
|
1506
1594
|
"pluginName": "@salesforce/plugin-data",
|
|
1507
1595
|
"pluginType": "core",
|
|
1508
1596
|
"strict": true,
|
|
1509
|
-
"summary": "
|
|
1597
|
+
"summary": "Export data from an org into one or more JSON files.",
|
|
1510
1598
|
"enableJsonFlag": true,
|
|
1511
1599
|
"isESM": true,
|
|
1512
1600
|
"relativePath": [
|
|
1513
1601
|
"lib",
|
|
1514
1602
|
"commands",
|
|
1515
1603
|
"data",
|
|
1516
|
-
"
|
|
1517
|
-
"
|
|
1604
|
+
"export",
|
|
1605
|
+
"tree.js"
|
|
1606
|
+
],
|
|
1607
|
+
"aliasPermutations": [
|
|
1608
|
+
"force:data:tree:export",
|
|
1609
|
+
"data:force:tree:export",
|
|
1610
|
+
"data:tree:force:export",
|
|
1611
|
+
"data:tree:export:force",
|
|
1612
|
+
"force:tree:data:export",
|
|
1613
|
+
"tree:force:data:export",
|
|
1614
|
+
"tree:data:force:export",
|
|
1615
|
+
"tree:data:export:force",
|
|
1616
|
+
"force:tree:export:data",
|
|
1617
|
+
"tree:force:export:data",
|
|
1618
|
+
"tree:export:force:data",
|
|
1619
|
+
"tree:export:data:force",
|
|
1620
|
+
"force:data:export:tree",
|
|
1621
|
+
"data:force:export:tree",
|
|
1622
|
+
"data:export:force:tree",
|
|
1623
|
+
"data:export:tree:force",
|
|
1624
|
+
"force:export:data:tree",
|
|
1625
|
+
"export:force:data:tree",
|
|
1626
|
+
"export:data:force:tree",
|
|
1627
|
+
"export:data:tree:force",
|
|
1628
|
+
"force:export:tree:data",
|
|
1629
|
+
"export:force:tree:data",
|
|
1630
|
+
"export:tree:force:data",
|
|
1631
|
+
"export:tree:data:force"
|
|
1518
1632
|
],
|
|
1519
|
-
"aliasPermutations": [],
|
|
1520
1633
|
"permutations": [
|
|
1521
|
-
"data:
|
|
1522
|
-
"
|
|
1523
|
-
"
|
|
1524
|
-
"data:
|
|
1525
|
-
"
|
|
1526
|
-
"
|
|
1634
|
+
"data:export:tree",
|
|
1635
|
+
"export:data:tree",
|
|
1636
|
+
"export:tree:data",
|
|
1637
|
+
"data:tree:export",
|
|
1638
|
+
"tree:data:export",
|
|
1639
|
+
"tree:export:data"
|
|
1527
1640
|
]
|
|
1528
1641
|
},
|
|
1529
|
-
"data:
|
|
1642
|
+
"data:get:record": {
|
|
1530
1643
|
"aliases": [
|
|
1531
|
-
"force:data:record:
|
|
1644
|
+
"force:data:record:get"
|
|
1532
1645
|
],
|
|
1533
1646
|
"args": {},
|
|
1534
1647
|
"deprecateAliases": true,
|
|
1535
|
-
"description": "Specify the record you want to
|
|
1648
|
+
"description": "Specify the record you want to retrieve with either its ID or with a list of field-value pairs that identify the record. If your list of fields identifies more than one record, the command fails; the error displays how many records were found.\n\nWhen specifying field-value pairs, use the format <fieldName>=<value>. Enclose all field-value pairs in one set of double quotation marks, delimited by spaces. Enclose values that contain spaces in single quotes.\n\nThe command displays all the record's fields and their values, one field per terminal line. Fields with no values are displayed as \"null\".\n\nThis command retrieves a record from Salesforce objects by default. Use the --use-tooling-api flag to retrieve from a Tooling API object.",
|
|
1536
1649
|
"examples": [
|
|
1537
|
-
"
|
|
1538
|
-
"
|
|
1539
|
-
"
|
|
1540
|
-
"
|
|
1650
|
+
"Retrieve and display a record from Account with the specified (truncated) ID:\n<%= config.bin %> <%= command.id %> --sobject Account --record-id 00180XX",
|
|
1651
|
+
"Retrieve a record from Account whose name equals \"Acme\":\n<%= config.bin %> <%= command.id %> --sobject Account --where \"Name=Acme\"",
|
|
1652
|
+
"Retrieve a record from Account identified with two field values, one that contains a space; the command uses the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --sobject Account --where \"Name='Universal Containers' Phone='(123) 456-7890'\" --target-org myscratch",
|
|
1653
|
+
"Retrieve a record from the Tooling API object TraceFlag with the specified (truncated) ID:\n<%= config.bin %> <%= command.id %> --use-tooling-api --sobject TraceFlag --record-id 7tf8c"
|
|
1541
1654
|
],
|
|
1542
1655
|
"flags": {
|
|
1543
1656
|
"json": {
|
|
@@ -1599,7 +1712,7 @@
|
|
|
1599
1712
|
"deprecateAliases": true,
|
|
1600
1713
|
"name": "sobject",
|
|
1601
1714
|
"required": true,
|
|
1602
|
-
"summary": "API name of the Salesforce or Tooling API object that you're
|
|
1715
|
+
"summary": "API name of the Salesforce or Tooling API object that you're retrieving a record from.",
|
|
1603
1716
|
"hasDynamicHelp": false,
|
|
1604
1717
|
"multiple": false,
|
|
1605
1718
|
"type": "option"
|
|
@@ -1611,7 +1724,7 @@
|
|
|
1611
1724
|
"char": "i",
|
|
1612
1725
|
"deprecateAliases": true,
|
|
1613
1726
|
"name": "record-id",
|
|
1614
|
-
"summary": "ID of the record you’re
|
|
1727
|
+
"summary": "ID of the record you’re retrieving.",
|
|
1615
1728
|
"hasDynamicHelp": false,
|
|
1616
1729
|
"multiple": false,
|
|
1617
1730
|
"type": "option"
|
|
@@ -1619,7 +1732,7 @@
|
|
|
1619
1732
|
"where": {
|
|
1620
1733
|
"char": "w",
|
|
1621
1734
|
"name": "where",
|
|
1622
|
-
"summary": "List of <fieldName>=<value> pairs that identify the record you want to
|
|
1735
|
+
"summary": "List of <fieldName>=<value> pairs that identify the record you want to display.",
|
|
1623
1736
|
"hasDynamicHelp": false,
|
|
1624
1737
|
"multiple": false,
|
|
1625
1738
|
"type": "option"
|
|
@@ -1631,7 +1744,7 @@
|
|
|
1631
1744
|
"char": "t",
|
|
1632
1745
|
"deprecateAliases": true,
|
|
1633
1746
|
"name": "use-tooling-api",
|
|
1634
|
-
"summary": "Use Tooling API so you can
|
|
1747
|
+
"summary": "Use Tooling API so you can retrieve a record from a Tooling API object.",
|
|
1635
1748
|
"allowNo": false,
|
|
1636
1749
|
"type": "boolean"
|
|
1637
1750
|
},
|
|
@@ -1649,167 +1762,54 @@
|
|
|
1649
1762
|
},
|
|
1650
1763
|
"hasDynamicHelp": true,
|
|
1651
1764
|
"hiddenAliases": [],
|
|
1652
|
-
"id": "data:
|
|
1765
|
+
"id": "data:get:record",
|
|
1653
1766
|
"pluginAlias": "@salesforce/plugin-data",
|
|
1654
1767
|
"pluginName": "@salesforce/plugin-data",
|
|
1655
1768
|
"pluginType": "core",
|
|
1656
1769
|
"strict": true,
|
|
1657
|
-
"summary": "
|
|
1770
|
+
"summary": "Retrieve and display a single record of a Salesforce or Tooling API object.",
|
|
1658
1771
|
"enableJsonFlag": true,
|
|
1659
1772
|
"isESM": true,
|
|
1660
1773
|
"relativePath": [
|
|
1661
1774
|
"lib",
|
|
1662
1775
|
"commands",
|
|
1663
1776
|
"data",
|
|
1664
|
-
"
|
|
1777
|
+
"get",
|
|
1665
1778
|
"record.js"
|
|
1666
1779
|
],
|
|
1667
1780
|
"aliasPermutations": [
|
|
1668
|
-
"force:data:record:
|
|
1669
|
-
"data:force:record:
|
|
1670
|
-
"data:record:force:
|
|
1671
|
-
"data:record:
|
|
1672
|
-
"force:record:data:
|
|
1673
|
-
"record:force:data:
|
|
1674
|
-
"record:data:force:
|
|
1675
|
-
"record:data:
|
|
1676
|
-
"force:record:
|
|
1677
|
-
"record:force:
|
|
1678
|
-
"record:
|
|
1679
|
-
"record:
|
|
1680
|
-
"force:data:
|
|
1681
|
-
"data:force:
|
|
1682
|
-
"data:
|
|
1683
|
-
"data:
|
|
1684
|
-
"force:
|
|
1685
|
-
"
|
|
1686
|
-
"
|
|
1687
|
-
"
|
|
1688
|
-
"force:
|
|
1689
|
-
"
|
|
1690
|
-
"
|
|
1691
|
-
"
|
|
1692
|
-
],
|
|
1693
|
-
"permutations": [
|
|
1694
|
-
"data:delete:record",
|
|
1695
|
-
"delete:data:record",
|
|
1696
|
-
"delete:record:data",
|
|
1697
|
-
"data:record:delete",
|
|
1698
|
-
"record:data:delete",
|
|
1699
|
-
"record:delete:data"
|
|
1700
|
-
]
|
|
1701
|
-
},
|
|
1702
|
-
"data:delete:resume": {
|
|
1703
|
-
"aliases": [],
|
|
1704
|
-
"args": {},
|
|
1705
|
-
"deprecateAliases": true,
|
|
1706
|
-
"description": "The command uses the job ID returned by the \"<%= config.bin %> data delete bulk\" command or the most recently-run bulk delete job.",
|
|
1707
|
-
"examples": [
|
|
1708
|
-
"Resume a bulk delete job from your default org using an ID:\n<%= config.bin %> <%= command.id %> --job-id 750xx000000005sAAA",
|
|
1709
|
-
"Resume the most recently run bulk delete job for an org with alias my-scratch:\n<%= config.bin %> <%= command.id %> --use-most-recent --target-org my-scratch"
|
|
1710
|
-
],
|
|
1711
|
-
"flags": {
|
|
1712
|
-
"json": {
|
|
1713
|
-
"description": "Format output as json.",
|
|
1714
|
-
"helpGroup": "GLOBAL",
|
|
1715
|
-
"name": "json",
|
|
1716
|
-
"allowNo": false,
|
|
1717
|
-
"type": "boolean"
|
|
1718
|
-
},
|
|
1719
|
-
"flags-dir": {
|
|
1720
|
-
"helpGroup": "GLOBAL",
|
|
1721
|
-
"name": "flags-dir",
|
|
1722
|
-
"summary": "Import flag values from a directory.",
|
|
1723
|
-
"hasDynamicHelp": false,
|
|
1724
|
-
"multiple": false,
|
|
1725
|
-
"type": "option"
|
|
1726
|
-
},
|
|
1727
|
-
"target-org": {
|
|
1728
|
-
"aliases": [
|
|
1729
|
-
"targetusername",
|
|
1730
|
-
"u"
|
|
1731
|
-
],
|
|
1732
|
-
"char": "o",
|
|
1733
|
-
"deprecateAliases": true,
|
|
1734
|
-
"name": "target-org",
|
|
1735
|
-
"noCacheDefault": true,
|
|
1736
|
-
"summary": "Username or alias of the target org. Not required if the \"target-org\" configuration variable is already set.",
|
|
1737
|
-
"hasDynamicHelp": true,
|
|
1738
|
-
"multiple": false,
|
|
1739
|
-
"type": "option"
|
|
1740
|
-
},
|
|
1741
|
-
"job-id": {
|
|
1742
|
-
"aliases": [
|
|
1743
|
-
"jobid"
|
|
1744
|
-
],
|
|
1745
|
-
"char": "i",
|
|
1746
|
-
"deprecateAliases": true,
|
|
1747
|
-
"name": "job-id",
|
|
1748
|
-
"summary": "ID of the job you want to resume.",
|
|
1749
|
-
"hasDynamicHelp": false,
|
|
1750
|
-
"multiple": false,
|
|
1751
|
-
"type": "option"
|
|
1752
|
-
},
|
|
1753
|
-
"use-most-recent": {
|
|
1754
|
-
"exclusive": [
|
|
1755
|
-
"job-id"
|
|
1756
|
-
],
|
|
1757
|
-
"name": "use-most-recent",
|
|
1758
|
-
"summary": "Use the ID of the most recently-run bulk job.",
|
|
1759
|
-
"allowNo": false,
|
|
1760
|
-
"type": "boolean"
|
|
1761
|
-
},
|
|
1762
|
-
"wait": {
|
|
1763
|
-
"name": "wait",
|
|
1764
|
-
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
1765
|
-
"default": "5 minutes",
|
|
1766
|
-
"hasDynamicHelp": true,
|
|
1767
|
-
"multiple": false,
|
|
1768
|
-
"type": "option"
|
|
1769
|
-
},
|
|
1770
|
-
"api-version": {
|
|
1771
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1772
|
-
"name": "api-version",
|
|
1773
|
-
"hasDynamicHelp": false,
|
|
1774
|
-
"multiple": false,
|
|
1775
|
-
"type": "option"
|
|
1776
|
-
},
|
|
1777
|
-
"loglevel": {
|
|
1778
|
-
"deprecated": {
|
|
1779
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1780
|
-
},
|
|
1781
|
-
"hidden": true,
|
|
1782
|
-
"name": "loglevel",
|
|
1783
|
-
"hasDynamicHelp": false,
|
|
1784
|
-
"multiple": false,
|
|
1785
|
-
"type": "option"
|
|
1786
|
-
}
|
|
1787
|
-
},
|
|
1788
|
-
"hasDynamicHelp": true,
|
|
1789
|
-
"hiddenAliases": [],
|
|
1790
|
-
"id": "data:delete:resume",
|
|
1791
|
-
"pluginAlias": "@salesforce/plugin-data",
|
|
1792
|
-
"pluginName": "@salesforce/plugin-data",
|
|
1793
|
-
"pluginType": "core",
|
|
1794
|
-
"strict": true,
|
|
1795
|
-
"summary": "Resume a bulk delete job that you previously started. Uses Bulk API 2.0.",
|
|
1796
|
-
"enableJsonFlag": true,
|
|
1797
|
-
"isESM": true,
|
|
1798
|
-
"relativePath": [
|
|
1799
|
-
"lib",
|
|
1800
|
-
"commands",
|
|
1801
|
-
"data",
|
|
1802
|
-
"delete",
|
|
1803
|
-
"resume.js"
|
|
1781
|
+
"force:data:record:get",
|
|
1782
|
+
"data:force:record:get",
|
|
1783
|
+
"data:record:force:get",
|
|
1784
|
+
"data:record:get:force",
|
|
1785
|
+
"force:record:data:get",
|
|
1786
|
+
"record:force:data:get",
|
|
1787
|
+
"record:data:force:get",
|
|
1788
|
+
"record:data:get:force",
|
|
1789
|
+
"force:record:get:data",
|
|
1790
|
+
"record:force:get:data",
|
|
1791
|
+
"record:get:force:data",
|
|
1792
|
+
"record:get:data:force",
|
|
1793
|
+
"force:data:get:record",
|
|
1794
|
+
"data:force:get:record",
|
|
1795
|
+
"data:get:force:record",
|
|
1796
|
+
"data:get:record:force",
|
|
1797
|
+
"force:get:data:record",
|
|
1798
|
+
"get:force:data:record",
|
|
1799
|
+
"get:data:force:record",
|
|
1800
|
+
"get:data:record:force",
|
|
1801
|
+
"force:get:record:data",
|
|
1802
|
+
"get:force:record:data",
|
|
1803
|
+
"get:record:force:data",
|
|
1804
|
+
"get:record:data:force"
|
|
1804
1805
|
],
|
|
1805
|
-
"aliasPermutations": [],
|
|
1806
1806
|
"permutations": [
|
|
1807
|
-
"data:
|
|
1808
|
-
"
|
|
1809
|
-
"
|
|
1810
|
-
"data:
|
|
1811
|
-
"
|
|
1812
|
-
"
|
|
1807
|
+
"data:get:record",
|
|
1808
|
+
"get:data:record",
|
|
1809
|
+
"get:record:data",
|
|
1810
|
+
"data:record:get",
|
|
1811
|
+
"record:data:get",
|
|
1812
|
+
"record:get:data"
|
|
1813
1813
|
]
|
|
1814
1814
|
},
|
|
1815
1815
|
"data:import:bulk": {
|
|
@@ -3535,5 +3535,5 @@
|
|
|
3535
3535
|
]
|
|
3536
3536
|
}
|
|
3537
3537
|
},
|
|
3538
|
-
"version": "4.0.
|
|
3538
|
+
"version": "4.0.11"
|
|
3539
3539
|
}
|