Skip to content

Commit 9cea1ee

Browse files
committed
rename parms 4
1 parent c9a2880 commit 9cea1ee

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/imperative.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const config: IImperativeConfig = {
3232
title: "The cics-deploy-profile schema",
3333
description: "Specifies the target environment for the cics-deploy deploy and undeploy actions.",
3434
properties: {
35-
cicsplex: {
35+
"cicsplex": {
3636
optionDefinition: {
3737
description: "Specifies the CICSplex (up to 8 characters) to target.",
3838
type: "string",
@@ -43,7 +43,7 @@ const config: IImperativeConfig = {
4343
},
4444
type: "string"
4545
},
46-
scope: {
46+
"scope": {
4747
optionDefinition: {
4848
description: "Specifies the name of the CICS System, or CICS System Group " +
4949
"(up to 8 characters) to target.",
@@ -55,7 +55,7 @@ const config: IImperativeConfig = {
5555
},
5656
type: "string"
5757
},
58-
csdgroup: {
58+
"csd-group": {
5959
optionDefinition: {
6060
description: "Specifies the CSD group (up to 8 characters) for the bundle resource. If a bundle is " +
6161
"deployed then a definition is added to this group; if a bundle is undeployed then the " +
@@ -69,7 +69,7 @@ const config: IImperativeConfig = {
6969
},
7070
type: "string"
7171
},
72-
resgroup: {
72+
"res-group": {
7373
optionDefinition: {
7474
description: "Specifies the BAS resource group (up to 8 characters) for the bundle resource. If a bundle is " +
7575
"deployed then a resource is defined in the BAS data repository; if a bundle is undeployed then the " +
@@ -78,11 +78,11 @@ const config: IImperativeConfig = {
7878
name: "res-group",
7979
aliases: ["rg", "resgroup"],
8080
stringLengthRange: [1, MAX_LENGTH],
81-
conflictsWith: [ "csdgroup" ],
81+
conflictsWith: [ "csd-group" ],
8282
},
8383
type: "string"
8484
},
85-
cicshlq: {
85+
"cics-hlq": {
8686
optionDefinition: {
8787
description: "Specifies the High Level Qualifier (up to 35 characters) at which the CICS " +
8888
"datasets can be found in the target environment.",
@@ -94,7 +94,7 @@ const config: IImperativeConfig = {
9494
},
9595
type: "string"
9696
},
97-
cpsmhlq: {
97+
"cpsm-hlq": {
9898
optionDefinition: {
9999
description: "Specifies the High Level Qualifier (up to 35 characters) at which the CPSM " +
100100
"datasets can be found in the target environment.",
@@ -106,7 +106,7 @@ const config: IImperativeConfig = {
106106
},
107107
type: "string"
108108
},
109-
targetdir: {
109+
"target-directory": {
110110
optionDefinition: {
111111
description: "Specifies the target zFS location to which CICS bundles should be uploaded (up to 255 characters).",
112112
type: "string",
@@ -117,7 +117,7 @@ const config: IImperativeConfig = {
117117
},
118118
type: "string"
119119
},
120-
jobcard: {
120+
"job-card": {
121121
optionDefinition: {
122122
description: "Specifies the job card to use with any generated DFHDPLOY JCL.",
123123
type: "string",
@@ -129,7 +129,7 @@ const config: IImperativeConfig = {
129129
type: "string"
130130
}
131131
},
132-
required: ["cicsplex", "scope", "cicshlq", "cpsmhlq", "jobcard"]
132+
required: ["cicsplex", "scope", "cics-hlq", "cpsm-hlq", "job-card"]
133133
},
134134
createProfileExamples: [
135135
{

0 commit comments

Comments
 (0)