@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
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultAppConfigHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateApplication$, CreateConfigurationProfile$, CreateDeploymentStrategy$, CreateEnvironment$, CreateExtensionAssociation$, CreateExtension$, CreateHostedConfigurationVersion$, DeleteApplication$, DeleteConfigurationProfile$, DeleteDeploymentStrategy$, DeleteEnvironment$, DeleteExtensionAssociation$, DeleteExtension$, DeleteHostedConfigurationVersion$, GetAccountSettings$, GetApplication$, GetConfiguration$, GetConfigurationProfile$, GetDeployment$, GetDeploymentStrategy$, GetEnvironment$, GetExtensionAssociation$, GetExtension$, GetHostedConfigurationVersion$, ListApplications$, ListConfigurationProfiles$, ListDeployments$, ListDeploymentStrategies$, ListEnvironments$, ListExtensionAssociations$, ListExtensions$, ListHostedConfigurationVersions$, ListTagsForResource$, StartDeployment$, StopDeployment$, TagResource$, UntagResource$, UpdateAccountSettings$, UpdateApplication$, UpdateConfigurationProfile$, UpdateDeploymentStrategy$, UpdateEnvironment$, UpdateExtensionAssociation$, UpdateExtension$, ValidateConfiguration$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { AppConfigServiceException } = require("./models/AppConfigServiceException");
18
- exports.AppConfigServiceException = AppConfigServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultAppConfigHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "appconfig",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultAppConfigHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1409 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const m = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { [m]: "Region" }, k = {}, l = [j];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [h]],
79
+ [c, l],
80
+ ["aws.partition", l, d],
81
+ [e, [{ [m]: "UseFIPS" }, b]],
82
+ [e, [{ [m]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
85
+ [g, [j, "us-gov-east-1"]],
86
+ [g, [j, "us-gov-west-1"]]
87
+ ],
88
+ results: [
89
+ [a],
90
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
91
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
92
+ [h, k],
93
+ ["https://appconfig-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
94
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
95
+ ["https://appconfig.us-gov-east-1.amazonaws.com", k],
96
+ ["https://appconfig.us-gov-west-1.amazonaws.com", k],
97
+ ["https://appconfig-fips.{Region}.{PartitionResult#dnsSuffix}", k],
98
+ [a, "FIPS is enabled but this partition does not support FIPS"],
99
+ ["https://appconfig.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
100
+ [a, "DualStack is enabled but this partition does not support DualStack"],
101
+ ["https://appconfig.{Region}.{PartitionResult#dnsSuffix}", k],
102
+ [a, "Invalid Configuration: Missing Region"]
103
+ ]
104
+ };
105
+ const root = 2;
106
+ const r = 100_000_000;
107
+ const nodes = new Int32Array([
108
+ -1, 1, -1,
109
+ 0, 14, 3,
110
+ 1, 4, r + 13,
111
+ 2, 5, r + 13,
112
+ 3, 8, 6,
113
+ 4, 7, r + 12,
114
+ 5, r + 10, r + 11,
115
+ 4, 12, 9,
116
+ 6, 10, r + 9,
117
+ 7, r + 6, 11,
118
+ 8, r + 7, r + 8,
119
+ 5, 13, r + 5,
120
+ 6, r + 4, r + 5,
121
+ 3, r + 1, 15,
122
+ 4, r + 2, r + 3,
123
+ ]);
124
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
125
+
126
+ const cache = new EndpointCache({
127
+ size: 50,
128
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
129
+ });
130
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
131
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
132
+ endpointParams: endpointParams,
133
+ logger: context.logger,
134
+ }));
135
+ };
136
+ customEndpointFunctions.aws = awsEndpointFunctions;
137
+
138
+ class AppConfigServiceException extends ServiceException {
139
+ constructor(options) {
140
+ super(options);
141
+ Object.setPrototypeOf(this, AppConfigServiceException.prototype);
142
+ }
143
+ }
144
+
145
+ class BadRequestException extends AppConfigServiceException {
146
+ name = "BadRequestException";
147
+ $fault = "client";
148
+ Message;
149
+ Reason;
150
+ Details;
151
+ constructor(opts) {
152
+ super({
153
+ name: "BadRequestException",
154
+ $fault: "client",
155
+ ...opts,
156
+ });
157
+ Object.setPrototypeOf(this, BadRequestException.prototype);
158
+ this.Message = opts.Message;
159
+ this.Reason = opts.Reason;
160
+ this.Details = opts.Details;
161
+ }
162
+ }
163
+ class InternalServerException extends AppConfigServiceException {
164
+ name = "InternalServerException";
165
+ $fault = "server";
166
+ Message;
167
+ constructor(opts) {
168
+ super({
169
+ name: "InternalServerException",
170
+ $fault: "server",
171
+ ...opts,
172
+ });
173
+ Object.setPrototypeOf(this, InternalServerException.prototype);
174
+ this.Message = opts.Message;
175
+ }
176
+ }
177
+ class ServiceQuotaExceededException extends AppConfigServiceException {
178
+ name = "ServiceQuotaExceededException";
179
+ $fault = "client";
180
+ Message;
181
+ constructor(opts) {
182
+ super({
183
+ name: "ServiceQuotaExceededException",
184
+ $fault: "client",
185
+ ...opts,
186
+ });
187
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
188
+ this.Message = opts.Message;
189
+ }
190
+ }
191
+ class ResourceNotFoundException extends AppConfigServiceException {
192
+ name = "ResourceNotFoundException";
193
+ $fault = "client";
194
+ Message;
195
+ ResourceName;
196
+ constructor(opts) {
197
+ super({
198
+ name: "ResourceNotFoundException",
199
+ $fault: "client",
200
+ ...opts,
201
+ });
202
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
203
+ this.Message = opts.Message;
204
+ this.ResourceName = opts.ResourceName;
205
+ }
206
+ }
207
+ class ConflictException extends AppConfigServiceException {
208
+ name = "ConflictException";
209
+ $fault = "client";
210
+ Message;
211
+ constructor(opts) {
212
+ super({
213
+ name: "ConflictException",
214
+ $fault: "client",
215
+ ...opts,
216
+ });
217
+ Object.setPrototypeOf(this, ConflictException.prototype);
218
+ this.Message = opts.Message;
219
+ }
220
+ }
221
+ class PayloadTooLargeException extends AppConfigServiceException {
222
+ name = "PayloadTooLargeException";
223
+ $fault = "client";
224
+ Message;
225
+ Measure;
226
+ Limit;
227
+ Size;
228
+ constructor(opts) {
229
+ super({
230
+ name: "PayloadTooLargeException",
231
+ $fault: "client",
232
+ ...opts,
233
+ });
234
+ Object.setPrototypeOf(this, PayloadTooLargeException.prototype);
235
+ this.Message = opts.Message;
236
+ this.Measure = opts.Measure;
237
+ this.Limit = opts.Limit;
238
+ this.Size = opts.Size;
239
+ }
240
+ }
241
+
242
+ const _A = "Action";
243
+ const _AA = "AlarmArn";
244
+ const _AD = "AudienceDescription";
245
+ const _ADs = "AssociatedDeployment";
246
+ const _AE = "AppliedExtension";
247
+ const _AEp = "AppliedExtensions";
248
+ const _AI = "ActionInvocation";
249
+ const _AI_ = "Application-Id";
250
+ const _AIc = "ActionInvocations";
251
+ const _AIp = "ApplicationId";
252
+ const _AIpp = "ApplicationIdentifier";
253
+ const _AL = "ActionList";
254
+ const _ALp = "ApplicationList";
255
+ const _AM = "ActionsMap";
256
+ const _AN = "ActionName";
257
+ const _AR = "AudienceRule";
258
+ const _ARA = "AlarmRoleArn";
259
+ const _AR_ = "Allow-Revert";
260
+ const _ARl = "AllowRevert";
261
+ const _AS = "AccountSettings";
262
+ const _AV = "AttributeValues";
263
+ const _AVM = "AttributeValueMap";
264
+ const _AVt = "AttributeValue";
265
+ const _Ac = "Actions";
266
+ const _Ap = "Application";
267
+ const _App = "Applications";
268
+ const _Ar = "Arn";
269
+ const _B = "Blob";
270
+ const _BRD = "BadRequestDetails";
271
+ const _BRE = "BadRequestException";
272
+ const _BV = "BooleanValue";
273
+ const _C = "Configuration";
274
+ const _CA = "CompletedAt";
275
+ const _CAR = "CreateApplicationRequest";
276
+ const _CAr = "CreatedAt";
277
+ const _CAre = "CreateApplication";
278
+ const _CCP = "CreateConfigurationProfile";
279
+ const _CCPR = "CreateConfigurationProfileRequest";
280
+ const _CCV = "ClientConfigurationVersion";
281
+ const _CDS = "CreateDeploymentStrategy";
282
+ const _CDSR = "CreateDeploymentStrategyRequest";
283
+ const _CE = "ConflictException";
284
+ const _CEA = "CreateExtensionAssociation";
285
+ const _CEAR = "CreateExtensionAssociationRequest";
286
+ const _CED = "CreateExperimentDefinition";
287
+ const _CEDR = "CreateExperimentDefinitionRequest";
288
+ const _CER = "CreateEnvironmentRequest";
289
+ const _CERr = "CreateExtensionRequest";
290
+ const _CEr = "CreateEnvironment";
291
+ const _CEre = "CreateExtension";
292
+ const _CHCV = "CreateHostedConfigurationVersion";
293
+ const _CHCVR = "CreateHostedConfigurationVersionRequest";
294
+ const _CI = "ClientId";
295
+ const _CLU = "ConfigurationLocationUri";
296
+ const _CN = "ConfigurationName";
297
+ const _CP = "ConfigurationProfile";
298
+ const _CPI = "ConfigurationProfileIdentifier";
299
+ const _CPI_ = "Configuration-Profile-Id";
300
+ const _CPIo = "ConfigurationProfileId";
301
+ const _CPS = "ConfigurationProfileSummary";
302
+ const _CPSL = "ConfigurationProfileSummaryList";
303
+ const _CPo = "ConfigurationProfiles";
304
+ const _CT = "ContentType";
305
+ const _CT_ = "Content-Type";
306
+ const _CV = "ConfigurationVersion";
307
+ const _CV_ = "Configuration-Version";
308
+ const _Co = "Content";
309
+ const _Con = "Control";
310
+ const _Cons = "Constraint";
311
+ const _D = "Details";
312
+ const _DA = "DeleteApplication";
313
+ const _DAR = "DeleteApplicationRequest";
314
+ const _DCP = "DeleteConfigurationProfile";
315
+ const _DCPR = "DeleteConfigurationProfileRequest";
316
+ const _DDIM = "DeploymentDurationInMinutes";
317
+ const _DDS = "DeleteDeploymentStrategy";
318
+ const _DDSR = "DeleteDeploymentStrategyRequest";
319
+ const _DE = "DeploymentEvent";
320
+ const _DEA = "DeleteExtensionAssociation";
321
+ const _DEAR = "DeleteExtensionAssociationRequest";
322
+ const _DED = "DeleteExperimentDefinition";
323
+ const _DEDR = "DeleteExperimentDefinitionRequest";
324
+ const _DEP = "DynamicExtensionParameters";
325
+ const _DER = "DeleteEnvironmentRequest";
326
+ const _DERe = "DeleteExtensionRequest";
327
+ const _DEe = "DeploymentEvents";
328
+ const _DEel = "DeleteEnvironment";
329
+ const _DEele = "DeleteExtension";
330
+ const _DHCV = "DeleteHostedConfigurationVersion";
331
+ const _DHCVR = "DeleteHostedConfigurationVersionRequest";
332
+ const _DL = "DeploymentList";
333
+ const _DN = "DeploymentNumber";
334
+ const _DP = "DeletionProtection";
335
+ const _DPC = "DeletionProtectionCheck";
336
+ const _DPM = "DynamicParameterMap";
337
+ const _DPS = "DeletionProtectionSettings";
338
+ const _DPe = "DeploymentParameters";
339
+ const _DS = "DeploymentStrategies";
340
+ const _DSI = "DeploymentStrategyId";
341
+ const _DSL = "DeploymentStrategyList";
342
+ const _DSe = "DeploymentStrategy";
343
+ const _DSep = "DeploymentSummary";
344
+ const _DT = "DeleteType";
345
+ const _De = "Description";
346
+ const _Dep = "Deployment";
347
+ const _Depl = "Deployments";
348
+ const _Dy = "Dynamic";
349
+ const _E = "Enabled";
350
+ const _EA = "EndedAt";
351
+ const _EAI = "ExtensionAssociationId";
352
+ const _EAS = "ExtensionAssociationSummary";
353
+ const _EASx = "ExtensionAssociationSummaries";
354
+ const _EAx = "ExtensionAssociation";
355
+ const _EAxt = "ExtensionArn";
356
+ const _EAxte = "ExtensionAssociations";
357
+ const _EC = "ErrorCode";
358
+ const _ED = "ExperimentDefinition";
359
+ const _EDI = "ExperimentDefinitionIdentifier";
360
+ const _EDIx = "ExperimentDefinitionId";
361
+ const _EDL = "ExperimentDefinitionList";
362
+ const _EDS = "ExperimentDefinitionSnapshot";
363
+ const _EDSx = "ExperimentDefinitionSummary";
364
+ const _EDx = "ExperimentDefinitions";
365
+ const _EI = "ExtensionIdentifier";
366
+ const _EIn = "EnvironmentIdentifier";
367
+ const _EInv = "EnvironmentId";
368
+ const _EIx = "ExtensionId";
369
+ const _EL = "EventLog";
370
+ const _ELn = "EnvironmentList";
371
+ const _EM = "ErrorMessage";
372
+ const _EP = "ExposurePercentage";
373
+ const _ER = "ExperimentRun";
374
+ const _ERE = "ExperimentRunEvent";
375
+ const _EREL = "ExperimentRunEventList";
376
+ const _EREx = "ExperimentRunEvents";
377
+ const _ERR = "ExperimentRunResult";
378
+ const _ERS = "ExperimentRunSummary";
379
+ const _ERSL = "ExperimentRunSummaryList";
380
+ const _ERx = "ExperimentRuns";
381
+ const _ES = "ExecutiveSummary";
382
+ const _ESx = "ExtensionSummary";
383
+ const _ESxt = "ExtensionSummaries";
384
+ const _ET = "EventType";
385
+ const _EVN = "ExtensionVersionNumber";
386
+ const _En = "Environment";
387
+ const _Env = "Environments";
388
+ const _Ex = "Extension";
389
+ const _Ext = "Extensions";
390
+ const _FBTIM = "FinalBakeTimeInMinutes";
391
+ const _FK = "FlagKey";
392
+ const _FV = "FlagValue";
393
+ const _GA = "GetApplication";
394
+ const _GAR = "GetApplicationRequest";
395
+ const _GAS = "GetAccountSettings";
396
+ const _GC = "GetConfiguration";
397
+ const _GCP = "GetConfigurationProfile";
398
+ const _GCPR = "GetConfigurationProfileRequest";
399
+ const _GCR = "GetConfigurationRequest";
400
+ const _GD = "GetDeployment";
401
+ const _GDR = "GetDeploymentRequest";
402
+ const _GDS = "GetDeploymentStrategy";
403
+ const _GDSR = "GetDeploymentStrategyRequest";
404
+ const _GE = "GetEnvironment";
405
+ const _GEA = "GetExtensionAssociation";
406
+ const _GEAR = "GetExtensionAssociationRequest";
407
+ const _GED = "GetExperimentDefinition";
408
+ const _GEDR = "GetExperimentDefinitionRequest";
409
+ const _GER = "GetEnvironmentRequest";
410
+ const _GERR = "GetExperimentRunRequest";
411
+ const _GERe = "GetExtensionRequest";
412
+ const _GERet = "GetExperimentRun";
413
+ const _GEe = "GetExtension";
414
+ const _GF = "GrowthFactor";
415
+ const _GHCV = "GetHostedConfigurationVersion";
416
+ const _GHCVR = "GetHostedConfigurationVersionRequest";
417
+ const _GT = "GrowthType";
418
+ const _H = "Hypothesis";
419
+ const _HCV = "HostedConfigurationVersion";
420
+ const _HCVS = "HostedConfigurationVersionSummary";
421
+ const _HCVSL = "HostedConfigurationVersionSummaryList";
422
+ const _HCVo = "HostedConfigurationVersions";
423
+ const _I = "Id";
424
+ const _IC = "InvalidConfiguration";
425
+ const _ICD = "InvalidConfigurationDetail";
426
+ const _ICDL = "InvalidConfigurationDetailList";
427
+ const _II = "InvocationId";
428
+ const _ISE = "InternalServerException";
429
+ const _In = "Inline";
430
+ const _It = "Items";
431
+ const _K = "Key";
432
+ const _KKA = "KmsKeyArn";
433
+ const _KKI = "KmsKeyIdentifier";
434
+ const _L = "Limit";
435
+ const _LA = "ListApplications";
436
+ const _LAR = "ListApplicationsRequest";
437
+ const _LC = "LaunchCriteria";
438
+ const _LCP = "ListConfigurationProfiles";
439
+ const _LCPR = "ListConfigurationProfilesRequest";
440
+ const _LD = "ListDeployments";
441
+ const _LDN = "LatestDeploymentNumber";
442
+ const _LDR = "ListDeploymentsRequest";
443
+ const _LDS = "ListDeploymentStrategies";
444
+ const _LDSR = "ListDeploymentStrategiesRequest";
445
+ const _LE = "ListEnvironments";
446
+ const _LEA = "ListExtensionAssociations";
447
+ const _LEAR = "ListExtensionAssociationsRequest";
448
+ const _LED = "ListExperimentDefinitions";
449
+ const _LEDR = "ListExperimentDefinitionsRequest";
450
+ const _LER = "ListEnvironmentsRequest";
451
+ const _LERE = "ListExperimentRunEvents";
452
+ const _LERER = "ListExperimentRunEventsRequest";
453
+ const _LERR = "ListExperimentRunsRequest";
454
+ const _LERi = "ListExtensionsRequest";
455
+ const _LERis = "ListExperimentRuns";
456
+ const _LEi = "ListExtensions";
457
+ const _LHCV = "ListHostedConfigurationVersions";
458
+ const _LHCVR = "ListHostedConfigurationVersionsRequest";
459
+ const _LTFR = "ListTagsForResource";
460
+ const _LTFRR = "ListTagsForResourceRequest";
461
+ const _LU = "LocationUri";
462
+ const _LVN = "LatestVersionNumber";
463
+ const _LVN_ = "Latest-Version-Number";
464
+ const _Lo = "Location";
465
+ const _M = "Message";
466
+ const _ML = "MonitorList";
467
+ const _MR = "MaxResults";
468
+ const _Me = "Measure";
469
+ const _Mo = "Monitors";
470
+ const _Mon = "Monitor";
471
+ const _N = "Name";
472
+ const _NA = "NumberArray";
473
+ const _NT = "NextToken";
474
+ const _NV = "NumberValue";
475
+ const _OA = "OccurredAt";
476
+ const _P = "Parameters";
477
+ const _PC = "PercentageComplete";
478
+ const _PM = "ParameterMap";
479
+ const _PPIM = "ProtectionPeriodInMinutes";
480
+ const _PTLE = "PayloadTooLargeException";
481
+ const _Pa = "Parameter";
482
+ const _R = "Reason";
483
+ const _RA = "RoleArn";
484
+ const _RAe = "ResourceArn";
485
+ const _RI = "ResourceIdentifier";
486
+ const _RN = "ResourceName";
487
+ const _RNFE = "ResourceNotFoundException";
488
+ const _RNTL = "ReasonsNotToLaunch";
489
+ const _RRA = "RetrievalRoleArn";
490
+ const _RT = "ReplicateTo";
491
+ const _RTL = "ReasonsToLaunch";
492
+ const _RTe = "ResourceTags";
493
+ const _Re = "Result";
494
+ const _Req = "Required";
495
+ const _Ru = "Run";
496
+ const _S = "Size";
497
+ const _SA = "StartedAt";
498
+ const _SAt = "StringArray";
499
+ const _SD = "StartDeployment";
500
+ const _SDR = "StartDeploymentRequest";
501
+ const _SDRt = "StopDeploymentRequest";
502
+ const _SDt = "StopDeployment";
503
+ const _SER = "StartExperimentRun";
504
+ const _SERR = "StartExperimentRunRequest";
505
+ const _SERRt = "StopExperimentRunRequest";
506
+ const _SERt = "StopExperimentRun";
507
+ const _SQEE = "ServiceQuotaExceededException";
508
+ const _SV = "StringValue";
509
+ const _SWLBA = "StringWithLengthBetween0And32768";
510
+ const _St = "State";
511
+ const _Sta = "Status";
512
+ const _T = "Type";
513
+ const _TB = "TriggeredBy";
514
+ const _TI = "TreatmentInput";
515
+ const _TIL = "TreatmentInputList";
516
+ const _TK = "TagKeys";
517
+ const _TL = "TreatmentList";
518
+ const _TO = "TreatmentOverrides";
519
+ const _TR = "TagResource";
520
+ const _TRR = "TagResourceRequest";
521
+ const _Ta = "Tags";
522
+ const _Tr = "Treatments";
523
+ const _Tre = "Treatment";
524
+ const _U = "Uri";
525
+ const _UA = "UpdatedAt";
526
+ const _UAR = "UpdateApplicationRequest";
527
+ const _UAS = "UpdateAccountSettings";
528
+ const _UASR = "UpdateAccountSettingsRequest";
529
+ const _UAp = "UpdateApplication";
530
+ const _UCP = "UpdateConfigurationProfile";
531
+ const _UCPR = "UpdateConfigurationProfileRequest";
532
+ const _UDS = "UpdateDeploymentStrategy";
533
+ const _UDSR = "UpdateDeploymentStrategyRequest";
534
+ const _UE = "UpdateEnvironment";
535
+ const _UEA = "UpdateExtensionAssociation";
536
+ const _UEAR = "UpdateExtensionAssociationRequest";
537
+ const _UED = "UpdateExperimentDefinition";
538
+ const _UEDR = "UpdateExperimentDefinitionRequest";
539
+ const _UER = "UpdateEnvironmentRequest";
540
+ const _UERR = "UpdateExperimentRunRequest";
541
+ const _UERp = "UpdateExtensionRequest";
542
+ const _UERpd = "UpdateExperimentRun";
543
+ const _UEp = "UpdateExtension";
544
+ const _UR = "UntagResource";
545
+ const _URR = "UntagResourceRequest";
546
+ const _V = "Validators";
547
+ const _VC = "ValidateConfiguration";
548
+ const _VCR = "ValidateConfigurationRequest";
549
+ const _VL = "VersionLabel";
550
+ const _VLa = "ValidatorList";
551
+ const _VM = "VendedMetrics";
552
+ const _VMS = "VendedMetricsSettings";
553
+ const _VN = "VersionNumber";
554
+ const _VN_ = "Version-Number";
555
+ const _VT = "ValidatorTypes";
556
+ const _Va = "Value";
557
+ const _Val = "Validator";
558
+ const _W = "Weight";
559
+ const _ai = "application_identifier";
560
+ const _c = "client";
561
+ const _ccv = "client_configuration_version";
562
+ const _ci = "client_id";
563
+ const _cpi = "configuration_profile_identifier";
564
+ const _cv = "configuration_version";
565
+ const _dt = "delete_type";
566
+ const _e = "error";
567
+ const _ei = "environment_identifier";
568
+ const _ei_ = "extension_identifier";
569
+ const _evn = "extension_version_number";
570
+ const _h = "http";
571
+ const _hE = "httpError";
572
+ const _hH = "httpHeader";
573
+ const _hQ = "httpQuery";
574
+ const _mr = "max_results";
575
+ const _n = "name";
576
+ const _nt = "next_token";
577
+ const _ri = "resource_identifier";
578
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.appconfig";
579
+ const _se = "server";
580
+ const _st = "status";
581
+ const _t = "type";
582
+ const _tK = "tagKeys";
583
+ const _v = "version";
584
+ const _vl = "version_label";
585
+ const _vn = "version_number";
586
+ const _xadpc = "x-amzn-deletion-protection-check";
587
+ const n0 = "com.amazonaws.appconfig";
588
+ const _s_registry = TypeRegistry.for(_s);
589
+ var AppConfigServiceException$ = [-3, _s, "AppConfigServiceException", 0, [], []];
590
+ _s_registry.registerError(AppConfigServiceException$, AppConfigServiceException);
591
+ const n0_registry = TypeRegistry.for(n0);
592
+ var BadRequestException$ = [-3, n0, _BRE,
593
+ { [_e]: _c, [_hE]: 400 },
594
+ [_M, _R, _D],
595
+ [0, 0, () => BadRequestDetails$]
596
+ ];
597
+ n0_registry.registerError(BadRequestException$, BadRequestException);
598
+ var ConflictException$ = [-3, n0, _CE,
599
+ { [_e]: _c, [_hE]: 409 },
600
+ [_M],
601
+ [0]
602
+ ];
603
+ n0_registry.registerError(ConflictException$, ConflictException);
604
+ var InternalServerException$ = [-3, n0, _ISE,
605
+ { [_e]: _se, [_hE]: 500 },
606
+ [_M],
607
+ [0]
608
+ ];
609
+ n0_registry.registerError(InternalServerException$, InternalServerException);
610
+ var PayloadTooLargeException$ = [-3, n0, _PTLE,
611
+ { [_e]: _c, [_hE]: 413 },
612
+ [_M, _Me, _L, _S],
613
+ [0, 0, 1, 1]
614
+ ];
615
+ n0_registry.registerError(PayloadTooLargeException$, PayloadTooLargeException);
616
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
617
+ { [_e]: _c, [_hE]: 404 },
618
+ [_M, _RN],
619
+ [0, 0]
620
+ ];
621
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
622
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
623
+ { [_e]: _c, [_hE]: 402 },
624
+ [_M],
625
+ [0]
626
+ ];
627
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
628
+ const errorTypeRegistries = [
629
+ _s_registry,
630
+ n0_registry,
631
+ ];
632
+ var _Blob = [0, n0, _B, 8, 21];
633
+ var StringWithLengthBetween0And32768 = [0, n0, _SWLBA, 8, 0];
634
+ var AccountSettings$ = [3, n0, _AS,
635
+ 0,
636
+ [_DP, _VM],
637
+ [() => DeletionProtectionSettings$, () => VendedMetricsSettings$]
638
+ ];
639
+ var Action$ = [3, n0, _A,
640
+ 0,
641
+ [_N, _De, _U, _RA],
642
+ [0, 0, 0, 0]
643
+ ];
644
+ var ActionInvocation$ = [3, n0, _AI,
645
+ 0,
646
+ [_EI, _AN, _U, _RA, _EM, _EC, _II],
647
+ [0, 0, 0, 0, 0, 0, 0]
648
+ ];
649
+ var Application$ = [3, n0, _Ap,
650
+ 0,
651
+ [_I, _N, _De],
652
+ [0, 0, 0]
653
+ ];
654
+ var Applications$ = [3, n0, _App,
655
+ 0,
656
+ [_It, _NT],
657
+ [() => ApplicationList, 0]
658
+ ];
659
+ var AppliedExtension$ = [3, n0, _AE,
660
+ 0,
661
+ [_EIx, _EAI, _VN, _P],
662
+ [0, 0, 1, 128 | 0]
663
+ ];
664
+ var Configuration$ = [3, n0, _C,
665
+ 0,
666
+ [_Co, _CV, _CT],
667
+ [[() => _Blob, 16], [0, { [_hH]: _CV_ }], [0, { [_hH]: _CT_ }]]
668
+ ];
669
+ var ConfigurationProfile$ = [3, n0, _CP,
670
+ 0,
671
+ [_AIp, _I, _N, _De, _LU, _RRA, _V, _T, _KKA, _KKI],
672
+ [0, 0, 0, 0, 0, 0, [() => ValidatorList, 0], 0, 0, 0]
673
+ ];
674
+ var ConfigurationProfiles$ = [3, n0, _CPo,
675
+ 0,
676
+ [_It, _NT],
677
+ [() => ConfigurationProfileSummaryList, 0]
678
+ ];
679
+ var ConfigurationProfileSummary$ = [3, n0, _CPS,
680
+ 0,
681
+ [_AIp, _I, _N, _LU, _VT, _T],
682
+ [0, 0, 0, 0, 64 | 0, 0]
683
+ ];
684
+ var CreateApplicationRequest$ = [3, n0, _CAR,
685
+ 0,
686
+ [_N, _De, _Ta],
687
+ [0, 0, 128 | 0], 1
688
+ ];
689
+ var CreateConfigurationProfileRequest$ = [3, n0, _CCPR,
690
+ 0,
691
+ [_AIp, _N, _LU, _De, _RRA, _V, _Ta, _T, _KKI],
692
+ [[0, 1], 0, 0, 0, 0, [() => ValidatorList, 0], 128 | 0, 0, 0], 3
693
+ ];
694
+ var CreateDeploymentStrategyRequest$ = [3, n0, _CDSR,
695
+ 0,
696
+ [_N, _DDIM, _GF, _De, _FBTIM, _GT, _RT, _Ta],
697
+ [0, 1, 1, 0, 1, 0, 0, 128 | 0], 3
698
+ ];
699
+ var CreateEnvironmentRequest$ = [3, n0, _CER,
700
+ 0,
701
+ [_AIp, _N, _De, _Mo, _Ta],
702
+ [[0, 1], 0, 0, () => MonitorList, 128 | 0], 2
703
+ ];
704
+ var CreateExperimentDefinitionRequest$ = [3, n0, _CEDR,
705
+ 0,
706
+ [_AIpp, _N, _CPI, _EIn, _FK, _Tr, _Con, _AR, _H, _AD, _LC, _Ta],
707
+ [[0, 1], 0, 0, 0, 0, () => TreatmentInputList, () => TreatmentInput$, 0, 0, 0, 0, 128 | 0], 8
708
+ ];
709
+ var CreateExtensionAssociationRequest$ = [3, n0, _CEAR,
710
+ 0,
711
+ [_EI, _RI, _EVN, _P, _Ta],
712
+ [0, 0, 1, 128 | 0, 128 | 0], 2
713
+ ];
714
+ var CreateExtensionRequest$ = [3, n0, _CERr,
715
+ 0,
716
+ [_N, _Ac, _De, _P, _Ta, _LVN],
717
+ [0, () => ActionsMap, 0, () => ParameterMap, 128 | 0, [1, { [_hH]: _LVN_ }]], 2
718
+ ];
719
+ var CreateHostedConfigurationVersionRequest$ = [3, n0, _CHCVR,
720
+ 0,
721
+ [_AIp, _CPIo, _Co, _CT, _De, _LVN, _VL],
722
+ [[0, 1], [0, 1], [() => _Blob, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _De }], [1, { [_hH]: _LVN_ }], [0, { [_hH]: _VL }]], 4
723
+ ];
724
+ var DeleteApplicationRequest$ = [3, n0, _DAR,
725
+ 0,
726
+ [_AIp],
727
+ [[0, 1]], 1
728
+ ];
729
+ var DeleteConfigurationProfileRequest$ = [3, n0, _DCPR,
730
+ 0,
731
+ [_AIp, _CPIo, _DPC],
732
+ [[0, 1], [0, 1], [0, { [_hH]: _xadpc }]], 2
733
+ ];
734
+ var DeleteDeploymentStrategyRequest$ = [3, n0, _DDSR,
735
+ 0,
736
+ [_DSI],
737
+ [[0, 1]], 1
738
+ ];
739
+ var DeleteEnvironmentRequest$ = [3, n0, _DER,
740
+ 0,
741
+ [_EInv, _AIp, _DPC],
742
+ [[0, 1], [0, 1], [0, { [_hH]: _xadpc }]], 2
743
+ ];
744
+ var DeleteExperimentDefinitionRequest$ = [3, n0, _DEDR,
745
+ 0,
746
+ [_AIpp, _EDI, _DT],
747
+ [[0, 1], [0, 1], [0, { [_hQ]: _dt }]], 2
748
+ ];
749
+ var DeleteExtensionAssociationRequest$ = [3, n0, _DEAR,
750
+ 0,
751
+ [_EAI],
752
+ [[0, 1]], 1
753
+ ];
754
+ var DeleteExtensionRequest$ = [3, n0, _DERe,
755
+ 0,
756
+ [_EI, _VN],
757
+ [[0, 1], [1, { [_hQ]: _v }]], 1
758
+ ];
759
+ var DeleteHostedConfigurationVersionRequest$ = [3, n0, _DHCVR,
760
+ 0,
761
+ [_AIp, _CPIo, _VN],
762
+ [[0, 1], [0, 1], [1, 1]], 3
763
+ ];
764
+ var DeletionProtectionSettings$ = [3, n0, _DPS,
765
+ 0,
766
+ [_E, _PPIM],
767
+ [2, 1]
768
+ ];
769
+ var Deployment$ = [3, n0, _Dep,
770
+ 0,
771
+ [_AIp, _EInv, _DSI, _CPIo, _DN, _CN, _CLU, _CV, _De, _DDIM, _GT, _GF, _FBTIM, _St, _EL, _PC, _SA, _CA, _AEp, _KKA, _KKI, _VL],
772
+ [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, () => DeploymentEvents, 1, 5, 5, () => AppliedExtensions, 0, 0, 0]
773
+ ];
774
+ var DeploymentEvent$ = [3, n0, _DE,
775
+ 0,
776
+ [_ET, _TB, _De, _AIc, _OA],
777
+ [0, 0, 0, () => ActionInvocations, 5]
778
+ ];
779
+ var DeploymentParameters$ = [3, n0, _DPe,
780
+ 0,
781
+ [_DEP, _Ta],
782
+ [[() => DynamicParameterMap, 0], 128 | 0]
783
+ ];
784
+ var Deployments$ = [3, n0, _Depl,
785
+ 0,
786
+ [_It, _NT],
787
+ [() => DeploymentList, 0]
788
+ ];
789
+ var DeploymentStrategies$ = [3, n0, _DS,
790
+ 0,
791
+ [_It, _NT],
792
+ [() => DeploymentStrategyList, 0]
793
+ ];
794
+ var DeploymentStrategy$ = [3, n0, _DSe,
795
+ 0,
796
+ [_I, _N, _De, _DDIM, _GT, _GF, _FBTIM, _RT],
797
+ [0, 0, 0, 1, 0, 1, 1, 0]
798
+ ];
799
+ var DeploymentSummary$ = [3, n0, _DSep,
800
+ 0,
801
+ [_DN, _CPIo, _CN, _CV, _DDIM, _GT, _GF, _FBTIM, _St, _PC, _SA, _CA, _VL, _T],
802
+ [1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 5, 5, 0, 0]
803
+ ];
804
+ var Environment$ = [3, n0, _En,
805
+ 0,
806
+ [_AIp, _I, _N, _De, _St, _Mo],
807
+ [0, 0, 0, 0, 0, () => MonitorList]
808
+ ];
809
+ var Environments$ = [3, n0, _Env,
810
+ 0,
811
+ [_It, _NT],
812
+ [() => EnvironmentList, 0]
813
+ ];
814
+ var ExperimentDefinition$ = [3, n0, _ED,
815
+ 0,
816
+ [_AIp, _I, _N, _H, _Sta, _CPIo, _EInv, _FK, _AR, _AD, _LC, _Tr, _Con, _CAr, _UA, _KKI],
817
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TreatmentList, () => Treatment$, 5, 5, 0]
818
+ ];
819
+ var ExperimentDefinitions$ = [3, n0, _EDx,
820
+ 0,
821
+ [_It, _NT],
822
+ [() => ExperimentDefinitionList, 0]
823
+ ];
824
+ var ExperimentDefinitionSnapshot$ = [3, n0, _EDS,
825
+ 0,
826
+ [_AIp, _I, _N, _H, _CPIo, _EInv, _FK, _AR, _AD, _LC, _Tr, _Con],
827
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TreatmentList, () => Treatment$]
828
+ ];
829
+ var ExperimentDefinitionSummary$ = [3, n0, _EDSx,
830
+ 0,
831
+ [_AIp, _I, _N, _H, _Sta, _CPIo, _EInv, _FK, _CAr, _UA],
832
+ [0, 0, 0, 0, 0, 0, 0, 0, 5, 5]
833
+ ];
834
+ var ExperimentRun$ = [3, n0, _ER,
835
+ 0,
836
+ [_AIp, _EDIx, _Ru, _De, _Sta, _EP, _TO, _Re, _SA, _UA, _EA, _EDS],
837
+ [0, 0, 1, 0, 0, 1, () => TreatmentOverrides$, () => ExperimentRunResult$, 5, 5, 5, () => ExperimentDefinitionSnapshot$]
838
+ ];
839
+ var ExperimentRunEvent$ = [3, n0, _ERE,
840
+ 0,
841
+ [_De, _ADs, _ET, _OA, _TB, _EP, _TO],
842
+ [0, 0, 0, 5, 0, 1, () => TreatmentOverrides$]
843
+ ];
844
+ var ExperimentRunEvents$ = [3, n0, _EREx,
845
+ 0,
846
+ [_It, _NT],
847
+ [() => ExperimentRunEventList, 0]
848
+ ];
849
+ var ExperimentRunResult$ = [3, n0, _ERR,
850
+ 0,
851
+ [_ES, _RTL, _RNTL],
852
+ [0, 0, 0]
853
+ ];
854
+ var ExperimentRuns$ = [3, n0, _ERx,
855
+ 0,
856
+ [_It, _NT],
857
+ [() => ExperimentRunSummaryList, 0]
858
+ ];
859
+ var ExperimentRunSummary$ = [3, n0, _ERS,
860
+ 0,
861
+ [_EDIx, _Ru, _De, _Sta, _SA, _UA, _EA],
862
+ [0, 1, 0, 0, 5, 5, 5]
863
+ ];
864
+ var Extension$ = [3, n0, _Ex,
865
+ 0,
866
+ [_I, _N, _VN, _Ar, _De, _Ac, _P],
867
+ [0, 0, 1, 0, 0, () => ActionsMap, () => ParameterMap]
868
+ ];
869
+ var ExtensionAssociation$ = [3, n0, _EAx,
870
+ 0,
871
+ [_I, _EAxt, _RAe, _Ar, _P, _EVN],
872
+ [0, 0, 0, 0, 128 | 0, 1]
873
+ ];
874
+ var ExtensionAssociations$ = [3, n0, _EAxte,
875
+ 0,
876
+ [_It, _NT],
877
+ [() => ExtensionAssociationSummaries, 0]
878
+ ];
879
+ var ExtensionAssociationSummary$ = [3, n0, _EAS,
880
+ 0,
881
+ [_I, _EAxt, _RAe],
882
+ [0, 0, 0]
883
+ ];
884
+ var Extensions$ = [3, n0, _Ext,
885
+ 0,
886
+ [_It, _NT],
887
+ [() => ExtensionSummaries, 0]
888
+ ];
889
+ var ExtensionSummary$ = [3, n0, _ESx,
890
+ 0,
891
+ [_I, _N, _VN, _Ar, _De],
892
+ [0, 0, 1, 0, 0]
893
+ ];
894
+ var FlagValue$ = [3, n0, _FV,
895
+ 0,
896
+ [_E, _AV],
897
+ [2, () => AttributeValueMap], 1
898
+ ];
899
+ var GetApplicationRequest$ = [3, n0, _GAR,
900
+ 0,
901
+ [_AIp],
902
+ [[0, 1]], 1
903
+ ];
904
+ var GetConfigurationProfileRequest$ = [3, n0, _GCPR,
905
+ 0,
906
+ [_AIp, _CPIo],
907
+ [[0, 1], [0, 1]], 2
908
+ ];
909
+ var GetConfigurationRequest$ = [3, n0, _GCR,
910
+ 0,
911
+ [_Ap, _En, _C, _CI, _CCV],
912
+ [[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _ci }], [0, { [_hQ]: _ccv }]], 4
913
+ ];
914
+ var GetDeploymentRequest$ = [3, n0, _GDR,
915
+ 0,
916
+ [_AIp, _EInv, _DN],
917
+ [[0, 1], [0, 1], [1, 1]], 3
918
+ ];
919
+ var GetDeploymentStrategyRequest$ = [3, n0, _GDSR,
920
+ 0,
921
+ [_DSI],
922
+ [[0, 1]], 1
923
+ ];
924
+ var GetEnvironmentRequest$ = [3, n0, _GER,
925
+ 0,
926
+ [_AIp, _EInv],
927
+ [[0, 1], [0, 1]], 2
928
+ ];
929
+ var GetExperimentDefinitionRequest$ = [3, n0, _GEDR,
930
+ 0,
931
+ [_AIpp, _EDI],
932
+ [[0, 1], [0, 1]], 2
933
+ ];
934
+ var GetExperimentRunRequest$ = [3, n0, _GERR,
935
+ 0,
936
+ [_AIpp, _EDI, _Ru],
937
+ [[0, 1], [0, 1], [1, 1]], 3
938
+ ];
939
+ var GetExtensionAssociationRequest$ = [3, n0, _GEAR,
940
+ 0,
941
+ [_EAI],
942
+ [[0, 1]], 1
943
+ ];
944
+ var GetExtensionRequest$ = [3, n0, _GERe,
945
+ 0,
946
+ [_EI, _VN],
947
+ [[0, 1], [1, { [_hQ]: _vn }]], 1
948
+ ];
949
+ var GetHostedConfigurationVersionRequest$ = [3, n0, _GHCVR,
950
+ 0,
951
+ [_AIp, _CPIo, _VN],
952
+ [[0, 1], [0, 1], [1, 1]], 3
953
+ ];
954
+ var HostedConfigurationVersion$ = [3, n0, _HCV,
955
+ 0,
956
+ [_AIp, _CPIo, _VN, _De, _Co, _CT, _VL, _KKA],
957
+ [[0, { [_hH]: _AI_ }], [0, { [_hH]: _CPI_ }], [1, { [_hH]: _VN_ }], [0, { [_hH]: _De }], [() => _Blob, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _VL }], [0, { [_hH]: _KKA }]]
958
+ ];
959
+ var HostedConfigurationVersions$ = [3, n0, _HCVo,
960
+ 0,
961
+ [_It, _NT],
962
+ [() => HostedConfigurationVersionSummaryList, 0]
963
+ ];
964
+ var HostedConfigurationVersionSummary$ = [3, n0, _HCVS,
965
+ 0,
966
+ [_AIp, _CPIo, _VN, _De, _CT, _VL, _KKA],
967
+ [0, 0, 1, 0, 0, 0, 0]
968
+ ];
969
+ var InvalidConfigurationDetail$ = [3, n0, _ICD,
970
+ 0,
971
+ [_Cons, _Lo, _R, _T, _Va],
972
+ [0, 0, 0, 0, 0]
973
+ ];
974
+ var ListApplicationsRequest$ = [3, n0, _LAR,
975
+ 0,
976
+ [_MR, _NT],
977
+ [[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
978
+ ];
979
+ var ListConfigurationProfilesRequest$ = [3, n0, _LCPR,
980
+ 0,
981
+ [_AIp, _MR, _NT, _T],
982
+ [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _t }]], 1
983
+ ];
984
+ var ListDeploymentsRequest$ = [3, n0, _LDR,
985
+ 0,
986
+ [_AIp, _EInv, _MR, _NT],
987
+ [[0, 1], [0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 2
988
+ ];
989
+ var ListDeploymentStrategiesRequest$ = [3, n0, _LDSR,
990
+ 0,
991
+ [_MR, _NT],
992
+ [[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
993
+ ];
994
+ var ListEnvironmentsRequest$ = [3, n0, _LER,
995
+ 0,
996
+ [_AIp, _MR, _NT],
997
+ [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
998
+ ];
999
+ var ListExperimentDefinitionsRequest$ = [3, n0, _LEDR,
1000
+ 0,
1001
+ [_AIpp, _CPI, _EIn, _Sta, _MR, _NT],
1002
+ [[0, { [_hQ]: _ai }], [0, { [_hQ]: _cpi }], [0, { [_hQ]: _ei }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
1003
+ ];
1004
+ var ListExperimentRunEventsRequest$ = [3, n0, _LERER,
1005
+ 0,
1006
+ [_AIpp, _EDI, _Ru, _MR, _NT],
1007
+ [[0, 1], [0, 1], [1, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 3
1008
+ ];
1009
+ var ListExperimentRunsRequest$ = [3, n0, _LERR,
1010
+ 0,
1011
+ [_AIpp, _EDI, _MR, _NT, _Sta],
1012
+ [[0, 1], [0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _st }]], 2
1013
+ ];
1014
+ var ListExtensionAssociationsRequest$ = [3, n0, _LEAR,
1015
+ 0,
1016
+ [_RI, _EI, _EVN, _MR, _NT],
1017
+ [[0, { [_hQ]: _ri }], [0, { [_hQ]: _ei_ }], [1, { [_hQ]: _evn }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
1018
+ ];
1019
+ var ListExtensionsRequest$ = [3, n0, _LERi,
1020
+ 0,
1021
+ [_MR, _NT, _N],
1022
+ [[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _n }]]
1023
+ ];
1024
+ var ListHostedConfigurationVersionsRequest$ = [3, n0, _LHCVR,
1025
+ 0,
1026
+ [_AIp, _CPIo, _MR, _NT, _VL],
1027
+ [[0, 1], [0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _vl }]], 2
1028
+ ];
1029
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1030
+ 0,
1031
+ [_RAe],
1032
+ [[0, 1]], 1
1033
+ ];
1034
+ var Monitor$ = [3, n0, _Mon,
1035
+ 0,
1036
+ [_AA, _ARA],
1037
+ [0, 0], 1
1038
+ ];
1039
+ var Parameter$ = [3, n0, _Pa,
1040
+ 0,
1041
+ [_De, _Req, _Dy],
1042
+ [0, 2, 2]
1043
+ ];
1044
+ var ResourceTags$ = [3, n0, _RTe,
1045
+ 0,
1046
+ [_Ta],
1047
+ [128 | 0]
1048
+ ];
1049
+ var StartDeploymentRequest$ = [3, n0, _SDR,
1050
+ 0,
1051
+ [_AIp, _EInv, _DSI, _CPIo, _CV, _De, _Ta, _KKI, _DEP, _LDN],
1052
+ [[0, 1], [0, 1], 0, 0, 0, 0, 128 | 0, 0, [() => DynamicParameterMap, 0], 1], 5
1053
+ ];
1054
+ var StartExperimentRunRequest$ = [3, n0, _SERR,
1055
+ 0,
1056
+ [_AIpp, _EDI, _De, _EP, _TO, _Ta, _DPe],
1057
+ [[0, 1], [0, 1], 0, 1, () => TreatmentOverrides$, 128 | 0, [() => DeploymentParameters$, 0]], 2
1058
+ ];
1059
+ var StopDeploymentRequest$ = [3, n0, _SDRt,
1060
+ 0,
1061
+ [_AIp, _EInv, _DN, _ARl],
1062
+ [[0, 1], [0, 1], [1, 1], [2, { [_hH]: _AR_ }]], 3
1063
+ ];
1064
+ var StopExperimentRunRequest$ = [3, n0, _SERRt,
1065
+ 0,
1066
+ [_AIpp, _EDI, _Ru, _Re, _DPe],
1067
+ [[0, 1], [0, 1], [1, 1], () => ExperimentRunResult$, [() => DeploymentParameters$, 0]], 3
1068
+ ];
1069
+ var TagResourceRequest$ = [3, n0, _TRR,
1070
+ 0,
1071
+ [_RAe, _Ta],
1072
+ [[0, 1], 128 | 0], 2
1073
+ ];
1074
+ var Treatment$ = [3, n0, _Tre,
1075
+ 0,
1076
+ [_W, _FV, _K, _De],
1077
+ [1, () => FlagValue$, 0, 0], 2
1078
+ ];
1079
+ var TreatmentInput$ = [3, n0, _TI,
1080
+ 0,
1081
+ [_W, _FV, _De],
1082
+ [1, () => FlagValue$, 0], 2
1083
+ ];
1084
+ var UntagResourceRequest$ = [3, n0, _URR,
1085
+ 0,
1086
+ [_RAe, _TK],
1087
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1088
+ ];
1089
+ var UpdateAccountSettingsRequest$ = [3, n0, _UASR,
1090
+ 0,
1091
+ [_DP, _VM],
1092
+ [() => DeletionProtectionSettings$, () => VendedMetricsSettings$]
1093
+ ];
1094
+ var UpdateApplicationRequest$ = [3, n0, _UAR,
1095
+ 0,
1096
+ [_AIp, _N, _De],
1097
+ [[0, 1], 0, 0], 1
1098
+ ];
1099
+ var UpdateConfigurationProfileRequest$ = [3, n0, _UCPR,
1100
+ 0,
1101
+ [_AIp, _CPIo, _N, _De, _RRA, _V, _KKI],
1102
+ [[0, 1], [0, 1], 0, 0, 0, [() => ValidatorList, 0], 0], 2
1103
+ ];
1104
+ var UpdateDeploymentStrategyRequest$ = [3, n0, _UDSR,
1105
+ 0,
1106
+ [_DSI, _De, _DDIM, _FBTIM, _GF, _GT],
1107
+ [[0, 1], 0, 1, 1, 1, 0], 1
1108
+ ];
1109
+ var UpdateEnvironmentRequest$ = [3, n0, _UER,
1110
+ 0,
1111
+ [_AIp, _EInv, _N, _De, _Mo],
1112
+ [[0, 1], [0, 1], 0, 0, () => MonitorList], 2
1113
+ ];
1114
+ var UpdateExperimentDefinitionRequest$ = [3, n0, _UEDR,
1115
+ 0,
1116
+ [_AIpp, _EDI, _Tr, _Con, _H, _AR, _AD, _LC],
1117
+ [[0, 1], [0, 1], () => TreatmentInputList, () => TreatmentInput$, 0, 0, 0, 0], 2
1118
+ ];
1119
+ var UpdateExperimentRunRequest$ = [3, n0, _UERR,
1120
+ 0,
1121
+ [_AIpp, _EDI, _Ru, _De, _EP, _TO, _DPe],
1122
+ [[0, 1], [0, 1], [1, 1], 0, 1, () => TreatmentOverrides$, [() => DeploymentParameters$, 0]], 3
1123
+ ];
1124
+ var UpdateExtensionAssociationRequest$ = [3, n0, _UEAR,
1125
+ 0,
1126
+ [_EAI, _P],
1127
+ [[0, 1], 128 | 0], 1
1128
+ ];
1129
+ var UpdateExtensionRequest$ = [3, n0, _UERp,
1130
+ 0,
1131
+ [_EI, _De, _Ac, _P, _VN],
1132
+ [[0, 1], 0, () => ActionsMap, () => ParameterMap, 1], 1
1133
+ ];
1134
+ var ValidateConfigurationRequest$ = [3, n0, _VCR,
1135
+ 0,
1136
+ [_AIp, _CPIo, _CV],
1137
+ [[0, 1], [0, 1], [0, { [_hQ]: _cv }]], 3
1138
+ ];
1139
+ var Validator$ = [3, n0, _Val,
1140
+ 0,
1141
+ [_T, _Co],
1142
+ [0, [() => StringWithLengthBetween0And32768, 0]], 2
1143
+ ];
1144
+ var VendedMetricsSettings$ = [3, n0, _VMS,
1145
+ 0,
1146
+ [_E],
1147
+ [2]
1148
+ ];
1149
+ var __Unit = "unit";
1150
+ var ActionInvocations = [1, n0, _AIc,
1151
+ 0, () => ActionInvocation$
1152
+ ];
1153
+ var ActionList = [1, n0, _AL,
1154
+ 0, () => Action$
1155
+ ];
1156
+ var ApplicationList = [1, n0, _ALp,
1157
+ 0, () => Application$
1158
+ ];
1159
+ var AppliedExtensions = [1, n0, _AEp,
1160
+ 0, () => AppliedExtension$
1161
+ ];
1162
+ var ConfigurationProfileSummaryList = [1, n0, _CPSL,
1163
+ 0, () => ConfigurationProfileSummary$
1164
+ ];
1165
+ var DeploymentEvents = [1, n0, _DEe,
1166
+ 0, () => DeploymentEvent$
1167
+ ];
1168
+ var DeploymentList = [1, n0, _DL,
1169
+ 0, () => DeploymentSummary$
1170
+ ];
1171
+ var DeploymentStrategyList = [1, n0, _DSL,
1172
+ 0, () => DeploymentStrategy$
1173
+ ];
1174
+ var EnvironmentList = [1, n0, _ELn,
1175
+ 0, () => Environment$
1176
+ ];
1177
+ var ExperimentDefinitionList = [1, n0, _EDL,
1178
+ 0, () => ExperimentDefinitionSummary$
1179
+ ];
1180
+ var ExperimentRunEventList = [1, n0, _EREL,
1181
+ 0, () => ExperimentRunEvent$
1182
+ ];
1183
+ var ExperimentRunSummaryList = [1, n0, _ERSL,
1184
+ 0, () => ExperimentRunSummary$
1185
+ ];
1186
+ var ExtensionAssociationSummaries = [1, n0, _EASx,
1187
+ 0, () => ExtensionAssociationSummary$
1188
+ ];
1189
+ var ExtensionSummaries = [1, n0, _ESxt,
1190
+ 0, () => ExtensionSummary$
1191
+ ];
1192
+ var HostedConfigurationVersionSummaryList = [1, n0, _HCVSL,
1193
+ 0, () => HostedConfigurationVersionSummary$
1194
+ ];
1195
+ var InvalidConfigurationDetailList = [1, n0, _ICDL,
1196
+ 0, () => InvalidConfigurationDetail$
1197
+ ];
1198
+ var MonitorList = [1, n0, _ML,
1199
+ 0, () => Monitor$
1200
+ ];
1201
+ var TreatmentInputList = [1, n0, _TIL,
1202
+ 0, () => TreatmentInput$
1203
+ ];
1204
+ var TreatmentList = [1, n0, _TL,
1205
+ 0, () => Treatment$
1206
+ ];
1207
+ var ValidatorList = [1, n0, _VLa,
1208
+ 0, [() => Validator$,
1209
+ 0]
1210
+ ];
1211
+ var ActionsMap = [2, n0, _AM,
1212
+ 0, 0, () => ActionList
1213
+ ];
1214
+ var AttributeValueMap = [2, n0, _AVM,
1215
+ 0, 0, () => AttributeValue$
1216
+ ];
1217
+ var DynamicParameterMap = [2, n0, _DPM,
1218
+ 8, 0, 0
1219
+ ];
1220
+ var ParameterMap = [2, n0, _PM,
1221
+ 0, 0, () => Parameter$
1222
+ ];
1223
+ var AttributeValue$ = [4, n0, _AVt,
1224
+ 0,
1225
+ [_SV, _NV, _BV, _SAt, _NA],
1226
+ [0, 1, 2, 64 | 0, 64 | 1]
1227
+ ];
1228
+ var BadRequestDetails$ = [4, n0, _BRD,
1229
+ 0,
1230
+ [_IC],
1231
+ [() => InvalidConfigurationDetailList]
1232
+ ];
1233
+ var TreatmentOverrides$ = [4, n0, _TO,
1234
+ 0,
1235
+ [_In],
1236
+ [128 | 0]
1237
+ ];
1238
+ var CreateApplication$ = [9, n0, _CAre,
1239
+ { [_h]: ["POST", "/applications", 201] }, () => CreateApplicationRequest$, () => Application$
1240
+ ];
1241
+ var CreateConfigurationProfile$ = [9, n0, _CCP,
1242
+ { [_h]: ["POST", "/applications/{ApplicationId}/configurationprofiles", 201] }, () => CreateConfigurationProfileRequest$, () => ConfigurationProfile$
1243
+ ];
1244
+ var CreateDeploymentStrategy$ = [9, n0, _CDS,
1245
+ { [_h]: ["POST", "/deploymentstrategies", 201] }, () => CreateDeploymentStrategyRequest$, () => DeploymentStrategy$
1246
+ ];
1247
+ var CreateEnvironment$ = [9, n0, _CEr,
1248
+ { [_h]: ["POST", "/applications/{ApplicationId}/environments", 201] }, () => CreateEnvironmentRequest$, () => Environment$
1249
+ ];
1250
+ var CreateExperimentDefinition$ = [9, n0, _CED,
1251
+ { [_h]: ["POST", "/applications/{ApplicationIdentifier}/experimentdefinitions", 201] }, () => CreateExperimentDefinitionRequest$, () => ExperimentDefinition$
1252
+ ];
1253
+ var CreateExtension$ = [9, n0, _CEre,
1254
+ { [_h]: ["POST", "/extensions", 201] }, () => CreateExtensionRequest$, () => Extension$
1255
+ ];
1256
+ var CreateExtensionAssociation$ = [9, n0, _CEA,
1257
+ { [_h]: ["POST", "/extensionassociations", 201] }, () => CreateExtensionAssociationRequest$, () => ExtensionAssociation$
1258
+ ];
1259
+ var CreateHostedConfigurationVersion$ = [9, n0, _CHCV,
1260
+ { [_h]: ["POST", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions", 201] }, () => CreateHostedConfigurationVersionRequest$, () => HostedConfigurationVersion$
1261
+ ];
1262
+ var DeleteApplication$ = [9, n0, _DA,
1263
+ { [_h]: ["DELETE", "/applications/{ApplicationId}", 204] }, () => DeleteApplicationRequest$, () => __Unit
1264
+ ];
1265
+ var DeleteConfigurationProfile$ = [9, n0, _DCP,
1266
+ { [_h]: ["DELETE", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 204] }, () => DeleteConfigurationProfileRequest$, () => __Unit
1267
+ ];
1268
+ var DeleteDeploymentStrategy$ = [9, n0, _DDS,
1269
+ { [_h]: ["DELETE", "/deployementstrategies/{DeploymentStrategyId}", 204] }, () => DeleteDeploymentStrategyRequest$, () => __Unit
1270
+ ];
1271
+ var DeleteEnvironment$ = [9, n0, _DEel,
1272
+ { [_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}", 204] }, () => DeleteEnvironmentRequest$, () => __Unit
1273
+ ];
1274
+ var DeleteExperimentDefinition$ = [9, n0, _DED,
1275
+ { [_h]: ["DELETE", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}", 204] }, () => DeleteExperimentDefinitionRequest$, () => __Unit
1276
+ ];
1277
+ var DeleteExtension$ = [9, n0, _DEele,
1278
+ { [_h]: ["DELETE", "/extensions/{ExtensionIdentifier}", 204] }, () => DeleteExtensionRequest$, () => __Unit
1279
+ ];
1280
+ var DeleteExtensionAssociation$ = [9, n0, _DEA,
1281
+ { [_h]: ["DELETE", "/extensionassociations/{ExtensionAssociationId}", 204] }, () => DeleteExtensionAssociationRequest$, () => __Unit
1282
+ ];
1283
+ var DeleteHostedConfigurationVersion$ = [9, n0, _DHCV,
1284
+ { [_h]: ["DELETE", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}", 204] }, () => DeleteHostedConfigurationVersionRequest$, () => __Unit
1285
+ ];
1286
+ var GetAccountSettings$ = [9, n0, _GAS,
1287
+ { [_h]: ["GET", "/settings", 200] }, () => __Unit, () => AccountSettings$
1288
+ ];
1289
+ var GetApplication$ = [9, n0, _GA,
1290
+ { [_h]: ["GET", "/applications/{ApplicationId}", 200] }, () => GetApplicationRequest$, () => Application$
1291
+ ];
1292
+ var GetConfiguration$ = [9, n0, _GC,
1293
+ { [_h]: ["GET", "/applications/{Application}/environments/{Environment}/configurations/{Configuration}", 200] }, () => GetConfigurationRequest$, () => Configuration$
1294
+ ];
1295
+ var GetConfigurationProfile$ = [9, n0, _GCP,
1296
+ { [_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 200] }, () => GetConfigurationProfileRequest$, () => ConfigurationProfile$
1297
+ ];
1298
+ var GetDeployment$ = [9, n0, _GD,
1299
+ { [_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", 200] }, () => GetDeploymentRequest$, () => Deployment$
1300
+ ];
1301
+ var GetDeploymentStrategy$ = [9, n0, _GDS,
1302
+ { [_h]: ["GET", "/deploymentstrategies/{DeploymentStrategyId}", 200] }, () => GetDeploymentStrategyRequest$, () => DeploymentStrategy$
1303
+ ];
1304
+ var GetEnvironment$ = [9, n0, _GE,
1305
+ { [_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200] }, () => GetEnvironmentRequest$, () => Environment$
1306
+ ];
1307
+ var GetExperimentDefinition$ = [9, n0, _GED,
1308
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}", 200] }, () => GetExperimentDefinitionRequest$, () => ExperimentDefinition$
1309
+ ];
1310
+ var GetExperimentRun$ = [9, n0, _GERet,
1311
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}", 200] }, () => GetExperimentRunRequest$, () => ExperimentRun$
1312
+ ];
1313
+ var GetExtension$ = [9, n0, _GEe,
1314
+ { [_h]: ["GET", "/extensions/{ExtensionIdentifier}", 200] }, () => GetExtensionRequest$, () => Extension$
1315
+ ];
1316
+ var GetExtensionAssociation$ = [9, n0, _GEA,
1317
+ { [_h]: ["GET", "/extensionassociations/{ExtensionAssociationId}", 200] }, () => GetExtensionAssociationRequest$, () => ExtensionAssociation$
1318
+ ];
1319
+ var GetHostedConfigurationVersion$ = [9, n0, _GHCV,
1320
+ { [_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}", 200] }, () => GetHostedConfigurationVersionRequest$, () => HostedConfigurationVersion$
1321
+ ];
1322
+ var ListApplications$ = [9, n0, _LA,
1323
+ { [_h]: ["GET", "/applications", 200] }, () => ListApplicationsRequest$, () => Applications$
1324
+ ];
1325
+ var ListConfigurationProfiles$ = [9, n0, _LCP,
1326
+ { [_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles", 200] }, () => ListConfigurationProfilesRequest$, () => ConfigurationProfiles$
1327
+ ];
1328
+ var ListDeployments$ = [9, n0, _LD,
1329
+ { [_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", 200] }, () => ListDeploymentsRequest$, () => Deployments$
1330
+ ];
1331
+ var ListDeploymentStrategies$ = [9, n0, _LDS,
1332
+ { [_h]: ["GET", "/deploymentstrategies", 200] }, () => ListDeploymentStrategiesRequest$, () => DeploymentStrategies$
1333
+ ];
1334
+ var ListEnvironments$ = [9, n0, _LE,
1335
+ { [_h]: ["GET", "/applications/{ApplicationId}/environments", 200] }, () => ListEnvironmentsRequest$, () => Environments$
1336
+ ];
1337
+ var ListExperimentDefinitions$ = [9, n0, _LED,
1338
+ { [_h]: ["GET", "/experimentdefinitions", 200] }, () => ListExperimentDefinitionsRequest$, () => ExperimentDefinitions$
1339
+ ];
1340
+ var ListExperimentRunEvents$ = [9, n0, _LERE,
1341
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}/events", 200] }, () => ListExperimentRunEventsRequest$, () => ExperimentRunEvents$
1342
+ ];
1343
+ var ListExperimentRuns$ = [9, n0, _LERis,
1344
+ { [_h]: ["GET", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns", 200] }, () => ListExperimentRunsRequest$, () => ExperimentRuns$
1345
+ ];
1346
+ var ListExtensionAssociations$ = [9, n0, _LEA,
1347
+ { [_h]: ["GET", "/extensionassociations", 200] }, () => ListExtensionAssociationsRequest$, () => ExtensionAssociations$
1348
+ ];
1349
+ var ListExtensions$ = [9, n0, _LEi,
1350
+ { [_h]: ["GET", "/extensions", 200] }, () => ListExtensionsRequest$, () => Extensions$
1351
+ ];
1352
+ var ListHostedConfigurationVersions$ = [9, n0, _LHCV,
1353
+ { [_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions", 200] }, () => ListHostedConfigurationVersionsRequest$, () => HostedConfigurationVersions$
1354
+ ];
1355
+ var ListTagsForResource$ = [9, n0, _LTFR,
1356
+ { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ResourceTags$
1357
+ ];
1358
+ var StartDeployment$ = [9, n0, _SD,
1359
+ { [_h]: ["POST", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", 201] }, () => StartDeploymentRequest$, () => Deployment$
1360
+ ];
1361
+ var StartExperimentRun$ = [9, n0, _SER,
1362
+ { [_h]: ["POST", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns", 201] }, () => StartExperimentRunRequest$, () => ExperimentRun$
1363
+ ];
1364
+ var StopDeployment$ = [9, n0, _SDt,
1365
+ { [_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", 202] }, () => StopDeploymentRequest$, () => Deployment$
1366
+ ];
1367
+ var StopExperimentRun$ = [9, n0, _SERt,
1368
+ { [_h]: ["PATCH", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}/stop", 200] }, () => StopExperimentRunRequest$, () => ExperimentRun$
1369
+ ];
1370
+ var TagResource$ = [9, n0, _TR,
1371
+ { [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
1372
+ ];
1373
+ var UntagResource$ = [9, n0, _UR,
1374
+ { [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
1375
+ ];
1376
+ var UpdateAccountSettings$ = [9, n0, _UAS,
1377
+ { [_h]: ["PATCH", "/settings", 200] }, () => UpdateAccountSettingsRequest$, () => AccountSettings$
1378
+ ];
1379
+ var UpdateApplication$ = [9, n0, _UAp,
1380
+ { [_h]: ["PATCH", "/applications/{ApplicationId}", 200] }, () => UpdateApplicationRequest$, () => Application$
1381
+ ];
1382
+ var UpdateConfigurationProfile$ = [9, n0, _UCP,
1383
+ { [_h]: ["PATCH", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 200] }, () => UpdateConfigurationProfileRequest$, () => ConfigurationProfile$
1384
+ ];
1385
+ var UpdateDeploymentStrategy$ = [9, n0, _UDS,
1386
+ { [_h]: ["PATCH", "/deploymentstrategies/{DeploymentStrategyId}", 200] }, () => UpdateDeploymentStrategyRequest$, () => DeploymentStrategy$
1387
+ ];
1388
+ var UpdateEnvironment$ = [9, n0, _UE,
1389
+ { [_h]: ["PATCH", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200] }, () => UpdateEnvironmentRequest$, () => Environment$
1390
+ ];
1391
+ var UpdateExperimentDefinition$ = [9, n0, _UED,
1392
+ { [_h]: ["PATCH", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}", 200] }, () => UpdateExperimentDefinitionRequest$, () => ExperimentDefinition$
1393
+ ];
1394
+ var UpdateExperimentRun$ = [9, n0, _UERpd,
1395
+ { [_h]: ["PATCH", "/applications/{ApplicationIdentifier}/experimentdefinitions/{ExperimentDefinitionIdentifier}/experimentruns/{Run}/update", 200] }, () => UpdateExperimentRunRequest$, () => ExperimentRun$
1396
+ ];
1397
+ var UpdateExtension$ = [9, n0, _UEp,
1398
+ { [_h]: ["PATCH", "/extensions/{ExtensionIdentifier}", 200] }, () => UpdateExtensionRequest$, () => Extension$
1399
+ ];
1400
+ var UpdateExtensionAssociation$ = [9, n0, _UEA,
1401
+ { [_h]: ["PATCH", "/extensionassociations/{ExtensionAssociationId}", 200] }, () => UpdateExtensionAssociationRequest$, () => ExtensionAssociation$
1402
+ ];
1403
+ var ValidateConfiguration$ = [9, n0, _VC,
1404
+ { [_h]: ["POST", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/validators", 204] }, () => ValidateConfigurationRequest$, () => __Unit
1405
+ ];
1406
+
1407
+ const getRuntimeConfig$1 = (config) => {
1408
+ return {
1409
+ apiVersion: "2019-10-09",
1410
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1411
+ base64Encoder: config?.base64Encoder ?? toBase64,
1412
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1413
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1414
+ extensions: config?.extensions ?? [],
1415
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAppConfigHttpAuthSchemeProvider,
1416
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1417
+ {
1418
+ schemeId: "aws.auth#sigv4",
1419
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1420
+ signer: new AwsSdkSigV4Signer(),
1421
+ },
1422
+ ],
1423
+ logger: config?.logger ?? new NoOpLogger(),
1424
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1425
+ protocolSettings: config?.protocolSettings ?? {
1426
+ defaultNamespace: "com.amazonaws.appconfig",
1427
+ errorTypeRegistries,
1428
+ version: "2019-10-09",
1429
+ serviceTarget: "AmazonAppConfig",
1430
+ },
1431
+ serviceId: config?.serviceId ?? "AppConfig",
1432
+ urlParser: config?.urlParser ?? parseUrl,
1433
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1434
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1435
+ };
1436
+ };
1437
+
1438
+ const getRuntimeConfig = (config) => {
1439
+ emitWarningIfUnsupportedVersion(process.version);
1440
+ const defaultsMode = resolveDefaultsModeConfig(config);
1441
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1442
+ const clientSharedValues = getRuntimeConfig$1(config);
1443
+ emitWarningIfUnsupportedVersion$1(process.version);
1444
+ const loaderConfig = {
1445
+ profile: config?.profile,
1446
+ logger: clientSharedValues.logger,
1447
+ };
1448
+ return {
1449
+ ...clientSharedValues,
1450
+ ...config,
1451
+ runtime: "node",
1452
+ defaultsMode,
1453
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1454
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1455
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1456
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1457
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1458
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1459
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1460
+ retryMode: config?.retryMode ??
1461
+ loadConfig({
1462
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1463
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1464
+ }, config),
1465
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1466
+ streamCollector: config?.streamCollector ?? streamCollector,
1467
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1468
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1469
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1470
+ };
1471
+ };
1472
+
34
1473
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1474
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1475
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -159,6 +1598,18 @@ class CreateEnvironmentCommand extends Command
159
1598
  .build() {
160
1599
  }
161
1600
 
1601
+ class CreateExperimentDefinitionCommand extends Command
1602
+ .classBuilder()
1603
+ .ep(commonParams)
1604
+ .m(function (Command, cs, config, o) {
1605
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1606
+ })
1607
+ .s("AmazonAppConfig", "CreateExperimentDefinition", {})
1608
+ .n("AppConfigClient", "CreateExperimentDefinitionCommand")
1609
+ .sc(CreateExperimentDefinition$)
1610
+ .build() {
1611
+ }
1612
+
162
1613
  class CreateExtensionAssociationCommand extends Command
163
1614
  .classBuilder()
164
1615
  .ep(commonParams)
@@ -243,6 +1694,18 @@ class DeleteEnvironmentCommand extends Command
243
1694
  .build() {
244
1695
  }
245
1696
 
1697
+ class DeleteExperimentDefinitionCommand extends Command
1698
+ .classBuilder()
1699
+ .ep(commonParams)
1700
+ .m(function (Command, cs, config, o) {
1701
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1702
+ })
1703
+ .s("AmazonAppConfig", "DeleteExperimentDefinition", {})
1704
+ .n("AppConfigClient", "DeleteExperimentDefinitionCommand")
1705
+ .sc(DeleteExperimentDefinition$)
1706
+ .build() {
1707
+ }
1708
+
246
1709
  class DeleteExtensionAssociationCommand extends Command
247
1710
  .classBuilder()
248
1711
  .ep(commonParams)
@@ -363,6 +1826,30 @@ class GetEnvironmentCommand extends Command
363
1826
  .build() {
364
1827
  }
365
1828
 
1829
+ class GetExperimentDefinitionCommand extends Command
1830
+ .classBuilder()
1831
+ .ep(commonParams)
1832
+ .m(function (Command, cs, config, o) {
1833
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1834
+ })
1835
+ .s("AmazonAppConfig", "GetExperimentDefinition", {})
1836
+ .n("AppConfigClient", "GetExperimentDefinitionCommand")
1837
+ .sc(GetExperimentDefinition$)
1838
+ .build() {
1839
+ }
1840
+
1841
+ class GetExperimentRunCommand extends Command
1842
+ .classBuilder()
1843
+ .ep(commonParams)
1844
+ .m(function (Command, cs, config, o) {
1845
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1846
+ })
1847
+ .s("AmazonAppConfig", "GetExperimentRun", {})
1848
+ .n("AppConfigClient", "GetExperimentRunCommand")
1849
+ .sc(GetExperimentRun$)
1850
+ .build() {
1851
+ }
1852
+
366
1853
  class GetExtensionAssociationCommand extends Command
367
1854
  .classBuilder()
368
1855
  .ep(commonParams)
@@ -459,6 +1946,42 @@ class ListEnvironmentsCommand extends Command
459
1946
  .build() {
460
1947
  }
461
1948
 
1949
+ class ListExperimentDefinitionsCommand extends Command
1950
+ .classBuilder()
1951
+ .ep(commonParams)
1952
+ .m(function (Command, cs, config, o) {
1953
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1954
+ })
1955
+ .s("AmazonAppConfig", "ListExperimentDefinitions", {})
1956
+ .n("AppConfigClient", "ListExperimentDefinitionsCommand")
1957
+ .sc(ListExperimentDefinitions$)
1958
+ .build() {
1959
+ }
1960
+
1961
+ class ListExperimentRunEventsCommand extends Command
1962
+ .classBuilder()
1963
+ .ep(commonParams)
1964
+ .m(function (Command, cs, config, o) {
1965
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1966
+ })
1967
+ .s("AmazonAppConfig", "ListExperimentRunEvents", {})
1968
+ .n("AppConfigClient", "ListExperimentRunEventsCommand")
1969
+ .sc(ListExperimentRunEvents$)
1970
+ .build() {
1971
+ }
1972
+
1973
+ class ListExperimentRunsCommand extends Command
1974
+ .classBuilder()
1975
+ .ep(commonParams)
1976
+ .m(function (Command, cs, config, o) {
1977
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1978
+ })
1979
+ .s("AmazonAppConfig", "ListExperimentRuns", {})
1980
+ .n("AppConfigClient", "ListExperimentRunsCommand")
1981
+ .sc(ListExperimentRuns$)
1982
+ .build() {
1983
+ }
1984
+
462
1985
  class ListExtensionAssociationsCommand extends Command
463
1986
  .classBuilder()
464
1987
  .ep(commonParams)
@@ -519,6 +2042,18 @@ class StartDeploymentCommand extends Command
519
2042
  .build() {
520
2043
  }
521
2044
 
2045
+ class StartExperimentRunCommand extends Command
2046
+ .classBuilder()
2047
+ .ep(commonParams)
2048
+ .m(function (Command, cs, config, o) {
2049
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2050
+ })
2051
+ .s("AmazonAppConfig", "StartExperimentRun", {})
2052
+ .n("AppConfigClient", "StartExperimentRunCommand")
2053
+ .sc(StartExperimentRun$)
2054
+ .build() {
2055
+ }
2056
+
522
2057
  class StopDeploymentCommand extends Command
523
2058
  .classBuilder()
524
2059
  .ep(commonParams)
@@ -531,6 +2066,18 @@ class StopDeploymentCommand extends Command
531
2066
  .build() {
532
2067
  }
533
2068
 
2069
+ class StopExperimentRunCommand extends Command
2070
+ .classBuilder()
2071
+ .ep(commonParams)
2072
+ .m(function (Command, cs, config, o) {
2073
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2074
+ })
2075
+ .s("AmazonAppConfig", "StopExperimentRun", {})
2076
+ .n("AppConfigClient", "StopExperimentRunCommand")
2077
+ .sc(StopExperimentRun$)
2078
+ .build() {
2079
+ }
2080
+
534
2081
  class TagResourceCommand extends Command
535
2082
  .classBuilder()
536
2083
  .ep(commonParams)
@@ -615,6 +2162,30 @@ class UpdateEnvironmentCommand extends Command
615
2162
  .build() {
616
2163
  }
617
2164
 
2165
+ class UpdateExperimentDefinitionCommand extends Command
2166
+ .classBuilder()
2167
+ .ep(commonParams)
2168
+ .m(function (Command, cs, config, o) {
2169
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2170
+ })
2171
+ .s("AmazonAppConfig", "UpdateExperimentDefinition", {})
2172
+ .n("AppConfigClient", "UpdateExperimentDefinitionCommand")
2173
+ .sc(UpdateExperimentDefinition$)
2174
+ .build() {
2175
+ }
2176
+
2177
+ class UpdateExperimentRunCommand extends Command
2178
+ .classBuilder()
2179
+ .ep(commonParams)
2180
+ .m(function (Command, cs, config, o) {
2181
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2182
+ })
2183
+ .s("AmazonAppConfig", "UpdateExperimentRun", {})
2184
+ .n("AppConfigClient", "UpdateExperimentRunCommand")
2185
+ .sc(UpdateExperimentRun$)
2186
+ .build() {
2187
+ }
2188
+
618
2189
  class UpdateExtensionAssociationCommand extends Command
619
2190
  .classBuilder()
620
2191
  .ep(commonParams)
@@ -661,6 +2232,12 @@ const paginateListDeploymentStrategies = createPaginator(AppConfigClient, ListDe
661
2232
 
662
2233
  const paginateListEnvironments = createPaginator(AppConfigClient, ListEnvironmentsCommand, "NextToken", "NextToken", "MaxResults");
663
2234
 
2235
+ const paginateListExperimentDefinitions = createPaginator(AppConfigClient, ListExperimentDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
2236
+
2237
+ const paginateListExperimentRunEvents = createPaginator(AppConfigClient, ListExperimentRunEventsCommand, "NextToken", "NextToken", "MaxResults");
2238
+
2239
+ const paginateListExperimentRuns = createPaginator(AppConfigClient, ListExperimentRunsCommand, "NextToken", "NextToken", "MaxResults");
2240
+
664
2241
  const paginateListExtensionAssociations = createPaginator(AppConfigClient, ListExtensionAssociationsCommand, "NextToken", "NextToken", "MaxResults");
665
2242
 
666
2243
  const paginateListExtensions = createPaginator(AppConfigClient, ListExtensionsCommand, "NextToken", "NextToken", "MaxResults");
@@ -768,6 +2345,7 @@ const commands = {
768
2345
  CreateConfigurationProfileCommand,
769
2346
  CreateDeploymentStrategyCommand,
770
2347
  CreateEnvironmentCommand,
2348
+ CreateExperimentDefinitionCommand,
771
2349
  CreateExtensionCommand,
772
2350
  CreateExtensionAssociationCommand,
773
2351
  CreateHostedConfigurationVersionCommand,
@@ -775,6 +2353,7 @@ const commands = {
775
2353
  DeleteConfigurationProfileCommand,
776
2354
  DeleteDeploymentStrategyCommand,
777
2355
  DeleteEnvironmentCommand,
2356
+ DeleteExperimentDefinitionCommand,
778
2357
  DeleteExtensionCommand,
779
2358
  DeleteExtensionAssociationCommand,
780
2359
  DeleteHostedConfigurationVersionCommand,
@@ -785,6 +2364,8 @@ const commands = {
785
2364
  GetDeploymentCommand,
786
2365
  GetDeploymentStrategyCommand,
787
2366
  GetEnvironmentCommand,
2367
+ GetExperimentDefinitionCommand,
2368
+ GetExperimentRunCommand,
788
2369
  GetExtensionCommand,
789
2370
  GetExtensionAssociationCommand,
790
2371
  GetHostedConfigurationVersionCommand,
@@ -793,12 +2374,17 @@ const commands = {
793
2374
  ListDeploymentsCommand,
794
2375
  ListDeploymentStrategiesCommand,
795
2376
  ListEnvironmentsCommand,
2377
+ ListExperimentDefinitionsCommand,
2378
+ ListExperimentRunEventsCommand,
2379
+ ListExperimentRunsCommand,
796
2380
  ListExtensionAssociationsCommand,
797
2381
  ListExtensionsCommand,
798
2382
  ListHostedConfigurationVersionsCommand,
799
2383
  ListTagsForResourceCommand,
800
2384
  StartDeploymentCommand,
2385
+ StartExperimentRunCommand,
801
2386
  StopDeploymentCommand,
2387
+ StopExperimentRunCommand,
802
2388
  TagResourceCommand,
803
2389
  UntagResourceCommand,
804
2390
  UpdateAccountSettingsCommand,
@@ -806,6 +2392,8 @@ const commands = {
806
2392
  UpdateConfigurationProfileCommand,
807
2393
  UpdateDeploymentStrategyCommand,
808
2394
  UpdateEnvironmentCommand,
2395
+ UpdateExperimentDefinitionCommand,
2396
+ UpdateExperimentRunCommand,
809
2397
  UpdateExtensionCommand,
810
2398
  UpdateExtensionAssociationCommand,
811
2399
  ValidateConfigurationCommand,
@@ -816,6 +2404,9 @@ const paginators = {
816
2404
  paginateListDeployments,
817
2405
  paginateListDeploymentStrategies,
818
2406
  paginateListEnvironments,
2407
+ paginateListExperimentDefinitions,
2408
+ paginateListExperimentRunEvents,
2409
+ paginateListExperimentRuns,
819
2410
  paginateListExtensionAssociations,
820
2411
  paginateListExtensions,
821
2412
  paginateListHostedConfigurationVersions,
@@ -860,6 +2451,11 @@ const EnvironmentState = {
860
2451
  ROLLED_BACK: "ROLLED_BACK",
861
2452
  ROLLING_BACK: "ROLLING_BACK",
862
2453
  };
2454
+ const ExperimentDefinitionStatus = {
2455
+ ACTIVE: "ACTIVE",
2456
+ ARCHIVED: "ARCHIVED",
2457
+ IDLE: "IDLE",
2458
+ };
863
2459
  const BytesMeasure = {
864
2460
  KILOBYTES: "KILOBYTES",
865
2461
  };
@@ -868,6 +2464,10 @@ const DeletionProtectionCheck = {
868
2464
  APPLY: "APPLY",
869
2465
  BYPASS: "BYPASS",
870
2466
  };
2467
+ const DeleteType = {
2468
+ ARCHIVE: "ARCHIVE",
2469
+ DESTROY: "DESTROY",
2470
+ };
871
2471
  const DeploymentEventType = {
872
2472
  BAKE_TIME_STARTED: "BAKE_TIME_STARTED",
873
2473
  DEPLOYMENT_COMPLETED: "DEPLOYMENT_COMPLETED",
@@ -892,70 +2492,280 @@ const DeploymentState = {
892
2492
  ROLLING_BACK: "ROLLING_BACK",
893
2493
  VALIDATING: "VALIDATING",
894
2494
  };
2495
+ const ExperimentRunStatus = {
2496
+ DONE: "DONE",
2497
+ RUNNING: "RUNNING",
2498
+ };
2499
+ const DeploymentType = {
2500
+ MANAGED: "MANAGED",
2501
+ USER: "USER",
2502
+ };
2503
+ const ExperimentRunEventType = {
2504
+ EXPOSURE_UPDATED: "EXPOSURE_UPDATED",
2505
+ OVERRIDES_UPDATED: "OVERRIDES_UPDATED",
2506
+ RUN_STARTED: "RUN_STARTED",
2507
+ RUN_STOPPED: "RUN_STOPPED",
2508
+ };
895
2509
 
2510
+ exports.AccountSettings$ = AccountSettings$;
2511
+ exports.Action$ = Action$;
2512
+ exports.ActionInvocation$ = ActionInvocation$;
896
2513
  exports.ActionPoint = ActionPoint;
897
2514
  exports.AppConfig = AppConfig;
898
2515
  exports.AppConfigClient = AppConfigClient;
2516
+ exports.AppConfigServiceException = AppConfigServiceException;
2517
+ exports.AppConfigServiceException$ = AppConfigServiceException$;
2518
+ exports.Application$ = Application$;
2519
+ exports.Applications$ = Applications$;
2520
+ exports.AppliedExtension$ = AppliedExtension$;
2521
+ exports.AttributeValue$ = AttributeValue$;
2522
+ exports.BadRequestDetails$ = BadRequestDetails$;
2523
+ exports.BadRequestException = BadRequestException;
2524
+ exports.BadRequestException$ = BadRequestException$;
899
2525
  exports.BadRequestReason = BadRequestReason;
900
2526
  exports.BytesMeasure = BytesMeasure;
2527
+ exports.Configuration$ = Configuration$;
2528
+ exports.ConfigurationProfile$ = ConfigurationProfile$;
2529
+ exports.ConfigurationProfileSummary$ = ConfigurationProfileSummary$;
2530
+ exports.ConfigurationProfiles$ = ConfigurationProfiles$;
2531
+ exports.ConflictException = ConflictException;
2532
+ exports.ConflictException$ = ConflictException$;
2533
+ exports.CreateApplication$ = CreateApplication$;
901
2534
  exports.CreateApplicationCommand = CreateApplicationCommand;
2535
+ exports.CreateApplicationRequest$ = CreateApplicationRequest$;
2536
+ exports.CreateConfigurationProfile$ = CreateConfigurationProfile$;
902
2537
  exports.CreateConfigurationProfileCommand = CreateConfigurationProfileCommand;
2538
+ exports.CreateConfigurationProfileRequest$ = CreateConfigurationProfileRequest$;
2539
+ exports.CreateDeploymentStrategy$ = CreateDeploymentStrategy$;
903
2540
  exports.CreateDeploymentStrategyCommand = CreateDeploymentStrategyCommand;
2541
+ exports.CreateDeploymentStrategyRequest$ = CreateDeploymentStrategyRequest$;
2542
+ exports.CreateEnvironment$ = CreateEnvironment$;
904
2543
  exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
2544
+ exports.CreateEnvironmentRequest$ = CreateEnvironmentRequest$;
2545
+ exports.CreateExperimentDefinition$ = CreateExperimentDefinition$;
2546
+ exports.CreateExperimentDefinitionCommand = CreateExperimentDefinitionCommand;
2547
+ exports.CreateExperimentDefinitionRequest$ = CreateExperimentDefinitionRequest$;
2548
+ exports.CreateExtension$ = CreateExtension$;
2549
+ exports.CreateExtensionAssociation$ = CreateExtensionAssociation$;
905
2550
  exports.CreateExtensionAssociationCommand = CreateExtensionAssociationCommand;
2551
+ exports.CreateExtensionAssociationRequest$ = CreateExtensionAssociationRequest$;
906
2552
  exports.CreateExtensionCommand = CreateExtensionCommand;
2553
+ exports.CreateExtensionRequest$ = CreateExtensionRequest$;
2554
+ exports.CreateHostedConfigurationVersion$ = CreateHostedConfigurationVersion$;
907
2555
  exports.CreateHostedConfigurationVersionCommand = CreateHostedConfigurationVersionCommand;
2556
+ exports.CreateHostedConfigurationVersionRequest$ = CreateHostedConfigurationVersionRequest$;
2557
+ exports.DeleteApplication$ = DeleteApplication$;
908
2558
  exports.DeleteApplicationCommand = DeleteApplicationCommand;
2559
+ exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
2560
+ exports.DeleteConfigurationProfile$ = DeleteConfigurationProfile$;
909
2561
  exports.DeleteConfigurationProfileCommand = DeleteConfigurationProfileCommand;
2562
+ exports.DeleteConfigurationProfileRequest$ = DeleteConfigurationProfileRequest$;
2563
+ exports.DeleteDeploymentStrategy$ = DeleteDeploymentStrategy$;
910
2564
  exports.DeleteDeploymentStrategyCommand = DeleteDeploymentStrategyCommand;
2565
+ exports.DeleteDeploymentStrategyRequest$ = DeleteDeploymentStrategyRequest$;
2566
+ exports.DeleteEnvironment$ = DeleteEnvironment$;
911
2567
  exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
2568
+ exports.DeleteEnvironmentRequest$ = DeleteEnvironmentRequest$;
2569
+ exports.DeleteExperimentDefinition$ = DeleteExperimentDefinition$;
2570
+ exports.DeleteExperimentDefinitionCommand = DeleteExperimentDefinitionCommand;
2571
+ exports.DeleteExperimentDefinitionRequest$ = DeleteExperimentDefinitionRequest$;
2572
+ exports.DeleteExtension$ = DeleteExtension$;
2573
+ exports.DeleteExtensionAssociation$ = DeleteExtensionAssociation$;
912
2574
  exports.DeleteExtensionAssociationCommand = DeleteExtensionAssociationCommand;
2575
+ exports.DeleteExtensionAssociationRequest$ = DeleteExtensionAssociationRequest$;
913
2576
  exports.DeleteExtensionCommand = DeleteExtensionCommand;
2577
+ exports.DeleteExtensionRequest$ = DeleteExtensionRequest$;
2578
+ exports.DeleteHostedConfigurationVersion$ = DeleteHostedConfigurationVersion$;
914
2579
  exports.DeleteHostedConfigurationVersionCommand = DeleteHostedConfigurationVersionCommand;
2580
+ exports.DeleteHostedConfigurationVersionRequest$ = DeleteHostedConfigurationVersionRequest$;
2581
+ exports.DeleteType = DeleteType;
915
2582
  exports.DeletionProtectionCheck = DeletionProtectionCheck;
2583
+ exports.DeletionProtectionSettings$ = DeletionProtectionSettings$;
2584
+ exports.Deployment$ = Deployment$;
2585
+ exports.DeploymentEvent$ = DeploymentEvent$;
916
2586
  exports.DeploymentEventType = DeploymentEventType;
2587
+ exports.DeploymentParameters$ = DeploymentParameters$;
917
2588
  exports.DeploymentState = DeploymentState;
2589
+ exports.DeploymentStrategies$ = DeploymentStrategies$;
2590
+ exports.DeploymentStrategy$ = DeploymentStrategy$;
2591
+ exports.DeploymentSummary$ = DeploymentSummary$;
2592
+ exports.DeploymentType = DeploymentType;
2593
+ exports.Deployments$ = Deployments$;
2594
+ exports.Environment$ = Environment$;
918
2595
  exports.EnvironmentState = EnvironmentState;
2596
+ exports.Environments$ = Environments$;
2597
+ exports.ExperimentDefinition$ = ExperimentDefinition$;
2598
+ exports.ExperimentDefinitionSnapshot$ = ExperimentDefinitionSnapshot$;
2599
+ exports.ExperimentDefinitionStatus = ExperimentDefinitionStatus;
2600
+ exports.ExperimentDefinitionSummary$ = ExperimentDefinitionSummary$;
2601
+ exports.ExperimentDefinitions$ = ExperimentDefinitions$;
2602
+ exports.ExperimentRun$ = ExperimentRun$;
2603
+ exports.ExperimentRunEvent$ = ExperimentRunEvent$;
2604
+ exports.ExperimentRunEventType = ExperimentRunEventType;
2605
+ exports.ExperimentRunEvents$ = ExperimentRunEvents$;
2606
+ exports.ExperimentRunResult$ = ExperimentRunResult$;
2607
+ exports.ExperimentRunStatus = ExperimentRunStatus;
2608
+ exports.ExperimentRunSummary$ = ExperimentRunSummary$;
2609
+ exports.ExperimentRuns$ = ExperimentRuns$;
2610
+ exports.Extension$ = Extension$;
2611
+ exports.ExtensionAssociation$ = ExtensionAssociation$;
2612
+ exports.ExtensionAssociationSummary$ = ExtensionAssociationSummary$;
2613
+ exports.ExtensionAssociations$ = ExtensionAssociations$;
2614
+ exports.ExtensionSummary$ = ExtensionSummary$;
2615
+ exports.Extensions$ = Extensions$;
2616
+ exports.FlagValue$ = FlagValue$;
2617
+ exports.GetAccountSettings$ = GetAccountSettings$;
919
2618
  exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
2619
+ exports.GetApplication$ = GetApplication$;
920
2620
  exports.GetApplicationCommand = GetApplicationCommand;
2621
+ exports.GetApplicationRequest$ = GetApplicationRequest$;
2622
+ exports.GetConfiguration$ = GetConfiguration$;
921
2623
  exports.GetConfigurationCommand = GetConfigurationCommand;
2624
+ exports.GetConfigurationProfile$ = GetConfigurationProfile$;
922
2625
  exports.GetConfigurationProfileCommand = GetConfigurationProfileCommand;
2626
+ exports.GetConfigurationProfileRequest$ = GetConfigurationProfileRequest$;
2627
+ exports.GetConfigurationRequest$ = GetConfigurationRequest$;
2628
+ exports.GetDeployment$ = GetDeployment$;
923
2629
  exports.GetDeploymentCommand = GetDeploymentCommand;
2630
+ exports.GetDeploymentRequest$ = GetDeploymentRequest$;
2631
+ exports.GetDeploymentStrategy$ = GetDeploymentStrategy$;
924
2632
  exports.GetDeploymentStrategyCommand = GetDeploymentStrategyCommand;
2633
+ exports.GetDeploymentStrategyRequest$ = GetDeploymentStrategyRequest$;
2634
+ exports.GetEnvironment$ = GetEnvironment$;
925
2635
  exports.GetEnvironmentCommand = GetEnvironmentCommand;
2636
+ exports.GetEnvironmentRequest$ = GetEnvironmentRequest$;
2637
+ exports.GetExperimentDefinition$ = GetExperimentDefinition$;
2638
+ exports.GetExperimentDefinitionCommand = GetExperimentDefinitionCommand;
2639
+ exports.GetExperimentDefinitionRequest$ = GetExperimentDefinitionRequest$;
2640
+ exports.GetExperimentRun$ = GetExperimentRun$;
2641
+ exports.GetExperimentRunCommand = GetExperimentRunCommand;
2642
+ exports.GetExperimentRunRequest$ = GetExperimentRunRequest$;
2643
+ exports.GetExtension$ = GetExtension$;
2644
+ exports.GetExtensionAssociation$ = GetExtensionAssociation$;
926
2645
  exports.GetExtensionAssociationCommand = GetExtensionAssociationCommand;
2646
+ exports.GetExtensionAssociationRequest$ = GetExtensionAssociationRequest$;
927
2647
  exports.GetExtensionCommand = GetExtensionCommand;
2648
+ exports.GetExtensionRequest$ = GetExtensionRequest$;
2649
+ exports.GetHostedConfigurationVersion$ = GetHostedConfigurationVersion$;
928
2650
  exports.GetHostedConfigurationVersionCommand = GetHostedConfigurationVersionCommand;
2651
+ exports.GetHostedConfigurationVersionRequest$ = GetHostedConfigurationVersionRequest$;
929
2652
  exports.GrowthType = GrowthType;
2653
+ exports.HostedConfigurationVersion$ = HostedConfigurationVersion$;
2654
+ exports.HostedConfigurationVersionSummary$ = HostedConfigurationVersionSummary$;
2655
+ exports.HostedConfigurationVersions$ = HostedConfigurationVersions$;
2656
+ exports.InternalServerException = InternalServerException;
2657
+ exports.InternalServerException$ = InternalServerException$;
2658
+ exports.InvalidConfigurationDetail$ = InvalidConfigurationDetail$;
2659
+ exports.ListApplications$ = ListApplications$;
930
2660
  exports.ListApplicationsCommand = ListApplicationsCommand;
2661
+ exports.ListApplicationsRequest$ = ListApplicationsRequest$;
2662
+ exports.ListConfigurationProfiles$ = ListConfigurationProfiles$;
931
2663
  exports.ListConfigurationProfilesCommand = ListConfigurationProfilesCommand;
2664
+ exports.ListConfigurationProfilesRequest$ = ListConfigurationProfilesRequest$;
2665
+ exports.ListDeploymentStrategies$ = ListDeploymentStrategies$;
932
2666
  exports.ListDeploymentStrategiesCommand = ListDeploymentStrategiesCommand;
2667
+ exports.ListDeploymentStrategiesRequest$ = ListDeploymentStrategiesRequest$;
2668
+ exports.ListDeployments$ = ListDeployments$;
933
2669
  exports.ListDeploymentsCommand = ListDeploymentsCommand;
2670
+ exports.ListDeploymentsRequest$ = ListDeploymentsRequest$;
2671
+ exports.ListEnvironments$ = ListEnvironments$;
934
2672
  exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
2673
+ exports.ListEnvironmentsRequest$ = ListEnvironmentsRequest$;
2674
+ exports.ListExperimentDefinitions$ = ListExperimentDefinitions$;
2675
+ exports.ListExperimentDefinitionsCommand = ListExperimentDefinitionsCommand;
2676
+ exports.ListExperimentDefinitionsRequest$ = ListExperimentDefinitionsRequest$;
2677
+ exports.ListExperimentRunEvents$ = ListExperimentRunEvents$;
2678
+ exports.ListExperimentRunEventsCommand = ListExperimentRunEventsCommand;
2679
+ exports.ListExperimentRunEventsRequest$ = ListExperimentRunEventsRequest$;
2680
+ exports.ListExperimentRuns$ = ListExperimentRuns$;
2681
+ exports.ListExperimentRunsCommand = ListExperimentRunsCommand;
2682
+ exports.ListExperimentRunsRequest$ = ListExperimentRunsRequest$;
2683
+ exports.ListExtensionAssociations$ = ListExtensionAssociations$;
935
2684
  exports.ListExtensionAssociationsCommand = ListExtensionAssociationsCommand;
2685
+ exports.ListExtensionAssociationsRequest$ = ListExtensionAssociationsRequest$;
2686
+ exports.ListExtensions$ = ListExtensions$;
936
2687
  exports.ListExtensionsCommand = ListExtensionsCommand;
2688
+ exports.ListExtensionsRequest$ = ListExtensionsRequest$;
2689
+ exports.ListHostedConfigurationVersions$ = ListHostedConfigurationVersions$;
937
2690
  exports.ListHostedConfigurationVersionsCommand = ListHostedConfigurationVersionsCommand;
2691
+ exports.ListHostedConfigurationVersionsRequest$ = ListHostedConfigurationVersionsRequest$;
2692
+ exports.ListTagsForResource$ = ListTagsForResource$;
938
2693
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2694
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2695
+ exports.Monitor$ = Monitor$;
2696
+ exports.Parameter$ = Parameter$;
2697
+ exports.PayloadTooLargeException = PayloadTooLargeException;
2698
+ exports.PayloadTooLargeException$ = PayloadTooLargeException$;
939
2699
  exports.ReplicateTo = ReplicateTo;
2700
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2701
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2702
+ exports.ResourceTags$ = ResourceTags$;
2703
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2704
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2705
+ exports.StartDeployment$ = StartDeployment$;
940
2706
  exports.StartDeploymentCommand = StartDeploymentCommand;
2707
+ exports.StartDeploymentRequest$ = StartDeploymentRequest$;
2708
+ exports.StartExperimentRun$ = StartExperimentRun$;
2709
+ exports.StartExperimentRunCommand = StartExperimentRunCommand;
2710
+ exports.StartExperimentRunRequest$ = StartExperimentRunRequest$;
2711
+ exports.StopDeployment$ = StopDeployment$;
941
2712
  exports.StopDeploymentCommand = StopDeploymentCommand;
2713
+ exports.StopDeploymentRequest$ = StopDeploymentRequest$;
2714
+ exports.StopExperimentRun$ = StopExperimentRun$;
2715
+ exports.StopExperimentRunCommand = StopExperimentRunCommand;
2716
+ exports.StopExperimentRunRequest$ = StopExperimentRunRequest$;
2717
+ exports.TagResource$ = TagResource$;
942
2718
  exports.TagResourceCommand = TagResourceCommand;
2719
+ exports.TagResourceRequest$ = TagResourceRequest$;
2720
+ exports.Treatment$ = Treatment$;
2721
+ exports.TreatmentInput$ = TreatmentInput$;
2722
+ exports.TreatmentOverrides$ = TreatmentOverrides$;
943
2723
  exports.TriggeredBy = TriggeredBy;
2724
+ exports.UntagResource$ = UntagResource$;
944
2725
  exports.UntagResourceCommand = UntagResourceCommand;
2726
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2727
+ exports.UpdateAccountSettings$ = UpdateAccountSettings$;
945
2728
  exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
2729
+ exports.UpdateAccountSettingsRequest$ = UpdateAccountSettingsRequest$;
2730
+ exports.UpdateApplication$ = UpdateApplication$;
946
2731
  exports.UpdateApplicationCommand = UpdateApplicationCommand;
2732
+ exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
2733
+ exports.UpdateConfigurationProfile$ = UpdateConfigurationProfile$;
947
2734
  exports.UpdateConfigurationProfileCommand = UpdateConfigurationProfileCommand;
2735
+ exports.UpdateConfigurationProfileRequest$ = UpdateConfigurationProfileRequest$;
2736
+ exports.UpdateDeploymentStrategy$ = UpdateDeploymentStrategy$;
948
2737
  exports.UpdateDeploymentStrategyCommand = UpdateDeploymentStrategyCommand;
2738
+ exports.UpdateDeploymentStrategyRequest$ = UpdateDeploymentStrategyRequest$;
2739
+ exports.UpdateEnvironment$ = UpdateEnvironment$;
949
2740
  exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
2741
+ exports.UpdateEnvironmentRequest$ = UpdateEnvironmentRequest$;
2742
+ exports.UpdateExperimentDefinition$ = UpdateExperimentDefinition$;
2743
+ exports.UpdateExperimentDefinitionCommand = UpdateExperimentDefinitionCommand;
2744
+ exports.UpdateExperimentDefinitionRequest$ = UpdateExperimentDefinitionRequest$;
2745
+ exports.UpdateExperimentRun$ = UpdateExperimentRun$;
2746
+ exports.UpdateExperimentRunCommand = UpdateExperimentRunCommand;
2747
+ exports.UpdateExperimentRunRequest$ = UpdateExperimentRunRequest$;
2748
+ exports.UpdateExtension$ = UpdateExtension$;
2749
+ exports.UpdateExtensionAssociation$ = UpdateExtensionAssociation$;
950
2750
  exports.UpdateExtensionAssociationCommand = UpdateExtensionAssociationCommand;
2751
+ exports.UpdateExtensionAssociationRequest$ = UpdateExtensionAssociationRequest$;
951
2752
  exports.UpdateExtensionCommand = UpdateExtensionCommand;
2753
+ exports.UpdateExtensionRequest$ = UpdateExtensionRequest$;
2754
+ exports.ValidateConfiguration$ = ValidateConfiguration$;
952
2755
  exports.ValidateConfigurationCommand = ValidateConfigurationCommand;
2756
+ exports.ValidateConfigurationRequest$ = ValidateConfigurationRequest$;
2757
+ exports.Validator$ = Validator$;
953
2758
  exports.ValidatorType = ValidatorType;
2759
+ exports.VendedMetricsSettings$ = VendedMetricsSettings$;
2760
+ exports.errorTypeRegistries = errorTypeRegistries;
954
2761
  exports.paginateListApplications = paginateListApplications;
955
2762
  exports.paginateListConfigurationProfiles = paginateListConfigurationProfiles;
956
2763
  exports.paginateListDeploymentStrategies = paginateListDeploymentStrategies;
957
2764
  exports.paginateListDeployments = paginateListDeployments;
958
2765
  exports.paginateListEnvironments = paginateListEnvironments;
2766
+ exports.paginateListExperimentDefinitions = paginateListExperimentDefinitions;
2767
+ exports.paginateListExperimentRunEvents = paginateListExperimentRunEvents;
2768
+ exports.paginateListExperimentRuns = paginateListExperimentRuns;
959
2769
  exports.paginateListExtensionAssociations = paginateListExtensionAssociations;
960
2770
  exports.paginateListExtensions = paginateListExtensions;
961
2771
  exports.paginateListHostedConfigurationVersions = paginateListHostedConfigurationVersions;