@aws-sdk/client-appconfig 3.1075.0 → 3.1076.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.
Files changed (93) hide show
  1. package/README.md +108 -107
  2. package/dist-cjs/index.js +1825 -15
  3. package/dist-es/AppConfig.js +28 -0
  4. package/dist-es/commands/CreateExperimentDefinitionCommand.js +16 -0
  5. package/dist-es/commands/DeleteExperimentDefinitionCommand.js +16 -0
  6. package/dist-es/commands/GetExperimentDefinitionCommand.js +16 -0
  7. package/dist-es/commands/GetExperimentRunCommand.js +16 -0
  8. package/dist-es/commands/ListExperimentDefinitionsCommand.js +16 -0
  9. package/dist-es/commands/ListExperimentRunEventsCommand.js +16 -0
  10. package/dist-es/commands/ListExperimentRunsCommand.js +16 -0
  11. package/dist-es/commands/StartExperimentRunCommand.js +16 -0
  12. package/dist-es/commands/StopExperimentRunCommand.js +16 -0
  13. package/dist-es/commands/UpdateExperimentDefinitionCommand.js +16 -0
  14. package/dist-es/commands/UpdateExperimentRunCommand.js +16 -0
  15. package/dist-es/commands/index.js +11 -0
  16. package/dist-es/models/enums.js +23 -0
  17. package/dist-es/pagination/ListExperimentDefinitionsPaginator.js +4 -0
  18. package/dist-es/pagination/ListExperimentRunEventsPaginator.js +4 -0
  19. package/dist-es/pagination/ListExperimentRunsPaginator.js +4 -0
  20. package/dist-es/pagination/index.js +3 -0
  21. package/dist-es/schemas/schemas_0.js +328 -49
  22. package/dist-types/AppConfig.d.ts +130 -107
  23. package/dist-types/AppConfigClient.d.ts +44 -109
  24. package/dist-types/commands/CreateApplicationCommand.d.ts +0 -3
  25. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +0 -3
  26. package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +0 -3
  27. package/dist-types/commands/CreateEnvironmentCommand.d.ts +0 -3
  28. package/dist-types/commands/CreateExperimentDefinitionCommand.d.ts +266 -0
  29. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +0 -3
  30. package/dist-types/commands/CreateExtensionCommand.d.ts +0 -3
  31. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +1 -4
  32. package/dist-types/commands/DeleteExperimentDefinitionCommand.d.ts +103 -0
  33. package/dist-types/commands/GetAccountSettingsCommand.d.ts +3 -0
  34. package/dist-types/commands/GetExperimentDefinitionCommand.d.ts +184 -0
  35. package/dist-types/commands/GetExperimentRunCommand.d.ts +209 -0
  36. package/dist-types/commands/ListDeploymentsCommand.d.ts +2 -0
  37. package/dist-types/commands/ListExperimentDefinitionsCommand.d.ts +131 -0
  38. package/dist-types/commands/ListExperimentRunEventsCommand.d.ts +136 -0
  39. package/dist-types/commands/ListExperimentRunsCommand.d.ts +125 -0
  40. package/dist-types/commands/StartDeploymentCommand.d.ts +5 -0
  41. package/dist-types/commands/StartExperimentRunCommand.d.ts +230 -0
  42. package/dist-types/commands/StopExperimentRunCommand.d.ts +231 -0
  43. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +6 -0
  44. package/dist-types/commands/UpdateExperimentDefinitionCommand.d.ts +237 -0
  45. package/dist-types/commands/UpdateExperimentRunCommand.d.ts +229 -0
  46. package/dist-types/commands/index.d.ts +11 -0
  47. package/dist-types/index.d.ts +31 -107
  48. package/dist-types/models/enums.d.ts +63 -0
  49. package/dist-types/models/errors.d.ts +0 -3
  50. package/dist-types/models/models_0.d.ts +1080 -37
  51. package/dist-types/pagination/ListExperimentDefinitionsPaginator.d.ts +7 -0
  52. package/dist-types/pagination/ListExperimentRunEventsPaginator.d.ts +7 -0
  53. package/dist-types/pagination/ListExperimentRunsPaginator.d.ts +7 -0
  54. package/dist-types/pagination/index.d.ts +3 -0
  55. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  56. package/dist-types/runtimeConfig.d.ts +1 -1
  57. package/dist-types/runtimeConfig.native.d.ts +1 -1
  58. package/dist-types/schemas/schemas_0.d.ts +39 -0
  59. package/dist-types/ts3.4/AppConfig.d.ts +209 -0
  60. package/dist-types/ts3.4/AppConfigClient.d.ts +66 -0
  61. package/dist-types/ts3.4/commands/CreateExperimentDefinitionCommand.d.ts +53 -0
  62. package/dist-types/ts3.4/commands/DeleteExperimentDefinitionCommand.d.ts +49 -0
  63. package/dist-types/ts3.4/commands/GetExperimentDefinitionCommand.d.ts +53 -0
  64. package/dist-types/ts3.4/commands/GetExperimentRunCommand.d.ts +49 -0
  65. package/dist-types/ts3.4/commands/ListExperimentDefinitionsCommand.d.ts +53 -0
  66. package/dist-types/ts3.4/commands/ListExperimentRunEventsCommand.d.ts +53 -0
  67. package/dist-types/ts3.4/commands/ListExperimentRunsCommand.d.ts +50 -0
  68. package/dist-types/ts3.4/commands/StartExperimentRunCommand.d.ts +50 -0
  69. package/dist-types/ts3.4/commands/StopExperimentRunCommand.d.ts +50 -0
  70. package/dist-types/ts3.4/commands/UpdateExperimentDefinitionCommand.d.ts +53 -0
  71. package/dist-types/ts3.4/commands/UpdateExperimentRunCommand.d.ts +50 -0
  72. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  73. package/dist-types/ts3.4/models/enums.d.ts +32 -0
  74. package/dist-types/ts3.4/models/models_0.d.ts +292 -0
  75. package/dist-types/ts3.4/pagination/ListExperimentDefinitionsPaginator.d.ts +11 -0
  76. package/dist-types/ts3.4/pagination/ListExperimentRunEventsPaginator.d.ts +11 -0
  77. package/dist-types/ts3.4/pagination/ListExperimentRunsPaginator.d.ts +11 -0
  78. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  79. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
  80. package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
  81. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
  82. package/dist-types/ts3.4/schemas/schemas_0.d.ts +39 -0
  83. package/package.json +8 -8
  84. package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  85. package/dist-cjs/endpoint/bdd.js +0 -52
  86. package/dist-cjs/endpoint/endpointResolver.js +0 -14
  87. package/dist-cjs/models/AppConfigServiceException.js +0 -8
  88. package/dist-cjs/models/errors.js +0 -97
  89. package/dist-cjs/runtimeConfig.browser.js +0 -32
  90. package/dist-cjs/runtimeConfig.js +0 -45
  91. package/dist-cjs/runtimeConfig.native.js +0 -12
  92. package/dist-cjs/runtimeConfig.shared.js +0 -38
  93. package/dist-cjs/schemas/schemas_0.js +0 -980
@@ -1,19 +1,26 @@
1
1
  const _A = "Action";
2
2
  const _AA = "AlarmArn";
3
+ const _AD = "AudienceDescription";
4
+ const _ADs = "AssociatedDeployment";
3
5
  const _AE = "AppliedExtension";
4
6
  const _AEp = "AppliedExtensions";
5
7
  const _AI = "ActionInvocation";
6
8
  const _AI_ = "Application-Id";
7
9
  const _AIc = "ActionInvocations";
8
10
  const _AIp = "ApplicationId";
11
+ const _AIpp = "ApplicationIdentifier";
9
12
  const _AL = "ActionList";
10
13
  const _ALp = "ApplicationList";
11
14
  const _AM = "ActionsMap";
12
15
  const _AN = "ActionName";
13
- const _AR = "AllowRevert";
16
+ const _AR = "AudienceRule";
14
17
  const _ARA = "AlarmRoleArn";
15
18
  const _AR_ = "Allow-Revert";
19
+ const _ARl = "AllowRevert";
16
20
  const _AS = "AccountSettings";
21
+ const _AV = "AttributeValues";
22
+ const _AVM = "AttributeValueMap";
23
+ const _AVt = "AttributeValue";
17
24
  const _Ac = "Actions";
18
25
  const _Ap = "Application";
19
26
  const _App = "Applications";
@@ -21,10 +28,12 @@ const _Ar = "Arn";
21
28
  const _B = "Blob";
22
29
  const _BRD = "BadRequestDetails";
23
30
  const _BRE = "BadRequestException";
31
+ const _BV = "BooleanValue";
24
32
  const _C = "Configuration";
25
33
  const _CA = "CompletedAt";
26
34
  const _CAR = "CreateApplicationRequest";
27
- const _CAr = "CreateApplication";
35
+ const _CAr = "CreatedAt";
36
+ const _CAre = "CreateApplication";
28
37
  const _CCP = "CreateConfigurationProfile";
29
38
  const _CCPR = "CreateConfigurationProfileRequest";
30
39
  const _CCV = "ClientConfigurationVersion";
@@ -33,6 +42,8 @@ const _CDSR = "CreateDeploymentStrategyRequest";
33
42
  const _CE = "ConflictException";
34
43
  const _CEA = "CreateExtensionAssociation";
35
44
  const _CEAR = "CreateExtensionAssociationRequest";
45
+ const _CED = "CreateExperimentDefinition";
46
+ const _CEDR = "CreateExperimentDefinitionRequest";
36
47
  const _CER = "CreateEnvironmentRequest";
37
48
  const _CERr = "CreateExtensionRequest";
38
49
  const _CEr = "CreateEnvironment";
@@ -43,8 +54,9 @@ const _CI = "ClientId";
43
54
  const _CLU = "ConfigurationLocationUri";
44
55
  const _CN = "ConfigurationName";
45
56
  const _CP = "ConfigurationProfile";
46
- const _CPI = "ConfigurationProfileId";
57
+ const _CPI = "ConfigurationProfileIdentifier";
47
58
  const _CPI_ = "Configuration-Profile-Id";
59
+ const _CPIo = "ConfigurationProfileId";
48
60
  const _CPS = "ConfigurationProfileSummary";
49
61
  const _CPSL = "ConfigurationProfileSummaryList";
50
62
  const _CPo = "ConfigurationProfiles";
@@ -53,7 +65,8 @@ const _CT_ = "Content-Type";
53
65
  const _CV = "ConfigurationVersion";
54
66
  const _CV_ = "Configuration-Version";
55
67
  const _Co = "Content";
56
- const _Con = "Constraint";
68
+ const _Con = "Control";
69
+ const _Cons = "Constraint";
57
70
  const _D = "Details";
58
71
  const _DA = "DeleteApplication";
59
72
  const _DAR = "DeleteApplicationRequest";
@@ -65,6 +78,8 @@ const _DDSR = "DeleteDeploymentStrategyRequest";
65
78
  const _DE = "DeploymentEvent";
66
79
  const _DEA = "DeleteExtensionAssociation";
67
80
  const _DEAR = "DeleteExtensionAssociationRequest";
81
+ const _DED = "DeleteExperimentDefinition";
82
+ const _DEDR = "DeleteExperimentDefinitionRequest";
68
83
  const _DEP = "DynamicExtensionParameters";
69
84
  const _DER = "DeleteEnvironmentRequest";
70
85
  const _DERe = "DeleteExtensionRequest";
@@ -79,31 +94,52 @@ const _DP = "DeletionProtection";
79
94
  const _DPC = "DeletionProtectionCheck";
80
95
  const _DPM = "DynamicParameterMap";
81
96
  const _DPS = "DeletionProtectionSettings";
97
+ const _DPe = "DeploymentParameters";
82
98
  const _DS = "DeploymentStrategies";
83
99
  const _DSI = "DeploymentStrategyId";
84
100
  const _DSL = "DeploymentStrategyList";
85
101
  const _DSe = "DeploymentStrategy";
86
102
  const _DSep = "DeploymentSummary";
103
+ const _DT = "DeleteType";
87
104
  const _De = "Description";
88
105
  const _Dep = "Deployment";
89
106
  const _Depl = "Deployments";
90
107
  const _Dy = "Dynamic";
91
108
  const _E = "Enabled";
92
- const _EA = "ExtensionAssociation";
109
+ const _EA = "EndedAt";
93
110
  const _EAI = "ExtensionAssociationId";
94
111
  const _EAS = "ExtensionAssociationSummary";
95
112
  const _EASx = "ExtensionAssociationSummaries";
96
- const _EAx = "ExtensionArn";
97
- const _EAxt = "ExtensionAssociations";
113
+ const _EAx = "ExtensionAssociation";
114
+ const _EAxt = "ExtensionArn";
115
+ const _EAxte = "ExtensionAssociations";
98
116
  const _EC = "ErrorCode";
117
+ const _ED = "ExperimentDefinition";
118
+ const _EDI = "ExperimentDefinitionIdentifier";
119
+ const _EDIx = "ExperimentDefinitionId";
120
+ const _EDL = "ExperimentDefinitionList";
121
+ const _EDS = "ExperimentDefinitionSnapshot";
122
+ const _EDSx = "ExperimentDefinitionSummary";
123
+ const _EDx = "ExperimentDefinitions";
99
124
  const _EI = "ExtensionIdentifier";
100
- const _EIn = "EnvironmentId";
125
+ const _EIn = "EnvironmentIdentifier";
126
+ const _EInv = "EnvironmentId";
101
127
  const _EIx = "ExtensionId";
102
128
  const _EL = "EventLog";
103
129
  const _ELn = "EnvironmentList";
104
130
  const _EM = "ErrorMessage";
105
- const _ES = "ExtensionSummary";
106
- const _ESx = "ExtensionSummaries";
131
+ const _EP = "ExposurePercentage";
132
+ const _ER = "ExperimentRun";
133
+ const _ERE = "ExperimentRunEvent";
134
+ const _EREL = "ExperimentRunEventList";
135
+ const _EREx = "ExperimentRunEvents";
136
+ const _ERR = "ExperimentRunResult";
137
+ const _ERS = "ExperimentRunSummary";
138
+ const _ERSL = "ExperimentRunSummaryList";
139
+ const _ERx = "ExperimentRuns";
140
+ const _ES = "ExecutiveSummary";
141
+ const _ESx = "ExtensionSummary";
142
+ const _ESxt = "ExtensionSummaries";
107
143
  const _ET = "EventType";
108
144
  const _EVN = "ExtensionVersionNumber";
109
145
  const _En = "Environment";
@@ -111,6 +147,8 @@ const _Env = "Environments";
111
147
  const _Ex = "Extension";
112
148
  const _Ext = "Extensions";
113
149
  const _FBTIM = "FinalBakeTimeInMinutes";
150
+ const _FK = "FlagKey";
151
+ const _FV = "FlagValue";
114
152
  const _GA = "GetApplication";
115
153
  const _GAR = "GetApplicationRequest";
116
154
  const _GAS = "GetAccountSettings";
@@ -125,13 +163,18 @@ const _GDSR = "GetDeploymentStrategyRequest";
125
163
  const _GE = "GetEnvironment";
126
164
  const _GEA = "GetExtensionAssociation";
127
165
  const _GEAR = "GetExtensionAssociationRequest";
166
+ const _GED = "GetExperimentDefinition";
167
+ const _GEDR = "GetExperimentDefinitionRequest";
128
168
  const _GER = "GetEnvironmentRequest";
169
+ const _GERR = "GetExperimentRunRequest";
129
170
  const _GERe = "GetExtensionRequest";
171
+ const _GERet = "GetExperimentRun";
130
172
  const _GEe = "GetExtension";
131
173
  const _GF = "GrowthFactor";
132
174
  const _GHCV = "GetHostedConfigurationVersion";
133
175
  const _GHCVR = "GetHostedConfigurationVersionRequest";
134
176
  const _GT = "GrowthType";
177
+ const _H = "Hypothesis";
135
178
  const _HCV = "HostedConfigurationVersion";
136
179
  const _HCVS = "HostedConfigurationVersionSummary";
137
180
  const _HCVSL = "HostedConfigurationVersionSummaryList";
@@ -142,23 +185,33 @@ const _ICD = "InvalidConfigurationDetail";
142
185
  const _ICDL = "InvalidConfigurationDetailList";
143
186
  const _II = "InvocationId";
144
187
  const _ISE = "InternalServerException";
188
+ const _In = "Inline";
145
189
  const _It = "Items";
190
+ const _K = "Key";
146
191
  const _KKA = "KmsKeyArn";
147
192
  const _KKI = "KmsKeyIdentifier";
148
193
  const _L = "Limit";
149
194
  const _LA = "ListApplications";
150
195
  const _LAR = "ListApplicationsRequest";
196
+ const _LC = "LaunchCriteria";
151
197
  const _LCP = "ListConfigurationProfiles";
152
198
  const _LCPR = "ListConfigurationProfilesRequest";
153
199
  const _LD = "ListDeployments";
200
+ const _LDN = "LatestDeploymentNumber";
154
201
  const _LDR = "ListDeploymentsRequest";
155
202
  const _LDS = "ListDeploymentStrategies";
156
203
  const _LDSR = "ListDeploymentStrategiesRequest";
157
204
  const _LE = "ListEnvironments";
158
205
  const _LEA = "ListExtensionAssociations";
159
206
  const _LEAR = "ListExtensionAssociationsRequest";
207
+ const _LED = "ListExperimentDefinitions";
208
+ const _LEDR = "ListExperimentDefinitionsRequest";
160
209
  const _LER = "ListEnvironmentsRequest";
210
+ const _LERE = "ListExperimentRunEvents";
211
+ const _LERER = "ListExperimentRunEventsRequest";
212
+ const _LERR = "ListExperimentRunsRequest";
161
213
  const _LERi = "ListExtensionsRequest";
214
+ const _LERis = "ListExperimentRuns";
162
215
  const _LEi = "ListExtensions";
163
216
  const _LHCV = "ListHostedConfigurationVersions";
164
217
  const _LHCVR = "ListHostedConfigurationVersionsRequest";
@@ -175,7 +228,9 @@ const _Me = "Measure";
175
228
  const _Mo = "Monitors";
176
229
  const _Mon = "Monitor";
177
230
  const _N = "Name";
231
+ const _NA = "NumberArray";
178
232
  const _NT = "NextToken";
233
+ const _NV = "NumberValue";
179
234
  const _OA = "OccurredAt";
180
235
  const _P = "Parameters";
181
236
  const _PC = "PercentageComplete";
@@ -189,30 +244,48 @@ const _RAe = "ResourceArn";
189
244
  const _RI = "ResourceIdentifier";
190
245
  const _RN = "ResourceName";
191
246
  const _RNFE = "ResourceNotFoundException";
247
+ const _RNTL = "ReasonsNotToLaunch";
192
248
  const _RRA = "RetrievalRoleArn";
193
249
  const _RT = "ReplicateTo";
250
+ const _RTL = "ReasonsToLaunch";
194
251
  const _RTe = "ResourceTags";
195
- const _Re = "Required";
252
+ const _Re = "Result";
253
+ const _Req = "Required";
254
+ const _Ru = "Run";
196
255
  const _S = "Size";
197
256
  const _SA = "StartedAt";
257
+ const _SAt = "StringArray";
198
258
  const _SD = "StartDeployment";
199
259
  const _SDR = "StartDeploymentRequest";
200
260
  const _SDRt = "StopDeploymentRequest";
201
261
  const _SDt = "StopDeployment";
262
+ const _SER = "StartExperimentRun";
263
+ const _SERR = "StartExperimentRunRequest";
264
+ const _SERRt = "StopExperimentRunRequest";
265
+ const _SERt = "StopExperimentRun";
202
266
  const _SQEE = "ServiceQuotaExceededException";
267
+ const _SV = "StringValue";
203
268
  const _SWLBA = "StringWithLengthBetween0And32768";
204
269
  const _St = "State";
270
+ const _Sta = "Status";
205
271
  const _T = "Type";
206
272
  const _TB = "TriggeredBy";
273
+ const _TI = "TreatmentInput";
274
+ const _TIL = "TreatmentInputList";
207
275
  const _TK = "TagKeys";
276
+ const _TL = "TreatmentList";
277
+ const _TO = "TreatmentOverrides";
208
278
  const _TR = "TagResource";
209
279
  const _TRR = "TagResourceRequest";
210
280
  const _Ta = "Tags";
281
+ const _Tr = "Treatments";
282
+ const _Tre = "Treatment";
211
283
  const _U = "Uri";
212
- const _UA = "UpdateApplication";
284
+ const _UA = "UpdatedAt";
213
285
  const _UAR = "UpdateApplicationRequest";
214
286
  const _UAS = "UpdateAccountSettings";
215
287
  const _UASR = "UpdateAccountSettingsRequest";
288
+ const _UAp = "UpdateApplication";
216
289
  const _UCP = "UpdateConfigurationProfile";
217
290
  const _UCPR = "UpdateConfigurationProfileRequest";
218
291
  const _UDS = "UpdateDeploymentStrategy";
@@ -220,8 +293,12 @@ const _UDSR = "UpdateDeploymentStrategyRequest";
220
293
  const _UE = "UpdateEnvironment";
221
294
  const _UEA = "UpdateExtensionAssociation";
222
295
  const _UEAR = "UpdateExtensionAssociationRequest";
296
+ const _UED = "UpdateExperimentDefinition";
297
+ const _UEDR = "UpdateExperimentDefinitionRequest";
223
298
  const _UER = "UpdateEnvironmentRequest";
299
+ const _UERR = "UpdateExperimentRunRequest";
224
300
  const _UERp = "UpdateExtensionRequest";
301
+ const _UERpd = "UpdateExperimentRun";
225
302
  const _UEp = "UpdateExtension";
226
303
  const _UR = "UntagResource";
227
304
  const _URR = "UntagResourceRequest";
@@ -230,17 +307,24 @@ const _VC = "ValidateConfiguration";
230
307
  const _VCR = "ValidateConfigurationRequest";
231
308
  const _VL = "VersionLabel";
232
309
  const _VLa = "ValidatorList";
310
+ const _VM = "VendedMetrics";
311
+ const _VMS = "VendedMetricsSettings";
233
312
  const _VN = "VersionNumber";
234
313
  const _VN_ = "Version-Number";
235
314
  const _VT = "ValidatorTypes";
236
315
  const _Va = "Value";
237
316
  const _Val = "Validator";
317
+ const _W = "Weight";
318
+ const _ai = "application_identifier";
238
319
  const _c = "client";
239
320
  const _ccv = "client_configuration_version";
240
321
  const _ci = "client_id";
322
+ const _cpi = "configuration_profile_identifier";
241
323
  const _cv = "configuration_version";
324
+ const _dt = "delete_type";
242
325
  const _e = "error";
243
- const _ei = "extension_identifier";
326
+ const _ei = "environment_identifier";
327
+ const _ei_ = "extension_identifier";
244
328
  const _evn = "extension_version_number";
245
329
  const _h = "http";
246
330
  const _hE = "httpError";
@@ -252,6 +336,7 @@ const _nt = "next_token";
252
336
  const _ri = "resource_identifier";
253
337
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.appconfig";
254
338
  const _se = "server";
339
+ const _st = "status";
255
340
  const _t = "type";
256
341
  const _tK = "tagKeys";
257
342
  const _v = "version";
@@ -310,8 +395,8 @@ var _Blob = [0, n0, _B, 8, 21];
310
395
  var StringWithLengthBetween0And32768 = [0, n0, _SWLBA, 8, 0];
311
396
  export var AccountSettings$ = [3, n0, _AS,
312
397
  0,
313
- [_DP],
314
- [() => DeletionProtectionSettings$]
398
+ [_DP, _VM],
399
+ [() => DeletionProtectionSettings$, () => VendedMetricsSettings$]
315
400
  ];
316
401
  export var Action$ = [3, n0, _A,
317
402
  0,
@@ -378,6 +463,11 @@ export var CreateEnvironmentRequest$ = [3, n0, _CER,
378
463
  [_AIp, _N, _De, _Mo, _Ta],
379
464
  [[0, 1], 0, 0, () => MonitorList, 128 | 0], 2
380
465
  ];
466
+ export var CreateExperimentDefinitionRequest$ = [3, n0, _CEDR,
467
+ 0,
468
+ [_AIpp, _N, _CPI, _EIn, _FK, _Tr, _Con, _AR, _H, _AD, _LC, _Ta],
469
+ [[0, 1], 0, 0, 0, 0, () => TreatmentInputList, () => TreatmentInput$, 0, 0, 0, 0, 128 | 0], 8
470
+ ];
381
471
  export var CreateExtensionAssociationRequest$ = [3, n0, _CEAR,
382
472
  0,
383
473
  [_EI, _RI, _EVN, _P, _Ta],
@@ -390,7 +480,7 @@ export var CreateExtensionRequest$ = [3, n0, _CERr,
390
480
  ];
391
481
  export var CreateHostedConfigurationVersionRequest$ = [3, n0, _CHCVR,
392
482
  0,
393
- [_AIp, _CPI, _Co, _CT, _De, _LVN, _VL],
483
+ [_AIp, _CPIo, _Co, _CT, _De, _LVN, _VL],
394
484
  [[0, 1], [0, 1], [() => _Blob, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _De }], [1, { [_hH]: _LVN_ }], [0, { [_hH]: _VL }]], 4
395
485
  ];
396
486
  export var DeleteApplicationRequest$ = [3, n0, _DAR,
@@ -400,7 +490,7 @@ export var DeleteApplicationRequest$ = [3, n0, _DAR,
400
490
  ];
401
491
  export var DeleteConfigurationProfileRequest$ = [3, n0, _DCPR,
402
492
  0,
403
- [_AIp, _CPI, _DPC],
493
+ [_AIp, _CPIo, _DPC],
404
494
  [[0, 1], [0, 1], [0, { [_hH]: _xadpc }]], 2
405
495
  ];
406
496
  export var DeleteDeploymentStrategyRequest$ = [3, n0, _DDSR,
@@ -410,9 +500,14 @@ export var DeleteDeploymentStrategyRequest$ = [3, n0, _DDSR,
410
500
  ];
411
501
  export var DeleteEnvironmentRequest$ = [3, n0, _DER,
412
502
  0,
413
- [_EIn, _AIp, _DPC],
503
+ [_EInv, _AIp, _DPC],
414
504
  [[0, 1], [0, 1], [0, { [_hH]: _xadpc }]], 2
415
505
  ];
506
+ export var DeleteExperimentDefinitionRequest$ = [3, n0, _DEDR,
507
+ 0,
508
+ [_AIpp, _EDI, _DT],
509
+ [[0, 1], [0, 1], [0, { [_hQ]: _dt }]], 2
510
+ ];
416
511
  export var DeleteExtensionAssociationRequest$ = [3, n0, _DEAR,
417
512
  0,
418
513
  [_EAI],
@@ -425,7 +520,7 @@ export var DeleteExtensionRequest$ = [3, n0, _DERe,
425
520
  ];
426
521
  export var DeleteHostedConfigurationVersionRequest$ = [3, n0, _DHCVR,
427
522
  0,
428
- [_AIp, _CPI, _VN],
523
+ [_AIp, _CPIo, _VN],
429
524
  [[0, 1], [0, 1], [1, 1]], 3
430
525
  ];
431
526
  export var DeletionProtectionSettings$ = [3, n0, _DPS,
@@ -435,7 +530,7 @@ export var DeletionProtectionSettings$ = [3, n0, _DPS,
435
530
  ];
436
531
  export var Deployment$ = [3, n0, _Dep,
437
532
  0,
438
- [_AIp, _EIn, _DSI, _CPI, _DN, _CN, _CLU, _CV, _De, _DDIM, _GT, _GF, _FBTIM, _St, _EL, _PC, _SA, _CA, _AEp, _KKA, _KKI, _VL],
533
+ [_AIp, _EInv, _DSI, _CPIo, _DN, _CN, _CLU, _CV, _De, _DDIM, _GT, _GF, _FBTIM, _St, _EL, _PC, _SA, _CA, _AEp, _KKA, _KKI, _VL],
439
534
  [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, () => DeploymentEvents, 1, 5, 5, () => AppliedExtensions, 0, 0, 0]
440
535
  ];
441
536
  export var DeploymentEvent$ = [3, n0, _DE,
@@ -443,6 +538,11 @@ export var DeploymentEvent$ = [3, n0, _DE,
443
538
  [_ET, _TB, _De, _AIc, _OA],
444
539
  [0, 0, 0, () => ActionInvocations, 5]
445
540
  ];
541
+ export var DeploymentParameters$ = [3, n0, _DPe,
542
+ 0,
543
+ [_DEP, _Ta],
544
+ [[() => DynamicParameterMap, 0], 128 | 0]
545
+ ];
446
546
  export var Deployments$ = [3, n0, _Depl,
447
547
  0,
448
548
  [_It, _NT],
@@ -460,8 +560,8 @@ export var DeploymentStrategy$ = [3, n0, _DSe,
460
560
  ];
461
561
  export var DeploymentSummary$ = [3, n0, _DSep,
462
562
  0,
463
- [_DN, _CN, _CV, _DDIM, _GT, _GF, _FBTIM, _St, _PC, _SA, _CA, _VL],
464
- [1, 0, 0, 1, 0, 1, 1, 0, 1, 5, 5, 0]
563
+ [_DN, _CPIo, _CN, _CV, _DDIM, _GT, _GF, _FBTIM, _St, _PC, _SA, _CA, _VL, _T],
564
+ [1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 5, 5, 0, 0]
465
565
  ];
466
566
  export var Environment$ = [3, n0, _En,
467
567
  0,
@@ -473,24 +573,74 @@ export var Environments$ = [3, n0, _Env,
473
573
  [_It, _NT],
474
574
  [() => EnvironmentList, 0]
475
575
  ];
576
+ export var ExperimentDefinition$ = [3, n0, _ED,
577
+ 0,
578
+ [_AIp, _I, _N, _H, _Sta, _CPIo, _EInv, _FK, _AR, _AD, _LC, _Tr, _Con, _CAr, _UA, _KKI],
579
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TreatmentList, () => Treatment$, 5, 5, 0]
580
+ ];
581
+ export var ExperimentDefinitions$ = [3, n0, _EDx,
582
+ 0,
583
+ [_It, _NT],
584
+ [() => ExperimentDefinitionList, 0]
585
+ ];
586
+ export var ExperimentDefinitionSnapshot$ = [3, n0, _EDS,
587
+ 0,
588
+ [_AIp, _I, _N, _H, _CPIo, _EInv, _FK, _AR, _AD, _LC, _Tr, _Con],
589
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TreatmentList, () => Treatment$]
590
+ ];
591
+ export var ExperimentDefinitionSummary$ = [3, n0, _EDSx,
592
+ 0,
593
+ [_AIp, _I, _N, _H, _Sta, _CPIo, _EInv, _FK, _CAr, _UA],
594
+ [0, 0, 0, 0, 0, 0, 0, 0, 5, 5]
595
+ ];
596
+ export var ExperimentRun$ = [3, n0, _ER,
597
+ 0,
598
+ [_AIp, _EDIx, _Ru, _De, _Sta, _EP, _TO, _Re, _SA, _UA, _EA, _EDS],
599
+ [0, 0, 1, 0, 0, 1, () => TreatmentOverrides$, () => ExperimentRunResult$, 5, 5, 5, () => ExperimentDefinitionSnapshot$]
600
+ ];
601
+ export var ExperimentRunEvent$ = [3, n0, _ERE,
602
+ 0,
603
+ [_De, _ADs, _ET, _OA, _TB, _EP, _TO],
604
+ [0, 0, 0, 5, 0, 1, () => TreatmentOverrides$]
605
+ ];
606
+ export var ExperimentRunEvents$ = [3, n0, _EREx,
607
+ 0,
608
+ [_It, _NT],
609
+ [() => ExperimentRunEventList, 0]
610
+ ];
611
+ export var ExperimentRunResult$ = [3, n0, _ERR,
612
+ 0,
613
+ [_ES, _RTL, _RNTL],
614
+ [0, 0, 0]
615
+ ];
616
+ export var ExperimentRuns$ = [3, n0, _ERx,
617
+ 0,
618
+ [_It, _NT],
619
+ [() => ExperimentRunSummaryList, 0]
620
+ ];
621
+ export var ExperimentRunSummary$ = [3, n0, _ERS,
622
+ 0,
623
+ [_EDIx, _Ru, _De, _Sta, _SA, _UA, _EA],
624
+ [0, 1, 0, 0, 5, 5, 5]
625
+ ];
476
626
  export var Extension$ = [3, n0, _Ex,
477
627
  0,
478
628
  [_I, _N, _VN, _Ar, _De, _Ac, _P],
479
629
  [0, 0, 1, 0, 0, () => ActionsMap, () => ParameterMap]
480
630
  ];
481
- export var ExtensionAssociation$ = [3, n0, _EA,
631
+ export var ExtensionAssociation$ = [3, n0, _EAx,
482
632
  0,
483
- [_I, _EAx, _RAe, _Ar, _P, _EVN],
633
+ [_I, _EAxt, _RAe, _Ar, _P, _EVN],
484
634
  [0, 0, 0, 0, 128 | 0, 1]
485
635
  ];
486
- export var ExtensionAssociations$ = [3, n0, _EAxt,
636
+ export var ExtensionAssociations$ = [3, n0, _EAxte,
487
637
  0,
488
638
  [_It, _NT],
489
639
  [() => ExtensionAssociationSummaries, 0]
490
640
  ];
491
641
  export var ExtensionAssociationSummary$ = [3, n0, _EAS,
492
642
  0,
493
- [_I, _EAx, _RAe],
643
+ [_I, _EAxt, _RAe],
494
644
  [0, 0, 0]
495
645
  ];
496
646
  export var Extensions$ = [3, n0, _Ext,
@@ -498,11 +648,16 @@ export var Extensions$ = [3, n0, _Ext,
498
648
  [_It, _NT],
499
649
  [() => ExtensionSummaries, 0]
500
650
  ];
501
- export var ExtensionSummary$ = [3, n0, _ES,
651
+ export var ExtensionSummary$ = [3, n0, _ESx,
502
652
  0,
503
653
  [_I, _N, _VN, _Ar, _De],
504
654
  [0, 0, 1, 0, 0]
505
655
  ];
656
+ export var FlagValue$ = [3, n0, _FV,
657
+ 0,
658
+ [_E, _AV],
659
+ [2, () => AttributeValueMap], 1
660
+ ];
506
661
  export var GetApplicationRequest$ = [3, n0, _GAR,
507
662
  0,
508
663
  [_AIp],
@@ -510,7 +665,7 @@ export var GetApplicationRequest$ = [3, n0, _GAR,
510
665
  ];
511
666
  export var GetConfigurationProfileRequest$ = [3, n0, _GCPR,
512
667
  0,
513
- [_AIp, _CPI],
668
+ [_AIp, _CPIo],
514
669
  [[0, 1], [0, 1]], 2
515
670
  ];
516
671
  export var GetConfigurationRequest$ = [3, n0, _GCR,
@@ -520,7 +675,7 @@ export var GetConfigurationRequest$ = [3, n0, _GCR,
520
675
  ];
521
676
  export var GetDeploymentRequest$ = [3, n0, _GDR,
522
677
  0,
523
- [_AIp, _EIn, _DN],
678
+ [_AIp, _EInv, _DN],
524
679
  [[0, 1], [0, 1], [1, 1]], 3
525
680
  ];
526
681
  export var GetDeploymentStrategyRequest$ = [3, n0, _GDSR,
@@ -530,9 +685,19 @@ export var GetDeploymentStrategyRequest$ = [3, n0, _GDSR,
530
685
  ];
531
686
  export var GetEnvironmentRequest$ = [3, n0, _GER,
532
687
  0,
533
- [_AIp, _EIn],
688
+ [_AIp, _EInv],
689
+ [[0, 1], [0, 1]], 2
690
+ ];
691
+ export var GetExperimentDefinitionRequest$ = [3, n0, _GEDR,
692
+ 0,
693
+ [_AIpp, _EDI],
534
694
  [[0, 1], [0, 1]], 2
535
695
  ];
696
+ export var GetExperimentRunRequest$ = [3, n0, _GERR,
697
+ 0,
698
+ [_AIpp, _EDI, _Ru],
699
+ [[0, 1], [0, 1], [1, 1]], 3
700
+ ];
536
701
  export var GetExtensionAssociationRequest$ = [3, n0, _GEAR,
537
702
  0,
538
703
  [_EAI],
@@ -545,12 +710,12 @@ export var GetExtensionRequest$ = [3, n0, _GERe,
545
710
  ];
546
711
  export var GetHostedConfigurationVersionRequest$ = [3, n0, _GHCVR,
547
712
  0,
548
- [_AIp, _CPI, _VN],
713
+ [_AIp, _CPIo, _VN],
549
714
  [[0, 1], [0, 1], [1, 1]], 3
550
715
  ];
551
716
  export var HostedConfigurationVersion$ = [3, n0, _HCV,
552
717
  0,
553
- [_AIp, _CPI, _VN, _De, _Co, _CT, _VL, _KKA],
718
+ [_AIp, _CPIo, _VN, _De, _Co, _CT, _VL, _KKA],
554
719
  [[0, { [_hH]: _AI_ }], [0, { [_hH]: _CPI_ }], [1, { [_hH]: _VN_ }], [0, { [_hH]: _De }], [() => _Blob, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _VL }], [0, { [_hH]: _KKA }]]
555
720
  ];
556
721
  export var HostedConfigurationVersions$ = [3, n0, _HCVo,
@@ -560,12 +725,12 @@ export var HostedConfigurationVersions$ = [3, n0, _HCVo,
560
725
  ];
561
726
  export var HostedConfigurationVersionSummary$ = [3, n0, _HCVS,
562
727
  0,
563
- [_AIp, _CPI, _VN, _De, _CT, _VL, _KKA],
728
+ [_AIp, _CPIo, _VN, _De, _CT, _VL, _KKA],
564
729
  [0, 0, 1, 0, 0, 0, 0]
565
730
  ];
566
731
  export var InvalidConfigurationDetail$ = [3, n0, _ICD,
567
732
  0,
568
- [_Con, _Lo, _R, _T, _Va],
733
+ [_Cons, _Lo, _R, _T, _Va],
569
734
  [0, 0, 0, 0, 0]
570
735
  ];
571
736
  export var ListApplicationsRequest$ = [3, n0, _LAR,
@@ -580,7 +745,7 @@ export var ListConfigurationProfilesRequest$ = [3, n0, _LCPR,
580
745
  ];
581
746
  export var ListDeploymentsRequest$ = [3, n0, _LDR,
582
747
  0,
583
- [_AIp, _EIn, _MR, _NT],
748
+ [_AIp, _EInv, _MR, _NT],
584
749
  [[0, 1], [0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 2
585
750
  ];
586
751
  export var ListDeploymentStrategiesRequest$ = [3, n0, _LDSR,
@@ -593,10 +758,25 @@ export var ListEnvironmentsRequest$ = [3, n0, _LER,
593
758
  [_AIp, _MR, _NT],
594
759
  [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
595
760
  ];
761
+ export var ListExperimentDefinitionsRequest$ = [3, n0, _LEDR,
762
+ 0,
763
+ [_AIpp, _CPI, _EIn, _Sta, _MR, _NT],
764
+ [[0, { [_hQ]: _ai }], [0, { [_hQ]: _cpi }], [0, { [_hQ]: _ei }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
765
+ ];
766
+ export var ListExperimentRunEventsRequest$ = [3, n0, _LERER,
767
+ 0,
768
+ [_AIpp, _EDI, _Ru, _MR, _NT],
769
+ [[0, 1], [0, 1], [1, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 3
770
+ ];
771
+ export var ListExperimentRunsRequest$ = [3, n0, _LERR,
772
+ 0,
773
+ [_AIpp, _EDI, _MR, _NT, _Sta],
774
+ [[0, 1], [0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _st }]], 2
775
+ ];
596
776
  export var ListExtensionAssociationsRequest$ = [3, n0, _LEAR,
597
777
  0,
598
778
  [_RI, _EI, _EVN, _MR, _NT],
599
- [[0, { [_hQ]: _ri }], [0, { [_hQ]: _ei }], [1, { [_hQ]: _evn }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
779
+ [[0, { [_hQ]: _ri }], [0, { [_hQ]: _ei_ }], [1, { [_hQ]: _evn }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
600
780
  ];
601
781
  export var ListExtensionsRequest$ = [3, n0, _LERi,
602
782
  0,
@@ -605,7 +785,7 @@ export var ListExtensionsRequest$ = [3, n0, _LERi,
605
785
  ];
606
786
  export var ListHostedConfigurationVersionsRequest$ = [3, n0, _LHCVR,
607
787
  0,
608
- [_AIp, _CPI, _MR, _NT, _VL],
788
+ [_AIp, _CPIo, _MR, _NT, _VL],
609
789
  [[0, 1], [0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _vl }]], 2
610
790
  ];
611
791
  export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
@@ -620,7 +800,7 @@ export var Monitor$ = [3, n0, _Mon,
620
800
  ];
621
801
  export var Parameter$ = [3, n0, _Pa,
622
802
  0,
623
- [_De, _Re, _Dy],
803
+ [_De, _Req, _Dy],
624
804
  [0, 2, 2]
625
805
  ];
626
806
  export var ResourceTags$ = [3, n0, _RTe,
@@ -630,19 +810,39 @@ export var ResourceTags$ = [3, n0, _RTe,
630
810
  ];
631
811
  export var StartDeploymentRequest$ = [3, n0, _SDR,
632
812
  0,
633
- [_AIp, _EIn, _DSI, _CPI, _CV, _De, _Ta, _KKI, _DEP],
634
- [[0, 1], [0, 1], 0, 0, 0, 0, 128 | 0, 0, [() => DynamicParameterMap, 0]], 5
813
+ [_AIp, _EInv, _DSI, _CPIo, _CV, _De, _Ta, _KKI, _DEP, _LDN],
814
+ [[0, 1], [0, 1], 0, 0, 0, 0, 128 | 0, 0, [() => DynamicParameterMap, 0], 1], 5
815
+ ];
816
+ export var StartExperimentRunRequest$ = [3, n0, _SERR,
817
+ 0,
818
+ [_AIpp, _EDI, _De, _EP, _TO, _Ta, _DPe],
819
+ [[0, 1], [0, 1], 0, 1, () => TreatmentOverrides$, 128 | 0, [() => DeploymentParameters$, 0]], 2
635
820
  ];
636
821
  export var StopDeploymentRequest$ = [3, n0, _SDRt,
637
822
  0,
638
- [_AIp, _EIn, _DN, _AR],
823
+ [_AIp, _EInv, _DN, _ARl],
639
824
  [[0, 1], [0, 1], [1, 1], [2, { [_hH]: _AR_ }]], 3
640
825
  ];
826
+ export var StopExperimentRunRequest$ = [3, n0, _SERRt,
827
+ 0,
828
+ [_AIpp, _EDI, _Ru, _Re, _DPe],
829
+ [[0, 1], [0, 1], [1, 1], () => ExperimentRunResult$, [() => DeploymentParameters$, 0]], 3
830
+ ];
641
831
  export var TagResourceRequest$ = [3, n0, _TRR,
642
832
  0,
643
833
  [_RAe, _Ta],
644
834
  [[0, 1], 128 | 0], 2
645
835
  ];
836
+ export var Treatment$ = [3, n0, _Tre,
837
+ 0,
838
+ [_W, _FV, _K, _De],
839
+ [1, () => FlagValue$, 0, 0], 2
840
+ ];
841
+ export var TreatmentInput$ = [3, n0, _TI,
842
+ 0,
843
+ [_W, _FV, _De],
844
+ [1, () => FlagValue$, 0], 2
845
+ ];
646
846
  export var UntagResourceRequest$ = [3, n0, _URR,
647
847
  0,
648
848
  [_RAe, _TK],
@@ -650,8 +850,8 @@ export var UntagResourceRequest$ = [3, n0, _URR,
650
850
  ];
651
851
  export var UpdateAccountSettingsRequest$ = [3, n0, _UASR,
652
852
  0,
653
- [_DP],
654
- [() => DeletionProtectionSettings$]
853
+ [_DP, _VM],
854
+ [() => DeletionProtectionSettings$, () => VendedMetricsSettings$]
655
855
  ];
656
856
  export var UpdateApplicationRequest$ = [3, n0, _UAR,
657
857
  0,
@@ -660,7 +860,7 @@ export var UpdateApplicationRequest$ = [3, n0, _UAR,
660
860
  ];
661
861
  export var UpdateConfigurationProfileRequest$ = [3, n0, _UCPR,
662
862
  0,
663
- [_AIp, _CPI, _N, _De, _RRA, _V, _KKI],
863
+ [_AIp, _CPIo, _N, _De, _RRA, _V, _KKI],
664
864
  [[0, 1], [0, 1], 0, 0, 0, [() => ValidatorList, 0], 0], 2
665
865
  ];
666
866
  export var UpdateDeploymentStrategyRequest$ = [3, n0, _UDSR,
@@ -670,9 +870,19 @@ export var UpdateDeploymentStrategyRequest$ = [3, n0, _UDSR,
670
870
  ];
671
871
  export var UpdateEnvironmentRequest$ = [3, n0, _UER,
672
872
  0,
673
- [_AIp, _EIn, _N, _De, _Mo],
873
+ [_AIp, _EInv, _N, _De, _Mo],
674
874
  [[0, 1], [0, 1], 0, 0, () => MonitorList], 2
675
875
  ];
876
+ export var UpdateExperimentDefinitionRequest$ = [3, n0, _UEDR,
877
+ 0,
878
+ [_AIpp, _EDI, _Tr, _Con, _H, _AR, _AD, _LC],
879
+ [[0, 1], [0, 1], () => TreatmentInputList, () => TreatmentInput$, 0, 0, 0, 0], 2
880
+ ];
881
+ export var UpdateExperimentRunRequest$ = [3, n0, _UERR,
882
+ 0,
883
+ [_AIpp, _EDI, _Ru, _De, _EP, _TO, _DPe],
884
+ [[0, 1], [0, 1], [1, 1], 0, 1, () => TreatmentOverrides$, [() => DeploymentParameters$, 0]], 3
885
+ ];
676
886
  export var UpdateExtensionAssociationRequest$ = [3, n0, _UEAR,
677
887
  0,
678
888
  [_EAI, _P],
@@ -685,7 +895,7 @@ export var UpdateExtensionRequest$ = [3, n0, _UERp,
685
895
  ];
686
896
  export var ValidateConfigurationRequest$ = [3, n0, _VCR,
687
897
  0,
688
- [_AIp, _CPI, _CV],
898
+ [_AIp, _CPIo, _CV],
689
899
  [[0, 1], [0, 1], [0, { [_hQ]: _cv }]], 3
690
900
  ];
691
901
  export var Validator$ = [3, n0, _Val,
@@ -693,6 +903,11 @@ export var Validator$ = [3, n0, _Val,
693
903
  [_T, _Co],
694
904
  [0, [() => StringWithLengthBetween0And32768, 0]], 2
695
905
  ];
906
+ export var VendedMetricsSettings$ = [3, n0, _VMS,
907
+ 0,
908
+ [_E],
909
+ [2]
910
+ ];
696
911
  var __Unit = "unit";
697
912
  var ActionInvocations = [1, n0, _AIc,
698
913
  0, () => ActionInvocation$
@@ -721,10 +936,19 @@ var DeploymentStrategyList = [1, n0, _DSL,
721
936
  var EnvironmentList = [1, n0, _ELn,
722
937
  0, () => Environment$
723
938
  ];
939
+ var ExperimentDefinitionList = [1, n0, _EDL,
940
+ 0, () => ExperimentDefinitionSummary$
941
+ ];
942
+ var ExperimentRunEventList = [1, n0, _EREL,
943
+ 0, () => ExperimentRunEvent$
944
+ ];
945
+ var ExperimentRunSummaryList = [1, n0, _ERSL,
946
+ 0, () => ExperimentRunSummary$
947
+ ];
724
948
  var ExtensionAssociationSummaries = [1, n0, _EASx,
725
949
  0, () => ExtensionAssociationSummary$
726
950
  ];
727
- var ExtensionSummaries = [1, n0, _ESx,
951
+ var ExtensionSummaries = [1, n0, _ESxt,
728
952
  0, () => ExtensionSummary$
729
953
  ];
730
954
  var HostedConfigurationVersionSummaryList = [1, n0, _HCVSL,
@@ -736,7 +960,15 @@ var InvalidConfigurationDetailList = [1, n0, _ICDL,
736
960
  var MonitorList = [1, n0, _ML,
737
961
  0, () => Monitor$
738
962
  ];
963
+ var NumberList = 64 | 1;
964
+ var StringList = 64 | 0;
739
965
  var TagKeyList = 64 | 0;
966
+ var TreatmentInputList = [1, n0, _TIL,
967
+ 0, () => TreatmentInput$
968
+ ];
969
+ var TreatmentList = [1, n0, _TL,
970
+ 0, () => Treatment$
971
+ ];
740
972
  var ValidatorList = [1, n0, _VLa,
741
973
  0, [() => Validator$,
742
974
  0]
@@ -745,6 +977,9 @@ var ValidatorTypeList = 64 | 0;
745
977
  var ActionsMap = [2, n0, _AM,
746
978
  0, 0, () => ActionList
747
979
  ];
980
+ var AttributeValueMap = [2, n0, _AVM,
981
+ 0, 0, () => AttributeValue$
982
+ ];
748
983
  var DynamicParameterMap = [2, n0, _DPM,
749
984
  8, 0, 0
750
985
  ];
@@ -753,12 +988,23 @@ var ParameterMap = [2, n0, _PM,
753
988
  ];
754
989
  var ParameterValueMap = 128 | 0;
755
990
  var TagMap = 128 | 0;
991
+ var TreatmentOverrideMap = 128 | 0;
992
+ export var AttributeValue$ = [4, n0, _AVt,
993
+ 0,
994
+ [_SV, _NV, _BV, _SAt, _NA],
995
+ [0, 1, 2, 64 | 0, 64 | 1]
996
+ ];
756
997
  export var BadRequestDetails$ = [4, n0, _BRD,
757
998
  0,
758
999
  [_IC],
759
1000
  [() => InvalidConfigurationDetailList]
760
1001
  ];
761
- export var CreateApplication$ = [9, n0, _CAr,
1002
+ export var TreatmentOverrides$ = [4, n0, _TO,
1003
+ 0,
1004
+ [_In],
1005
+ [128 | 0]
1006
+ ];
1007
+ export var CreateApplication$ = [9, n0, _CAre,
762
1008
  { [_h]: ["POST", "/applications", 201] }, () => CreateApplicationRequest$, () => Application$
763
1009
  ];
764
1010
  export var CreateConfigurationProfile$ = [9, n0, _CCP,
@@ -770,6 +1016,9 @@ export var CreateDeploymentStrategy$ = [9, n0, _CDS,
770
1016
  export var CreateEnvironment$ = [9, n0, _CEr,
771
1017
  { [_h]: ["POST", "/applications/{ApplicationId}/environments", 201] }, () => CreateEnvironmentRequest$, () => Environment$
772
1018
  ];
1019
+ export var CreateExperimentDefinition$ = [9, n0, _CED,
1020
+ { [_h]: ["POST", "/applications/{ApplicationIdentifier}/experimentdefinitions", 201] }, () => CreateExperimentDefinitionRequest$, () => ExperimentDefinition$
1021
+ ];
773
1022
  export var CreateExtension$ = [9, n0, _CEre,
774
1023
  { [_h]: ["POST", "/extensions", 201] }, () => CreateExtensionRequest$, () => Extension$
775
1024
  ];
@@ -791,6 +1040,9 @@ export var DeleteDeploymentStrategy$ = [9, n0, _DDS,
791
1040
  export var DeleteEnvironment$ = [9, n0, _DEel,
792
1041
  { [_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}", 204] }, () => DeleteEnvironmentRequest$, () => __Unit
793
1042
  ];
1043
+ export var DeleteExperimentDefinition$ = [9, n0, _DED,
1044
+ { [_h]: ["DELETE", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}", 204] }, () => DeleteExperimentDefinitionRequest$, () => __Unit
1045
+ ];
794
1046
  export var DeleteExtension$ = [9, n0, _DEele,
795
1047
  { [_h]: ["DELETE", "/extensions/{ExtensionIdentifier}", 204] }, () => DeleteExtensionRequest$, () => __Unit
796
1048
  ];
@@ -821,6 +1073,12 @@ export var GetDeploymentStrategy$ = [9, n0, _GDS,
821
1073
  export var GetEnvironment$ = [9, n0, _GE,
822
1074
  { [_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200] }, () => GetEnvironmentRequest$, () => Environment$
823
1075
  ];
1076
+ export var GetExperimentDefinition$ = [9, n0, _GED,
1077
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}", 200] }, () => GetExperimentDefinitionRequest$, () => ExperimentDefinition$
1078
+ ];
1079
+ export var GetExperimentRun$ = [9, n0, _GERet,
1080
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}", 200] }, () => GetExperimentRunRequest$, () => ExperimentRun$
1081
+ ];
824
1082
  export var GetExtension$ = [9, n0, _GEe,
825
1083
  { [_h]: ["GET", "/extensions/{ExtensionIdentifier}", 200] }, () => GetExtensionRequest$, () => Extension$
826
1084
  ];
@@ -845,6 +1103,15 @@ export var ListDeploymentStrategies$ = [9, n0, _LDS,
845
1103
  export var ListEnvironments$ = [9, n0, _LE,
846
1104
  { [_h]: ["GET", "/applications/{ApplicationId}/environments", 200] }, () => ListEnvironmentsRequest$, () => Environments$
847
1105
  ];
1106
+ export var ListExperimentDefinitions$ = [9, n0, _LED,
1107
+ { [_h]: ["GET", "/experimentdefinitions", 200] }, () => ListExperimentDefinitionsRequest$, () => ExperimentDefinitions$
1108
+ ];
1109
+ export var ListExperimentRunEvents$ = [9, n0, _LERE,
1110
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}/events", 200] }, () => ListExperimentRunEventsRequest$, () => ExperimentRunEvents$
1111
+ ];
1112
+ export var ListExperimentRuns$ = [9, n0, _LERis,
1113
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns", 200] }, () => ListExperimentRunsRequest$, () => ExperimentRuns$
1114
+ ];
848
1115
  export var ListExtensionAssociations$ = [9, n0, _LEA,
849
1116
  { [_h]: ["GET", "/extensionassociations", 200] }, () => ListExtensionAssociationsRequest$, () => ExtensionAssociations$
850
1117
  ];
@@ -860,9 +1127,15 @@ export var ListTagsForResource$ = [9, n0, _LTFR,
860
1127
  export var StartDeployment$ = [9, n0, _SD,
861
1128
  { [_h]: ["POST", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", 201] }, () => StartDeploymentRequest$, () => Deployment$
862
1129
  ];
1130
+ export var StartExperimentRun$ = [9, n0, _SER,
1131
+ { [_h]: ["POST", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns", 201] }, () => StartExperimentRunRequest$, () => ExperimentRun$
1132
+ ];
863
1133
  export var StopDeployment$ = [9, n0, _SDt,
864
1134
  { [_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", 202] }, () => StopDeploymentRequest$, () => Deployment$
865
1135
  ];
1136
+ export var StopExperimentRun$ = [9, n0, _SERt,
1137
+ { [_h]: ["PATCH", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}/stop", 200] }, () => StopExperimentRunRequest$, () => ExperimentRun$
1138
+ ];
866
1139
  export var TagResource$ = [9, n0, _TR,
867
1140
  { [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
868
1141
  ];
@@ -872,7 +1145,7 @@ export var UntagResource$ = [9, n0, _UR,
872
1145
  export var UpdateAccountSettings$ = [9, n0, _UAS,
873
1146
  { [_h]: ["PATCH", "/settings", 200] }, () => UpdateAccountSettingsRequest$, () => AccountSettings$
874
1147
  ];
875
- export var UpdateApplication$ = [9, n0, _UA,
1148
+ export var UpdateApplication$ = [9, n0, _UAp,
876
1149
  { [_h]: ["PATCH", "/applications/{ApplicationId}", 200] }, () => UpdateApplicationRequest$, () => Application$
877
1150
  ];
878
1151
  export var UpdateConfigurationProfile$ = [9, n0, _UCP,
@@ -884,6 +1157,12 @@ export var UpdateDeploymentStrategy$ = [9, n0, _UDS,
884
1157
  export var UpdateEnvironment$ = [9, n0, _UE,
885
1158
  { [_h]: ["PATCH", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200] }, () => UpdateEnvironmentRequest$, () => Environment$
886
1159
  ];
1160
+ export var UpdateExperimentDefinition$ = [9, n0, _UED,
1161
+ { [_h]: ["PATCH", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}", 200] }, () => UpdateExperimentDefinitionRequest$, () => ExperimentDefinition$
1162
+ ];
1163
+ export var UpdateExperimentRun$ = [9, n0, _UERpd,
1164
+ { [_h]: ["PATCH", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}/update", 200] }, () => UpdateExperimentRunRequest$, () => ExperimentRun$
1165
+ ];
887
1166
  export var UpdateExtension$ = [9, n0, _UEp,
888
1167
  { [_h]: ["PATCH", "/extensions/{ExtensionIdentifier}", 200] }, () => UpdateExtensionRequest$, () => Extension$
889
1168
  ];