@aws-sdk/client-appconfig 3.1075.0 → 3.1077.0

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