@aws-sdk/client-amp 3.1075.0 → 3.1077.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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, defaultAmpHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateAlertManagerDefinition$, CreateAnomalyDetector$, CreateLoggingConfiguration$, CreateQueryLoggingConfiguration$, CreateRuleGroupsNamespace$, CreateScraper$, CreateWorkspace$, DeleteAlertManagerDefinition$, DeleteAnomalyDetector$, DeleteLoggingConfiguration$, DeleteQueryLoggingConfiguration$, DeleteResourcePolicy$, DeleteRuleGroupsNamespace$, DeleteScraper$, DeleteScraperLoggingConfiguration$, DeleteWorkspace$, DescribeAlertManagerDefinition$, DescribeAnomalyDetector$, DescribeLoggingConfiguration$, DescribeQueryLoggingConfiguration$, DescribeResourcePolicy$, DescribeRuleGroupsNamespace$, DescribeScraper$, DescribeScraperLoggingConfiguration$, DescribeWorkspace$, DescribeWorkspaceConfiguration$, GetDefaultScraperConfiguration$, ListAnomalyDetectors$, ListRuleGroupsNamespaces$, ListScrapers$, ListTagsForResource$, ListWorkspaces$, PutAlertManagerDefinition$, PutAnomalyDetector$, PutResourcePolicy$, PutRuleGroupsNamespace$, TagResource$, UntagResource$, UpdateLoggingConfiguration$, UpdateQueryLoggingConfiguration$, UpdateScraper$, UpdateScraperLoggingConfiguration$, UpdateWorkspaceAlias$, UpdateWorkspaceConfiguration$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { AmpServiceException } = require("./models/AmpServiceException");
18
- exports.AmpServiceException = AmpServiceException;
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 defaultAmpHttpAuthSchemeParametersProvider = 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: "aps",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultAmpHttpAuthSchemeProvider = (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,1345 @@ 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 k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://aps-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://aps-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://aps.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://aps.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class AmpServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, AmpServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends AmpServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class ConflictException extends AmpServiceException {
153
+ name = "ConflictException";
154
+ $fault = "client";
155
+ resourceId;
156
+ resourceType;
157
+ constructor(opts) {
158
+ super({
159
+ name: "ConflictException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, ConflictException.prototype);
164
+ this.resourceId = opts.resourceId;
165
+ this.resourceType = opts.resourceType;
166
+ }
167
+ }
168
+ class InternalServerException extends AmpServiceException {
169
+ name = "InternalServerException";
170
+ $fault = "server";
171
+ $retryable = {};
172
+ retryAfterSeconds;
173
+ constructor(opts) {
174
+ super({
175
+ name: "InternalServerException",
176
+ $fault: "server",
177
+ ...opts,
178
+ });
179
+ Object.setPrototypeOf(this, InternalServerException.prototype);
180
+ this.retryAfterSeconds = opts.retryAfterSeconds;
181
+ }
182
+ }
183
+ class ResourceNotFoundException extends AmpServiceException {
184
+ name = "ResourceNotFoundException";
185
+ $fault = "client";
186
+ resourceId;
187
+ resourceType;
188
+ constructor(opts) {
189
+ super({
190
+ name: "ResourceNotFoundException",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
195
+ this.resourceId = opts.resourceId;
196
+ this.resourceType = opts.resourceType;
197
+ }
198
+ }
199
+ class ServiceQuotaExceededException extends AmpServiceException {
200
+ name = "ServiceQuotaExceededException";
201
+ $fault = "client";
202
+ resourceId;
203
+ resourceType;
204
+ serviceCode;
205
+ quotaCode;
206
+ constructor(opts) {
207
+ super({
208
+ name: "ServiceQuotaExceededException",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
213
+ this.resourceId = opts.resourceId;
214
+ this.resourceType = opts.resourceType;
215
+ this.serviceCode = opts.serviceCode;
216
+ this.quotaCode = opts.quotaCode;
217
+ }
218
+ }
219
+ class ThrottlingException extends AmpServiceException {
220
+ name = "ThrottlingException";
221
+ $fault = "client";
222
+ $retryable = {};
223
+ serviceCode;
224
+ quotaCode;
225
+ retryAfterSeconds;
226
+ constructor(opts) {
227
+ super({
228
+ name: "ThrottlingException",
229
+ $fault: "client",
230
+ ...opts,
231
+ });
232
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
233
+ this.serviceCode = opts.serviceCode;
234
+ this.quotaCode = opts.quotaCode;
235
+ this.retryAfterSeconds = opts.retryAfterSeconds;
236
+ }
237
+ }
238
+ class ValidationException extends AmpServiceException {
239
+ name = "ValidationException";
240
+ $fault = "client";
241
+ reason;
242
+ fieldList;
243
+ constructor(opts) {
244
+ super({
245
+ name: "ValidationException",
246
+ $fault: "client",
247
+ ...opts,
248
+ });
249
+ Object.setPrototypeOf(this, ValidationException.prototype);
250
+ this.reason = opts.reason;
251
+ this.fieldList = opts.fieldList;
252
+ }
253
+ }
254
+
255
+ const _AC = "AmpConfiguration";
256
+ const _ADC = "AnomalyDetectorConfiguration";
257
+ const _ADD = "AnomalyDetectorDescription";
258
+ const _ADE = "AccessDeniedException";
259
+ const _ADMDA = "AnomalyDetectorMissingDataAction";
260
+ const _ADS = "AnomalyDetectorStatus";
261
+ const _ADSL = "AnomalyDetectorSummaryList";
262
+ const _ADSn = "AnomalyDetectorSummary";
263
+ const _AMDD = "AlertManagerDefinitionDescription";
264
+ const _AMDS = "AlertManagerDefinitionStatus";
265
+ const _CAD = "CreateAnomalyDetector";
266
+ const _CADR = "CreateAnomalyDetectorRequest";
267
+ const _CADRr = "CreateAnomalyDetectorResponse";
268
+ const _CAMD = "CreateAlertManagerDefinition";
269
+ const _CAMDR = "CreateAlertManagerDefinitionRequest";
270
+ const _CAMDRr = "CreateAlertManagerDefinitionResponse";
271
+ const _CC = "ComponentConfig";
272
+ const _CE = "ConflictException";
273
+ const _CLC = "CreateLoggingConfiguration";
274
+ const _CLCR = "CreateLoggingConfigurationRequest";
275
+ const _CLCRr = "CreateLoggingConfigurationResponse";
276
+ const _CQLC = "CreateQueryLoggingConfiguration";
277
+ const _CQLCR = "CreateQueryLoggingConfigurationRequest";
278
+ const _CQLCRr = "CreateQueryLoggingConfigurationResponse";
279
+ const _CRGN = "CreateRuleGroupsNamespace";
280
+ const _CRGNR = "CreateRuleGroupsNamespaceRequest";
281
+ const _CRGNRr = "CreateRuleGroupsNamespaceResponse";
282
+ const _CS = "CreateScraper";
283
+ const _CSR = "CreateScraperRequest";
284
+ const _CSRr = "CreateScraperResponse";
285
+ const _CW = "CreateWorkspace";
286
+ const _CWLD = "CloudWatchLogDestination";
287
+ const _CWR = "CreateWorkspaceRequest";
288
+ const _CWRr = "CreateWorkspaceResponse";
289
+ const _D = "Destination";
290
+ const _DAD = "DeleteAnomalyDetector";
291
+ const _DADR = "DeleteAnomalyDetectorRequest";
292
+ const _DADRe = "DescribeAnomalyDetectorRequest";
293
+ const _DADRes = "DescribeAnomalyDetectorResponse";
294
+ const _DADe = "DescribeAnomalyDetector";
295
+ const _DAMD = "DeleteAlertManagerDefinition";
296
+ const _DAMDR = "DeleteAlertManagerDefinitionRequest";
297
+ const _DAMDRe = "DescribeAlertManagerDefinitionRequest";
298
+ const _DAMDRes = "DescribeAlertManagerDefinitionResponse";
299
+ const _DAMDe = "DescribeAlertManagerDefinition";
300
+ const _DLC = "DeleteLoggingConfiguration";
301
+ const _DLCR = "DeleteLoggingConfigurationRequest";
302
+ const _DLCRe = "DescribeLoggingConfigurationRequest";
303
+ const _DLCRes = "DescribeLoggingConfigurationResponse";
304
+ const _DLCe = "DescribeLoggingConfiguration";
305
+ const _DQLC = "DeleteQueryLoggingConfiguration";
306
+ const _DQLCR = "DeleteQueryLoggingConfigurationRequest";
307
+ const _DQLCRe = "DescribeQueryLoggingConfigurationRequest";
308
+ const _DQLCRes = "DescribeQueryLoggingConfigurationResponse";
309
+ const _DQLCe = "DescribeQueryLoggingConfiguration";
310
+ const _DRGN = "DeleteRuleGroupsNamespace";
311
+ const _DRGNR = "DeleteRuleGroupsNamespaceRequest";
312
+ const _DRGNRe = "DescribeRuleGroupsNamespaceRequest";
313
+ const _DRGNRes = "DescribeRuleGroupsNamespaceResponse";
314
+ const _DRGNe = "DescribeRuleGroupsNamespace";
315
+ const _DRP = "DeleteResourcePolicy";
316
+ const _DRPR = "DeleteResourcePolicyRequest";
317
+ const _DRPRe = "DescribeResourcePolicyRequest";
318
+ const _DRPRes = "DescribeResourcePolicyResponse";
319
+ const _DRPe = "DescribeResourcePolicy";
320
+ const _DS = "DeleteScraper";
321
+ const _DSLC = "DeleteScraperLoggingConfiguration";
322
+ const _DSLCR = "DeleteScraperLoggingConfigurationRequest";
323
+ const _DSLCRe = "DescribeScraperLoggingConfigurationRequest";
324
+ const _DSLCRes = "DescribeScraperLoggingConfigurationResponse";
325
+ const _DSLCe = "DescribeScraperLoggingConfiguration";
326
+ const _DSR = "DeleteScraperRequest";
327
+ const _DSRe = "DeleteScraperResponse";
328
+ const _DSRes = "DescribeScraperRequest";
329
+ const _DSResc = "DescribeScraperResponse";
330
+ const _DSe = "DescribeScraper";
331
+ const _DW = "DeleteWorkspace";
332
+ const _DWC = "DescribeWorkspaceConfiguration";
333
+ const _DWCR = "DescribeWorkspaceConfigurationRequest";
334
+ const _DWCRe = "DescribeWorkspaceConfigurationResponse";
335
+ const _DWR = "DeleteWorkspaceRequest";
336
+ const _DWRe = "DescribeWorkspaceRequest";
337
+ const _DWRes = "DescribeWorkspaceResponse";
338
+ const _DWe = "DescribeWorkspace";
339
+ const _EC = "EksConfiguration";
340
+ const _GDSC = "GetDefaultScraperConfiguration";
341
+ const _GDSCR = "GetDefaultScraperConfigurationRequest";
342
+ const _GDSCRe = "GetDefaultScraperConfigurationResponse";
343
+ const _INE = "IgnoreNearExpected";
344
+ const _ISE = "InternalServerException";
345
+ const _LAD = "ListAnomalyDetectors";
346
+ const _LADR = "ListAnomalyDetectorsRequest";
347
+ const _LADRi = "ListAnomalyDetectorsResponse";
348
+ const _LCM = "LoggingConfigurationMetadata";
349
+ const _LCS = "LoggingConfigurationStatus";
350
+ const _LD = "LoggingDestination";
351
+ const _LDo = "LoggingDestinations";
352
+ const _LF = "LoggingFilter";
353
+ const _LPLS = "LimitsPerLabelSet";
354
+ const _LPLSE = "LimitsPerLabelSetEntry";
355
+ const _LPLSL = "LimitsPerLabelSetList";
356
+ const _LRGN = "ListRuleGroupsNamespaces";
357
+ const _LRGNR = "ListRuleGroupsNamespacesRequest";
358
+ const _LRGNRi = "ListRuleGroupsNamespacesResponse";
359
+ const _LS = "ListScrapers";
360
+ const _LSR = "ListScrapersRequest";
361
+ const _LSRi = "ListScrapersResponse";
362
+ const _LTFR = "ListTagsForResource";
363
+ const _LTFRR = "ListTagsForResourceRequest";
364
+ const _LTFRRi = "ListTagsForResourceResponse";
365
+ const _LW = "ListWorkspaces";
366
+ const _LWR = "ListWorkspacesRequest";
367
+ const _LWRi = "ListWorkspacesResponse";
368
+ const _PAD = "PutAnomalyDetector";
369
+ const _PADR = "PutAnomalyDetectorRequest";
370
+ const _PADRu = "PutAnomalyDetectorResponse";
371
+ const _PAMD = "PutAlertManagerDefinition";
372
+ const _PAMDR = "PutAlertManagerDefinitionRequest";
373
+ const _PAMDRu = "PutAlertManagerDefinitionResponse";
374
+ const _PRGN = "PutRuleGroupsNamespace";
375
+ const _PRGNR = "PutRuleGroupsNamespaceRequest";
376
+ const _PRGNRu = "PutRuleGroupsNamespaceResponse";
377
+ const _PRP = "PutResourcePolicy";
378
+ const _PRPR = "PutResourcePolicyRequest";
379
+ const _PRPRu = "PutResourcePolicyResponse";
380
+ const _QLCM = "QueryLoggingConfigurationMetadata";
381
+ const _QLCS = "QueryLoggingConfigurationStatus";
382
+ const _RA = "Retry-After";
383
+ const _RC = "RoleConfiguration";
384
+ const _RCFC = "RandomCutForestConfiguration";
385
+ const _RGND = "RuleGroupsNamespaceDescription";
386
+ const _RGNS = "RuleGroupsNamespaceStatus";
387
+ const _RGNSL = "RuleGroupsNamespaceSummaryList";
388
+ const _RGNSu = "RuleGroupsNamespaceSummary";
389
+ const _RNFE = "ResourceNotFoundException";
390
+ const _S = "Source";
391
+ const _SC = "ScraperComponent";
392
+ const _SCc = "ScraperComponents";
393
+ const _SCcr = "ScrapeConfiguration";
394
+ const _SD = "ScraperDescription";
395
+ const _SF = "ScraperFilters";
396
+ const _SLCS = "ScraperLoggingConfigurationStatus";
397
+ const _SLD = "ScraperLoggingDestination";
398
+ const _SQEE = "ServiceQuotaExceededException";
399
+ const _SS = "ScraperStatus";
400
+ const _SSL = "ScraperSummaryList";
401
+ const _SSc = "ScraperSummary";
402
+ const _TE = "ThrottlingException";
403
+ const _TR = "TagResource";
404
+ const _TRR = "TagResourceRequest";
405
+ const _TRRa = "TagResourceResponse";
406
+ const _ULC = "UpdateLoggingConfiguration";
407
+ const _ULCR = "UpdateLoggingConfigurationRequest";
408
+ const _ULCRp = "UpdateLoggingConfigurationResponse";
409
+ const _UQLC = "UpdateQueryLoggingConfiguration";
410
+ const _UQLCR = "UpdateQueryLoggingConfigurationRequest";
411
+ const _UQLCRp = "UpdateQueryLoggingConfigurationResponse";
412
+ const _UR = "UntagResource";
413
+ const _URR = "UntagResourceRequest";
414
+ const _URRn = "UntagResourceResponse";
415
+ const _US = "UpdateScraper";
416
+ const _USLC = "UpdateScraperLoggingConfiguration";
417
+ const _USLCR = "UpdateScraperLoggingConfigurationRequest";
418
+ const _USLCRp = "UpdateScraperLoggingConfigurationResponse";
419
+ const _USR = "UpdateScraperRequest";
420
+ const _USRp = "UpdateScraperResponse";
421
+ const _UWA = "UpdateWorkspaceAlias";
422
+ const _UWAR = "UpdateWorkspaceAliasRequest";
423
+ const _UWC = "UpdateWorkspaceConfiguration";
424
+ const _UWCR = "UpdateWorkspaceConfigurationRequest";
425
+ const _UWCRp = "UpdateWorkspaceConfigurationResponse";
426
+ const _VC = "VpcConfiguration";
427
+ const _VE = "ValidationException";
428
+ const _VEF = "ValidationExceptionField";
429
+ const _VEFL = "ValidationExceptionFieldList";
430
+ const _WCD = "WorkspaceConfigurationDescription";
431
+ const _WCS = "WorkspaceConfigurationStatus";
432
+ const _WD = "WorkspaceDescription";
433
+ const _WS = "WorkspaceStatus";
434
+ const _WSL = "WorkspaceSummaryList";
435
+ const _WSo = "WorkspaceSummary";
436
+ const _a = "arn";
437
+ const _aC = "ampConfiguration";
438
+ const _aD = "anomalyDetector";
439
+ const _aDI = "anomalyDetectorId";
440
+ const _aDn = "anomalyDetectors";
441
+ const _aMD = "alertManagerDefinition";
442
+ const _al = "alias";
443
+ const _am = "amount";
444
+ const _c = "client";
445
+ const _cA = "createdAt";
446
+ const _cAl = "clusterArn";
447
+ const _cB = "configurationBlob";
448
+ const _cT = "clientToken";
449
+ const _cWL = "cloudWatchLogs";
450
+ const _co = "configuration";
451
+ const _con = "config";
452
+ const _d = "data";
453
+ const _de = "destinations";
454
+ const _des = "destination";
455
+ const _e = "error";
456
+ const _eC = "eksConfiguration";
457
+ const _eIIS = "evaluationIntervalInSeconds";
458
+ const _f = "filters";
459
+ const _fL = "fieldList";
460
+ const _h = "http";
461
+ const _hE = "httpError";
462
+ const _hH = "httpHeader";
463
+ const _hQ = "httpQuery";
464
+ const _iNEFA = "ignoreNearExpectedFromAbove";
465
+ const _iNEFB = "ignoreNearExpectedFromBelow";
466
+ const _iT = "idempotencyToken";
467
+ const _kKA = "kmsKeyArn";
468
+ const _l = "labels";
469
+ const _lC = "loggingConfiguration";
470
+ const _lD = "loggingDestination";
471
+ const _lGA = "logGroupArn";
472
+ const _lMA = "lastModifiedAt";
473
+ const _lPLS = "limitsPerLabelSet";
474
+ const _lS = "labelSet";
475
+ const _li = "limits";
476
+ const _m = "message";
477
+ const _mA = "modifiedAt";
478
+ const _mAA = "markAsAnomaly";
479
+ const _mDA = "missingDataAction";
480
+ const _mR = "maxResults";
481
+ const _mS = "maxSeries";
482
+ const _n = "name";
483
+ const _nT = "nextToken";
484
+ const _o = "options";
485
+ const _oOOTWIS = "outOfOrderTimeWindowInSeconds";
486
+ const _pD = "policyDocument";
487
+ const _pE = "prometheusEndpoint";
488
+ const _pS = "policyStatus";
489
+ const _q = "query";
490
+ const _qC = "quotaCode";
491
+ const _qLC = "queryLoggingConfiguration";
492
+ const _qT = "qspThreshold";
493
+ const _r = "reason";
494
+ const _rA = "resourceArn";
495
+ const _rAS = "retryAfterSeconds";
496
+ const _rAo = "roleArn";
497
+ const _rC = "roleConfiguration";
498
+ const _rCF = "randomCutForest";
499
+ const _rGN = "ruleGroupsNamespace";
500
+ const _rGNu = "ruleGroupsNamespaces";
501
+ const _rI = "resourceId";
502
+ const _rIe = "revisionId";
503
+ const _rPID = "retentionPeriodInDays";
504
+ const _rQOIS = "ruleQueryOffsetInSeconds";
505
+ const _rT = "resourceType";
506
+ const _ra = "ratio";
507
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.amp";
508
+ const _sC = "serviceCode";
509
+ const _sCc = "scrapeConfiguration";
510
+ const _sCcr = "scraperComponents";
511
+ const _sCt = "statusCode";
512
+ const _sGI = "securityGroupIds";
513
+ const _sI = "scraperId";
514
+ const _sIu = "subnetIds";
515
+ const _sR = "statusReason";
516
+ const _sRA = "sourceRoleArn";
517
+ const _sS = "shingleSize";
518
+ const _sSa = "sampleSize";
519
+ const _sc = "scraper";
520
+ const _scr = "scrapers";
521
+ const _se = "server";
522
+ const _sk = "skip";
523
+ const _so = "source";
524
+ const _st = "status";
525
+ const _t = "tags";
526
+ const _tK = "tagKeys";
527
+ const _tRA = "targetRoleArn";
528
+ const _ty = "type";
529
+ const _vC = "vpcConfiguration";
530
+ const _w = "workspace";
531
+ const _wA = "workspaceArn";
532
+ const _wC = "workspaceConfiguration";
533
+ const _wI = "workspaceId";
534
+ const _wo = "workspaces";
535
+ const n0 = "com.amazonaws.amp";
536
+ const _s_registry = TypeRegistry.for(_s);
537
+ var AmpServiceException$ = [-3, _s, "AmpServiceException", 0, [], []];
538
+ _s_registry.registerError(AmpServiceException$, AmpServiceException);
539
+ const n0_registry = TypeRegistry.for(n0);
540
+ var AccessDeniedException$ = [-3, n0, _ADE,
541
+ { [_e]: _c, [_hE]: 403 },
542
+ [_m],
543
+ [0], 1
544
+ ];
545
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
546
+ var ConflictException$ = [-3, n0, _CE,
547
+ { [_e]: _c, [_hE]: 409 },
548
+ [_m, _rI, _rT],
549
+ [0, 0, 0], 3
550
+ ];
551
+ n0_registry.registerError(ConflictException$, ConflictException);
552
+ var InternalServerException$ = [-3, n0, _ISE,
553
+ { [_e]: _se, [_hE]: 500 },
554
+ [_m, _rAS],
555
+ [0, [1, { [_hH]: _RA }]], 1
556
+ ];
557
+ n0_registry.registerError(InternalServerException$, InternalServerException);
558
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
559
+ { [_e]: _c, [_hE]: 404 },
560
+ [_m, _rI, _rT],
561
+ [0, 0, 0], 3
562
+ ];
563
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
564
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
565
+ { [_e]: _c, [_hE]: 402 },
566
+ [_m, _rI, _rT, _sC, _qC],
567
+ [0, 0, 0, 0, 0], 5
568
+ ];
569
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
570
+ var ThrottlingException$ = [-3, n0, _TE,
571
+ { [_e]: _c, [_hE]: 429 },
572
+ [_m, _sC, _qC, _rAS],
573
+ [0, 0, 0, [1, { [_hH]: _RA }]], 1
574
+ ];
575
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
576
+ var ValidationException$ = [-3, n0, _VE,
577
+ { [_e]: _c, [_hE]: 400 },
578
+ [_m, _r, _fL],
579
+ [0, 0, () => ValidationExceptionFieldList], 2
580
+ ];
581
+ n0_registry.registerError(ValidationException$, ValidationException);
582
+ const errorTypeRegistries = [
583
+ _s_registry,
584
+ n0_registry,
585
+ ];
586
+ var AlertManagerDefinitionDescription$ = [3, n0, _AMDD,
587
+ 0,
588
+ [_st, _d, _cA, _mA],
589
+ [() => AlertManagerDefinitionStatus$, 21, 4, 4], 4
590
+ ];
591
+ var AlertManagerDefinitionStatus$ = [3, n0, _AMDS,
592
+ 0,
593
+ [_sCt, _sR],
594
+ [0, 0], 1
595
+ ];
596
+ var AmpConfiguration$ = [3, n0, _AC,
597
+ 0,
598
+ [_wA],
599
+ [0], 1
600
+ ];
601
+ var AnomalyDetectorDescription$ = [3, n0, _ADD,
602
+ 0,
603
+ [_a, _aDI, _al, _st, _cA, _mA, _eIIS, _mDA, _co, _l, _t],
604
+ [0, 0, 0, () => AnomalyDetectorStatus$, 4, 4, 1, () => AnomalyDetectorMissingDataAction$, () => AnomalyDetectorConfiguration$, 128 | 0, 128 | 0], 6
605
+ ];
606
+ var AnomalyDetectorStatus$ = [3, n0, _ADS,
607
+ 0,
608
+ [_sCt, _sR],
609
+ [0, 0], 1
610
+ ];
611
+ var AnomalyDetectorSummary$ = [3, n0, _ADSn,
612
+ 0,
613
+ [_a, _aDI, _al, _st, _cA, _mA, _t],
614
+ [0, 0, 0, () => AnomalyDetectorStatus$, 4, 4, 128 | 0], 6
615
+ ];
616
+ var CloudWatchLogDestination$ = [3, n0, _CWLD,
617
+ 0,
618
+ [_lGA],
619
+ [0], 1
620
+ ];
621
+ var ComponentConfig$ = [3, n0, _CC,
622
+ 0,
623
+ [_o],
624
+ [128 | 0]
625
+ ];
626
+ var CreateAlertManagerDefinitionRequest$ = [3, n0, _CAMDR,
627
+ 0,
628
+ [_wI, _d, _cT],
629
+ [[0, 1], 21, [0, 4]], 2
630
+ ];
631
+ var CreateAlertManagerDefinitionResponse$ = [3, n0, _CAMDRr,
632
+ 0,
633
+ [_st],
634
+ [() => AlertManagerDefinitionStatus$], 1
635
+ ];
636
+ var CreateAnomalyDetectorRequest$ = [3, n0, _CADR,
637
+ 0,
638
+ [_wI, _al, _co, _eIIS, _mDA, _l, _cT, _t],
639
+ [[0, 1], 0, () => AnomalyDetectorConfiguration$, 1, () => AnomalyDetectorMissingDataAction$, 128 | 0, [0, 4], 128 | 0], 3
640
+ ];
641
+ var CreateAnomalyDetectorResponse$ = [3, n0, _CADRr,
642
+ 0,
643
+ [_aDI, _a, _st, _t],
644
+ [0, 0, () => AnomalyDetectorStatus$, 128 | 0], 3
645
+ ];
646
+ var CreateLoggingConfigurationRequest$ = [3, n0, _CLCR,
647
+ 0,
648
+ [_wI, _lGA, _cT],
649
+ [[0, 1], 0, [0, 4]], 2
650
+ ];
651
+ var CreateLoggingConfigurationResponse$ = [3, n0, _CLCRr,
652
+ 0,
653
+ [_st],
654
+ [() => LoggingConfigurationStatus$], 1
655
+ ];
656
+ var CreateQueryLoggingConfigurationRequest$ = [3, n0, _CQLCR,
657
+ 0,
658
+ [_wI, _de, _cT],
659
+ [[0, 1], () => LoggingDestinations, [0, 4]], 2
660
+ ];
661
+ var CreateQueryLoggingConfigurationResponse$ = [3, n0, _CQLCRr,
662
+ 0,
663
+ [_st],
664
+ [() => QueryLoggingConfigurationStatus$], 1
665
+ ];
666
+ var CreateRuleGroupsNamespaceRequest$ = [3, n0, _CRGNR,
667
+ 0,
668
+ [_wI, _n, _d, _cT, _t],
669
+ [[0, 1], 0, 21, [0, 4], 128 | 0], 3
670
+ ];
671
+ var CreateRuleGroupsNamespaceResponse$ = [3, n0, _CRGNRr,
672
+ 0,
673
+ [_n, _a, _st, _t],
674
+ [0, 0, () => RuleGroupsNamespaceStatus$, 128 | 0], 3
675
+ ];
676
+ var CreateScraperRequest$ = [3, n0, _CSR,
677
+ 0,
678
+ [_sCc, _so, _des, _al, _rC, _cT, _t],
679
+ [() => ScrapeConfiguration$, () => Source$, () => Destination$, 0, () => RoleConfiguration$, [0, 4], 128 | 0], 3
680
+ ];
681
+ var CreateScraperResponse$ = [3, n0, _CSRr,
682
+ 0,
683
+ [_sI, _a, _st, _t],
684
+ [0, 0, () => ScraperStatus$, 128 | 0], 3
685
+ ];
686
+ var CreateWorkspaceRequest$ = [3, n0, _CWR,
687
+ 0,
688
+ [_al, _cT, _t, _kKA],
689
+ [0, [0, 4], 128 | 0, 0]
690
+ ];
691
+ var CreateWorkspaceResponse$ = [3, n0, _CWRr,
692
+ 0,
693
+ [_wI, _a, _st, _t, _kKA],
694
+ [0, 0, () => WorkspaceStatus$, 128 | 0, 0], 3
695
+ ];
696
+ var DeleteAlertManagerDefinitionRequest$ = [3, n0, _DAMDR,
697
+ 0,
698
+ [_wI, _cT],
699
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
700
+ ];
701
+ var DeleteAnomalyDetectorRequest$ = [3, n0, _DADR,
702
+ 0,
703
+ [_wI, _aDI, _cT],
704
+ [[0, 1], [0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 2
705
+ ];
706
+ var DeleteLoggingConfigurationRequest$ = [3, n0, _DLCR,
707
+ 0,
708
+ [_wI, _cT],
709
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
710
+ ];
711
+ var DeleteQueryLoggingConfigurationRequest$ = [3, n0, _DQLCR,
712
+ 0,
713
+ [_wI, _cT],
714
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
715
+ ];
716
+ var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
717
+ 0,
718
+ [_wI, _cT, _rIe],
719
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }], [0, { [_hQ]: _rIe }]], 1
720
+ ];
721
+ var DeleteRuleGroupsNamespaceRequest$ = [3, n0, _DRGNR,
722
+ 0,
723
+ [_wI, _n, _cT],
724
+ [[0, 1], [0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 2
725
+ ];
726
+ var DeleteScraperLoggingConfigurationRequest$ = [3, n0, _DSLCR,
727
+ 0,
728
+ [_sI, _cT],
729
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
730
+ ];
731
+ var DeleteScraperRequest$ = [3, n0, _DSR,
732
+ 0,
733
+ [_sI, _cT],
734
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
735
+ ];
736
+ var DeleteScraperResponse$ = [3, n0, _DSRe,
737
+ 0,
738
+ [_sI, _st],
739
+ [0, () => ScraperStatus$], 2
740
+ ];
741
+ var DeleteWorkspaceRequest$ = [3, n0, _DWR,
742
+ 0,
743
+ [_wI, _cT],
744
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
745
+ ];
746
+ var DescribeAlertManagerDefinitionRequest$ = [3, n0, _DAMDRe,
747
+ 0,
748
+ [_wI],
749
+ [[0, 1]], 1
750
+ ];
751
+ var DescribeAlertManagerDefinitionResponse$ = [3, n0, _DAMDRes,
752
+ 0,
753
+ [_aMD],
754
+ [() => AlertManagerDefinitionDescription$], 1
755
+ ];
756
+ var DescribeAnomalyDetectorRequest$ = [3, n0, _DADRe,
757
+ 0,
758
+ [_wI, _aDI],
759
+ [[0, 1], [0, 1]], 2
760
+ ];
761
+ var DescribeAnomalyDetectorResponse$ = [3, n0, _DADRes,
762
+ 0,
763
+ [_aD],
764
+ [() => AnomalyDetectorDescription$], 1
765
+ ];
766
+ var DescribeLoggingConfigurationRequest$ = [3, n0, _DLCRe,
767
+ 0,
768
+ [_wI],
769
+ [[0, 1]], 1
770
+ ];
771
+ var DescribeLoggingConfigurationResponse$ = [3, n0, _DLCRes,
772
+ 0,
773
+ [_lC],
774
+ [() => LoggingConfigurationMetadata$], 1
775
+ ];
776
+ var DescribeQueryLoggingConfigurationRequest$ = [3, n0, _DQLCRe,
777
+ 0,
778
+ [_wI],
779
+ [[0, 1]], 1
780
+ ];
781
+ var DescribeQueryLoggingConfigurationResponse$ = [3, n0, _DQLCRes,
782
+ 0,
783
+ [_qLC],
784
+ [() => QueryLoggingConfigurationMetadata$], 1
785
+ ];
786
+ var DescribeResourcePolicyRequest$ = [3, n0, _DRPRe,
787
+ 0,
788
+ [_wI],
789
+ [[0, 1]], 1
790
+ ];
791
+ var DescribeResourcePolicyResponse$ = [3, n0, _DRPRes,
792
+ 0,
793
+ [_pD, _pS, _rIe],
794
+ [0, 0, 0], 3
795
+ ];
796
+ var DescribeRuleGroupsNamespaceRequest$ = [3, n0, _DRGNRe,
797
+ 0,
798
+ [_wI, _n],
799
+ [[0, 1], [0, 1]], 2
800
+ ];
801
+ var DescribeRuleGroupsNamespaceResponse$ = [3, n0, _DRGNRes,
802
+ 0,
803
+ [_rGN],
804
+ [() => RuleGroupsNamespaceDescription$], 1
805
+ ];
806
+ var DescribeScraperLoggingConfigurationRequest$ = [3, n0, _DSLCRe,
807
+ 0,
808
+ [_sI],
809
+ [[0, 1]], 1
810
+ ];
811
+ var DescribeScraperLoggingConfigurationResponse$ = [3, n0, _DSLCRes,
812
+ 0,
813
+ [_st, _sI, _lD, _sCcr, _mA],
814
+ [() => ScraperLoggingConfigurationStatus$, 0, () => ScraperLoggingDestination$, () => ScraperComponents, 4], 5
815
+ ];
816
+ var DescribeScraperRequest$ = [3, n0, _DSRes,
817
+ 0,
818
+ [_sI],
819
+ [[0, 1]], 1
820
+ ];
821
+ var DescribeScraperResponse$ = [3, n0, _DSResc,
822
+ 0,
823
+ [_sc],
824
+ [() => ScraperDescription$], 1
825
+ ];
826
+ var DescribeWorkspaceConfigurationRequest$ = [3, n0, _DWCR,
827
+ 0,
828
+ [_wI],
829
+ [[0, 1]], 1
830
+ ];
831
+ var DescribeWorkspaceConfigurationResponse$ = [3, n0, _DWCRe,
832
+ 0,
833
+ [_wC],
834
+ [() => WorkspaceConfigurationDescription$], 1
835
+ ];
836
+ var DescribeWorkspaceRequest$ = [3, n0, _DWRe,
837
+ 0,
838
+ [_wI],
839
+ [[0, 1]], 1
840
+ ];
841
+ var DescribeWorkspaceResponse$ = [3, n0, _DWRes,
842
+ 0,
843
+ [_w],
844
+ [() => WorkspaceDescription$], 1
845
+ ];
846
+ var EksConfiguration$ = [3, n0, _EC,
847
+ 0,
848
+ [_cAl, _sIu, _sGI],
849
+ [0, 64 | 0, 64 | 0], 2
850
+ ];
851
+ var GetDefaultScraperConfigurationRequest$ = [3, n0, _GDSCR,
852
+ 0,
853
+ [],
854
+ []
855
+ ];
856
+ var GetDefaultScraperConfigurationResponse$ = [3, n0, _GDSCRe,
857
+ 0,
858
+ [_co],
859
+ [21], 1
860
+ ];
861
+ var LimitsPerLabelSet$ = [3, n0, _LPLS,
862
+ 0,
863
+ [_li, _lS],
864
+ [() => LimitsPerLabelSetEntry$, 128 | 0], 2
865
+ ];
866
+ var LimitsPerLabelSetEntry$ = [3, n0, _LPLSE,
867
+ 0,
868
+ [_mS],
869
+ [1]
870
+ ];
871
+ var ListAnomalyDetectorsRequest$ = [3, n0, _LADR,
872
+ 0,
873
+ [_wI, _al, _mR, _nT],
874
+ [[0, 1], [0, { [_hQ]: _al }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
875
+ ];
876
+ var ListAnomalyDetectorsResponse$ = [3, n0, _LADRi,
877
+ 0,
878
+ [_aDn, _nT],
879
+ [() => AnomalyDetectorSummaryList, 0], 1
880
+ ];
881
+ var ListRuleGroupsNamespacesRequest$ = [3, n0, _LRGNR,
882
+ 0,
883
+ [_wI, _n, _nT, _mR],
884
+ [[0, 1], [0, { [_hQ]: _n }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
885
+ ];
886
+ var ListRuleGroupsNamespacesResponse$ = [3, n0, _LRGNRi,
887
+ 0,
888
+ [_rGNu, _nT],
889
+ [() => RuleGroupsNamespaceSummaryList, 0], 1
890
+ ];
891
+ var ListScrapersRequest$ = [3, n0, _LSR,
892
+ 0,
893
+ [_f, _nT, _mR],
894
+ [[[2, n0, _SF, 0, 0, 64 | 0], 64], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
895
+ ];
896
+ var ListScrapersResponse$ = [3, n0, _LSRi,
897
+ 0,
898
+ [_scr, _nT],
899
+ [() => ScraperSummaryList, 0], 1
900
+ ];
901
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
902
+ 0,
903
+ [_rA],
904
+ [[0, 1]], 1
905
+ ];
906
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
907
+ 0,
908
+ [_t],
909
+ [128 | 0]
910
+ ];
911
+ var ListWorkspacesRequest$ = [3, n0, _LWR,
912
+ 0,
913
+ [_nT, _al, _mR],
914
+ [[0, { [_hQ]: _nT }], [0, { [_hQ]: _al }], [1, { [_hQ]: _mR }]]
915
+ ];
916
+ var ListWorkspacesResponse$ = [3, n0, _LWRi,
917
+ 0,
918
+ [_wo, _nT],
919
+ [() => WorkspaceSummaryList, 0], 1
920
+ ];
921
+ var LoggingConfigurationMetadata$ = [3, n0, _LCM,
922
+ 0,
923
+ [_st, _w, _lGA, _cA, _mA],
924
+ [() => LoggingConfigurationStatus$, 0, 0, 4, 4], 5
925
+ ];
926
+ var LoggingConfigurationStatus$ = [3, n0, _LCS,
927
+ 0,
928
+ [_sCt, _sR],
929
+ [0, 0], 1
930
+ ];
931
+ var LoggingDestination$ = [3, n0, _LD,
932
+ 0,
933
+ [_cWL, _f],
934
+ [() => CloudWatchLogDestination$, () => LoggingFilter$], 2
935
+ ];
936
+ var LoggingFilter$ = [3, n0, _LF,
937
+ 0,
938
+ [_qT],
939
+ [1], 1
940
+ ];
941
+ var PutAlertManagerDefinitionRequest$ = [3, n0, _PAMDR,
942
+ 0,
943
+ [_wI, _d, _cT],
944
+ [[0, 1], 21, [0, 4]], 2
945
+ ];
946
+ var PutAlertManagerDefinitionResponse$ = [3, n0, _PAMDRu,
947
+ 0,
948
+ [_st],
949
+ [() => AlertManagerDefinitionStatus$], 1
950
+ ];
951
+ var PutAnomalyDetectorRequest$ = [3, n0, _PADR,
952
+ 0,
953
+ [_wI, _aDI, _co, _eIIS, _mDA, _l, _cT],
954
+ [[0, 1], [0, 1], () => AnomalyDetectorConfiguration$, 1, () => AnomalyDetectorMissingDataAction$, 128 | 0, [0, 4]], 3
955
+ ];
956
+ var PutAnomalyDetectorResponse$ = [3, n0, _PADRu,
957
+ 0,
958
+ [_aDI, _a, _st, _t],
959
+ [0, 0, () => AnomalyDetectorStatus$, 128 | 0], 3
960
+ ];
961
+ var PutResourcePolicyRequest$ = [3, n0, _PRPR,
962
+ 0,
963
+ [_wI, _pD, _cT, _rIe],
964
+ [[0, 1], 0, [0, 4], 0], 2
965
+ ];
966
+ var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
967
+ 0,
968
+ [_pS, _rIe],
969
+ [0, 0], 2
970
+ ];
971
+ var PutRuleGroupsNamespaceRequest$ = [3, n0, _PRGNR,
972
+ 0,
973
+ [_wI, _n, _d, _cT],
974
+ [[0, 1], [0, 1], 21, [0, 4]], 3
975
+ ];
976
+ var PutRuleGroupsNamespaceResponse$ = [3, n0, _PRGNRu,
977
+ 0,
978
+ [_n, _a, _st, _t],
979
+ [0, 0, () => RuleGroupsNamespaceStatus$, 128 | 0], 3
980
+ ];
981
+ var QueryLoggingConfigurationMetadata$ = [3, n0, _QLCM,
982
+ 0,
983
+ [_st, _w, _de, _cA, _mA],
984
+ [() => QueryLoggingConfigurationStatus$, 0, () => LoggingDestinations, 4, 4], 5
985
+ ];
986
+ var QueryLoggingConfigurationStatus$ = [3, n0, _QLCS,
987
+ 0,
988
+ [_sCt, _sR],
989
+ [0, 0], 1
990
+ ];
991
+ var RandomCutForestConfiguration$ = [3, n0, _RCFC,
992
+ 0,
993
+ [_q, _sS, _sSa, _iNEFA, _iNEFB],
994
+ [0, 1, 1, () => IgnoreNearExpected$, () => IgnoreNearExpected$], 1
995
+ ];
996
+ var RoleConfiguration$ = [3, n0, _RC,
997
+ 0,
998
+ [_sRA, _tRA],
999
+ [0, 0]
1000
+ ];
1001
+ var RuleGroupsNamespaceDescription$ = [3, n0, _RGND,
1002
+ 0,
1003
+ [_a, _n, _st, _d, _cA, _mA, _t],
1004
+ [0, 0, () => RuleGroupsNamespaceStatus$, 21, 4, 4, 128 | 0], 6
1005
+ ];
1006
+ var RuleGroupsNamespaceStatus$ = [3, n0, _RGNS,
1007
+ 0,
1008
+ [_sCt, _sR],
1009
+ [0, 0], 1
1010
+ ];
1011
+ var RuleGroupsNamespaceSummary$ = [3, n0, _RGNSu,
1012
+ 0,
1013
+ [_a, _n, _st, _cA, _mA, _t],
1014
+ [0, 0, () => RuleGroupsNamespaceStatus$, 4, 4, 128 | 0], 5
1015
+ ];
1016
+ var ScraperComponent$ = [3, n0, _SC,
1017
+ 0,
1018
+ [_ty, _con],
1019
+ [0, () => ComponentConfig$], 1
1020
+ ];
1021
+ var ScraperDescription$ = [3, n0, _SD,
1022
+ 0,
1023
+ [_sI, _a, _rAo, _st, _cA, _lMA, _sCc, _so, _des, _al, _t, _sR, _rC],
1024
+ [0, 0, 0, () => ScraperStatus$, 4, 4, () => ScrapeConfiguration$, () => Source$, () => Destination$, 0, 128 | 0, 0, () => RoleConfiguration$], 9
1025
+ ];
1026
+ var ScraperLoggingConfigurationStatus$ = [3, n0, _SLCS,
1027
+ 0,
1028
+ [_sCt, _sR],
1029
+ [0, 0], 1
1030
+ ];
1031
+ var ScraperStatus$ = [3, n0, _SS,
1032
+ 0,
1033
+ [_sCt],
1034
+ [0], 1
1035
+ ];
1036
+ var ScraperSummary$ = [3, n0, _SSc,
1037
+ 0,
1038
+ [_sI, _a, _rAo, _st, _cA, _lMA, _so, _des, _al, _t, _sR, _rC],
1039
+ [0, 0, 0, () => ScraperStatus$, 4, 4, () => Source$, () => Destination$, 0, 128 | 0, 0, () => RoleConfiguration$], 8
1040
+ ];
1041
+ var TagResourceRequest$ = [3, n0, _TRR,
1042
+ 0,
1043
+ [_rA, _t],
1044
+ [[0, 1], 128 | 0], 2
1045
+ ];
1046
+ var TagResourceResponse$ = [3, n0, _TRRa,
1047
+ 0,
1048
+ [],
1049
+ []
1050
+ ];
1051
+ var UntagResourceRequest$ = [3, n0, _URR,
1052
+ 0,
1053
+ [_rA, _tK],
1054
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1055
+ ];
1056
+ var UntagResourceResponse$ = [3, n0, _URRn,
1057
+ 0,
1058
+ [],
1059
+ []
1060
+ ];
1061
+ var UpdateLoggingConfigurationRequest$ = [3, n0, _ULCR,
1062
+ 0,
1063
+ [_wI, _lGA, _cT],
1064
+ [[0, 1], 0, [0, 4]], 2
1065
+ ];
1066
+ var UpdateLoggingConfigurationResponse$ = [3, n0, _ULCRp,
1067
+ 0,
1068
+ [_st],
1069
+ [() => LoggingConfigurationStatus$], 1
1070
+ ];
1071
+ var UpdateQueryLoggingConfigurationRequest$ = [3, n0, _UQLCR,
1072
+ 0,
1073
+ [_wI, _de, _cT],
1074
+ [[0, 1], () => LoggingDestinations, [0, 4]], 2
1075
+ ];
1076
+ var UpdateQueryLoggingConfigurationResponse$ = [3, n0, _UQLCRp,
1077
+ 0,
1078
+ [_st],
1079
+ [() => QueryLoggingConfigurationStatus$], 1
1080
+ ];
1081
+ var UpdateScraperLoggingConfigurationRequest$ = [3, n0, _USLCR,
1082
+ 0,
1083
+ [_sI, _lD, _sCcr],
1084
+ [[0, 1], () => ScraperLoggingDestination$, () => ScraperComponents], 2
1085
+ ];
1086
+ var UpdateScraperLoggingConfigurationResponse$ = [3, n0, _USLCRp,
1087
+ 0,
1088
+ [_st],
1089
+ [() => ScraperLoggingConfigurationStatus$], 1
1090
+ ];
1091
+ var UpdateScraperRequest$ = [3, n0, _USR,
1092
+ 0,
1093
+ [_sI, _al, _sCc, _des, _rC, _cT],
1094
+ [[0, 1], 0, () => ScrapeConfiguration$, () => Destination$, () => RoleConfiguration$, [0, 4]], 1
1095
+ ];
1096
+ var UpdateScraperResponse$ = [3, n0, _USRp,
1097
+ 0,
1098
+ [_sI, _a, _st, _t],
1099
+ [0, 0, () => ScraperStatus$, 128 | 0], 3
1100
+ ];
1101
+ var UpdateWorkspaceAliasRequest$ = [3, n0, _UWAR,
1102
+ 0,
1103
+ [_wI, _al, _cT],
1104
+ [[0, 1], 0, [0, 4]], 1
1105
+ ];
1106
+ var UpdateWorkspaceConfigurationRequest$ = [3, n0, _UWCR,
1107
+ 0,
1108
+ [_wI, _cT, _lPLS, _rPID, _oOOTWIS, _rQOIS],
1109
+ [[0, 1], [0, 4], () => LimitsPerLabelSetList, 1, 1, 1], 1
1110
+ ];
1111
+ var UpdateWorkspaceConfigurationResponse$ = [3, n0, _UWCRp,
1112
+ 0,
1113
+ [_st],
1114
+ [() => WorkspaceConfigurationStatus$], 1
1115
+ ];
1116
+ var ValidationExceptionField$ = [3, n0, _VEF,
1117
+ 0,
1118
+ [_n, _m],
1119
+ [0, 0], 2
1120
+ ];
1121
+ var VpcConfiguration$ = [3, n0, _VC,
1122
+ 0,
1123
+ [_sGI, _sIu],
1124
+ [64 | 0, 64 | 0], 2
1125
+ ];
1126
+ var WorkspaceConfigurationDescription$ = [3, n0, _WCD,
1127
+ 0,
1128
+ [_st, _lPLS, _rPID, _oOOTWIS, _rQOIS],
1129
+ [() => WorkspaceConfigurationStatus$, () => LimitsPerLabelSetList, 1, 1, 1], 1
1130
+ ];
1131
+ var WorkspaceConfigurationStatus$ = [3, n0, _WCS,
1132
+ 0,
1133
+ [_sCt, _sR],
1134
+ [0, 0], 1
1135
+ ];
1136
+ var WorkspaceDescription$ = [3, n0, _WD,
1137
+ 0,
1138
+ [_wI, _a, _st, _cA, _al, _pE, _t, _kKA],
1139
+ [0, 0, () => WorkspaceStatus$, 4, 0, 0, 128 | 0, 0], 4
1140
+ ];
1141
+ var WorkspaceStatus$ = [3, n0, _WS,
1142
+ 0,
1143
+ [_sCt],
1144
+ [0], 1
1145
+ ];
1146
+ var WorkspaceSummary$ = [3, n0, _WSo,
1147
+ 0,
1148
+ [_wI, _a, _st, _cA, _al, _t, _kKA],
1149
+ [0, 0, () => WorkspaceStatus$, 4, 0, 128 | 0, 0], 4
1150
+ ];
1151
+ var __Unit = "unit";
1152
+ var AnomalyDetectorSummaryList = [1, n0, _ADSL,
1153
+ 0, () => AnomalyDetectorSummary$
1154
+ ];
1155
+ var LimitsPerLabelSetList = [1, n0, _LPLSL,
1156
+ 0, () => LimitsPerLabelSet$
1157
+ ];
1158
+ var LoggingDestinations = [1, n0, _LDo,
1159
+ 0, () => LoggingDestination$
1160
+ ];
1161
+ var RuleGroupsNamespaceSummaryList = [1, n0, _RGNSL,
1162
+ 0, () => RuleGroupsNamespaceSummary$
1163
+ ];
1164
+ var ScraperComponents = [1, n0, _SCc,
1165
+ 0, () => ScraperComponent$
1166
+ ];
1167
+ var ScraperSummaryList = [1, n0, _SSL,
1168
+ 0, () => ScraperSummary$
1169
+ ];
1170
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
1171
+ 0, () => ValidationExceptionField$
1172
+ ];
1173
+ var WorkspaceSummaryList = [1, n0, _WSL,
1174
+ 0, () => WorkspaceSummary$
1175
+ ];
1176
+ var AnomalyDetectorConfiguration$ = [4, n0, _ADC,
1177
+ 0,
1178
+ [_rCF],
1179
+ [() => RandomCutForestConfiguration$]
1180
+ ];
1181
+ var AnomalyDetectorMissingDataAction$ = [4, n0, _ADMDA,
1182
+ 0,
1183
+ [_mAA, _sk],
1184
+ [2, 2]
1185
+ ];
1186
+ var Destination$ = [4, n0, _D,
1187
+ 0,
1188
+ [_aC],
1189
+ [() => AmpConfiguration$]
1190
+ ];
1191
+ var IgnoreNearExpected$ = [4, n0, _INE,
1192
+ 0,
1193
+ [_am, _ra],
1194
+ [1, 1]
1195
+ ];
1196
+ var ScrapeConfiguration$ = [4, n0, _SCcr,
1197
+ 0,
1198
+ [_cB],
1199
+ [21]
1200
+ ];
1201
+ var ScraperLoggingDestination$ = [4, n0, _SLD,
1202
+ 0,
1203
+ [_cWL],
1204
+ [() => CloudWatchLogDestination$]
1205
+ ];
1206
+ var Source$ = [4, n0, _S,
1207
+ 0,
1208
+ [_eC, _vC],
1209
+ [() => EksConfiguration$, () => VpcConfiguration$]
1210
+ ];
1211
+ var CreateAlertManagerDefinition$ = [9, n0, _CAMD,
1212
+ { [_h]: ["POST", "/workspaces/{workspaceId}/alertmanager/definition", 202] }, () => CreateAlertManagerDefinitionRequest$, () => CreateAlertManagerDefinitionResponse$
1213
+ ];
1214
+ var CreateAnomalyDetector$ = [9, n0, _CAD,
1215
+ { [_h]: ["POST", "/workspaces/{workspaceId}/anomalydetectors", 202] }, () => CreateAnomalyDetectorRequest$, () => CreateAnomalyDetectorResponse$
1216
+ ];
1217
+ var CreateLoggingConfiguration$ = [9, n0, _CLC,
1218
+ { [_h]: ["POST", "/workspaces/{workspaceId}/logging", 202] }, () => CreateLoggingConfigurationRequest$, () => CreateLoggingConfigurationResponse$
1219
+ ];
1220
+ var CreateQueryLoggingConfiguration$ = [9, n0, _CQLC,
1221
+ { [_h]: ["POST", "/workspaces/{workspaceId}/logging/query", 202] }, () => CreateQueryLoggingConfigurationRequest$, () => CreateQueryLoggingConfigurationResponse$
1222
+ ];
1223
+ var CreateRuleGroupsNamespace$ = [9, n0, _CRGN,
1224
+ { [_h]: ["POST", "/workspaces/{workspaceId}/rulegroupsnamespaces", 202] }, () => CreateRuleGroupsNamespaceRequest$, () => CreateRuleGroupsNamespaceResponse$
1225
+ ];
1226
+ var CreateScraper$ = [9, n0, _CS,
1227
+ { [_h]: ["POST", "/scrapers", 202] }, () => CreateScraperRequest$, () => CreateScraperResponse$
1228
+ ];
1229
+ var CreateWorkspace$ = [9, n0, _CW,
1230
+ { [_h]: ["POST", "/workspaces", 202] }, () => CreateWorkspaceRequest$, () => CreateWorkspaceResponse$
1231
+ ];
1232
+ var DeleteAlertManagerDefinition$ = [9, n0, _DAMD,
1233
+ { [_h]: ["DELETE", "/workspaces/{workspaceId}/alertmanager/definition", 202] }, () => DeleteAlertManagerDefinitionRequest$, () => __Unit
1234
+ ];
1235
+ var DeleteAnomalyDetector$ = [9, n0, _DAD,
1236
+ { [_h]: ["DELETE", "/workspaces/{workspaceId}/anomalydetectors/{anomalyDetectorId}", 202] }, () => DeleteAnomalyDetectorRequest$, () => __Unit
1237
+ ];
1238
+ var DeleteLoggingConfiguration$ = [9, n0, _DLC,
1239
+ { [_h]: ["DELETE", "/workspaces/{workspaceId}/logging", 202] }, () => DeleteLoggingConfigurationRequest$, () => __Unit
1240
+ ];
1241
+ var DeleteQueryLoggingConfiguration$ = [9, n0, _DQLC,
1242
+ { [_h]: ["DELETE", "/workspaces/{workspaceId}/logging/query", 202] }, () => DeleteQueryLoggingConfigurationRequest$, () => __Unit
1243
+ ];
1244
+ var DeleteResourcePolicy$ = [9, n0, _DRP,
1245
+ { [_h]: ["DELETE", "/workspaces/{workspaceId}/policy", 202] }, () => DeleteResourcePolicyRequest$, () => __Unit
1246
+ ];
1247
+ var DeleteRuleGroupsNamespace$ = [9, n0, _DRGN,
1248
+ { [_h]: ["DELETE", "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}", 202] }, () => DeleteRuleGroupsNamespaceRequest$, () => __Unit
1249
+ ];
1250
+ var DeleteScraper$ = [9, n0, _DS,
1251
+ { [_h]: ["DELETE", "/scrapers/{scraperId}", 202] }, () => DeleteScraperRequest$, () => DeleteScraperResponse$
1252
+ ];
1253
+ var DeleteScraperLoggingConfiguration$ = [9, n0, _DSLC,
1254
+ { [_h]: ["DELETE", "/scrapers/{scraperId}/logging-configuration", 202] }, () => DeleteScraperLoggingConfigurationRequest$, () => __Unit
1255
+ ];
1256
+ var DeleteWorkspace$ = [9, n0, _DW,
1257
+ { [_h]: ["DELETE", "/workspaces/{workspaceId}", 202] }, () => DeleteWorkspaceRequest$, () => __Unit
1258
+ ];
1259
+ var DescribeAlertManagerDefinition$ = [9, n0, _DAMDe,
1260
+ { [_h]: ["GET", "/workspaces/{workspaceId}/alertmanager/definition", 200] }, () => DescribeAlertManagerDefinitionRequest$, () => DescribeAlertManagerDefinitionResponse$
1261
+ ];
1262
+ var DescribeAnomalyDetector$ = [9, n0, _DADe,
1263
+ { [_h]: ["GET", "/workspaces/{workspaceId}/anomalydetectors/{anomalyDetectorId}", 200] }, () => DescribeAnomalyDetectorRequest$, () => DescribeAnomalyDetectorResponse$
1264
+ ];
1265
+ var DescribeLoggingConfiguration$ = [9, n0, _DLCe,
1266
+ { [_h]: ["GET", "/workspaces/{workspaceId}/logging", 200] }, () => DescribeLoggingConfigurationRequest$, () => DescribeLoggingConfigurationResponse$
1267
+ ];
1268
+ var DescribeQueryLoggingConfiguration$ = [9, n0, _DQLCe,
1269
+ { [_h]: ["GET", "/workspaces/{workspaceId}/logging/query", 200] }, () => DescribeQueryLoggingConfigurationRequest$, () => DescribeQueryLoggingConfigurationResponse$
1270
+ ];
1271
+ var DescribeResourcePolicy$ = [9, n0, _DRPe,
1272
+ { [_h]: ["GET", "/workspaces/{workspaceId}/policy", 200] }, () => DescribeResourcePolicyRequest$, () => DescribeResourcePolicyResponse$
1273
+ ];
1274
+ var DescribeRuleGroupsNamespace$ = [9, n0, _DRGNe,
1275
+ { [_h]: ["GET", "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}", 200] }, () => DescribeRuleGroupsNamespaceRequest$, () => DescribeRuleGroupsNamespaceResponse$
1276
+ ];
1277
+ var DescribeScraper$ = [9, n0, _DSe,
1278
+ { [_h]: ["GET", "/scrapers/{scraperId}", 200] }, () => DescribeScraperRequest$, () => DescribeScraperResponse$
1279
+ ];
1280
+ var DescribeScraperLoggingConfiguration$ = [9, n0, _DSLCe,
1281
+ { [_h]: ["GET", "/scrapers/{scraperId}/logging-configuration", 200] }, () => DescribeScraperLoggingConfigurationRequest$, () => DescribeScraperLoggingConfigurationResponse$
1282
+ ];
1283
+ var DescribeWorkspace$ = [9, n0, _DWe,
1284
+ { [_h]: ["GET", "/workspaces/{workspaceId}", 200] }, () => DescribeWorkspaceRequest$, () => DescribeWorkspaceResponse$
1285
+ ];
1286
+ var DescribeWorkspaceConfiguration$ = [9, n0, _DWC,
1287
+ { [_h]: ["GET", "/workspaces/{workspaceId}/configuration", 200] }, () => DescribeWorkspaceConfigurationRequest$, () => DescribeWorkspaceConfigurationResponse$
1288
+ ];
1289
+ var GetDefaultScraperConfiguration$ = [9, n0, _GDSC,
1290
+ { [_h]: ["GET", "/scraperconfiguration", 200] }, () => GetDefaultScraperConfigurationRequest$, () => GetDefaultScraperConfigurationResponse$
1291
+ ];
1292
+ var ListAnomalyDetectors$ = [9, n0, _LAD,
1293
+ { [_h]: ["GET", "/workspaces/{workspaceId}/anomalydetectors", 200] }, () => ListAnomalyDetectorsRequest$, () => ListAnomalyDetectorsResponse$
1294
+ ];
1295
+ var ListRuleGroupsNamespaces$ = [9, n0, _LRGN,
1296
+ { [_h]: ["GET", "/workspaces/{workspaceId}/rulegroupsnamespaces", 200] }, () => ListRuleGroupsNamespacesRequest$, () => ListRuleGroupsNamespacesResponse$
1297
+ ];
1298
+ var ListScrapers$ = [9, n0, _LS,
1299
+ { [_h]: ["GET", "/scrapers", 200] }, () => ListScrapersRequest$, () => ListScrapersResponse$
1300
+ ];
1301
+ var ListTagsForResource$ = [9, n0, _LTFR,
1302
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1303
+ ];
1304
+ var ListWorkspaces$ = [9, n0, _LW,
1305
+ { [_h]: ["GET", "/workspaces", 200] }, () => ListWorkspacesRequest$, () => ListWorkspacesResponse$
1306
+ ];
1307
+ var PutAlertManagerDefinition$ = [9, n0, _PAMD,
1308
+ { [_h]: ["PUT", "/workspaces/{workspaceId}/alertmanager/definition", 202] }, () => PutAlertManagerDefinitionRequest$, () => PutAlertManagerDefinitionResponse$
1309
+ ];
1310
+ var PutAnomalyDetector$ = [9, n0, _PAD,
1311
+ { [_h]: ["PUT", "/workspaces/{workspaceId}/anomalydetectors/{anomalyDetectorId}", 202] }, () => PutAnomalyDetectorRequest$, () => PutAnomalyDetectorResponse$
1312
+ ];
1313
+ var PutResourcePolicy$ = [9, n0, _PRP,
1314
+ { [_h]: ["PUT", "/workspaces/{workspaceId}/policy", 202] }, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
1315
+ ];
1316
+ var PutRuleGroupsNamespace$ = [9, n0, _PRGN,
1317
+ { [_h]: ["PUT", "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}", 202] }, () => PutRuleGroupsNamespaceRequest$, () => PutRuleGroupsNamespaceResponse$
1318
+ ];
1319
+ var TagResource$ = [9, n0, _TR,
1320
+ { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1321
+ ];
1322
+ var UntagResource$ = [9, n0, _UR,
1323
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1324
+ ];
1325
+ var UpdateLoggingConfiguration$ = [9, n0, _ULC,
1326
+ { [_h]: ["PUT", "/workspaces/{workspaceId}/logging", 202] }, () => UpdateLoggingConfigurationRequest$, () => UpdateLoggingConfigurationResponse$
1327
+ ];
1328
+ var UpdateQueryLoggingConfiguration$ = [9, n0, _UQLC,
1329
+ { [_h]: ["PUT", "/workspaces/{workspaceId}/logging/query", 202] }, () => UpdateQueryLoggingConfigurationRequest$, () => UpdateQueryLoggingConfigurationResponse$
1330
+ ];
1331
+ var UpdateScraper$ = [9, n0, _US,
1332
+ { [_h]: ["PUT", "/scrapers/{scraperId}", 202] }, () => UpdateScraperRequest$, () => UpdateScraperResponse$
1333
+ ];
1334
+ var UpdateScraperLoggingConfiguration$ = [9, n0, _USLC,
1335
+ { [_h]: ["PUT", "/scrapers/{scraperId}/logging-configuration", 202] }, () => UpdateScraperLoggingConfigurationRequest$, () => UpdateScraperLoggingConfigurationResponse$
1336
+ ];
1337
+ var UpdateWorkspaceAlias$ = [9, n0, _UWA,
1338
+ { [_h]: ["POST", "/workspaces/{workspaceId}/alias", 204] }, () => UpdateWorkspaceAliasRequest$, () => __Unit
1339
+ ];
1340
+ var UpdateWorkspaceConfiguration$ = [9, n0, _UWC,
1341
+ { [_h]: ["PATCH", "/workspaces/{workspaceId}/configuration", 202] }, () => UpdateWorkspaceConfigurationRequest$, () => UpdateWorkspaceConfigurationResponse$
1342
+ ];
1343
+
1344
+ const getRuntimeConfig$1 = (config) => {
1345
+ return {
1346
+ apiVersion: "2020-08-01",
1347
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1348
+ base64Encoder: config?.base64Encoder ?? toBase64,
1349
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1350
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1351
+ extensions: config?.extensions ?? [],
1352
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAmpHttpAuthSchemeProvider,
1353
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1354
+ {
1355
+ schemeId: "aws.auth#sigv4",
1356
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1357
+ signer: new AwsSdkSigV4Signer(),
1358
+ },
1359
+ ],
1360
+ logger: config?.logger ?? new NoOpLogger(),
1361
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1362
+ protocolSettings: config?.protocolSettings ?? {
1363
+ defaultNamespace: "com.amazonaws.amp",
1364
+ errorTypeRegistries,
1365
+ version: "2020-08-01",
1366
+ serviceTarget: "AmazonPrometheusService",
1367
+ },
1368
+ serviceId: config?.serviceId ?? "amp",
1369
+ sha256: config?.sha256 ?? Sha256,
1370
+ urlParser: config?.urlParser ?? parseUrl,
1371
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1372
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1373
+ };
1374
+ };
1375
+
1376
+ const getRuntimeConfig = (config) => {
1377
+ emitWarningIfUnsupportedVersion(process.version);
1378
+ const defaultsMode = resolveDefaultsModeConfig(config);
1379
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1380
+ const clientSharedValues = getRuntimeConfig$1(config);
1381
+ emitWarningIfUnsupportedVersion$1(process.version);
1382
+ const loaderConfig = {
1383
+ profile: config?.profile,
1384
+ logger: clientSharedValues.logger,
1385
+ };
1386
+ return {
1387
+ ...clientSharedValues,
1388
+ ...config,
1389
+ runtime: "node",
1390
+ defaultsMode,
1391
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1392
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1393
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1394
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1395
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1396
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1397
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1398
+ retryMode: config?.retryMode ??
1399
+ loadConfig({
1400
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1401
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1402
+ }, config),
1403
+ streamCollector: config?.streamCollector ?? streamCollector,
1404
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1405
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1406
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1407
+ };
1408
+ };
1409
+
34
1410
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1411
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1412
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1033,64 +2409,245 @@ const WorkspacePolicyStatusCode = {
1033
2409
  UPDATING: "UPDATING",
1034
2410
  };
1035
2411
 
2412
+ exports.AccessDeniedException = AccessDeniedException;
2413
+ exports.AccessDeniedException$ = AccessDeniedException$;
2414
+ exports.AlertManagerDefinitionDescription$ = AlertManagerDefinitionDescription$;
2415
+ exports.AlertManagerDefinitionStatus$ = AlertManagerDefinitionStatus$;
1036
2416
  exports.AlertManagerDefinitionStatusCode = AlertManagerDefinitionStatusCode;
1037
2417
  exports.Amp = Amp;
1038
2418
  exports.AmpClient = AmpClient;
2419
+ exports.AmpConfiguration$ = AmpConfiguration$;
2420
+ exports.AmpServiceException = AmpServiceException;
2421
+ exports.AmpServiceException$ = AmpServiceException$;
2422
+ exports.AnomalyDetectorConfiguration$ = AnomalyDetectorConfiguration$;
2423
+ exports.AnomalyDetectorDescription$ = AnomalyDetectorDescription$;
2424
+ exports.AnomalyDetectorMissingDataAction$ = AnomalyDetectorMissingDataAction$;
2425
+ exports.AnomalyDetectorStatus$ = AnomalyDetectorStatus$;
1039
2426
  exports.AnomalyDetectorStatusCode = AnomalyDetectorStatusCode;
2427
+ exports.AnomalyDetectorSummary$ = AnomalyDetectorSummary$;
2428
+ exports.CloudWatchLogDestination$ = CloudWatchLogDestination$;
2429
+ exports.ComponentConfig$ = ComponentConfig$;
2430
+ exports.ConflictException = ConflictException;
2431
+ exports.ConflictException$ = ConflictException$;
2432
+ exports.CreateAlertManagerDefinition$ = CreateAlertManagerDefinition$;
1040
2433
  exports.CreateAlertManagerDefinitionCommand = CreateAlertManagerDefinitionCommand;
2434
+ exports.CreateAlertManagerDefinitionRequest$ = CreateAlertManagerDefinitionRequest$;
2435
+ exports.CreateAlertManagerDefinitionResponse$ = CreateAlertManagerDefinitionResponse$;
2436
+ exports.CreateAnomalyDetector$ = CreateAnomalyDetector$;
1041
2437
  exports.CreateAnomalyDetectorCommand = CreateAnomalyDetectorCommand;
2438
+ exports.CreateAnomalyDetectorRequest$ = CreateAnomalyDetectorRequest$;
2439
+ exports.CreateAnomalyDetectorResponse$ = CreateAnomalyDetectorResponse$;
2440
+ exports.CreateLoggingConfiguration$ = CreateLoggingConfiguration$;
1042
2441
  exports.CreateLoggingConfigurationCommand = CreateLoggingConfigurationCommand;
2442
+ exports.CreateLoggingConfigurationRequest$ = CreateLoggingConfigurationRequest$;
2443
+ exports.CreateLoggingConfigurationResponse$ = CreateLoggingConfigurationResponse$;
2444
+ exports.CreateQueryLoggingConfiguration$ = CreateQueryLoggingConfiguration$;
1043
2445
  exports.CreateQueryLoggingConfigurationCommand = CreateQueryLoggingConfigurationCommand;
2446
+ exports.CreateQueryLoggingConfigurationRequest$ = CreateQueryLoggingConfigurationRequest$;
2447
+ exports.CreateQueryLoggingConfigurationResponse$ = CreateQueryLoggingConfigurationResponse$;
2448
+ exports.CreateRuleGroupsNamespace$ = CreateRuleGroupsNamespace$;
1044
2449
  exports.CreateRuleGroupsNamespaceCommand = CreateRuleGroupsNamespaceCommand;
2450
+ exports.CreateRuleGroupsNamespaceRequest$ = CreateRuleGroupsNamespaceRequest$;
2451
+ exports.CreateRuleGroupsNamespaceResponse$ = CreateRuleGroupsNamespaceResponse$;
2452
+ exports.CreateScraper$ = CreateScraper$;
1045
2453
  exports.CreateScraperCommand = CreateScraperCommand;
2454
+ exports.CreateScraperRequest$ = CreateScraperRequest$;
2455
+ exports.CreateScraperResponse$ = CreateScraperResponse$;
2456
+ exports.CreateWorkspace$ = CreateWorkspace$;
1046
2457
  exports.CreateWorkspaceCommand = CreateWorkspaceCommand;
2458
+ exports.CreateWorkspaceRequest$ = CreateWorkspaceRequest$;
2459
+ exports.CreateWorkspaceResponse$ = CreateWorkspaceResponse$;
2460
+ exports.DeleteAlertManagerDefinition$ = DeleteAlertManagerDefinition$;
1047
2461
  exports.DeleteAlertManagerDefinitionCommand = DeleteAlertManagerDefinitionCommand;
2462
+ exports.DeleteAlertManagerDefinitionRequest$ = DeleteAlertManagerDefinitionRequest$;
2463
+ exports.DeleteAnomalyDetector$ = DeleteAnomalyDetector$;
1048
2464
  exports.DeleteAnomalyDetectorCommand = DeleteAnomalyDetectorCommand;
2465
+ exports.DeleteAnomalyDetectorRequest$ = DeleteAnomalyDetectorRequest$;
2466
+ exports.DeleteLoggingConfiguration$ = DeleteLoggingConfiguration$;
1049
2467
  exports.DeleteLoggingConfigurationCommand = DeleteLoggingConfigurationCommand;
2468
+ exports.DeleteLoggingConfigurationRequest$ = DeleteLoggingConfigurationRequest$;
2469
+ exports.DeleteQueryLoggingConfiguration$ = DeleteQueryLoggingConfiguration$;
1050
2470
  exports.DeleteQueryLoggingConfigurationCommand = DeleteQueryLoggingConfigurationCommand;
2471
+ exports.DeleteQueryLoggingConfigurationRequest$ = DeleteQueryLoggingConfigurationRequest$;
2472
+ exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
1051
2473
  exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
2474
+ exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
2475
+ exports.DeleteRuleGroupsNamespace$ = DeleteRuleGroupsNamespace$;
1052
2476
  exports.DeleteRuleGroupsNamespaceCommand = DeleteRuleGroupsNamespaceCommand;
2477
+ exports.DeleteRuleGroupsNamespaceRequest$ = DeleteRuleGroupsNamespaceRequest$;
2478
+ exports.DeleteScraper$ = DeleteScraper$;
1053
2479
  exports.DeleteScraperCommand = DeleteScraperCommand;
2480
+ exports.DeleteScraperLoggingConfiguration$ = DeleteScraperLoggingConfiguration$;
1054
2481
  exports.DeleteScraperLoggingConfigurationCommand = DeleteScraperLoggingConfigurationCommand;
2482
+ exports.DeleteScraperLoggingConfigurationRequest$ = DeleteScraperLoggingConfigurationRequest$;
2483
+ exports.DeleteScraperRequest$ = DeleteScraperRequest$;
2484
+ exports.DeleteScraperResponse$ = DeleteScraperResponse$;
2485
+ exports.DeleteWorkspace$ = DeleteWorkspace$;
1055
2486
  exports.DeleteWorkspaceCommand = DeleteWorkspaceCommand;
2487
+ exports.DeleteWorkspaceRequest$ = DeleteWorkspaceRequest$;
2488
+ exports.DescribeAlertManagerDefinition$ = DescribeAlertManagerDefinition$;
1056
2489
  exports.DescribeAlertManagerDefinitionCommand = DescribeAlertManagerDefinitionCommand;
2490
+ exports.DescribeAlertManagerDefinitionRequest$ = DescribeAlertManagerDefinitionRequest$;
2491
+ exports.DescribeAlertManagerDefinitionResponse$ = DescribeAlertManagerDefinitionResponse$;
2492
+ exports.DescribeAnomalyDetector$ = DescribeAnomalyDetector$;
1057
2493
  exports.DescribeAnomalyDetectorCommand = DescribeAnomalyDetectorCommand;
2494
+ exports.DescribeAnomalyDetectorRequest$ = DescribeAnomalyDetectorRequest$;
2495
+ exports.DescribeAnomalyDetectorResponse$ = DescribeAnomalyDetectorResponse$;
2496
+ exports.DescribeLoggingConfiguration$ = DescribeLoggingConfiguration$;
1058
2497
  exports.DescribeLoggingConfigurationCommand = DescribeLoggingConfigurationCommand;
2498
+ exports.DescribeLoggingConfigurationRequest$ = DescribeLoggingConfigurationRequest$;
2499
+ exports.DescribeLoggingConfigurationResponse$ = DescribeLoggingConfigurationResponse$;
2500
+ exports.DescribeQueryLoggingConfiguration$ = DescribeQueryLoggingConfiguration$;
1059
2501
  exports.DescribeQueryLoggingConfigurationCommand = DescribeQueryLoggingConfigurationCommand;
2502
+ exports.DescribeQueryLoggingConfigurationRequest$ = DescribeQueryLoggingConfigurationRequest$;
2503
+ exports.DescribeQueryLoggingConfigurationResponse$ = DescribeQueryLoggingConfigurationResponse$;
2504
+ exports.DescribeResourcePolicy$ = DescribeResourcePolicy$;
1060
2505
  exports.DescribeResourcePolicyCommand = DescribeResourcePolicyCommand;
2506
+ exports.DescribeResourcePolicyRequest$ = DescribeResourcePolicyRequest$;
2507
+ exports.DescribeResourcePolicyResponse$ = DescribeResourcePolicyResponse$;
2508
+ exports.DescribeRuleGroupsNamespace$ = DescribeRuleGroupsNamespace$;
1061
2509
  exports.DescribeRuleGroupsNamespaceCommand = DescribeRuleGroupsNamespaceCommand;
2510
+ exports.DescribeRuleGroupsNamespaceRequest$ = DescribeRuleGroupsNamespaceRequest$;
2511
+ exports.DescribeRuleGroupsNamespaceResponse$ = DescribeRuleGroupsNamespaceResponse$;
2512
+ exports.DescribeScraper$ = DescribeScraper$;
1062
2513
  exports.DescribeScraperCommand = DescribeScraperCommand;
2514
+ exports.DescribeScraperLoggingConfiguration$ = DescribeScraperLoggingConfiguration$;
1063
2515
  exports.DescribeScraperLoggingConfigurationCommand = DescribeScraperLoggingConfigurationCommand;
2516
+ exports.DescribeScraperLoggingConfigurationRequest$ = DescribeScraperLoggingConfigurationRequest$;
2517
+ exports.DescribeScraperLoggingConfigurationResponse$ = DescribeScraperLoggingConfigurationResponse$;
2518
+ exports.DescribeScraperRequest$ = DescribeScraperRequest$;
2519
+ exports.DescribeScraperResponse$ = DescribeScraperResponse$;
2520
+ exports.DescribeWorkspace$ = DescribeWorkspace$;
1064
2521
  exports.DescribeWorkspaceCommand = DescribeWorkspaceCommand;
2522
+ exports.DescribeWorkspaceConfiguration$ = DescribeWorkspaceConfiguration$;
1065
2523
  exports.DescribeWorkspaceConfigurationCommand = DescribeWorkspaceConfigurationCommand;
2524
+ exports.DescribeWorkspaceConfigurationRequest$ = DescribeWorkspaceConfigurationRequest$;
2525
+ exports.DescribeWorkspaceConfigurationResponse$ = DescribeWorkspaceConfigurationResponse$;
2526
+ exports.DescribeWorkspaceRequest$ = DescribeWorkspaceRequest$;
2527
+ exports.DescribeWorkspaceResponse$ = DescribeWorkspaceResponse$;
2528
+ exports.Destination$ = Destination$;
2529
+ exports.EksConfiguration$ = EksConfiguration$;
2530
+ exports.GetDefaultScraperConfiguration$ = GetDefaultScraperConfiguration$;
1066
2531
  exports.GetDefaultScraperConfigurationCommand = GetDefaultScraperConfigurationCommand;
2532
+ exports.GetDefaultScraperConfigurationRequest$ = GetDefaultScraperConfigurationRequest$;
2533
+ exports.GetDefaultScraperConfigurationResponse$ = GetDefaultScraperConfigurationResponse$;
2534
+ exports.IgnoreNearExpected$ = IgnoreNearExpected$;
2535
+ exports.InternalServerException = InternalServerException;
2536
+ exports.InternalServerException$ = InternalServerException$;
2537
+ exports.LimitsPerLabelSet$ = LimitsPerLabelSet$;
2538
+ exports.LimitsPerLabelSetEntry$ = LimitsPerLabelSetEntry$;
2539
+ exports.ListAnomalyDetectors$ = ListAnomalyDetectors$;
1067
2540
  exports.ListAnomalyDetectorsCommand = ListAnomalyDetectorsCommand;
2541
+ exports.ListAnomalyDetectorsRequest$ = ListAnomalyDetectorsRequest$;
2542
+ exports.ListAnomalyDetectorsResponse$ = ListAnomalyDetectorsResponse$;
2543
+ exports.ListRuleGroupsNamespaces$ = ListRuleGroupsNamespaces$;
1068
2544
  exports.ListRuleGroupsNamespacesCommand = ListRuleGroupsNamespacesCommand;
2545
+ exports.ListRuleGroupsNamespacesRequest$ = ListRuleGroupsNamespacesRequest$;
2546
+ exports.ListRuleGroupsNamespacesResponse$ = ListRuleGroupsNamespacesResponse$;
2547
+ exports.ListScrapers$ = ListScrapers$;
1069
2548
  exports.ListScrapersCommand = ListScrapersCommand;
2549
+ exports.ListScrapersRequest$ = ListScrapersRequest$;
2550
+ exports.ListScrapersResponse$ = ListScrapersResponse$;
2551
+ exports.ListTagsForResource$ = ListTagsForResource$;
1070
2552
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2553
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2554
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2555
+ exports.ListWorkspaces$ = ListWorkspaces$;
1071
2556
  exports.ListWorkspacesCommand = ListWorkspacesCommand;
2557
+ exports.ListWorkspacesRequest$ = ListWorkspacesRequest$;
2558
+ exports.ListWorkspacesResponse$ = ListWorkspacesResponse$;
2559
+ exports.LoggingConfigurationMetadata$ = LoggingConfigurationMetadata$;
2560
+ exports.LoggingConfigurationStatus$ = LoggingConfigurationStatus$;
1072
2561
  exports.LoggingConfigurationStatusCode = LoggingConfigurationStatusCode;
2562
+ exports.LoggingDestination$ = LoggingDestination$;
2563
+ exports.LoggingFilter$ = LoggingFilter$;
2564
+ exports.PutAlertManagerDefinition$ = PutAlertManagerDefinition$;
1073
2565
  exports.PutAlertManagerDefinitionCommand = PutAlertManagerDefinitionCommand;
2566
+ exports.PutAlertManagerDefinitionRequest$ = PutAlertManagerDefinitionRequest$;
2567
+ exports.PutAlertManagerDefinitionResponse$ = PutAlertManagerDefinitionResponse$;
2568
+ exports.PutAnomalyDetector$ = PutAnomalyDetector$;
1074
2569
  exports.PutAnomalyDetectorCommand = PutAnomalyDetectorCommand;
2570
+ exports.PutAnomalyDetectorRequest$ = PutAnomalyDetectorRequest$;
2571
+ exports.PutAnomalyDetectorResponse$ = PutAnomalyDetectorResponse$;
2572
+ exports.PutResourcePolicy$ = PutResourcePolicy$;
1075
2573
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
2574
+ exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
2575
+ exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
2576
+ exports.PutRuleGroupsNamespace$ = PutRuleGroupsNamespace$;
1076
2577
  exports.PutRuleGroupsNamespaceCommand = PutRuleGroupsNamespaceCommand;
2578
+ exports.PutRuleGroupsNamespaceRequest$ = PutRuleGroupsNamespaceRequest$;
2579
+ exports.PutRuleGroupsNamespaceResponse$ = PutRuleGroupsNamespaceResponse$;
2580
+ exports.QueryLoggingConfigurationMetadata$ = QueryLoggingConfigurationMetadata$;
2581
+ exports.QueryLoggingConfigurationStatus$ = QueryLoggingConfigurationStatus$;
1077
2582
  exports.QueryLoggingConfigurationStatusCode = QueryLoggingConfigurationStatusCode;
2583
+ exports.RandomCutForestConfiguration$ = RandomCutForestConfiguration$;
2584
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2585
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2586
+ exports.RoleConfiguration$ = RoleConfiguration$;
2587
+ exports.RuleGroupsNamespaceDescription$ = RuleGroupsNamespaceDescription$;
2588
+ exports.RuleGroupsNamespaceStatus$ = RuleGroupsNamespaceStatus$;
1078
2589
  exports.RuleGroupsNamespaceStatusCode = RuleGroupsNamespaceStatusCode;
2590
+ exports.RuleGroupsNamespaceSummary$ = RuleGroupsNamespaceSummary$;
2591
+ exports.ScrapeConfiguration$ = ScrapeConfiguration$;
2592
+ exports.ScraperComponent$ = ScraperComponent$;
1079
2593
  exports.ScraperComponentType = ScraperComponentType;
2594
+ exports.ScraperDescription$ = ScraperDescription$;
2595
+ exports.ScraperLoggingConfigurationStatus$ = ScraperLoggingConfigurationStatus$;
1080
2596
  exports.ScraperLoggingConfigurationStatusCode = ScraperLoggingConfigurationStatusCode;
2597
+ exports.ScraperLoggingDestination$ = ScraperLoggingDestination$;
2598
+ exports.ScraperStatus$ = ScraperStatus$;
1081
2599
  exports.ScraperStatusCode = ScraperStatusCode;
2600
+ exports.ScraperSummary$ = ScraperSummary$;
2601
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2602
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2603
+ exports.Source$ = Source$;
2604
+ exports.TagResource$ = TagResource$;
1082
2605
  exports.TagResourceCommand = TagResourceCommand;
2606
+ exports.TagResourceRequest$ = TagResourceRequest$;
2607
+ exports.TagResourceResponse$ = TagResourceResponse$;
2608
+ exports.ThrottlingException = ThrottlingException;
2609
+ exports.ThrottlingException$ = ThrottlingException$;
2610
+ exports.UntagResource$ = UntagResource$;
1083
2611
  exports.UntagResourceCommand = UntagResourceCommand;
2612
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2613
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2614
+ exports.UpdateLoggingConfiguration$ = UpdateLoggingConfiguration$;
1084
2615
  exports.UpdateLoggingConfigurationCommand = UpdateLoggingConfigurationCommand;
2616
+ exports.UpdateLoggingConfigurationRequest$ = UpdateLoggingConfigurationRequest$;
2617
+ exports.UpdateLoggingConfigurationResponse$ = UpdateLoggingConfigurationResponse$;
2618
+ exports.UpdateQueryLoggingConfiguration$ = UpdateQueryLoggingConfiguration$;
1085
2619
  exports.UpdateQueryLoggingConfigurationCommand = UpdateQueryLoggingConfigurationCommand;
2620
+ exports.UpdateQueryLoggingConfigurationRequest$ = UpdateQueryLoggingConfigurationRequest$;
2621
+ exports.UpdateQueryLoggingConfigurationResponse$ = UpdateQueryLoggingConfigurationResponse$;
2622
+ exports.UpdateScraper$ = UpdateScraper$;
1086
2623
  exports.UpdateScraperCommand = UpdateScraperCommand;
2624
+ exports.UpdateScraperLoggingConfiguration$ = UpdateScraperLoggingConfiguration$;
1087
2625
  exports.UpdateScraperLoggingConfigurationCommand = UpdateScraperLoggingConfigurationCommand;
2626
+ exports.UpdateScraperLoggingConfigurationRequest$ = UpdateScraperLoggingConfigurationRequest$;
2627
+ exports.UpdateScraperLoggingConfigurationResponse$ = UpdateScraperLoggingConfigurationResponse$;
2628
+ exports.UpdateScraperRequest$ = UpdateScraperRequest$;
2629
+ exports.UpdateScraperResponse$ = UpdateScraperResponse$;
2630
+ exports.UpdateWorkspaceAlias$ = UpdateWorkspaceAlias$;
1088
2631
  exports.UpdateWorkspaceAliasCommand = UpdateWorkspaceAliasCommand;
2632
+ exports.UpdateWorkspaceAliasRequest$ = UpdateWorkspaceAliasRequest$;
2633
+ exports.UpdateWorkspaceConfiguration$ = UpdateWorkspaceConfiguration$;
1089
2634
  exports.UpdateWorkspaceConfigurationCommand = UpdateWorkspaceConfigurationCommand;
2635
+ exports.UpdateWorkspaceConfigurationRequest$ = UpdateWorkspaceConfigurationRequest$;
2636
+ exports.UpdateWorkspaceConfigurationResponse$ = UpdateWorkspaceConfigurationResponse$;
2637
+ exports.ValidationException = ValidationException;
2638
+ exports.ValidationException$ = ValidationException$;
2639
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1090
2640
  exports.ValidationExceptionReason = ValidationExceptionReason;
2641
+ exports.VpcConfiguration$ = VpcConfiguration$;
2642
+ exports.WorkspaceConfigurationDescription$ = WorkspaceConfigurationDescription$;
2643
+ exports.WorkspaceConfigurationStatus$ = WorkspaceConfigurationStatus$;
1091
2644
  exports.WorkspaceConfigurationStatusCode = WorkspaceConfigurationStatusCode;
2645
+ exports.WorkspaceDescription$ = WorkspaceDescription$;
1092
2646
  exports.WorkspacePolicyStatusCode = WorkspacePolicyStatusCode;
2647
+ exports.WorkspaceStatus$ = WorkspaceStatus$;
1093
2648
  exports.WorkspaceStatusCode = WorkspaceStatusCode;
2649
+ exports.WorkspaceSummary$ = WorkspaceSummary$;
2650
+ exports.errorTypeRegistries = errorTypeRegistries;
1094
2651
  exports.paginateListAnomalyDetectors = paginateListAnomalyDetectors;
1095
2652
  exports.paginateListRuleGroupsNamespaces = paginateListRuleGroupsNamespaces;
1096
2653
  exports.paginateListScrapers = paginateListScrapers;