Skip to content

Commit 5cb2b39

Browse files
committed
add current parms to a cics-deploy group
Signed-off-by: Paul Cooper <[email protected]>
1 parent 804c535 commit 5cb2b39

24 files changed

+27
-10
lines changed

docs/pages/cdp/CLIReadme.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ the target group of CICS regions\.
2020

2121
zowe cics-deploy deploy bundle [options]
2222

23-
#### Required Options
23+
#### cics-deploy
2424

2525
* `--name` | `-n` *(string)*
2626

@@ -31,8 +31,6 @@ the target group of CICS regions\.
3131

3232
* Specifies the location of the CICS bundle (up to 255 characters) on zFS\.
3333

34-
#### Options
35-
3634
* `--cicsplex` | `--cp` *(string)*
3735

3836
* Specifies the CICSplex (up to 8 characters) to target\. Use this parameter if
@@ -144,7 +142,7 @@ required\.
144142

145143
zowe cics-deploy generate bundle [options]
146144

147-
#### Options
145+
#### cics-deploy
148146

149147
* `--bundle-id` | `-b` | `--id` | `--bundleid` *(string)*
150148

@@ -217,7 +215,7 @@ Push a CICS bundle from the working directory to a target CICSplex\.
217215

218216
zowe cics-deploy push bundle [options]
219217

220-
#### Required Options
218+
#### cics-deploy
221219

222220
* `--name` | `-n` *(string)*
223221

@@ -229,8 +227,6 @@ Push a CICS bundle from the working directory to a target CICSplex\.
229227
* Specifies the target zFS location in which the CICS bundle is to be created (up
230228
to 255 characters)
231229

232-
#### Options
233-
234230
* `--cicsplex` | `--cp` *(string)*
235231

236232
* Specifies the CICSplex (up to 8 characters) to target\. Use this parameter if
@@ -353,15 +349,13 @@ target group of CICS regions\.
353349

354350
zowe cics-deploy undeploy bundle [options]
355351

356-
#### Required Options
352+
#### cics-deploy
357353

358354
* `--name` | `-n` *(string)*
359355

360356
* Specifies the name of the CICS BUNDLE resource (up to 8 characters) to deploy or
361357
undeploy\.
362358

363-
#### Options
364-
365359
* `--cicsplex` | `--cp` *(string)*
366360

367361
* Specifies the CICSplex (up to 8 characters) to target\. Use this parameter if

src/cli/deploy/bundle/options/Bundledir.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export const BundledirOption: ICommandOptionDefinition = {
2323
type: "string",
2424
required: true,
2525
stringLengthRange: [1, MAX_LENGTH],
26+
group: "cics-deploy",
2627
description: "Specifies the location of the CICS bundle (up to 255 characters) on zFS."
2728
};
2829

src/cli/deploy/bundle/options/Description.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export const DescriptionOption: ICommandOptionDefinition = {
2323
type: "string",
2424
required: false,
2525
stringLengthRange: [1, MAX_LENGTH],
26+
group: "cics-deploy",
2627
description: "An optional value that specifies a description of the bundle definition (up to 58 characters)."
2728
};
2829

src/cli/deploy/bundle/options/TargetState.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export const TargetStateOption: ICommandOptionDefinition = {
2525
values: ["DISABLED", "ENABLED", "AVAILABLE"],
2626
caseSensitive: false
2727
},
28+
group: "cics-deploy",
2829
description: "Specifies the target state for the deployed bundle."
2930
};
3031

src/cli/generate/bundle/options/Bundleid.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export const BundleidOption: ICommandOptionDefinition = {
1919
name: "bundle-id",
2020
aliases: ["b", "id", "bundleid"],
2121
type: "string",
22+
group: "cics-deploy",
2223
description: "The ID for the generated CICS bundle, up to 64 characters. If no value is " +
2324
"specified, a default value is created from the 'name' property " +
2425
"in the package.json file in the current working directory. " +

src/cli/generate/bundle/options/Bundleversion.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export const BundleversionOption: ICommandOptionDefinition = {
1919
name: "bundle-version",
2020
aliases: ["bv", "bundleversion"],
2121
type: "string",
22+
group: "cics-deploy",
2223
description: "The major.minor.micro version number for the generated CICS bundle. If no value is " +
2324
"specified, a default value of 1.0.0 is used."
2425
};

src/cli/generate/bundle/options/Merge.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export const MergeOption: ICommandOptionDefinition = {
2222
defaultValue: false,
2323
required: false,
2424
implies: ["overwrite"],
25+
group: "cics-deploy",
2526
description: "Enable or disable the ability to merge new resources into an existing CICS bundle manifest." +
2627
"Requires --overwrite to be specified."
2728
};

src/cli/generate/bundle/options/Nodejsapp.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export const NodejsappOption: ICommandOptionDefinition = {
1919
name: "nodejsapp",
2020
aliases: ["n", "nj", "nja"],
2121
type: "string",
22+
group: "cics-deploy",
2223
description: "The ID of the generated CICS NODEJSAPP resource, up to 32 characters. If no value is " +
2324
"specified, a default value is created from the " +
2425
"'name' property in package.json, or the bundleid option if specified. " +

src/cli/generate/bundle/options/Overwrite.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export const OverwriteOption: ICommandOptionDefinition = {
2121
type: "boolean",
2222
defaultValue: false,
2323
required: false,
24+
group: "cics-deploy",
2425
description: "Enable or disable the ability to replace existing files within a CICS bundle."
2526
};
2627

src/cli/generate/bundle/options/Port.option.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export const PortOption: ICommandOptionDefinition = {
1919
name: "port",
2020
aliases: ["p"],
2121
type: "string",
22+
group: "cics-deploy",
2223
description: "The TCP/IP port number the Node.js application should use for clients to connect to. " +
2324
"If a value is specified, it is set within the generated NODEJSAPP's profile. " +
2425
"The Node.js application can reference this value by accessing the PORT environment variable, " +

0 commit comments

Comments
 (0)