dcdx 1.3.0-next.5 → 1.3.0-next.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/versions.json +1 -1
- package/lib/commands/apt.js +1605 -9451
- package/lib/commands/build.js +404 -8934
- package/lib/commands/configure.js +560 -0
- package/lib/commands/database.js +20 -8889
- package/lib/commands/debug.js +789 -8947
- package/lib/commands/install.js +553 -8961
- package/lib/commands/reset.js +420 -8897
- package/lib/commands/run.js +474 -8928
- package/lib/commands/stop.js +420 -8897
- package/lib/commands/update.js +10 -8877
- package/lib/index.js +33 -2
- package/lib/types/src/applications/base.d.ts +2 -0
- package/lib/types/src/apt/helpers/dcapt.d.ts +2 -1
- package/lib/types/src/apt/helpers/downloadFile.d.ts +1 -0
- package/lib/types/src/apt/helpers/generateDependencyTree.d.ts +2 -0
- package/lib/types/src/apt/helpers/generateSCAReport.d.ts +2 -0
- package/lib/types/src/apt/helpers/getAppLicense.d.ts +3 -0
- package/lib/types/src/apt/helpers/getAptDirectory.d.ts +1 -1
- package/lib/types/src/apt/helpers/getClusterURL.d.ts +1 -1
- package/lib/types/src/apt/helpers/getHostLicense.d.ts +1 -1
- package/lib/types/src/apt/helpers/getRunForStage.d.ts +1 -1
- package/lib/types/src/apt/helpers/getUrlByAppKey.d.ts +1 -0
- package/lib/types/src/apt/helpers/installAppInCluster.d.ts +2 -0
- package/lib/types/src/apt/helpers/persistTestConfiguration.d.ts +1 -1
- package/lib/types/src/apt/helpers/provisionCluster.d.ts +1 -0
- package/lib/types/src/apt/helpers/restartCluster.d.ts +2 -0
- package/lib/types/src/apt/helpers/runLuceneTimingTest.d.ts +2 -0
- package/lib/types/src/apt/helpers/runPerformanceTest.d.ts +2 -2
- package/lib/types/src/apt/helpers/runScalabilityTest.d.ts +2 -2
- package/lib/types/src/apt/messages.d.ts +10 -5
- package/lib/types/src/commands/configure.d.ts +2 -0
- package/lib/types/src/helpers/ActionHandler.d.ts +1 -40
- package/lib/types/src/helpers/FileWatcher.d.ts +2 -2
- package/lib/types/src/helpers/findInFile.d.ts +1 -0
- package/lib/types/src/helpers/getConfig.d.ts +2 -0
- package/lib/types/src/helpers/getMainArtifactFromOBR.d.ts +1 -0
- package/lib/types/src/helpers/installFromMPAC.d.ts +2 -0
- package/lib/types/src/helpers/installFromURL.d.ts +2 -0
- package/lib/types/src/helpers/installWithQuickReload.d.ts +2 -0
- package/lib/types/src/helpers/setupHost.d.ts +3 -0
- package/lib/types/src/helpers/upm.d.ts +2 -2
- package/lib/types/src/helpers/validateAtlassianPlugin.d.ts +4 -0
- package/lib/types/src/types/AMPS.d.ts +12 -0
- package/lib/types/src/types/Application.d.ts +6 -0
- package/lib/types/src/types/Config.d.ts +328 -0
- package/lib/types/src/types/Configure.d.ts +145 -0
- package/lib/types/src/types/DCAPT.d.ts +425 -94
- package/lib/types/src/types/FileWatcher.d.ts +39 -0
- package/lib/types/src/types/Install.d.ts +220 -0
- package/lib/types/src/types/Installer.d.ts +21 -0
- package/package.json +6 -1
- package/lib/types/src/apt/helpers/installApp.d.ts +0 -1
- package/lib/types/src/helpers/Installer.d.ts +0 -3
|
@@ -3,212 +3,378 @@ export declare const PerformanceTestTypes: z.ZodEnum<["baseline", "regression"]>
|
|
|
3
3
|
export declare const ScalabilityTestTypes: z.ZodEnum<["one-node", "two-node", "four-node"]>;
|
|
4
4
|
export declare const TestResults: z.ZodEnum<["path", "Summary run status", "Application nodes count", "Finished", "Compliant", "Success", "Has app-specific actions"]>;
|
|
5
5
|
export declare const ReportTypes: z.ZodEnum<["performance", "scalability"]>;
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
6
|
+
export declare const APTTestMessages: z.ZodObject<{
|
|
7
|
+
header: z.ZodFunction<z.ZodTuple<[z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>, z.ZodUnion<[z.ZodEnum<["baseline", "regression"]>, z.ZodEnum<["one-node", "two-node", "four-node"]>]>], z.ZodUnknown>, z.ZodString>;
|
|
8
|
+
readyForProvisioning: z.ZodString;
|
|
9
|
+
startTest: z.ZodString;
|
|
10
|
+
success: z.ZodString;
|
|
11
|
+
failure: z.ZodFunction<z.ZodTuple<[z.ZodUnion<[z.ZodEnum<["baseline", "regression"]>, z.ZodEnum<["one-node", "two-node", "four-node"]>]>, z.ZodString, z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>, z.ZodString, z.ZodString, z.ZodRecord<z.ZodEnum<["path", "Summary run status", "Application nodes count", "Finished", "Compliant", "Success", "Has app-specific actions"]>, z.ZodUnion<[z.ZodString, z.ZodUndefined]>>], z.ZodUnknown>, z.ZodUnknown>;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
header: (args_0: "jira" | "confluence" | "bitbucket" | "bamboo", args_1: "baseline" | "regression" | "one-node" | "two-node" | "four-node", ...args_2: unknown[]) => string;
|
|
14
|
+
readyForProvisioning: string;
|
|
15
|
+
startTest: string;
|
|
16
|
+
success: string;
|
|
17
|
+
failure: (args_0: "baseline" | "regression" | "one-node" | "two-node" | "four-node", args_1: string, args_2: "jira" | "confluence" | "bitbucket" | "bamboo", args_3: string, args_4: string, args_5: Partial<Record<"path" | "Summary run status" | "Application nodes count" | "Finished" | "Compliant" | "Success" | "Has app-specific actions", string | undefined>>, ...args_6: unknown[]) => unknown;
|
|
18
|
+
}, {
|
|
19
|
+
header: (args_0: "jira" | "confluence" | "bitbucket" | "bamboo", args_1: "baseline" | "regression" | "one-node" | "two-node" | "four-node", ...args_2: unknown[]) => string;
|
|
20
|
+
readyForProvisioning: string;
|
|
21
|
+
startTest: string;
|
|
22
|
+
success: string;
|
|
23
|
+
failure: (args_0: "baseline" | "regression" | "one-node" | "two-node" | "four-node", args_1: string, args_2: "jira" | "confluence" | "bitbucket" | "bamboo", args_3: string, args_4: string, args_5: Partial<Record<"path" | "Summary run status" | "Application nodes count" | "Finished" | "Compliant" | "Success" | "Has app-specific actions", string | undefined>>, ...args_6: unknown[]) => unknown;
|
|
24
|
+
}>;
|
|
25
|
+
export declare const APTProvisionArgs: z.ZodObject<{
|
|
8
26
|
cwd: z.ZodString;
|
|
9
|
-
|
|
10
|
-
|
|
27
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
28
|
+
environment: z.ZodString;
|
|
29
|
+
license: z.ZodOptional<z.ZodString>;
|
|
30
|
+
nodes: z.ZodNumber;
|
|
31
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
11
32
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
type: "performance" | "scalability";
|
|
13
33
|
cwd: string;
|
|
14
|
-
|
|
15
|
-
|
|
34
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
35
|
+
environment: string;
|
|
36
|
+
nodes: number;
|
|
37
|
+
license?: string | undefined;
|
|
38
|
+
force?: boolean | undefined;
|
|
16
39
|
}, {
|
|
17
|
-
type: "performance" | "scalability";
|
|
18
40
|
cwd: string;
|
|
19
|
-
|
|
20
|
-
|
|
41
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
42
|
+
environment: string;
|
|
43
|
+
nodes: number;
|
|
44
|
+
license?: string | undefined;
|
|
45
|
+
force?: boolean | undefined;
|
|
21
46
|
}>;
|
|
22
47
|
export declare const APTProvisionOptions: z.ZodObject<{
|
|
23
48
|
cwd: z.ZodString;
|
|
24
49
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
25
50
|
environment: z.ZodOptional<z.ZodString>;
|
|
26
|
-
|
|
51
|
+
license: z.ZodOptional<z.ZodString>;
|
|
52
|
+
nodes: z.ZodOptional<z.ZodNumber>;
|
|
27
53
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
28
54
|
}, "strip", z.ZodTypeAny, {
|
|
29
55
|
cwd: string;
|
|
30
56
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
31
57
|
environment?: string | undefined;
|
|
32
|
-
|
|
58
|
+
license?: string | undefined;
|
|
59
|
+
nodes?: number | undefined;
|
|
33
60
|
force?: boolean | undefined;
|
|
34
61
|
}, {
|
|
35
62
|
cwd: string;
|
|
36
63
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
37
64
|
environment?: string | undefined;
|
|
38
|
-
|
|
65
|
+
license?: string | undefined;
|
|
66
|
+
nodes?: number | undefined;
|
|
39
67
|
force?: boolean | undefined;
|
|
40
68
|
}>;
|
|
41
69
|
export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
42
70
|
cwd: z.ZodString;
|
|
43
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
44
|
-
outputDir: z.ZodOptional<z.ZodString>;
|
|
45
71
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
46
72
|
environment: z.ZodString;
|
|
47
|
-
|
|
73
|
+
license: z.ZodOptional<z.ZodString>;
|
|
48
74
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
75
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
76
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
77
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
49
78
|
appLicense: z.ZodString;
|
|
79
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
80
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
50
81
|
}, "strip", z.ZodTypeAny, {
|
|
51
82
|
cwd: string;
|
|
52
83
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
53
84
|
environment: string;
|
|
54
|
-
appKey: string;
|
|
55
85
|
appLicense: string;
|
|
56
|
-
|
|
57
|
-
outputDir?: string | undefined;
|
|
86
|
+
license?: string | undefined;
|
|
58
87
|
force?: boolean | undefined;
|
|
88
|
+
outputDir?: string | undefined;
|
|
89
|
+
appKey?: string | undefined;
|
|
90
|
+
archive?: string | undefined;
|
|
91
|
+
restartAfterInstall?: boolean | undefined;
|
|
92
|
+
timestamp?: string | undefined;
|
|
59
93
|
}, {
|
|
60
94
|
cwd: string;
|
|
61
95
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
62
96
|
environment: string;
|
|
63
|
-
appKey: string;
|
|
64
97
|
appLicense: string;
|
|
65
|
-
|
|
66
|
-
outputDir?: string | undefined;
|
|
98
|
+
license?: string | undefined;
|
|
67
99
|
force?: boolean | undefined;
|
|
100
|
+
outputDir?: string | undefined;
|
|
101
|
+
appKey?: string | undefined;
|
|
102
|
+
archive?: string | undefined;
|
|
103
|
+
restartAfterInstall?: boolean | undefined;
|
|
104
|
+
timestamp?: string | undefined;
|
|
68
105
|
}>;
|
|
69
|
-
export declare const APTPerformanceTestOptions: z.ZodObject<{
|
|
106
|
+
export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
70
107
|
cwd: z.ZodString;
|
|
71
|
-
outputDir: z.ZodString;
|
|
72
108
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
109
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
73
110
|
environment: z.ZodString;
|
|
74
|
-
|
|
111
|
+
license: z.ZodString;
|
|
75
112
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
113
|
+
outputDir: z.ZodString;
|
|
114
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
115
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
76
116
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
117
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
118
|
+
stage: z.ZodEnum<["baseline", "regression"]>;
|
|
119
|
+
aws_access_key_id: z.ZodOptional<z.ZodString>;
|
|
120
|
+
aws_secret_access_key: z.ZodOptional<z.ZodString>;
|
|
77
121
|
}, "strip", z.ZodTypeAny, {
|
|
78
122
|
cwd: string;
|
|
79
|
-
outputDir: string;
|
|
80
123
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
81
124
|
environment: string;
|
|
82
|
-
|
|
125
|
+
license: string;
|
|
126
|
+
outputDir: string;
|
|
127
|
+
stage: "baseline" | "regression";
|
|
128
|
+
baseUrl?: string | undefined;
|
|
83
129
|
force?: boolean | undefined;
|
|
130
|
+
appKey?: string | undefined;
|
|
131
|
+
archive?: string | undefined;
|
|
84
132
|
appLicense?: string | undefined;
|
|
133
|
+
restartAfterInstall?: boolean | undefined;
|
|
134
|
+
aws_access_key_id?: string | undefined;
|
|
135
|
+
aws_secret_access_key?: string | undefined;
|
|
85
136
|
}, {
|
|
86
137
|
cwd: string;
|
|
138
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
139
|
+
environment: string;
|
|
140
|
+
license: string;
|
|
87
141
|
outputDir: string;
|
|
142
|
+
stage: "baseline" | "regression";
|
|
143
|
+
baseUrl?: string | undefined;
|
|
144
|
+
force?: boolean | undefined;
|
|
145
|
+
appKey?: string | undefined;
|
|
146
|
+
archive?: string | undefined;
|
|
147
|
+
appLicense?: string | undefined;
|
|
148
|
+
restartAfterInstall?: boolean | undefined;
|
|
149
|
+
aws_access_key_id?: string | undefined;
|
|
150
|
+
aws_secret_access_key?: string | undefined;
|
|
151
|
+
}>, {
|
|
152
|
+
cwd: string;
|
|
88
153
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
89
154
|
environment: string;
|
|
155
|
+
license: string;
|
|
156
|
+
outputDir: string;
|
|
157
|
+
stage: "baseline" | "regression";
|
|
158
|
+
baseUrl?: string | undefined;
|
|
159
|
+
force?: boolean | undefined;
|
|
90
160
|
appKey?: string | undefined;
|
|
161
|
+
archive?: string | undefined;
|
|
162
|
+
appLicense?: string | undefined;
|
|
163
|
+
restartAfterInstall?: boolean | undefined;
|
|
164
|
+
aws_access_key_id?: string | undefined;
|
|
165
|
+
aws_secret_access_key?: string | undefined;
|
|
166
|
+
}, {
|
|
167
|
+
cwd: string;
|
|
168
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
169
|
+
environment: string;
|
|
170
|
+
license: string;
|
|
171
|
+
outputDir: string;
|
|
172
|
+
stage: "baseline" | "regression";
|
|
173
|
+
baseUrl?: string | undefined;
|
|
91
174
|
force?: boolean | undefined;
|
|
175
|
+
appKey?: string | undefined;
|
|
176
|
+
archive?: string | undefined;
|
|
92
177
|
appLicense?: string | undefined;
|
|
178
|
+
restartAfterInstall?: boolean | undefined;
|
|
179
|
+
aws_access_key_id?: string | undefined;
|
|
180
|
+
aws_secret_access_key?: string | undefined;
|
|
93
181
|
}>;
|
|
94
|
-
export declare const
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
182
|
+
export declare const APTPerformanceReportArgs: z.ZodObject<{
|
|
183
|
+
type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
|
|
184
|
+
cwd: z.ZodString;
|
|
185
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
186
|
+
timestamp: z.ZodString;
|
|
187
|
+
resultsDir1: z.ZodString;
|
|
188
|
+
resultsDir2: z.ZodString;
|
|
100
189
|
}, "strip", z.ZodTypeAny, {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
190
|
+
type: "performance" | "scalability";
|
|
191
|
+
cwd: string;
|
|
192
|
+
timestamp: string;
|
|
193
|
+
resultsDir1: string;
|
|
194
|
+
resultsDir2: string;
|
|
195
|
+
outputDir?: string | undefined;
|
|
106
196
|
}, {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
197
|
+
type: "performance" | "scalability";
|
|
198
|
+
cwd: string;
|
|
199
|
+
timestamp: string;
|
|
200
|
+
resultsDir1: string;
|
|
201
|
+
resultsDir2: string;
|
|
202
|
+
outputDir?: string | undefined;
|
|
112
203
|
}>;
|
|
113
204
|
export declare const APTPerformanceReportOptions: z.ZodObject<{
|
|
114
205
|
cwd: z.ZodString;
|
|
115
|
-
outputDir: z.ZodString;
|
|
116
206
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
207
|
+
outputDir: z.ZodString;
|
|
208
|
+
resultsDir1: z.ZodString;
|
|
209
|
+
resultsDir2: z.ZodString;
|
|
117
210
|
}, "strip", z.ZodTypeAny, {
|
|
118
211
|
cwd: string;
|
|
119
212
|
outputDir: string;
|
|
213
|
+
resultsDir1: string;
|
|
214
|
+
resultsDir2: string;
|
|
120
215
|
force?: boolean | undefined;
|
|
121
216
|
}, {
|
|
122
217
|
cwd: string;
|
|
123
218
|
outputDir: string;
|
|
219
|
+
resultsDir1: string;
|
|
220
|
+
resultsDir2: string;
|
|
124
221
|
force?: boolean | undefined;
|
|
125
222
|
}>;
|
|
126
223
|
export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
127
224
|
cwd: z.ZodString;
|
|
128
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
129
|
-
outputDir: z.ZodOptional<z.ZodString>;
|
|
130
225
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
131
226
|
environment: z.ZodString;
|
|
132
|
-
|
|
227
|
+
license: z.ZodOptional<z.ZodString>;
|
|
133
228
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
229
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
230
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
231
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
134
232
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
233
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
234
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
235
|
+
locust: z.ZodOptional<z.ZodBoolean>;
|
|
135
236
|
}, "strip", z.ZodTypeAny, {
|
|
136
237
|
cwd: string;
|
|
137
238
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
138
239
|
environment: string;
|
|
139
|
-
|
|
140
|
-
timestamp?: string | undefined;
|
|
141
|
-
outputDir?: string | undefined;
|
|
240
|
+
license?: string | undefined;
|
|
142
241
|
force?: boolean | undefined;
|
|
242
|
+
outputDir?: string | undefined;
|
|
243
|
+
appKey?: string | undefined;
|
|
244
|
+
archive?: string | undefined;
|
|
143
245
|
appLicense?: string | undefined;
|
|
246
|
+
restartAfterInstall?: boolean | undefined;
|
|
247
|
+
timestamp?: string | undefined;
|
|
248
|
+
locust?: boolean | undefined;
|
|
144
249
|
}, {
|
|
145
250
|
cwd: string;
|
|
146
251
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
147
252
|
environment: string;
|
|
148
|
-
|
|
149
|
-
timestamp?: string | undefined;
|
|
150
|
-
outputDir?: string | undefined;
|
|
253
|
+
license?: string | undefined;
|
|
151
254
|
force?: boolean | undefined;
|
|
255
|
+
outputDir?: string | undefined;
|
|
256
|
+
appKey?: string | undefined;
|
|
257
|
+
archive?: string | undefined;
|
|
152
258
|
appLicense?: string | undefined;
|
|
259
|
+
restartAfterInstall?: boolean | undefined;
|
|
260
|
+
timestamp?: string | undefined;
|
|
261
|
+
locust?: boolean | undefined;
|
|
153
262
|
}>;
|
|
154
|
-
export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
263
|
+
export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
155
264
|
cwd: z.ZodString;
|
|
156
|
-
outputDir: z.ZodString;
|
|
157
265
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
158
266
|
environment: z.ZodString;
|
|
159
|
-
|
|
267
|
+
license: z.ZodString;
|
|
160
268
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
outputDir: z.ZodString;
|
|
270
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
271
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
161
272
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
162
|
-
|
|
273
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
274
|
+
locust: z.ZodOptional<z.ZodBoolean>;
|
|
163
275
|
}, "strip", z.ZodTypeAny, {
|
|
164
276
|
cwd: string;
|
|
165
|
-
outputDir: string;
|
|
166
277
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
167
278
|
environment: string;
|
|
168
279
|
license: string;
|
|
169
|
-
|
|
280
|
+
outputDir: string;
|
|
170
281
|
force?: boolean | undefined;
|
|
282
|
+
appKey?: string | undefined;
|
|
283
|
+
archive?: string | undefined;
|
|
171
284
|
appLicense?: string | undefined;
|
|
285
|
+
restartAfterInstall?: boolean | undefined;
|
|
286
|
+
locust?: boolean | undefined;
|
|
172
287
|
}, {
|
|
173
288
|
cwd: string;
|
|
289
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
290
|
+
environment: string;
|
|
291
|
+
license: string;
|
|
174
292
|
outputDir: string;
|
|
293
|
+
force?: boolean | undefined;
|
|
294
|
+
appKey?: string | undefined;
|
|
295
|
+
archive?: string | undefined;
|
|
296
|
+
appLicense?: string | undefined;
|
|
297
|
+
restartAfterInstall?: boolean | undefined;
|
|
298
|
+
locust?: boolean | undefined;
|
|
299
|
+
}>, {
|
|
300
|
+
cwd: string;
|
|
175
301
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
176
302
|
environment: string;
|
|
177
303
|
license: string;
|
|
304
|
+
outputDir: string;
|
|
305
|
+
force?: boolean | undefined;
|
|
178
306
|
appKey?: string | undefined;
|
|
307
|
+
archive?: string | undefined;
|
|
308
|
+
appLicense?: string | undefined;
|
|
309
|
+
restartAfterInstall?: boolean | undefined;
|
|
310
|
+
locust?: boolean | undefined;
|
|
311
|
+
}, {
|
|
312
|
+
cwd: string;
|
|
313
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
314
|
+
environment: string;
|
|
315
|
+
license: string;
|
|
316
|
+
outputDir: string;
|
|
179
317
|
force?: boolean | undefined;
|
|
318
|
+
appKey?: string | undefined;
|
|
319
|
+
archive?: string | undefined;
|
|
180
320
|
appLicense?: string | undefined;
|
|
321
|
+
restartAfterInstall?: boolean | undefined;
|
|
322
|
+
locust?: boolean | undefined;
|
|
181
323
|
}>;
|
|
182
|
-
export declare const
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
header: (args_0: "jira" | "confluence" | "bitbucket" | "bamboo", args_1: "one-node" | "two-node" | "four-node", ...args_2: unknown[]) => string;
|
|
190
|
-
success: string;
|
|
191
|
-
failure: (args_0: "one-node" | "two-node" | "four-node", args_1: string, args_2: "jira" | "confluence" | "bitbucket" | "bamboo", args_3: string, args_4: string, args_5: Partial<Record<"path" | "Summary run status" | "Application nodes count" | "Finished" | "Compliant" | "Success" | "Has app-specific actions", string | undefined>>, ...args_6: unknown[]) => unknown;
|
|
192
|
-
readyForProvisioning: string;
|
|
193
|
-
startScalabilityTest: string;
|
|
324
|
+
export declare const APTScalabilityReportArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
325
|
+
type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
|
|
326
|
+
cwd: z.ZodString;
|
|
327
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
328
|
+
timestamp: z.ZodString;
|
|
329
|
+
resultsDir1: z.ZodString;
|
|
330
|
+
resultsDir2: z.ZodString;
|
|
194
331
|
}, {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
332
|
+
type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
|
|
333
|
+
resultsDir3: z.ZodString;
|
|
334
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
335
|
+
}>, "strip", z.ZodTypeAny, {
|
|
336
|
+
type: "performance" | "scalability";
|
|
337
|
+
cwd: string;
|
|
338
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
339
|
+
timestamp: string;
|
|
340
|
+
resultsDir1: string;
|
|
341
|
+
resultsDir2: string;
|
|
342
|
+
resultsDir3: string;
|
|
343
|
+
outputDir?: string | undefined;
|
|
344
|
+
}, {
|
|
345
|
+
type: "performance" | "scalability";
|
|
346
|
+
cwd: string;
|
|
347
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
348
|
+
timestamp: string;
|
|
349
|
+
resultsDir1: string;
|
|
350
|
+
resultsDir2: string;
|
|
351
|
+
resultsDir3: string;
|
|
352
|
+
outputDir?: string | undefined;
|
|
200
353
|
}>;
|
|
201
|
-
export declare const APTScalabilityReportOptions: z.ZodObject<{
|
|
354
|
+
export declare const APTScalabilityReportOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
202
355
|
cwd: z.ZodString;
|
|
203
|
-
outputDir: z.ZodString;
|
|
204
356
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
205
|
-
|
|
357
|
+
outputDir: z.ZodString;
|
|
358
|
+
resultsDir1: z.ZodString;
|
|
359
|
+
resultsDir2: z.ZodString;
|
|
360
|
+
}, {
|
|
361
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
362
|
+
resultsDir3: z.ZodString;
|
|
363
|
+
}>, "strip", z.ZodTypeAny, {
|
|
206
364
|
cwd: string;
|
|
365
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
207
366
|
outputDir: string;
|
|
367
|
+
resultsDir1: string;
|
|
368
|
+
resultsDir2: string;
|
|
369
|
+
resultsDir3: string;
|
|
208
370
|
force?: boolean | undefined;
|
|
209
371
|
}, {
|
|
210
372
|
cwd: string;
|
|
373
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
211
374
|
outputDir: string;
|
|
375
|
+
resultsDir1: string;
|
|
376
|
+
resultsDir2: string;
|
|
377
|
+
resultsDir3: string;
|
|
212
378
|
force?: boolean | undefined;
|
|
213
379
|
}>;
|
|
214
380
|
export declare const APTTeardownArgs: z.ZodObject<{
|
|
@@ -249,66 +415,231 @@ export declare const APTTeardownOptions: z.ZodObject<{
|
|
|
249
415
|
aws_access_key_id?: string | undefined;
|
|
250
416
|
aws_secret_access_key?: string | undefined;
|
|
251
417
|
}>;
|
|
418
|
+
export declare const APTRestartArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
419
|
+
cwd: z.ZodString;
|
|
420
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
421
|
+
environment: z.ZodString;
|
|
422
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
423
|
+
}, {}>, "strip", z.ZodTypeAny, {
|
|
424
|
+
cwd: string;
|
|
425
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
426
|
+
environment: string;
|
|
427
|
+
force?: boolean | undefined;
|
|
428
|
+
}, {
|
|
429
|
+
cwd: string;
|
|
430
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
431
|
+
environment: string;
|
|
432
|
+
force?: boolean | undefined;
|
|
433
|
+
}>;
|
|
434
|
+
export declare const APTRestartOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
435
|
+
cwd: z.ZodString;
|
|
436
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
437
|
+
environment: z.ZodString;
|
|
438
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
439
|
+
aws_access_key_id: z.ZodOptional<z.ZodString>;
|
|
440
|
+
aws_secret_access_key: z.ZodOptional<z.ZodString>;
|
|
441
|
+
}, {}>, "strip", z.ZodTypeAny, {
|
|
442
|
+
cwd: string;
|
|
443
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
444
|
+
environment: string;
|
|
445
|
+
force?: boolean | undefined;
|
|
446
|
+
aws_access_key_id?: string | undefined;
|
|
447
|
+
aws_secret_access_key?: string | undefined;
|
|
448
|
+
}, {
|
|
449
|
+
cwd: string;
|
|
450
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
451
|
+
environment: string;
|
|
452
|
+
force?: boolean | undefined;
|
|
453
|
+
aws_access_key_id?: string | undefined;
|
|
454
|
+
aws_secret_access_key?: string | undefined;
|
|
455
|
+
}>;
|
|
456
|
+
export declare const APTDependencyTreeArgs: z.ZodObject<{
|
|
457
|
+
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
458
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
459
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
460
|
+
groupId: z.ZodString;
|
|
461
|
+
artifactId: z.ZodString;
|
|
462
|
+
outputFile: z.ZodOptional<z.ZodString>;
|
|
463
|
+
}, "strip", z.ZodTypeAny, {
|
|
464
|
+
groupId: string;
|
|
465
|
+
artifactId: string;
|
|
466
|
+
activateProfiles?: string | undefined;
|
|
467
|
+
appKey?: string | undefined;
|
|
468
|
+
archive?: string | undefined;
|
|
469
|
+
outputFile?: string | undefined;
|
|
470
|
+
}, {
|
|
471
|
+
groupId: string;
|
|
472
|
+
artifactId: string;
|
|
473
|
+
activateProfiles?: string | undefined;
|
|
474
|
+
appKey?: string | undefined;
|
|
475
|
+
archive?: string | undefined;
|
|
476
|
+
outputFile?: string | undefined;
|
|
477
|
+
}>;
|
|
478
|
+
export declare const APTDependencyTreeOptions: z.ZodEffects<z.ZodObject<{
|
|
479
|
+
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
480
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
481
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
482
|
+
groupId: z.ZodString;
|
|
483
|
+
artifactId: z.ZodString;
|
|
484
|
+
outputFile: z.ZodString;
|
|
485
|
+
}, "strip", z.ZodTypeAny, {
|
|
486
|
+
groupId: string;
|
|
487
|
+
artifactId: string;
|
|
488
|
+
outputFile: string;
|
|
489
|
+
activateProfiles?: string | undefined;
|
|
490
|
+
appKey?: string | undefined;
|
|
491
|
+
archive?: string | undefined;
|
|
492
|
+
}, {
|
|
493
|
+
groupId: string;
|
|
494
|
+
artifactId: string;
|
|
495
|
+
outputFile: string;
|
|
496
|
+
activateProfiles?: string | undefined;
|
|
497
|
+
appKey?: string | undefined;
|
|
498
|
+
archive?: string | undefined;
|
|
499
|
+
}>, {
|
|
500
|
+
groupId: string;
|
|
501
|
+
artifactId: string;
|
|
502
|
+
outputFile: string;
|
|
503
|
+
activateProfiles?: string | undefined;
|
|
504
|
+
appKey?: string | undefined;
|
|
505
|
+
archive?: string | undefined;
|
|
506
|
+
}, {
|
|
507
|
+
groupId: string;
|
|
508
|
+
artifactId: string;
|
|
509
|
+
outputFile: string;
|
|
510
|
+
activateProfiles?: string | undefined;
|
|
511
|
+
appKey?: string | undefined;
|
|
512
|
+
archive?: string | undefined;
|
|
513
|
+
}>;
|
|
514
|
+
export declare const APTSCAArgs: z.ZodObject<{
|
|
515
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
516
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
517
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
518
|
+
nvdApiKey: z.ZodString;
|
|
519
|
+
dataDir: z.ZodOptional<z.ZodString>;
|
|
520
|
+
}, "strip", z.ZodTypeAny, {
|
|
521
|
+
nvdApiKey: string;
|
|
522
|
+
outputDir?: string | undefined;
|
|
523
|
+
appKey?: string | undefined;
|
|
524
|
+
archive?: string | undefined;
|
|
525
|
+
dataDir?: string | undefined;
|
|
526
|
+
}, {
|
|
527
|
+
nvdApiKey: string;
|
|
528
|
+
outputDir?: string | undefined;
|
|
529
|
+
appKey?: string | undefined;
|
|
530
|
+
archive?: string | undefined;
|
|
531
|
+
dataDir?: string | undefined;
|
|
532
|
+
}>;
|
|
533
|
+
export declare const APTSCAOptions: z.ZodEffects<z.ZodObject<{
|
|
534
|
+
outputDir: z.ZodString;
|
|
535
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
536
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
537
|
+
nvdApiKey: z.ZodString;
|
|
538
|
+
dataDir: z.ZodOptional<z.ZodString>;
|
|
539
|
+
}, "strip", z.ZodTypeAny, {
|
|
540
|
+
outputDir: string;
|
|
541
|
+
nvdApiKey: string;
|
|
542
|
+
appKey?: string | undefined;
|
|
543
|
+
archive?: string | undefined;
|
|
544
|
+
dataDir?: string | undefined;
|
|
545
|
+
}, {
|
|
546
|
+
outputDir: string;
|
|
547
|
+
nvdApiKey: string;
|
|
548
|
+
appKey?: string | undefined;
|
|
549
|
+
archive?: string | undefined;
|
|
550
|
+
dataDir?: string | undefined;
|
|
551
|
+
}>, {
|
|
552
|
+
outputDir: string;
|
|
553
|
+
nvdApiKey: string;
|
|
554
|
+
appKey?: string | undefined;
|
|
555
|
+
archive?: string | undefined;
|
|
556
|
+
dataDir?: string | undefined;
|
|
557
|
+
}, {
|
|
558
|
+
outputDir: string;
|
|
559
|
+
nvdApiKey: string;
|
|
560
|
+
appKey?: string | undefined;
|
|
561
|
+
archive?: string | undefined;
|
|
562
|
+
dataDir?: string | undefined;
|
|
563
|
+
}>;
|
|
252
564
|
export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
253
565
|
cwd: z.ZodString;
|
|
254
566
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
255
567
|
environment: z.ZodOptional<z.ZodString>;
|
|
256
|
-
|
|
568
|
+
license: z.ZodOptional<z.ZodString>;
|
|
569
|
+
nodes: z.ZodOptional<z.ZodNumber>;
|
|
257
570
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
258
571
|
}, "strip", z.ZodTypeAny, {
|
|
259
572
|
cwd: string;
|
|
260
573
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
261
574
|
environment?: string | undefined;
|
|
262
|
-
|
|
575
|
+
license?: string | undefined;
|
|
576
|
+
nodes?: number | undefined;
|
|
263
577
|
force?: boolean | undefined;
|
|
264
578
|
}, {
|
|
265
579
|
cwd: string;
|
|
266
580
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
267
581
|
environment?: string | undefined;
|
|
268
|
-
|
|
582
|
+
license?: string | undefined;
|
|
583
|
+
nodes?: number | undefined;
|
|
269
584
|
force?: boolean | undefined;
|
|
270
585
|
}>, z.ZodObject<{
|
|
271
586
|
cwd: z.ZodString;
|
|
272
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
273
|
-
outputDir: z.ZodOptional<z.ZodString>;
|
|
274
587
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
275
588
|
environment: z.ZodString;
|
|
276
|
-
|
|
589
|
+
license: z.ZodOptional<z.ZodString>;
|
|
277
590
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
591
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
592
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
593
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
278
594
|
appLicense: z.ZodString;
|
|
595
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
596
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
279
597
|
}, "strip", z.ZodTypeAny, {
|
|
280
598
|
cwd: string;
|
|
281
599
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
282
600
|
environment: string;
|
|
283
|
-
appKey: string;
|
|
284
601
|
appLicense: string;
|
|
285
|
-
|
|
286
|
-
outputDir?: string | undefined;
|
|
602
|
+
license?: string | undefined;
|
|
287
603
|
force?: boolean | undefined;
|
|
604
|
+
outputDir?: string | undefined;
|
|
605
|
+
appKey?: string | undefined;
|
|
606
|
+
archive?: string | undefined;
|
|
607
|
+
restartAfterInstall?: boolean | undefined;
|
|
608
|
+
timestamp?: string | undefined;
|
|
288
609
|
}, {
|
|
289
610
|
cwd: string;
|
|
290
611
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
291
612
|
environment: string;
|
|
292
|
-
appKey: string;
|
|
293
613
|
appLicense: string;
|
|
294
|
-
|
|
295
|
-
outputDir?: string | undefined;
|
|
614
|
+
license?: string | undefined;
|
|
296
615
|
force?: boolean | undefined;
|
|
616
|
+
outputDir?: string | undefined;
|
|
617
|
+
appKey?: string | undefined;
|
|
618
|
+
archive?: string | undefined;
|
|
619
|
+
restartAfterInstall?: boolean | undefined;
|
|
620
|
+
timestamp?: string | undefined;
|
|
297
621
|
}>>;
|
|
298
622
|
export type TAPTArgs = z.infer<typeof APTArgs>;
|
|
623
|
+
export type TAPTTestMessages = z.infer<typeof APTTestMessages>;
|
|
624
|
+
export type TAPTProvisionArgs = z.infer<typeof APTProvisionArgs>;
|
|
299
625
|
export type TAPTProvisionOptions = z.infer<typeof APTProvisionOptions>;
|
|
300
|
-
export type
|
|
626
|
+
export type TAPTPerformanceReportArgs = z.infer<typeof APTPerformanceReportArgs>;
|
|
627
|
+
export type TAPTScalabilityReportArgs = z.infer<typeof APTScalabilityReportArgs>;
|
|
301
628
|
export type TPerformanceTestTypes = z.infer<typeof PerformanceTestTypes>;
|
|
302
629
|
export type TAPTPerformanceTestArgs = z.infer<typeof APTPerformanceTestArgs>;
|
|
303
630
|
export type TAPTPerformanceTestOptions = z.infer<typeof APTPerformanceTestOptions>;
|
|
304
|
-
export type TAPTPerformanceTestMessages = z.infer<typeof APTPerformanceTestMessages>;
|
|
305
631
|
export type TAPTPerformanceReportOptions = z.infer<typeof APTPerformanceReportOptions>;
|
|
306
632
|
export type TScalabilityTestTypes = z.infer<typeof ScalabilityTestTypes>;
|
|
307
633
|
export type TAPTScalabilityTestArgs = z.infer<typeof APTScalabilityTestArgs>;
|
|
308
634
|
export type TAPTScalabilityTestOptions = z.infer<typeof APTScalabilityTestOptions>;
|
|
309
|
-
export type TAPTScalabilityTestMessages = z.infer<typeof APTScalabilityTestMessages>;
|
|
310
635
|
export type TAPTScalabilityReportOptions = z.infer<typeof APTScalabilityReportOptions>;
|
|
636
|
+
export type TAPTRestartArgs = z.infer<typeof APTRestartArgs>;
|
|
637
|
+
export type TAPTRestartOptions = z.infer<typeof APTRestartOptions>;
|
|
311
638
|
export type TAPTTeardownArgs = z.infer<typeof APTTeardownArgs>;
|
|
312
639
|
export type TAPTTeardownOptions = z.infer<typeof APTTeardownOptions>;
|
|
313
640
|
export type TTestResults = z.infer<typeof TestResults>;
|
|
314
641
|
export type TReportTypes = z.infer<typeof ReportTypes>;
|
|
642
|
+
export type TAPTDependencyTreeArgs = z.infer<typeof APTDependencyTreeArgs>;
|
|
643
|
+
export type TAPTDependencyTreeOptions = z.infer<typeof APTDependencyTreeOptions>;
|
|
644
|
+
export type TAPTSCAArgs = z.infer<typeof APTSCAArgs>;
|
|
645
|
+
export type TAPTSCAOptions = z.infer<typeof APTSCAOptions>;
|