@salesforce/plugin-signups 1.4.34 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -78,269 +78,299 @@ sfdx plugins
78
78
 
79
79
  <!-- commands -->
80
80
 
81
- - [`sfdx force:org:shape:create [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgshapecreate--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
82
- - [`sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgshapedelete--p--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
83
- - [`sfdx force:org:shape:list [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgshapelist---verbose---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
84
- - [`sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotcreate--o-string--n-string--d-string--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
85
- - [`sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotdelete--s-string--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
86
- - [`sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotget--s-string--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
87
- - [`sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotlist--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
81
+ - [`sfdx org:create:shape`](#sfdx-orgcreateshape)
82
+ - [`sfdx org:create:snapshot`](#sfdx-orgcreatesnapshot)
83
+ - [`sfdx org:delete:shape`](#sfdx-orgdeleteshape)
84
+ - [`sfdx org:delete:snapshot`](#sfdx-orgdeletesnapshot)
85
+ - [`sfdx org:get:snapshot`](#sfdx-orggetsnapshot)
86
+ - [`sfdx org:list:shape`](#sfdx-orglistshape)
87
+ - [`sfdx org:list:snapshot`](#sfdx-orglistsnapshot)
88
88
 
89
- ## `sfdx force:org:shape:create [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
89
+ ## `sfdx org:create:shape`
90
90
 
91
- Create a scratch org configuration (shape) based on the specified source org
91
+ Create a scratch org configuration (shape) based on the specified source org.
92
92
 
93
93
  ```
94
94
  USAGE
95
- $ sfdx force:org:shape:create [-u <string>] [--apiversion <string>] [--json] [--loglevel
96
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
95
+ $ sfdx org:create:shape -o <value> [--json] [--api-version <value>]
97
96
 
98
97
  FLAGS
99
- -u, --targetusername=<value> username or alias for the target
100
- org; overrides default target org
101
- --apiversion=<value> override the api version used for
102
- api requests made by this command
103
- --json format output as json
104
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
105
- this command invocation
98
+ -o, --target-org=<value> (required) Username or alias of the target org.
99
+ --api-version=<value> Override the api version used for api requests made by this command
100
+
101
+ GLOBAL FLAGS
102
+ --json Format output as json.
106
103
 
107
104
  DESCRIPTION
108
- Create a scratch org configuration (shape) based on the specified source org
105
+ Create a scratch org configuration (shape) based on the specified source org.
106
+
107
+ Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org
108
+ without the extraneous data and metadata.
109
+
110
+ Run "sfdx org list shape" to view the available org shapes and their IDs.
111
+
112
+ To create a scratch org from an org shape, include the "sourceOrg" property in the scratch org definition file and set
113
+ it to the org ID of the source org. Then create a scratch org with the "sfdx force:org:create" command.
114
+
115
+ ALIASES
116
+ $ sfdx force:org:shape:create
109
117
 
110
118
  EXAMPLES
111
- $ sfdx force:org:shape:create -u me@my.org
119
+ Create an org shape for the source org with alias SourceOrg:
112
120
 
113
- $ sfdx force:org:shape:create -u me@my.org --json --loglevel debug
121
+ $ sfdx org:create:shape --target-org SourceOrg
114
122
  ```
115
123
 
116
- _See code: [src/commands/force/org/shape/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/create.ts)_
124
+ _See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/create/shape.ts)_
117
125
 
118
- ## `sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
126
+ ## `sfdx org:create:snapshot`
119
127
 
120
- Delete all org shapes for a target org
128
+ Create a snapshot of a scratch org.
121
129
 
122
130
  ```
123
131
  USAGE
124
- $ sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel
125
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
132
+ $ sfdx org:create:snapshot -v <value> -o <value> -n <value> [--json] [--api-version <value>] [-d <value>]
126
133
 
127
134
  FLAGS
128
- -p, --noprompt do not prompt for confirmation
129
- -u, --targetusername=<value> username or alias for the target
130
- org; overrides default target org
131
- --apiversion=<value> override the api version used for
132
- api requests made by this command
133
- --json format output as json
134
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
135
- this command invocation
135
+ -d, --description=<value> Description of snapshot.
136
+ -n, --name=<value> (required) Unique name of snapshot.
137
+ -o, --source-org=<value> (required) ID or locally authenticated username or alias of scratch org to snapshot.
138
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
139
+ --api-version=<value> Override the api version used for api requests made by this command
140
+
141
+ GLOBAL FLAGS
142
+ --json Format output as json.
136
143
 
137
144
  DESCRIPTION
138
- Delete all org shapes for a target org
145
+ Create a snapshot of a scratch org.
146
+
147
+ A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org
148
+ definition file.
149
+
150
+ Use "sfdx org get snapshot" to get details, including status, about a snapshot creation request.
151
+
152
+ To create a scratch org from a snapshot, include the "snapshot" option (instead of "edition") in the scratch org
153
+ definition file and set it to the name of the snapshot. Then use "sfdx force:org:create" to create the scratch org.
154
+
155
+ ALIASES
156
+ $ sfdx force:org:snapshot:create
139
157
 
140
158
  EXAMPLES
141
- $ sfdx force:org:shape:delete -u me@my.org
159
+ Create a snapshot called "Dependencies" using the source scratch org ID and your default Dev Hub org:
142
160
 
143
- $ sfdx force:org:shape:delete -u MyOrgAlias -p
161
+ $ sfdx org:create:snapshot --source-org 00Dxx0000000000 --name Dependencies --description 'Contains PackageA \
162
+ v1.1.0'
144
163
 
145
- $ sfdx force:org:shape:delete -u me@my.org --json
164
+ Create a snapshot called "NightlyBranch" using the source scratch org username and a Dev Hub org with alias
165
+ NightlyDevHub:
146
166
 
147
- $ sfdx force:org:shape:delete -u me@my.org -p --json > tmp/MyOrgShapeDelete.json
167
+ $ sfdx org:create:snapshot --source-org myuser@myorg --name NightlyBranch --description 'Contains PkgA v2.1.0 \
168
+ and PkgB 3.3.0' --target-dev-hub NightlyDevHub
169
+
170
+ FLAG DESCRIPTIONS
171
+ -d, --description=<value> Description of snapshot.
172
+
173
+ Use this description to document the contents of the snapshot. We suggest that you include a reference point, such
174
+ as a version control system tag or commit ID.
148
175
  ```
149
176
 
150
- _See code: [src/commands/force/org/shape/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/delete.ts)_
177
+ _See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/create/snapshot.ts)_
151
178
 
152
- ## `sfdx force:org:shape:list [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
179
+ ## `sfdx org:delete:shape`
153
180
 
154
- List all org shapes you’ve created
181
+ Delete all org shapes for a target org.
155
182
 
156
183
  ```
157
184
  USAGE
158
- $ sfdx force:org:shape:list [--verbose] [--json] [--loglevel
159
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
185
+ $ sfdx org:delete:shape -o <value> [--json] [--api-version <value>] [-p]
160
186
 
161
187
  FLAGS
162
- --json format output as json
163
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
164
- this command invocation
165
- --verbose list more information about each org
166
- shape
188
+ -o, --target-org=<value> (required) Username or alias of the target org.
189
+ -p, --no-prompt Don't prompt for confirmation.
190
+ --api-version=<value> Override the api version used for api requests made by this command
191
+
192
+ GLOBAL FLAGS
193
+ --json Format output as json.
167
194
 
168
195
  DESCRIPTION
169
- List all org shapes you’ve created
196
+ Delete all org shapes for a target org.
197
+
198
+ A source org can have only one active org shape. If you try to create an org shape for a source org that already has
199
+ one, the previous shape is marked inactive and replaced by a new active shape. If you don’t want to create scratch
200
+ orgs based on this shape, you can delete the org shape.
201
+
202
+ ALIASES
203
+ $ sfdx force:org:shape:delete
170
204
 
171
205
  EXAMPLES
172
- $ sfdx force:org:shape:list
206
+ Delete all org shapes for the source org with alias SourceOrg:
207
+
208
+ $ sfdx org:delete:shape --target-org SourceOrg
173
209
 
174
- $ sfdx force:org:shape:list --json
210
+ Delete all org shapes without prompting:
175
211
 
176
- $ sfdx force:org:shape:list --json > tmp/MyOrgShapeList.json
212
+ $ sfdx org:delete:shape --target-org SourceOrg --no-prompt
177
213
  ```
178
214
 
179
- _See code: [src/commands/force/org/shape/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/list.ts)_
215
+ _See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/delete/shape.ts)_
180
216
 
181
- ## `sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
217
+ ## `sfdx org:delete:snapshot`
182
218
 
183
- create a snapshot of a scratch org
219
+ Delete a scratch org snapshot.
184
220
 
185
221
  ```
186
222
  USAGE
187
- $ sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json]
188
- [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
223
+ $ sfdx org:delete:snapshot -v <value> -s <value> [--json] [--api-version <value>]
189
224
 
190
225
  FLAGS
191
- -d, --description=<value> description of snapshot
192
- -n, --snapshotname=<value> (required) unique name of snapshot
193
- -o, --sourceorg=<value> (required) ID or locally
194
- authenticated username or alias of
195
- scratch org to snapshot
196
- -v, --targetdevhubusername=<value> username or alias for the dev hub
197
- org; overrides default dev hub org
198
- --apiversion=<value> override the api version used for
199
- api requests made by this command
200
- --json format output as json
201
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
202
- this command invocation
226
+ -s, --snapshot=<value> (required) Name or ID of snapshot to delete.
227
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
228
+ --api-version=<value> Override the api version used for api requests made by this command
203
229
 
204
- DESCRIPTION
205
- create a snapshot of a scratch org
230
+ GLOBAL FLAGS
231
+ --json Format output as json.
206
232
 
207
- A snapshot is a point-in-time copy of a scratch org. The copy is stored in Salesforce and referenced by its unique
208
- name in a scratch org definition file.
233
+ DESCRIPTION
234
+ Delete a scratch org snapshot.
209
235
 
210
- Use "sfdx force:org:snapshot:get" to get details, including status, about a snapshot creation request.
236
+ Dev Hub admins can delete any snapshot, while users can delete only their own unless a Dev Hub admin gives the user
237
+ Modify All permissions.
211
238
 
212
- To create a scratch org from a snapshot, include the "snapshot" entry (instead of "edition") in the scratch org
213
- definition file and set it to the name of the snapshot. Then use "sfdx force:org:create" to create the scratch org.
239
+ ALIASES
240
+ $ sfdx force:org:snapshot:delete
214
241
 
215
242
  EXAMPLES
216
- Create a snapshot called "Dependencies" using the source scratch org ID:
243
+ Delete a snapshot from the default Dev Hub using the snapshot ID:
244
+
245
+ $ sfdx org:delete:snapshot --snapshot 0Oo...
217
246
 
218
- $ sfdx force:org:snapshot:create --sourceorg 00Dxx0000000000 --snapshotname Dependencies --description 'Contains PackageA v1.1.0'
247
+ Delete a snapshot from the specified Dev Hub using the snapshot name:
248
+
249
+ $ sfdx org:delete:snapshot --snapshot BaseSnapshot --target-dev-hub SnapshotDevHub
219
250
 
220
- Create a snapshot called "NightlyBranch" using the source scratch org username:
251
+ FLAG DESCRIPTIONS
252
+ -s, --snapshot=<value> Name or ID of snapshot to delete.
221
253
 
222
- $ sfdx force:org:snapshot:create -o myuser@myorg -n NightlyBranch -d 'Contains PkgA v2.1.0 and PkgB 3.3.0'
254
+ The IDs of scratch org snapshots start with 0Oo.
223
255
  ```
224
256
 
225
- _See code: [src/commands/force/org/snapshot/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/create.ts)_
257
+ _See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/delete/snapshot.ts)_
226
258
 
227
- ## `sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
259
+ ## `sfdx org:get:snapshot`
228
260
 
229
- delete a scratch org snapshot
261
+ Get details about a scratch org snapshot.
230
262
 
231
263
  ```
232
264
  USAGE
233
- $ sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel
234
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
265
+ $ sfdx org:get:snapshot -v <value> -s <value> [--json] [--api-version <value>]
235
266
 
236
267
  FLAGS
237
- -s, --snapshot=<value> (required) name or ID of snapshot to
238
- delete
239
- -v, --targetdevhubusername=<value> username or alias for the dev hub
240
- org; overrides default dev hub org
241
- --apiversion=<value> override the api version used for
242
- api requests made by this command
243
- --json format output as json
244
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
245
- this command invocation
268
+ -s, --snapshot=<value> (required) Name or ID of snapshot to retrieve.
269
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
270
+ --api-version=<value> Override the api version used for api requests made by this command
271
+
272
+ GLOBAL FLAGS
273
+ --json Format output as json.
246
274
 
247
275
  DESCRIPTION
248
- delete a scratch org snapshot
276
+ Get details about a scratch org snapshot.
249
277
 
250
- Dev Hub admins can delete any snapshot, while users can delete only theirs unless a Dev Hub admin gives the user
251
- Modify All permissions.
278
+ Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After
279
+ the status changes to Active, you can use the snapshot to create scratch orgs.
280
+
281
+ To create a snapshot, use the "sfdx org create snapshot" command. To retrieve a list of all snapshots, use "sfdx org
282
+ list snapshot".
283
+
284
+ ALIASES
285
+ $ sfdx force:org:snapshot:get
252
286
 
253
287
  EXAMPLES
254
- Delete a snapshot from the default Dev Hub using the snapshot ID:
288
+ Get snapshot details using its ID and the default Dev Hub org:
255
289
 
256
- $ sfdx force:org:snapshot:delete --snapshot 0Oo...
290
+ $ sfdx org:get:snapshot --snapshot 0Oo...
257
291
 
258
- Delete a snapshot from the specified Dev Hub using the snapshot name:
292
+ Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:
293
+
294
+ $ sfdx org:get:snapshot --snapshot Dependencies --target-dev-hub SnapshotDevHub
295
+
296
+ FLAG DESCRIPTIONS
297
+ -s, --snapshot=<value> Name or ID of snapshot to retrieve.
259
298
 
260
- $ sfdx force:org:snapshot:delete -s BaseSnapshot -v SnapshotDevHub
299
+ The IDs of scratch org snapshots start with 0Oo.
261
300
  ```
262
301
 
263
- _See code: [src/commands/force/org/snapshot/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/delete.ts)_
302
+ _See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/get/snapshot.ts)_
264
303
 
265
- ## `sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
304
+ ## `sfdx org:list:shape`
266
305
 
267
- get details about a scratch org snapshot
306
+ List all org shapes you’ve created.
268
307
 
269
308
  ```
270
309
  USAGE
271
- $ sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel
272
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
310
+ $ sfdx org:list:shape [--json]
273
311
 
274
- FLAGS
275
- -s, --snapshot=<value> (required) name or ID of snapshot to
276
- retrieve
277
- -v, --targetdevhubusername=<value> username or alias for the dev hub
278
- org; overrides default dev hub org
279
- --apiversion=<value> override the api version used for
280
- api requests made by this command
281
- --json format output as json
282
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
283
- this command invocation
312
+ GLOBAL FLAGS
313
+ --json Format output as json.
284
314
 
285
315
  DESCRIPTION
286
- get details about a scratch org snapshot
316
+ List all org shapes you’ve created.
287
317
 
288
- Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. Once
289
- the status changes to Active, you can use the snapshot to create scratch orgs.
318
+ The output includes the alias, username, and ID of the source org, the status of the org shape creation, and more. Use
319
+ the org ID to update your scratch org configuration file so you can create a scratch org based on this org shape.
290
320
 
291
- To create a snapshot, use the "sfdx force:org:snapshot:create" command. To retrieve a list of all snapshots, use "sfdx
292
- force:org:snapshot:list".
321
+ ALIASES
322
+ $ sfdx force:org:shape:list
293
323
 
294
324
  EXAMPLES
295
- Get snapshot details using its ID:
325
+ List all org shapes you've created:
296
326
 
297
- $ sfdx force:org:snapshot:get --snapshot 0Oo...
327
+ $ sfdx org:list:shape
298
328
 
299
- Get snapshot details using its name:
329
+ List all org shapes in JSON format and write the output to a file:
300
330
 
301
- $ sfdx force:org:snapshot:get -s Dependencies
331
+ $ sfdx org:list:shape --json > tmp/MyOrgShapeList.json
302
332
  ```
303
333
 
304
- _See code: [src/commands/force/org/snapshot/get.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/get.ts)_
334
+ _See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/list/shape.ts)_
305
335
 
306
- ## `sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
336
+ ## `sfdx org:list:snapshot`
307
337
 
308
- list scratch org snapshots
338
+ List scratch org snapshots.
309
339
 
310
340
  ```
311
341
  USAGE
312
- $ sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel
313
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
342
+ $ sfdx org:list:snapshot -v <value> [--json] [--api-version <value>]
314
343
 
315
344
  FLAGS
316
- -v, --targetdevhubusername=<value> username or alias for the dev hub
317
- org; overrides default dev hub org
318
- --apiversion=<value> override the api version used for
319
- api requests made by this command
320
- --json format output as json
321
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
322
- this command invocation
345
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
346
+ --api-version=<value> Override the api version used for api requests made by this command
347
+
348
+ GLOBAL FLAGS
349
+ --json Format output as json.
323
350
 
324
351
  DESCRIPTION
325
- list scratch org snapshots
352
+ List scratch org snapshots.
326
353
 
327
354
  You can view all the snapshots in a Dev Hub that you have access to. If you’re an admin, you can see all snapshots
328
355
  associated with the Dev Hub org. If you’re a user, you can see only your snapshots unless a Dev Hub admin gives you
329
356
  View All permissions.
330
357
 
331
- To create a snapshot, use the "sfdx force:org:snapshot:create" command. To get details about a snapshot request, use
332
- "sfdx force:org:snapshot:get".
358
+ To create a snapshot, use the "sfdx org create snapshot" command. To get details about a snapshot request, use "sfdx
359
+ org get snapshot".
360
+
361
+ ALIASES
362
+ $ sfdx force:org:snapshot:list
333
363
 
334
364
  EXAMPLES
335
365
  List snapshots in the default Dev Hub:
336
366
 
337
- $ sfdx force:org:snapshot:list
367
+ $ sfdx org:list:snapshot
338
368
 
339
- List snapshots in the Dev Hub with the specified username:
369
+ List snapshots in the Dev Hub with alias SnapshotDevHub:
340
370
 
341
- $ sfdx force:org:snapshot:list -v OtherDevHub@example.com
371
+ $ sfdx org:list:snapshot --target-dev-hub SnapshotDevHub
342
372
  ```
343
373
 
344
- _See code: [src/commands/force/org/snapshot/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/list.ts)_
374
+ _See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/list/snapshot.ts)_
345
375
 
346
376
  <!-- commandsstop -->