dcdx 1.3.0-next.6 → 1.3.0-next.60
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 +1937 -9471
- package/lib/commands/build.js +470 -8943
- package/lib/commands/configure.js +593 -0
- package/lib/commands/database.js +24 -8890
- package/lib/commands/debug.js +989 -8967
- package/lib/commands/install.js +636 -8971
- package/lib/commands/reset.js +564 -8898
- package/lib/commands/run.js +618 -8929
- package/lib/commands/stop.js +564 -8898
- package/lib/commands/update.js +10 -8877
- package/lib/index.js +33 -2
- package/lib/types/src/applications/base.d.ts +4 -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/persistClusterConfiguration.d.ts +2 -1
- 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/databases/base.d.ts +1 -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/PAT.d.ts +10 -0
- 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 +370 -0
- package/lib/types/src/types/Configure.d.ts +177 -0
- package/lib/types/src/types/DCAPT.d.ts +506 -94
- package/lib/types/src/types/Database.d.ts +1 -0
- package/lib/types/src/types/FileWatcher.d.ts +39 -0
- package/lib/types/src/types/Install.d.ts +238 -0
- package/lib/types/src/types/Installer.d.ts +21 -0
- package/package.json +7 -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,408 @@ 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<{
|
|
26
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
8
27
|
cwd: z.ZodString;
|
|
9
|
-
|
|
10
|
-
|
|
28
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
29
|
+
environment: z.ZodString;
|
|
30
|
+
license: z.ZodOptional<z.ZodString>;
|
|
31
|
+
nodes: z.ZodNumber;
|
|
32
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
11
33
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
type: "performance" | "scalability";
|
|
13
34
|
cwd: string;
|
|
14
|
-
|
|
15
|
-
|
|
35
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
36
|
+
environment: string;
|
|
37
|
+
nodes: number;
|
|
38
|
+
tag?: string | undefined;
|
|
39
|
+
license?: string | undefined;
|
|
40
|
+
force?: boolean | undefined;
|
|
16
41
|
}, {
|
|
17
|
-
type: "performance" | "scalability";
|
|
18
42
|
cwd: string;
|
|
19
|
-
|
|
20
|
-
|
|
43
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
44
|
+
environment: string;
|
|
45
|
+
nodes: number;
|
|
46
|
+
tag?: string | undefined;
|
|
47
|
+
license?: string | undefined;
|
|
48
|
+
force?: boolean | undefined;
|
|
21
49
|
}>;
|
|
22
50
|
export declare const APTProvisionOptions: z.ZodObject<{
|
|
51
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
23
52
|
cwd: z.ZodString;
|
|
24
53
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
25
54
|
environment: z.ZodOptional<z.ZodString>;
|
|
26
|
-
|
|
55
|
+
license: z.ZodOptional<z.ZodString>;
|
|
56
|
+
nodes: z.ZodOptional<z.ZodNumber>;
|
|
27
57
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
28
58
|
}, "strip", z.ZodTypeAny, {
|
|
29
59
|
cwd: string;
|
|
30
60
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
61
|
+
tag?: string | undefined;
|
|
31
62
|
environment?: string | undefined;
|
|
32
|
-
|
|
63
|
+
license?: string | undefined;
|
|
64
|
+
nodes?: number | undefined;
|
|
33
65
|
force?: boolean | undefined;
|
|
34
66
|
}, {
|
|
35
67
|
cwd: string;
|
|
36
68
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
69
|
+
tag?: string | undefined;
|
|
37
70
|
environment?: string | undefined;
|
|
38
|
-
|
|
71
|
+
license?: string | undefined;
|
|
72
|
+
nodes?: number | undefined;
|
|
39
73
|
force?: boolean | undefined;
|
|
40
74
|
}>;
|
|
41
75
|
export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
76
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
42
77
|
cwd: z.ZodString;
|
|
43
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
44
|
-
outputDir: z.ZodOptional<z.ZodString>;
|
|
45
78
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
46
79
|
environment: z.ZodString;
|
|
47
|
-
|
|
80
|
+
license: z.ZodOptional<z.ZodString>;
|
|
48
81
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
82
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
83
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
84
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
49
85
|
appLicense: z.ZodString;
|
|
86
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
87
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
50
88
|
}, "strip", z.ZodTypeAny, {
|
|
51
89
|
cwd: string;
|
|
52
90
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
53
91
|
environment: string;
|
|
54
|
-
appKey: string;
|
|
55
92
|
appLicense: string;
|
|
56
|
-
|
|
57
|
-
|
|
93
|
+
tag?: string | undefined;
|
|
94
|
+
license?: string | undefined;
|
|
58
95
|
force?: boolean | undefined;
|
|
96
|
+
outputDir?: string | undefined;
|
|
97
|
+
appKey?: string | undefined;
|
|
98
|
+
archive?: string | undefined;
|
|
99
|
+
restartAfterInstall?: boolean | undefined;
|
|
100
|
+
timestamp?: string | undefined;
|
|
59
101
|
}, {
|
|
60
102
|
cwd: string;
|
|
61
103
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
62
104
|
environment: string;
|
|
63
|
-
appKey: string;
|
|
64
105
|
appLicense: string;
|
|
65
|
-
|
|
66
|
-
|
|
106
|
+
tag?: string | undefined;
|
|
107
|
+
license?: string | undefined;
|
|
67
108
|
force?: boolean | undefined;
|
|
109
|
+
outputDir?: string | undefined;
|
|
110
|
+
appKey?: string | undefined;
|
|
111
|
+
archive?: string | undefined;
|
|
112
|
+
restartAfterInstall?: boolean | undefined;
|
|
113
|
+
timestamp?: string | undefined;
|
|
68
114
|
}>;
|
|
69
|
-
export declare const APTPerformanceTestOptions: z.ZodObject<{
|
|
115
|
+
export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
116
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
70
117
|
cwd: z.ZodString;
|
|
71
|
-
outputDir: z.ZodString;
|
|
72
118
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
119
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
73
120
|
environment: z.ZodString;
|
|
74
|
-
|
|
121
|
+
license: z.ZodString;
|
|
75
122
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
123
|
+
outputDir: z.ZodString;
|
|
124
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
125
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
76
126
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
127
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
128
|
+
stage: z.ZodEnum<["baseline", "regression"]>;
|
|
129
|
+
aws_access_key_id: z.ZodOptional<z.ZodString>;
|
|
130
|
+
aws_secret_access_key: z.ZodOptional<z.ZodString>;
|
|
77
131
|
}, "strip", z.ZodTypeAny, {
|
|
78
132
|
cwd: string;
|
|
79
|
-
outputDir: string;
|
|
80
133
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
81
134
|
environment: string;
|
|
82
|
-
|
|
135
|
+
license: string;
|
|
136
|
+
outputDir: string;
|
|
137
|
+
stage: "baseline" | "regression";
|
|
138
|
+
tag?: string | undefined;
|
|
139
|
+
baseUrl?: string | undefined;
|
|
83
140
|
force?: boolean | undefined;
|
|
141
|
+
appKey?: string | undefined;
|
|
142
|
+
archive?: string | undefined;
|
|
84
143
|
appLicense?: string | undefined;
|
|
144
|
+
restartAfterInstall?: boolean | undefined;
|
|
145
|
+
aws_access_key_id?: string | undefined;
|
|
146
|
+
aws_secret_access_key?: string | undefined;
|
|
85
147
|
}, {
|
|
86
148
|
cwd: string;
|
|
149
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
150
|
+
environment: string;
|
|
151
|
+
license: string;
|
|
87
152
|
outputDir: string;
|
|
153
|
+
stage: "baseline" | "regression";
|
|
154
|
+
tag?: string | undefined;
|
|
155
|
+
baseUrl?: string | undefined;
|
|
156
|
+
force?: boolean | undefined;
|
|
157
|
+
appKey?: string | undefined;
|
|
158
|
+
archive?: string | undefined;
|
|
159
|
+
appLicense?: string | undefined;
|
|
160
|
+
restartAfterInstall?: boolean | undefined;
|
|
161
|
+
aws_access_key_id?: string | undefined;
|
|
162
|
+
aws_secret_access_key?: string | undefined;
|
|
163
|
+
}>, {
|
|
164
|
+
cwd: string;
|
|
88
165
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
89
166
|
environment: string;
|
|
167
|
+
license: string;
|
|
168
|
+
outputDir: string;
|
|
169
|
+
stage: "baseline" | "regression";
|
|
170
|
+
tag?: string | undefined;
|
|
171
|
+
baseUrl?: string | undefined;
|
|
172
|
+
force?: boolean | undefined;
|
|
90
173
|
appKey?: string | undefined;
|
|
174
|
+
archive?: string | undefined;
|
|
175
|
+
appLicense?: string | undefined;
|
|
176
|
+
restartAfterInstall?: boolean | undefined;
|
|
177
|
+
aws_access_key_id?: string | undefined;
|
|
178
|
+
aws_secret_access_key?: string | undefined;
|
|
179
|
+
}, {
|
|
180
|
+
cwd: string;
|
|
181
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
182
|
+
environment: string;
|
|
183
|
+
license: string;
|
|
184
|
+
outputDir: string;
|
|
185
|
+
stage: "baseline" | "regression";
|
|
186
|
+
tag?: string | undefined;
|
|
187
|
+
baseUrl?: string | undefined;
|
|
91
188
|
force?: boolean | undefined;
|
|
189
|
+
appKey?: string | undefined;
|
|
190
|
+
archive?: string | undefined;
|
|
92
191
|
appLicense?: string | undefined;
|
|
192
|
+
restartAfterInstall?: boolean | undefined;
|
|
193
|
+
aws_access_key_id?: string | undefined;
|
|
194
|
+
aws_secret_access_key?: string | undefined;
|
|
93
195
|
}>;
|
|
94
|
-
export declare const
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
196
|
+
export declare const APTPerformanceReportArgs: z.ZodObject<{
|
|
197
|
+
type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
|
|
198
|
+
cwd: z.ZodString;
|
|
199
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
200
|
+
timestamp: z.ZodString;
|
|
201
|
+
resultsDir1: z.ZodString;
|
|
202
|
+
resultsDir2: z.ZodString;
|
|
100
203
|
}, "strip", z.ZodTypeAny, {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
204
|
+
type: "performance" | "scalability";
|
|
205
|
+
cwd: string;
|
|
206
|
+
timestamp: string;
|
|
207
|
+
resultsDir1: string;
|
|
208
|
+
resultsDir2: string;
|
|
209
|
+
outputDir?: string | undefined;
|
|
106
210
|
}, {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
211
|
+
type: "performance" | "scalability";
|
|
212
|
+
cwd: string;
|
|
213
|
+
timestamp: string;
|
|
214
|
+
resultsDir1: string;
|
|
215
|
+
resultsDir2: string;
|
|
216
|
+
outputDir?: string | undefined;
|
|
112
217
|
}>;
|
|
113
218
|
export declare const APTPerformanceReportOptions: z.ZodObject<{
|
|
114
219
|
cwd: z.ZodString;
|
|
115
|
-
outputDir: z.ZodString;
|
|
116
220
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
221
|
+
outputDir: z.ZodString;
|
|
222
|
+
resultsDir1: z.ZodString;
|
|
223
|
+
resultsDir2: z.ZodString;
|
|
117
224
|
}, "strip", z.ZodTypeAny, {
|
|
118
225
|
cwd: string;
|
|
119
226
|
outputDir: string;
|
|
227
|
+
resultsDir1: string;
|
|
228
|
+
resultsDir2: string;
|
|
120
229
|
force?: boolean | undefined;
|
|
121
230
|
}, {
|
|
122
231
|
cwd: string;
|
|
123
232
|
outputDir: string;
|
|
233
|
+
resultsDir1: string;
|
|
234
|
+
resultsDir2: string;
|
|
124
235
|
force?: boolean | undefined;
|
|
125
236
|
}>;
|
|
126
237
|
export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
238
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
127
239
|
cwd: z.ZodString;
|
|
128
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
129
|
-
outputDir: z.ZodOptional<z.ZodString>;
|
|
130
240
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
131
241
|
environment: z.ZodString;
|
|
132
|
-
|
|
242
|
+
license: z.ZodOptional<z.ZodString>;
|
|
133
243
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
244
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
245
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
246
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
134
247
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
248
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
249
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
250
|
+
jmeter: z.ZodOptional<z.ZodBoolean>;
|
|
251
|
+
locust: z.ZodOptional<z.ZodBoolean>;
|
|
135
252
|
}, "strip", z.ZodTypeAny, {
|
|
136
253
|
cwd: string;
|
|
137
254
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
138
255
|
environment: string;
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
outputDir?: string | undefined;
|
|
256
|
+
tag?: string | undefined;
|
|
257
|
+
license?: string | undefined;
|
|
142
258
|
force?: boolean | undefined;
|
|
259
|
+
outputDir?: string | undefined;
|
|
260
|
+
appKey?: string | undefined;
|
|
261
|
+
archive?: string | undefined;
|
|
143
262
|
appLicense?: string | undefined;
|
|
263
|
+
restartAfterInstall?: boolean | undefined;
|
|
264
|
+
timestamp?: string | undefined;
|
|
265
|
+
jmeter?: boolean | undefined;
|
|
266
|
+
locust?: boolean | undefined;
|
|
144
267
|
}, {
|
|
145
268
|
cwd: string;
|
|
146
269
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
147
270
|
environment: string;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
outputDir?: string | undefined;
|
|
271
|
+
tag?: string | undefined;
|
|
272
|
+
license?: string | undefined;
|
|
151
273
|
force?: boolean | undefined;
|
|
274
|
+
outputDir?: string | undefined;
|
|
275
|
+
appKey?: string | undefined;
|
|
276
|
+
archive?: string | undefined;
|
|
152
277
|
appLicense?: string | undefined;
|
|
278
|
+
restartAfterInstall?: boolean | undefined;
|
|
279
|
+
timestamp?: string | undefined;
|
|
280
|
+
jmeter?: boolean | undefined;
|
|
281
|
+
locust?: boolean | undefined;
|
|
153
282
|
}>;
|
|
154
|
-
export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
283
|
+
export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
284
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
155
285
|
cwd: z.ZodString;
|
|
156
|
-
outputDir: z.ZodString;
|
|
157
286
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
158
287
|
environment: z.ZodString;
|
|
159
|
-
|
|
288
|
+
license: z.ZodString;
|
|
160
289
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
290
|
+
outputDir: z.ZodString;
|
|
291
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
292
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
161
293
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
162
|
-
|
|
294
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
295
|
+
jmeter: z.ZodOptional<z.ZodBoolean>;
|
|
296
|
+
locust: z.ZodOptional<z.ZodBoolean>;
|
|
163
297
|
}, "strip", z.ZodTypeAny, {
|
|
164
298
|
cwd: string;
|
|
165
|
-
outputDir: string;
|
|
166
299
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
167
300
|
environment: string;
|
|
168
301
|
license: string;
|
|
169
|
-
|
|
302
|
+
outputDir: string;
|
|
303
|
+
tag?: string | undefined;
|
|
170
304
|
force?: boolean | undefined;
|
|
305
|
+
appKey?: string | undefined;
|
|
306
|
+
archive?: string | undefined;
|
|
171
307
|
appLicense?: string | undefined;
|
|
308
|
+
restartAfterInstall?: boolean | undefined;
|
|
309
|
+
jmeter?: boolean | undefined;
|
|
310
|
+
locust?: boolean | undefined;
|
|
172
311
|
}, {
|
|
173
312
|
cwd: string;
|
|
313
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
314
|
+
environment: string;
|
|
315
|
+
license: string;
|
|
174
316
|
outputDir: string;
|
|
317
|
+
tag?: string | undefined;
|
|
318
|
+
force?: boolean | undefined;
|
|
319
|
+
appKey?: string | undefined;
|
|
320
|
+
archive?: string | undefined;
|
|
321
|
+
appLicense?: string | undefined;
|
|
322
|
+
restartAfterInstall?: boolean | undefined;
|
|
323
|
+
jmeter?: boolean | undefined;
|
|
324
|
+
locust?: boolean | undefined;
|
|
325
|
+
}>, {
|
|
326
|
+
cwd: string;
|
|
175
327
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
176
328
|
environment: string;
|
|
177
329
|
license: string;
|
|
330
|
+
outputDir: string;
|
|
331
|
+
tag?: string | undefined;
|
|
332
|
+
force?: boolean | undefined;
|
|
178
333
|
appKey?: string | undefined;
|
|
334
|
+
archive?: string | undefined;
|
|
335
|
+
appLicense?: string | undefined;
|
|
336
|
+
restartAfterInstall?: boolean | undefined;
|
|
337
|
+
jmeter?: boolean | undefined;
|
|
338
|
+
locust?: boolean | undefined;
|
|
339
|
+
}, {
|
|
340
|
+
cwd: string;
|
|
341
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
342
|
+
environment: string;
|
|
343
|
+
license: string;
|
|
344
|
+
outputDir: string;
|
|
345
|
+
tag?: string | undefined;
|
|
179
346
|
force?: boolean | undefined;
|
|
347
|
+
appKey?: string | undefined;
|
|
348
|
+
archive?: string | undefined;
|
|
180
349
|
appLicense?: string | undefined;
|
|
350
|
+
restartAfterInstall?: boolean | undefined;
|
|
351
|
+
jmeter?: boolean | undefined;
|
|
352
|
+
locust?: boolean | undefined;
|
|
181
353
|
}>;
|
|
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;
|
|
354
|
+
export declare const APTScalabilityReportArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
355
|
+
type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
|
|
356
|
+
cwd: z.ZodString;
|
|
357
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
358
|
+
timestamp: z.ZodString;
|
|
359
|
+
resultsDir1: z.ZodString;
|
|
360
|
+
resultsDir2: z.ZodString;
|
|
194
361
|
}, {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
362
|
+
type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
|
|
363
|
+
resultsDir3: z.ZodString;
|
|
364
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
365
|
+
}>, "strip", z.ZodTypeAny, {
|
|
366
|
+
type: "performance" | "scalability";
|
|
367
|
+
cwd: string;
|
|
368
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
369
|
+
timestamp: string;
|
|
370
|
+
resultsDir1: string;
|
|
371
|
+
resultsDir2: string;
|
|
372
|
+
resultsDir3: string;
|
|
373
|
+
outputDir?: string | undefined;
|
|
374
|
+
}, {
|
|
375
|
+
type: "performance" | "scalability";
|
|
376
|
+
cwd: string;
|
|
377
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
378
|
+
timestamp: string;
|
|
379
|
+
resultsDir1: string;
|
|
380
|
+
resultsDir2: string;
|
|
381
|
+
resultsDir3: string;
|
|
382
|
+
outputDir?: string | undefined;
|
|
200
383
|
}>;
|
|
201
|
-
export declare const APTScalabilityReportOptions: z.ZodObject<{
|
|
384
|
+
export declare const APTScalabilityReportOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
202
385
|
cwd: z.ZodString;
|
|
203
|
-
outputDir: z.ZodString;
|
|
204
386
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
205
|
-
|
|
387
|
+
outputDir: z.ZodString;
|
|
388
|
+
resultsDir1: z.ZodString;
|
|
389
|
+
resultsDir2: z.ZodString;
|
|
390
|
+
}, {
|
|
391
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
392
|
+
resultsDir3: z.ZodString;
|
|
393
|
+
}>, "strip", z.ZodTypeAny, {
|
|
206
394
|
cwd: string;
|
|
395
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
207
396
|
outputDir: string;
|
|
397
|
+
resultsDir1: string;
|
|
398
|
+
resultsDir2: string;
|
|
399
|
+
resultsDir3: string;
|
|
208
400
|
force?: boolean | undefined;
|
|
209
401
|
}, {
|
|
210
402
|
cwd: string;
|
|
403
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
211
404
|
outputDir: string;
|
|
405
|
+
resultsDir1: string;
|
|
406
|
+
resultsDir2: string;
|
|
407
|
+
resultsDir3: string;
|
|
212
408
|
force?: boolean | undefined;
|
|
213
409
|
}>;
|
|
214
410
|
export declare const APTTeardownArgs: z.ZodObject<{
|
|
@@ -249,66 +445,282 @@ export declare const APTTeardownOptions: z.ZodObject<{
|
|
|
249
445
|
aws_access_key_id?: string | undefined;
|
|
250
446
|
aws_secret_access_key?: string | undefined;
|
|
251
447
|
}>;
|
|
448
|
+
export declare const APTRestartArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
449
|
+
cwd: z.ZodString;
|
|
450
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
451
|
+
environment: z.ZodString;
|
|
452
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
453
|
+
}, {}>, "strip", z.ZodTypeAny, {
|
|
454
|
+
cwd: string;
|
|
455
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
456
|
+
environment: string;
|
|
457
|
+
force?: boolean | undefined;
|
|
458
|
+
}, {
|
|
459
|
+
cwd: string;
|
|
460
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
461
|
+
environment: string;
|
|
462
|
+
force?: boolean | undefined;
|
|
463
|
+
}>;
|
|
464
|
+
export declare const APTRestartOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
465
|
+
cwd: z.ZodString;
|
|
466
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
467
|
+
environment: z.ZodString;
|
|
468
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
469
|
+
aws_access_key_id: z.ZodOptional<z.ZodString>;
|
|
470
|
+
aws_secret_access_key: z.ZodOptional<z.ZodString>;
|
|
471
|
+
}, {}>, "strip", z.ZodTypeAny, {
|
|
472
|
+
cwd: string;
|
|
473
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
474
|
+
environment: string;
|
|
475
|
+
force?: boolean | undefined;
|
|
476
|
+
aws_access_key_id?: string | undefined;
|
|
477
|
+
aws_secret_access_key?: string | undefined;
|
|
478
|
+
}, {
|
|
479
|
+
cwd: string;
|
|
480
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
481
|
+
environment: string;
|
|
482
|
+
force?: boolean | undefined;
|
|
483
|
+
aws_access_key_id?: string | undefined;
|
|
484
|
+
aws_secret_access_key?: string | undefined;
|
|
485
|
+
}>;
|
|
486
|
+
export declare const APTDependencyTreeArgs: z.ZodObject<{
|
|
487
|
+
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
488
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
489
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
490
|
+
groupId: z.ZodString;
|
|
491
|
+
artifactId: z.ZodString;
|
|
492
|
+
outputFile: z.ZodOptional<z.ZodString>;
|
|
493
|
+
}, "strip", z.ZodTypeAny, {
|
|
494
|
+
groupId: string;
|
|
495
|
+
artifactId: string;
|
|
496
|
+
activateProfiles?: string | undefined;
|
|
497
|
+
appKey?: string | undefined;
|
|
498
|
+
archive?: string | undefined;
|
|
499
|
+
outputFile?: string | undefined;
|
|
500
|
+
}, {
|
|
501
|
+
groupId: string;
|
|
502
|
+
artifactId: string;
|
|
503
|
+
activateProfiles?: string | undefined;
|
|
504
|
+
appKey?: string | undefined;
|
|
505
|
+
archive?: string | undefined;
|
|
506
|
+
outputFile?: string | undefined;
|
|
507
|
+
}>;
|
|
508
|
+
export declare const APTDependencyTreeOptions: z.ZodEffects<z.ZodObject<{
|
|
509
|
+
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
510
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
511
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
512
|
+
groupId: z.ZodString;
|
|
513
|
+
artifactId: z.ZodString;
|
|
514
|
+
outputFile: z.ZodString;
|
|
515
|
+
}, "strip", z.ZodTypeAny, {
|
|
516
|
+
groupId: string;
|
|
517
|
+
artifactId: string;
|
|
518
|
+
outputFile: string;
|
|
519
|
+
activateProfiles?: string | undefined;
|
|
520
|
+
appKey?: string | undefined;
|
|
521
|
+
archive?: string | undefined;
|
|
522
|
+
}, {
|
|
523
|
+
groupId: string;
|
|
524
|
+
artifactId: string;
|
|
525
|
+
outputFile: string;
|
|
526
|
+
activateProfiles?: string | undefined;
|
|
527
|
+
appKey?: string | undefined;
|
|
528
|
+
archive?: string | undefined;
|
|
529
|
+
}>, {
|
|
530
|
+
groupId: string;
|
|
531
|
+
artifactId: string;
|
|
532
|
+
outputFile: string;
|
|
533
|
+
activateProfiles?: string | undefined;
|
|
534
|
+
appKey?: string | undefined;
|
|
535
|
+
archive?: string | undefined;
|
|
536
|
+
}, {
|
|
537
|
+
groupId: string;
|
|
538
|
+
artifactId: string;
|
|
539
|
+
outputFile: string;
|
|
540
|
+
activateProfiles?: string | undefined;
|
|
541
|
+
appKey?: string | undefined;
|
|
542
|
+
archive?: string | undefined;
|
|
543
|
+
}>;
|
|
544
|
+
export declare const APTSCAArgs: z.ZodObject<{
|
|
545
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
546
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
547
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
548
|
+
nvdApiKey: z.ZodString;
|
|
549
|
+
dataDir: z.ZodOptional<z.ZodString>;
|
|
550
|
+
}, "strip", z.ZodTypeAny, {
|
|
551
|
+
nvdApiKey: string;
|
|
552
|
+
outputDir?: string | undefined;
|
|
553
|
+
appKey?: string | undefined;
|
|
554
|
+
archive?: string | undefined;
|
|
555
|
+
dataDir?: string | undefined;
|
|
556
|
+
}, {
|
|
557
|
+
nvdApiKey: string;
|
|
558
|
+
outputDir?: string | undefined;
|
|
559
|
+
appKey?: string | undefined;
|
|
560
|
+
archive?: string | undefined;
|
|
561
|
+
dataDir?: string | undefined;
|
|
562
|
+
}>;
|
|
563
|
+
export declare const APTSCAOptions: z.ZodEffects<z.ZodObject<{
|
|
564
|
+
outputDir: z.ZodString;
|
|
565
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
566
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
567
|
+
nvdApiKey: z.ZodString;
|
|
568
|
+
dataDir: z.ZodOptional<z.ZodString>;
|
|
569
|
+
}, "strip", z.ZodTypeAny, {
|
|
570
|
+
outputDir: string;
|
|
571
|
+
nvdApiKey: string;
|
|
572
|
+
appKey?: string | undefined;
|
|
573
|
+
archive?: string | undefined;
|
|
574
|
+
dataDir?: string | undefined;
|
|
575
|
+
}, {
|
|
576
|
+
outputDir: string;
|
|
577
|
+
nvdApiKey: string;
|
|
578
|
+
appKey?: string | undefined;
|
|
579
|
+
archive?: string | undefined;
|
|
580
|
+
dataDir?: string | undefined;
|
|
581
|
+
}>, {
|
|
582
|
+
outputDir: string;
|
|
583
|
+
nvdApiKey: string;
|
|
584
|
+
appKey?: string | undefined;
|
|
585
|
+
archive?: string | undefined;
|
|
586
|
+
dataDir?: string | undefined;
|
|
587
|
+
}, {
|
|
588
|
+
outputDir: string;
|
|
589
|
+
nvdApiKey: string;
|
|
590
|
+
appKey?: string | undefined;
|
|
591
|
+
archive?: string | undefined;
|
|
592
|
+
dataDir?: string | undefined;
|
|
593
|
+
}>;
|
|
252
594
|
export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
595
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
253
596
|
cwd: z.ZodString;
|
|
254
597
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
255
598
|
environment: z.ZodOptional<z.ZodString>;
|
|
256
|
-
|
|
599
|
+
license: z.ZodOptional<z.ZodString>;
|
|
600
|
+
nodes: z.ZodOptional<z.ZodNumber>;
|
|
257
601
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
258
602
|
}, "strip", z.ZodTypeAny, {
|
|
259
603
|
cwd: string;
|
|
260
604
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
605
|
+
tag?: string | undefined;
|
|
261
606
|
environment?: string | undefined;
|
|
262
|
-
|
|
607
|
+
license?: string | undefined;
|
|
608
|
+
nodes?: number | undefined;
|
|
263
609
|
force?: boolean | undefined;
|
|
264
610
|
}, {
|
|
265
611
|
cwd: string;
|
|
266
612
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
613
|
+
tag?: string | undefined;
|
|
267
614
|
environment?: string | undefined;
|
|
268
|
-
|
|
615
|
+
license?: string | undefined;
|
|
616
|
+
nodes?: number | undefined;
|
|
269
617
|
force?: boolean | undefined;
|
|
270
|
-
}>, z.ZodObject<{
|
|
618
|
+
}>, z.ZodIntersection<z.ZodObject<{
|
|
619
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
271
620
|
cwd: z.ZodString;
|
|
272
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
273
|
-
outputDir: z.ZodOptional<z.ZodString>;
|
|
274
621
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
275
622
|
environment: z.ZodString;
|
|
276
|
-
|
|
623
|
+
license: z.ZodOptional<z.ZodString>;
|
|
277
624
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
625
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
626
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
627
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
278
628
|
appLicense: z.ZodString;
|
|
629
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
630
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
279
631
|
}, "strip", z.ZodTypeAny, {
|
|
280
632
|
cwd: string;
|
|
281
633
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
282
634
|
environment: string;
|
|
283
|
-
appKey: string;
|
|
284
635
|
appLicense: string;
|
|
285
|
-
|
|
286
|
-
|
|
636
|
+
tag?: string | undefined;
|
|
637
|
+
license?: string | undefined;
|
|
287
638
|
force?: boolean | undefined;
|
|
639
|
+
outputDir?: string | undefined;
|
|
640
|
+
appKey?: string | undefined;
|
|
641
|
+
archive?: string | undefined;
|
|
642
|
+
restartAfterInstall?: boolean | undefined;
|
|
643
|
+
timestamp?: string | undefined;
|
|
288
644
|
}, {
|
|
289
645
|
cwd: string;
|
|
290
646
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
291
647
|
environment: string;
|
|
292
|
-
appKey: string;
|
|
293
648
|
appLicense: string;
|
|
649
|
+
tag?: string | undefined;
|
|
650
|
+
license?: string | undefined;
|
|
651
|
+
force?: boolean | undefined;
|
|
652
|
+
outputDir?: string | undefined;
|
|
653
|
+
appKey?: string | undefined;
|
|
654
|
+
archive?: string | undefined;
|
|
655
|
+
restartAfterInstall?: boolean | undefined;
|
|
294
656
|
timestamp?: string | undefined;
|
|
657
|
+
}>, z.ZodObject<{
|
|
658
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
659
|
+
cwd: z.ZodString;
|
|
660
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
661
|
+
environment: z.ZodString;
|
|
662
|
+
license: z.ZodOptional<z.ZodString>;
|
|
663
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
664
|
+
outputDir: z.ZodOptional<z.ZodString>;
|
|
665
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
666
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
667
|
+
appLicense: z.ZodOptional<z.ZodString>;
|
|
668
|
+
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
669
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
670
|
+
jmeter: z.ZodOptional<z.ZodBoolean>;
|
|
671
|
+
locust: z.ZodOptional<z.ZodBoolean>;
|
|
672
|
+
}, "strip", z.ZodTypeAny, {
|
|
673
|
+
cwd: string;
|
|
674
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
675
|
+
environment: string;
|
|
676
|
+
tag?: string | undefined;
|
|
677
|
+
license?: string | undefined;
|
|
678
|
+
force?: boolean | undefined;
|
|
295
679
|
outputDir?: string | undefined;
|
|
680
|
+
appKey?: string | undefined;
|
|
681
|
+
archive?: string | undefined;
|
|
682
|
+
appLicense?: string | undefined;
|
|
683
|
+
restartAfterInstall?: boolean | undefined;
|
|
684
|
+
timestamp?: string | undefined;
|
|
685
|
+
jmeter?: boolean | undefined;
|
|
686
|
+
locust?: boolean | undefined;
|
|
687
|
+
}, {
|
|
688
|
+
cwd: string;
|
|
689
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
690
|
+
environment: string;
|
|
691
|
+
tag?: string | undefined;
|
|
692
|
+
license?: string | undefined;
|
|
296
693
|
force?: boolean | undefined;
|
|
297
|
-
|
|
694
|
+
outputDir?: string | undefined;
|
|
695
|
+
appKey?: string | undefined;
|
|
696
|
+
archive?: string | undefined;
|
|
697
|
+
appLicense?: string | undefined;
|
|
698
|
+
restartAfterInstall?: boolean | undefined;
|
|
699
|
+
timestamp?: string | undefined;
|
|
700
|
+
jmeter?: boolean | undefined;
|
|
701
|
+
locust?: boolean | undefined;
|
|
702
|
+
}>>>;
|
|
298
703
|
export type TAPTArgs = z.infer<typeof APTArgs>;
|
|
704
|
+
export type TAPTTestMessages = z.infer<typeof APTTestMessages>;
|
|
705
|
+
export type TAPTProvisionArgs = z.infer<typeof APTProvisionArgs>;
|
|
299
706
|
export type TAPTProvisionOptions = z.infer<typeof APTProvisionOptions>;
|
|
300
|
-
export type
|
|
707
|
+
export type TAPTPerformanceReportArgs = z.infer<typeof APTPerformanceReportArgs>;
|
|
708
|
+
export type TAPTScalabilityReportArgs = z.infer<typeof APTScalabilityReportArgs>;
|
|
301
709
|
export type TPerformanceTestTypes = z.infer<typeof PerformanceTestTypes>;
|
|
302
710
|
export type TAPTPerformanceTestArgs = z.infer<typeof APTPerformanceTestArgs>;
|
|
303
711
|
export type TAPTPerformanceTestOptions = z.infer<typeof APTPerformanceTestOptions>;
|
|
304
|
-
export type TAPTPerformanceTestMessages = z.infer<typeof APTPerformanceTestMessages>;
|
|
305
712
|
export type TAPTPerformanceReportOptions = z.infer<typeof APTPerformanceReportOptions>;
|
|
306
713
|
export type TScalabilityTestTypes = z.infer<typeof ScalabilityTestTypes>;
|
|
307
714
|
export type TAPTScalabilityTestArgs = z.infer<typeof APTScalabilityTestArgs>;
|
|
308
715
|
export type TAPTScalabilityTestOptions = z.infer<typeof APTScalabilityTestOptions>;
|
|
309
|
-
export type TAPTScalabilityTestMessages = z.infer<typeof APTScalabilityTestMessages>;
|
|
310
716
|
export type TAPTScalabilityReportOptions = z.infer<typeof APTScalabilityReportOptions>;
|
|
717
|
+
export type TAPTRestartArgs = z.infer<typeof APTRestartArgs>;
|
|
718
|
+
export type TAPTRestartOptions = z.infer<typeof APTRestartOptions>;
|
|
311
719
|
export type TAPTTeardownArgs = z.infer<typeof APTTeardownArgs>;
|
|
312
720
|
export type TAPTTeardownOptions = z.infer<typeof APTTeardownOptions>;
|
|
313
721
|
export type TTestResults = z.infer<typeof TestResults>;
|
|
314
722
|
export type TReportTypes = z.infer<typeof ReportTypes>;
|
|
723
|
+
export type TAPTDependencyTreeArgs = z.infer<typeof APTDependencyTreeArgs>;
|
|
724
|
+
export type TAPTDependencyTreeOptions = z.infer<typeof APTDependencyTreeOptions>;
|
|
725
|
+
export type TAPTSCAArgs = z.infer<typeof APTSCAArgs>;
|
|
726
|
+
export type TAPTSCAOptions = z.infer<typeof APTSCAOptions>;
|