generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
snapshot.ts
48 lines (43 loc) · 1.71 KB
/
snapshot.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Copyright (c) 2020, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import {
Flags,
SfCommand,
loglevel,
requiredHubFlagWithDeprecations,
orgApiVersionFlagWithDeprecations,
} from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core';
import { OrgSnapshot, queryByNameOrId, printSingleRecordTable } from '../../../shared/snapshot.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-signups', 'snapshot.get');
export class SnapshotGet extends SfCommand<OrgSnapshot> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:get'];
public static readonly deprecateAliases = true;
public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
loglevel,
snapshot: Flags.string({
char: 's',
summary: messages.getMessage('flags.snapshot.summary'),
description: messages.getMessage('flags.snapshot.description'),
required: true,
}),
};
public async run(): Promise<OrgSnapshot> {
const { flags } = await this.parse(SnapshotGet);
const result = await queryByNameOrId(flags['target-dev-hub'].getConnection(flags['api-version']), flags.snapshot);
if (!this.jsonEnabled()) {
printSingleRecordTable(result);
}
return result;
}
}