@aws-sdk/client-amp 3.1075.0 → 3.1076.0

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