-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommand.hbs
More file actions
74 lines (56 loc) · 3.54 KB
/
command.hbs
File metadata and controls
74 lines (56 loc) · 3.54 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{{!--Not all commands have a minor noun; some are just commandmajornoun:commandverb. This is a sample topic for a commmand with no minor noun.--}}
# {{name}}{{#if isClosedPilotCommand}} (Pilot){{/if}}{{#if isOpenPilotCommand}} (Pilot){{/if}}{{#if isBetaCommand}} (Beta){{/if}}{{#if deprecated}} (Deprecated){{/if}}
{{#if deprecated}}The command <codeph otherprops="nolang">{{name}}</codeph> has been deprecated{{#if deprecationOptions.version}} and will be removed in v{{deprecationOptions.version}} or later{{/if}}. {{#if deprecated.to}} Use <codeph otherprops="nolang">{{deprecated.to}}</codeph> instead. {{/if}} {{/if}}
{{summary}}
{{#if isClosedPilotCommand}}
:::note
We provide the <codeph otherprops="nolang">{{name}}</codeph> command to selected customers through an invitation-only pilot program that requires agreement to specific terms and conditions. Pilot programs are subject to change, and we can’t guarantee acceptance. The <codeph otherprops="nolang">{{name}}</codeph> command isn’t generally available unless or until Salesforce announces its general availability in documentation or in press releases or public statements. We can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
:::
{{/if}}
{{#if isOpenPilotCommand}}
:::note
We provide the <codeph otherprops="nolang">{{name}}</codeph> command to selected customers through a pilot program that requires agreement to specific terms and conditions. To be nominated to participate in the program, contact Salesforce. Pilot programs are subject to change, and we can’t guarantee acceptance. The <codeph otherprops="nolang">{{name}}</codeph> command isn’t generally available unless or until Salesforce announces its general availability in documentation or in press releases or public statements. We can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.</note>
:::
{{/if}}
{{#if isBetaCommand}}
:::note
This feature is a Beta Service. Customers may opt to try such Beta Service in its sole discretion. Any use of the Beta Service is subject to the applicable Beta Services Terms provided at Agreements and Terms (<xref href="https://www.salesforce.com/company/legal/agreements/" format="html" scope="external" type="new-window:HTML">https://www.salesforce.com/company/legal/agreements/</xref>).
:::
{{/if}}
{{#if help}}
## Description for `{{name}}`
{{#each help}}
{{#isCodeBlock this}}`{{this}}`{{else}}{{this}}{{/isCodeBlock}}
{{/each}}
{{/if}}
{{#if examples}}
## Examples for `{{name}}`
{{#each examples}}
{{#if this.description}}{{this.description}}{{/if}}
{{#if this.commands}}
{{#each this.commands}}
{{#isCodeBlock this}}```bash
{{this}}
```{{else}}{this}}{{/isCodeBlock}}
{{/each}}
{{/if}}
{{/each}}
{{/if}}
{{#if parameters}}
## Flags
{{#each parameters}}
{{#if char}}`-{{char}}` | {{/if}}`--{{name}}`{{#if hasValue}} `{{toUpperCase name}}`{{/if}}
{{#if deprecated}}The parameter `--{{name}}` has been deprecated and will be removed in v{{nextVersion deprecated.version}}.0 or later. Use `{{deprecated.to}}` instead.
{{/if}}{{#if optional}}Optional{{else}}Required{{/if}}
{{#each description}}{{[]}}{{/each}}{{#if kind}}
Type: {{kind}}{{/if}}{{#if options}}
Permissible values are: {{join options}}{{/if}}{{#if defaultFlagValue}}
Default value: {{defaultFlagValue}}{{/if}}
{{/each}}
{{/if}}
{{#if aliases}}
## Aliases for `{{name}}`
{{#each aliases}}
`{{this}}`
{{/each}}
{{/if}}