@aws-sdk/client-appconfig 3.1075.0 → 3.1077.0
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/README.md +108 -107
- package/dist-cjs/index.js +1826 -15
- package/dist-es/AppConfig.js +28 -0
- package/dist-es/commands/CreateExperimentDefinitionCommand.js +16 -0
- package/dist-es/commands/DeleteExperimentDefinitionCommand.js +16 -0
- package/dist-es/commands/GetExperimentDefinitionCommand.js +16 -0
- package/dist-es/commands/GetExperimentRunCommand.js +16 -0
- package/dist-es/commands/ListExperimentDefinitionsCommand.js +16 -0
- package/dist-es/commands/ListExperimentRunEventsCommand.js +16 -0
- package/dist-es/commands/ListExperimentRunsCommand.js +16 -0
- package/dist-es/commands/StartExperimentRunCommand.js +16 -0
- package/dist-es/commands/StopExperimentRunCommand.js +16 -0
- package/dist-es/commands/UpdateExperimentDefinitionCommand.js +16 -0
- package/dist-es/commands/UpdateExperimentRunCommand.js +16 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/models/enums.js +23 -0
- package/dist-es/pagination/ListExperimentDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/ListExperimentRunEventsPaginator.js +4 -0
- package/dist-es/pagination/ListExperimentRunsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +328 -49
- package/dist-types/AppConfig.d.ts +130 -107
- package/dist-types/AppConfigClient.d.ts +44 -109
- package/dist-types/commands/CreateApplicationCommand.d.ts +0 -3
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +0 -3
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +0 -3
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +0 -3
- package/dist-types/commands/CreateExperimentDefinitionCommand.d.ts +266 -0
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +0 -3
- package/dist-types/commands/CreateExtensionCommand.d.ts +0 -3
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +1 -4
- package/dist-types/commands/DeleteExperimentDefinitionCommand.d.ts +103 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +3 -0
- package/dist-types/commands/GetExperimentDefinitionCommand.d.ts +184 -0
- package/dist-types/commands/GetExperimentRunCommand.d.ts +209 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +2 -0
- package/dist-types/commands/ListExperimentDefinitionsCommand.d.ts +131 -0
- package/dist-types/commands/ListExperimentRunEventsCommand.d.ts +136 -0
- package/dist-types/commands/ListExperimentRunsCommand.d.ts +125 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +5 -0
- package/dist-types/commands/StartExperimentRunCommand.d.ts +230 -0
- package/dist-types/commands/StopExperimentRunCommand.d.ts +231 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +6 -0
- package/dist-types/commands/UpdateExperimentDefinitionCommand.d.ts +237 -0
- package/dist-types/commands/UpdateExperimentRunCommand.d.ts +229 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/index.d.ts +31 -107
- package/dist-types/models/enums.d.ts +63 -0
- package/dist-types/models/errors.d.ts +0 -3
- package/dist-types/models/models_0.d.ts +1080 -37
- package/dist-types/pagination/ListExperimentDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExperimentRunEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExperimentRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +39 -0
- package/dist-types/ts3.4/AppConfig.d.ts +209 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateExperimentDefinitionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteExperimentDefinitionCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetExperimentDefinitionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetExperimentRunCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListExperimentDefinitionsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListExperimentRunEventsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListExperimentRunsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartExperimentRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopExperimentRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateExperimentDefinitionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateExperimentRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/models/enums.d.ts +32 -0
- package/dist-types/ts3.4/models/models_0.d.ts +292 -0
- package/dist-types/ts3.4/pagination/ListExperimentDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExperimentRunEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExperimentRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +39 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -52
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/AppConfigServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -97
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -980
|
@@ -52,6 +52,10 @@ import {
|
|
|
52
52
|
CreateEnvironmentCommandInput,
|
|
53
53
|
CreateEnvironmentCommandOutput,
|
|
54
54
|
} from "./commands/CreateEnvironmentCommand";
|
|
55
|
+
import {
|
|
56
|
+
CreateExperimentDefinitionCommandInput,
|
|
57
|
+
CreateExperimentDefinitionCommandOutput,
|
|
58
|
+
} from "./commands/CreateExperimentDefinitionCommand";
|
|
55
59
|
import {
|
|
56
60
|
CreateExtensionAssociationCommandInput,
|
|
57
61
|
CreateExtensionAssociationCommandOutput,
|
|
@@ -80,6 +84,10 @@ import {
|
|
|
80
84
|
DeleteEnvironmentCommandInput,
|
|
81
85
|
DeleteEnvironmentCommandOutput,
|
|
82
86
|
} from "./commands/DeleteEnvironmentCommand";
|
|
87
|
+
import {
|
|
88
|
+
DeleteExperimentDefinitionCommandInput,
|
|
89
|
+
DeleteExperimentDefinitionCommandOutput,
|
|
90
|
+
} from "./commands/DeleteExperimentDefinitionCommand";
|
|
83
91
|
import {
|
|
84
92
|
DeleteExtensionAssociationCommandInput,
|
|
85
93
|
DeleteExtensionAssociationCommandOutput,
|
|
@@ -120,6 +128,14 @@ import {
|
|
|
120
128
|
GetEnvironmentCommandInput,
|
|
121
129
|
GetEnvironmentCommandOutput,
|
|
122
130
|
} from "./commands/GetEnvironmentCommand";
|
|
131
|
+
import {
|
|
132
|
+
GetExperimentDefinitionCommandInput,
|
|
133
|
+
GetExperimentDefinitionCommandOutput,
|
|
134
|
+
} from "./commands/GetExperimentDefinitionCommand";
|
|
135
|
+
import {
|
|
136
|
+
GetExperimentRunCommandInput,
|
|
137
|
+
GetExperimentRunCommandOutput,
|
|
138
|
+
} from "./commands/GetExperimentRunCommand";
|
|
123
139
|
import {
|
|
124
140
|
GetExtensionAssociationCommandInput,
|
|
125
141
|
GetExtensionAssociationCommandOutput,
|
|
@@ -152,6 +168,18 @@ import {
|
|
|
152
168
|
ListEnvironmentsCommandInput,
|
|
153
169
|
ListEnvironmentsCommandOutput,
|
|
154
170
|
} from "./commands/ListEnvironmentsCommand";
|
|
171
|
+
import {
|
|
172
|
+
ListExperimentDefinitionsCommandInput,
|
|
173
|
+
ListExperimentDefinitionsCommandOutput,
|
|
174
|
+
} from "./commands/ListExperimentDefinitionsCommand";
|
|
175
|
+
import {
|
|
176
|
+
ListExperimentRunEventsCommandInput,
|
|
177
|
+
ListExperimentRunEventsCommandOutput,
|
|
178
|
+
} from "./commands/ListExperimentRunEventsCommand";
|
|
179
|
+
import {
|
|
180
|
+
ListExperimentRunsCommandInput,
|
|
181
|
+
ListExperimentRunsCommandOutput,
|
|
182
|
+
} from "./commands/ListExperimentRunsCommand";
|
|
155
183
|
import {
|
|
156
184
|
ListExtensionAssociationsCommandInput,
|
|
157
185
|
ListExtensionAssociationsCommandOutput,
|
|
@@ -172,10 +200,18 @@ import {
|
|
|
172
200
|
StartDeploymentCommandInput,
|
|
173
201
|
StartDeploymentCommandOutput,
|
|
174
202
|
} from "./commands/StartDeploymentCommand";
|
|
203
|
+
import {
|
|
204
|
+
StartExperimentRunCommandInput,
|
|
205
|
+
StartExperimentRunCommandOutput,
|
|
206
|
+
} from "./commands/StartExperimentRunCommand";
|
|
175
207
|
import {
|
|
176
208
|
StopDeploymentCommandInput,
|
|
177
209
|
StopDeploymentCommandOutput,
|
|
178
210
|
} from "./commands/StopDeploymentCommand";
|
|
211
|
+
import {
|
|
212
|
+
StopExperimentRunCommandInput,
|
|
213
|
+
StopExperimentRunCommandOutput,
|
|
214
|
+
} from "./commands/StopExperimentRunCommand";
|
|
179
215
|
import {
|
|
180
216
|
TagResourceCommandInput,
|
|
181
217
|
TagResourceCommandOutput,
|
|
@@ -204,6 +240,14 @@ import {
|
|
|
204
240
|
UpdateEnvironmentCommandInput,
|
|
205
241
|
UpdateEnvironmentCommandOutput,
|
|
206
242
|
} from "./commands/UpdateEnvironmentCommand";
|
|
243
|
+
import {
|
|
244
|
+
UpdateExperimentDefinitionCommandInput,
|
|
245
|
+
UpdateExperimentDefinitionCommandOutput,
|
|
246
|
+
} from "./commands/UpdateExperimentDefinitionCommand";
|
|
247
|
+
import {
|
|
248
|
+
UpdateExperimentRunCommandInput,
|
|
249
|
+
UpdateExperimentRunCommandOutput,
|
|
250
|
+
} from "./commands/UpdateExperimentRunCommand";
|
|
207
251
|
import {
|
|
208
252
|
UpdateExtensionAssociationCommandInput,
|
|
209
253
|
UpdateExtensionAssociationCommandOutput,
|
|
@@ -228,6 +272,7 @@ export type ServiceInputTypes =
|
|
|
228
272
|
| CreateConfigurationProfileCommandInput
|
|
229
273
|
| CreateDeploymentStrategyCommandInput
|
|
230
274
|
| CreateEnvironmentCommandInput
|
|
275
|
+
| CreateExperimentDefinitionCommandInput
|
|
231
276
|
| CreateExtensionAssociationCommandInput
|
|
232
277
|
| CreateExtensionCommandInput
|
|
233
278
|
| CreateHostedConfigurationVersionCommandInput
|
|
@@ -235,6 +280,7 @@ export type ServiceInputTypes =
|
|
|
235
280
|
| DeleteConfigurationProfileCommandInput
|
|
236
281
|
| DeleteDeploymentStrategyCommandInput
|
|
237
282
|
| DeleteEnvironmentCommandInput
|
|
283
|
+
| DeleteExperimentDefinitionCommandInput
|
|
238
284
|
| DeleteExtensionAssociationCommandInput
|
|
239
285
|
| DeleteExtensionCommandInput
|
|
240
286
|
| DeleteHostedConfigurationVersionCommandInput
|
|
@@ -245,6 +291,8 @@ export type ServiceInputTypes =
|
|
|
245
291
|
| GetDeploymentCommandInput
|
|
246
292
|
| GetDeploymentStrategyCommandInput
|
|
247
293
|
| GetEnvironmentCommandInput
|
|
294
|
+
| GetExperimentDefinitionCommandInput
|
|
295
|
+
| GetExperimentRunCommandInput
|
|
248
296
|
| GetExtensionAssociationCommandInput
|
|
249
297
|
| GetExtensionCommandInput
|
|
250
298
|
| GetHostedConfigurationVersionCommandInput
|
|
@@ -253,12 +301,17 @@ export type ServiceInputTypes =
|
|
|
253
301
|
| ListDeploymentStrategiesCommandInput
|
|
254
302
|
| ListDeploymentsCommandInput
|
|
255
303
|
| ListEnvironmentsCommandInput
|
|
304
|
+
| ListExperimentDefinitionsCommandInput
|
|
305
|
+
| ListExperimentRunEventsCommandInput
|
|
306
|
+
| ListExperimentRunsCommandInput
|
|
256
307
|
| ListExtensionAssociationsCommandInput
|
|
257
308
|
| ListExtensionsCommandInput
|
|
258
309
|
| ListHostedConfigurationVersionsCommandInput
|
|
259
310
|
| ListTagsForResourceCommandInput
|
|
260
311
|
| StartDeploymentCommandInput
|
|
312
|
+
| StartExperimentRunCommandInput
|
|
261
313
|
| StopDeploymentCommandInput
|
|
314
|
+
| StopExperimentRunCommandInput
|
|
262
315
|
| TagResourceCommandInput
|
|
263
316
|
| UntagResourceCommandInput
|
|
264
317
|
| UpdateAccountSettingsCommandInput
|
|
@@ -266,6 +319,8 @@ export type ServiceInputTypes =
|
|
|
266
319
|
| UpdateConfigurationProfileCommandInput
|
|
267
320
|
| UpdateDeploymentStrategyCommandInput
|
|
268
321
|
| UpdateEnvironmentCommandInput
|
|
322
|
+
| UpdateExperimentDefinitionCommandInput
|
|
323
|
+
| UpdateExperimentRunCommandInput
|
|
269
324
|
| UpdateExtensionAssociationCommandInput
|
|
270
325
|
| UpdateExtensionCommandInput
|
|
271
326
|
| ValidateConfigurationCommandInput;
|
|
@@ -274,6 +329,7 @@ export type ServiceOutputTypes =
|
|
|
274
329
|
| CreateConfigurationProfileCommandOutput
|
|
275
330
|
| CreateDeploymentStrategyCommandOutput
|
|
276
331
|
| CreateEnvironmentCommandOutput
|
|
332
|
+
| CreateExperimentDefinitionCommandOutput
|
|
277
333
|
| CreateExtensionAssociationCommandOutput
|
|
278
334
|
| CreateExtensionCommandOutput
|
|
279
335
|
| CreateHostedConfigurationVersionCommandOutput
|
|
@@ -281,6 +337,7 @@ export type ServiceOutputTypes =
|
|
|
281
337
|
| DeleteConfigurationProfileCommandOutput
|
|
282
338
|
| DeleteDeploymentStrategyCommandOutput
|
|
283
339
|
| DeleteEnvironmentCommandOutput
|
|
340
|
+
| DeleteExperimentDefinitionCommandOutput
|
|
284
341
|
| DeleteExtensionAssociationCommandOutput
|
|
285
342
|
| DeleteExtensionCommandOutput
|
|
286
343
|
| DeleteHostedConfigurationVersionCommandOutput
|
|
@@ -291,6 +348,8 @@ export type ServiceOutputTypes =
|
|
|
291
348
|
| GetDeploymentCommandOutput
|
|
292
349
|
| GetDeploymentStrategyCommandOutput
|
|
293
350
|
| GetEnvironmentCommandOutput
|
|
351
|
+
| GetExperimentDefinitionCommandOutput
|
|
352
|
+
| GetExperimentRunCommandOutput
|
|
294
353
|
| GetExtensionAssociationCommandOutput
|
|
295
354
|
| GetExtensionCommandOutput
|
|
296
355
|
| GetHostedConfigurationVersionCommandOutput
|
|
@@ -299,12 +358,17 @@ export type ServiceOutputTypes =
|
|
|
299
358
|
| ListDeploymentStrategiesCommandOutput
|
|
300
359
|
| ListDeploymentsCommandOutput
|
|
301
360
|
| ListEnvironmentsCommandOutput
|
|
361
|
+
| ListExperimentDefinitionsCommandOutput
|
|
362
|
+
| ListExperimentRunEventsCommandOutput
|
|
363
|
+
| ListExperimentRunsCommandOutput
|
|
302
364
|
| ListExtensionAssociationsCommandOutput
|
|
303
365
|
| ListExtensionsCommandOutput
|
|
304
366
|
| ListHostedConfigurationVersionsCommandOutput
|
|
305
367
|
| ListTagsForResourceCommandOutput
|
|
306
368
|
| StartDeploymentCommandOutput
|
|
369
|
+
| StartExperimentRunCommandOutput
|
|
307
370
|
| StopDeploymentCommandOutput
|
|
371
|
+
| StopExperimentRunCommandOutput
|
|
308
372
|
| TagResourceCommandOutput
|
|
309
373
|
| UntagResourceCommandOutput
|
|
310
374
|
| UpdateAccountSettingsCommandOutput
|
|
@@ -312,6 +376,8 @@ export type ServiceOutputTypes =
|
|
|
312
376
|
| UpdateConfigurationProfileCommandOutput
|
|
313
377
|
| UpdateDeploymentStrategyCommandOutput
|
|
314
378
|
| UpdateEnvironmentCommandOutput
|
|
379
|
+
| UpdateExperimentDefinitionCommandOutput
|
|
380
|
+
| UpdateExperimentRunCommandOutput
|
|
315
381
|
| UpdateExtensionAssociationCommandOutput
|
|
316
382
|
| UpdateExtensionCommandOutput
|
|
317
383
|
| ValidateConfigurationCommandOutput;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateExperimentDefinitionRequest,
|
|
10
|
+
ExperimentDefinition,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateExperimentDefinitionCommandInput
|
|
15
|
+
extends CreateExperimentDefinitionRequest {}
|
|
16
|
+
export interface CreateExperimentDefinitionCommandOutput
|
|
17
|
+
extends ExperimentDefinition,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateExperimentDefinitionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateExperimentDefinitionCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateExperimentDefinitionCommandInput,
|
|
24
|
+
CreateExperimentDefinitionCommandOutput,
|
|
25
|
+
AppConfigClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateExperimentDefinitionCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
CreateExperimentDefinitionCommandInput,
|
|
33
|
+
CreateExperimentDefinitionCommandOutput,
|
|
34
|
+
AppConfigClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class CreateExperimentDefinitionCommand extends CreateExperimentDefinitionCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: CreateExperimentDefinitionRequest;
|
|
46
|
+
output: ExperimentDefinition;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: CreateExperimentDefinitionCommandInput;
|
|
50
|
+
output: CreateExperimentDefinitionCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import { DeleteExperimentDefinitionRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteExperimentDefinitionCommandInput
|
|
12
|
+
extends DeleteExperimentDefinitionRequest {}
|
|
13
|
+
export interface DeleteExperimentDefinitionCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteExperimentDefinitionCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteExperimentDefinitionCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteExperimentDefinitionCommandInput,
|
|
20
|
+
DeleteExperimentDefinitionCommandOutput,
|
|
21
|
+
AppConfigClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteExperimentDefinitionCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
DeleteExperimentDefinitionCommandInput,
|
|
29
|
+
DeleteExperimentDefinitionCommandOutput,
|
|
30
|
+
AppConfigClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class DeleteExperimentDefinitionCommand extends DeleteExperimentDefinitionCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: DeleteExperimentDefinitionRequest;
|
|
42
|
+
output: {};
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: DeleteExperimentDefinitionCommandInput;
|
|
46
|
+
output: DeleteExperimentDefinitionCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import {
|
|
9
|
+
ExperimentDefinition,
|
|
10
|
+
GetExperimentDefinitionRequest,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetExperimentDefinitionCommandInput
|
|
15
|
+
extends GetExperimentDefinitionRequest {}
|
|
16
|
+
export interface GetExperimentDefinitionCommandOutput
|
|
17
|
+
extends ExperimentDefinition,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetExperimentDefinitionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetExperimentDefinitionCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetExperimentDefinitionCommandInput,
|
|
24
|
+
GetExperimentDefinitionCommandOutput,
|
|
25
|
+
AppConfigClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetExperimentDefinitionCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
GetExperimentDefinitionCommandInput,
|
|
33
|
+
GetExperimentDefinitionCommandOutput,
|
|
34
|
+
AppConfigClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class GetExperimentDefinitionCommand extends GetExperimentDefinitionCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: GetExperimentDefinitionRequest;
|
|
46
|
+
output: ExperimentDefinition;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: GetExperimentDefinitionCommandInput;
|
|
50
|
+
output: GetExperimentDefinitionCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import { ExperimentRun, GetExperimentRunRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetExperimentRunCommandInput extends GetExperimentRunRequest {}
|
|
12
|
+
export interface GetExperimentRunCommandOutput
|
|
13
|
+
extends ExperimentRun,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetExperimentRunCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetExperimentRunCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
GetExperimentRunCommandInput,
|
|
20
|
+
GetExperimentRunCommandOutput,
|
|
21
|
+
AppConfigClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetExperimentRunCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
GetExperimentRunCommandInput,
|
|
29
|
+
GetExperimentRunCommandOutput,
|
|
30
|
+
AppConfigClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class GetExperimentRunCommand extends GetExperimentRunCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: GetExperimentRunRequest;
|
|
42
|
+
output: ExperimentRun;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: GetExperimentRunCommandInput;
|
|
46
|
+
output: GetExperimentRunCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import {
|
|
9
|
+
ExperimentDefinitions,
|
|
10
|
+
ListExperimentDefinitionsRequest,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListExperimentDefinitionsCommandInput
|
|
15
|
+
extends ListExperimentDefinitionsRequest {}
|
|
16
|
+
export interface ListExperimentDefinitionsCommandOutput
|
|
17
|
+
extends ExperimentDefinitions,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListExperimentDefinitionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListExperimentDefinitionsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListExperimentDefinitionsCommandInput,
|
|
24
|
+
ListExperimentDefinitionsCommandOutput,
|
|
25
|
+
AppConfigClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListExperimentDefinitionsCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListExperimentDefinitionsCommandInput,
|
|
33
|
+
ListExperimentDefinitionsCommandOutput,
|
|
34
|
+
AppConfigClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListExperimentDefinitionsCommand extends ListExperimentDefinitionsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListExperimentDefinitionsRequest;
|
|
46
|
+
output: ExperimentDefinitions;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListExperimentDefinitionsCommandInput;
|
|
50
|
+
output: ListExperimentDefinitionsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import {
|
|
9
|
+
ExperimentRunEvents,
|
|
10
|
+
ListExperimentRunEventsRequest,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListExperimentRunEventsCommandInput
|
|
15
|
+
extends ListExperimentRunEventsRequest {}
|
|
16
|
+
export interface ListExperimentRunEventsCommandOutput
|
|
17
|
+
extends ExperimentRunEvents,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListExperimentRunEventsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListExperimentRunEventsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListExperimentRunEventsCommandInput,
|
|
24
|
+
ListExperimentRunEventsCommandOutput,
|
|
25
|
+
AppConfigClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListExperimentRunEventsCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListExperimentRunEventsCommandInput,
|
|
33
|
+
ListExperimentRunEventsCommandOutput,
|
|
34
|
+
AppConfigClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListExperimentRunEventsCommand extends ListExperimentRunEventsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListExperimentRunEventsRequest;
|
|
46
|
+
output: ExperimentRunEvents;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListExperimentRunEventsCommandInput;
|
|
50
|
+
output: ListExperimentRunEventsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import { ExperimentRuns, ListExperimentRunsRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListExperimentRunsCommandInput
|
|
12
|
+
extends ListExperimentRunsRequest {}
|
|
13
|
+
export interface ListExperimentRunsCommandOutput
|
|
14
|
+
extends ExperimentRuns,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const ListExperimentRunsCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: ListExperimentRunsCommandInput
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
ListExperimentRunsCommandInput,
|
|
21
|
+
ListExperimentRunsCommandOutput,
|
|
22
|
+
AppConfigClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
input: ListExperimentRunsCommandInput
|
|
28
|
+
): import("@smithy/core/client").CommandImpl<
|
|
29
|
+
ListExperimentRunsCommandInput,
|
|
30
|
+
ListExperimentRunsCommandOutput,
|
|
31
|
+
AppConfigClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): {
|
|
36
|
+
[x: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
export declare class ListExperimentRunsCommand extends ListExperimentRunsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListExperimentRunsRequest;
|
|
43
|
+
output: ExperimentRuns;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListExperimentRunsCommandInput;
|
|
47
|
+
output: ListExperimentRunsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import { ExperimentRun, StartExperimentRunRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StartExperimentRunCommandInput
|
|
12
|
+
extends StartExperimentRunRequest {}
|
|
13
|
+
export interface StartExperimentRunCommandOutput
|
|
14
|
+
extends ExperimentRun,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const StartExperimentRunCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: StartExperimentRunCommandInput
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
StartExperimentRunCommandInput,
|
|
21
|
+
StartExperimentRunCommandOutput,
|
|
22
|
+
AppConfigClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
input: StartExperimentRunCommandInput
|
|
28
|
+
): import("@smithy/core/client").CommandImpl<
|
|
29
|
+
StartExperimentRunCommandInput,
|
|
30
|
+
StartExperimentRunCommandOutput,
|
|
31
|
+
AppConfigClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): {
|
|
36
|
+
[x: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
export declare class StartExperimentRunCommand extends StartExperimentRunCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartExperimentRunRequest;
|
|
43
|
+
output: ExperimentRun;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartExperimentRunCommandInput;
|
|
47
|
+
output: StartExperimentRunCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppConfigClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppConfigClient";
|
|
8
|
+
import { ExperimentRun, StopExperimentRunRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StopExperimentRunCommandInput
|
|
12
|
+
extends StopExperimentRunRequest {}
|
|
13
|
+
export interface StopExperimentRunCommandOutput
|
|
14
|
+
extends ExperimentRun,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const StopExperimentRunCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: StopExperimentRunCommandInput
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
StopExperimentRunCommandInput,
|
|
21
|
+
StopExperimentRunCommandOutput,
|
|
22
|
+
AppConfigClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
input: StopExperimentRunCommandInput
|
|
28
|
+
): import("@smithy/core/client").CommandImpl<
|
|
29
|
+
StopExperimentRunCommandInput,
|
|
30
|
+
StopExperimentRunCommandOutput,
|
|
31
|
+
AppConfigClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): {
|
|
36
|
+
[x: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
export declare class StopExperimentRunCommand extends StopExperimentRunCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StopExperimentRunRequest;
|
|
43
|
+
output: ExperimentRun;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StopExperimentRunCommandInput;
|
|
47
|
+
output: StopExperimentRunCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|