@aws-sdk/client-amp 3.987.0 → 3.989.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 +63 -1427
- package/dist-cjs/models/AmpServiceException.js +12 -0
- package/dist-cjs/models/errors.js +125 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1106 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +87 -81
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var AmpServiceException = require('./models/AmpServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,1209 +114,6 @@ class AmpClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class AmpServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, AmpServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class AccessDeniedException extends AmpServiceException {
|
|
122
|
-
name = "AccessDeniedException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class ConflictException extends AmpServiceException {
|
|
134
|
-
name = "ConflictException";
|
|
135
|
-
$fault = "client";
|
|
136
|
-
resourceId;
|
|
137
|
-
resourceType;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ConflictException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
-
this.resourceId = opts.resourceId;
|
|
146
|
-
this.resourceType = opts.resourceType;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
class InternalServerException extends AmpServiceException {
|
|
150
|
-
name = "InternalServerException";
|
|
151
|
-
$fault = "server";
|
|
152
|
-
$retryable = {};
|
|
153
|
-
retryAfterSeconds;
|
|
154
|
-
constructor(opts) {
|
|
155
|
-
super({
|
|
156
|
-
name: "InternalServerException",
|
|
157
|
-
$fault: "server",
|
|
158
|
-
...opts,
|
|
159
|
-
});
|
|
160
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
161
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
class ResourceNotFoundException extends AmpServiceException {
|
|
165
|
-
name = "ResourceNotFoundException";
|
|
166
|
-
$fault = "client";
|
|
167
|
-
resourceId;
|
|
168
|
-
resourceType;
|
|
169
|
-
constructor(opts) {
|
|
170
|
-
super({
|
|
171
|
-
name: "ResourceNotFoundException",
|
|
172
|
-
$fault: "client",
|
|
173
|
-
...opts,
|
|
174
|
-
});
|
|
175
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
176
|
-
this.resourceId = opts.resourceId;
|
|
177
|
-
this.resourceType = opts.resourceType;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ServiceQuotaExceededException extends AmpServiceException {
|
|
181
|
-
name = "ServiceQuotaExceededException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
resourceId;
|
|
184
|
-
resourceType;
|
|
185
|
-
serviceCode;
|
|
186
|
-
quotaCode;
|
|
187
|
-
constructor(opts) {
|
|
188
|
-
super({
|
|
189
|
-
name: "ServiceQuotaExceededException",
|
|
190
|
-
$fault: "client",
|
|
191
|
-
...opts,
|
|
192
|
-
});
|
|
193
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
194
|
-
this.resourceId = opts.resourceId;
|
|
195
|
-
this.resourceType = opts.resourceType;
|
|
196
|
-
this.serviceCode = opts.serviceCode;
|
|
197
|
-
this.quotaCode = opts.quotaCode;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
class ThrottlingException extends AmpServiceException {
|
|
201
|
-
name = "ThrottlingException";
|
|
202
|
-
$fault = "client";
|
|
203
|
-
$retryable = {};
|
|
204
|
-
serviceCode;
|
|
205
|
-
quotaCode;
|
|
206
|
-
retryAfterSeconds;
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "ThrottlingException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
214
|
-
this.serviceCode = opts.serviceCode;
|
|
215
|
-
this.quotaCode = opts.quotaCode;
|
|
216
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
class ValidationException extends AmpServiceException {
|
|
220
|
-
name = "ValidationException";
|
|
221
|
-
$fault = "client";
|
|
222
|
-
reason;
|
|
223
|
-
fieldList;
|
|
224
|
-
constructor(opts) {
|
|
225
|
-
super({
|
|
226
|
-
name: "ValidationException",
|
|
227
|
-
$fault: "client",
|
|
228
|
-
...opts,
|
|
229
|
-
});
|
|
230
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
231
|
-
this.reason = opts.reason;
|
|
232
|
-
this.fieldList = opts.fieldList;
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
const _AC = "AmpConfiguration";
|
|
237
|
-
const _ADC = "AnomalyDetectorConfiguration";
|
|
238
|
-
const _ADD = "AnomalyDetectorDescription";
|
|
239
|
-
const _ADE = "AccessDeniedException";
|
|
240
|
-
const _ADMDA = "AnomalyDetectorMissingDataAction";
|
|
241
|
-
const _ADS = "AnomalyDetectorStatus";
|
|
242
|
-
const _ADSL = "AnomalyDetectorSummaryList";
|
|
243
|
-
const _ADSn = "AnomalyDetectorSummary";
|
|
244
|
-
const _AMDD = "AlertManagerDefinitionDescription";
|
|
245
|
-
const _AMDS = "AlertManagerDefinitionStatus";
|
|
246
|
-
const _CAD = "CreateAnomalyDetector";
|
|
247
|
-
const _CADR = "CreateAnomalyDetectorRequest";
|
|
248
|
-
const _CADRr = "CreateAnomalyDetectorResponse";
|
|
249
|
-
const _CAMD = "CreateAlertManagerDefinition";
|
|
250
|
-
const _CAMDR = "CreateAlertManagerDefinitionRequest";
|
|
251
|
-
const _CAMDRr = "CreateAlertManagerDefinitionResponse";
|
|
252
|
-
const _CC = "ComponentConfig";
|
|
253
|
-
const _CE = "ConflictException";
|
|
254
|
-
const _CLC = "CreateLoggingConfiguration";
|
|
255
|
-
const _CLCR = "CreateLoggingConfigurationRequest";
|
|
256
|
-
const _CLCRr = "CreateLoggingConfigurationResponse";
|
|
257
|
-
const _CQLC = "CreateQueryLoggingConfiguration";
|
|
258
|
-
const _CQLCR = "CreateQueryLoggingConfigurationRequest";
|
|
259
|
-
const _CQLCRr = "CreateQueryLoggingConfigurationResponse";
|
|
260
|
-
const _CRGN = "CreateRuleGroupsNamespace";
|
|
261
|
-
const _CRGNR = "CreateRuleGroupsNamespaceRequest";
|
|
262
|
-
const _CRGNRr = "CreateRuleGroupsNamespaceResponse";
|
|
263
|
-
const _CS = "CreateScraper";
|
|
264
|
-
const _CSR = "CreateScraperRequest";
|
|
265
|
-
const _CSRr = "CreateScraperResponse";
|
|
266
|
-
const _CW = "CreateWorkspace";
|
|
267
|
-
const _CWLD = "CloudWatchLogDestination";
|
|
268
|
-
const _CWR = "CreateWorkspaceRequest";
|
|
269
|
-
const _CWRr = "CreateWorkspaceResponse";
|
|
270
|
-
const _D = "Destination";
|
|
271
|
-
const _DAD = "DeleteAnomalyDetector";
|
|
272
|
-
const _DADR = "DeleteAnomalyDetectorRequest";
|
|
273
|
-
const _DADRe = "DescribeAnomalyDetectorRequest";
|
|
274
|
-
const _DADRes = "DescribeAnomalyDetectorResponse";
|
|
275
|
-
const _DADe = "DescribeAnomalyDetector";
|
|
276
|
-
const _DAMD = "DeleteAlertManagerDefinition";
|
|
277
|
-
const _DAMDR = "DeleteAlertManagerDefinitionRequest";
|
|
278
|
-
const _DAMDRe = "DescribeAlertManagerDefinitionRequest";
|
|
279
|
-
const _DAMDRes = "DescribeAlertManagerDefinitionResponse";
|
|
280
|
-
const _DAMDe = "DescribeAlertManagerDefinition";
|
|
281
|
-
const _DLC = "DeleteLoggingConfiguration";
|
|
282
|
-
const _DLCR = "DeleteLoggingConfigurationRequest";
|
|
283
|
-
const _DLCRe = "DescribeLoggingConfigurationRequest";
|
|
284
|
-
const _DLCRes = "DescribeLoggingConfigurationResponse";
|
|
285
|
-
const _DLCe = "DescribeLoggingConfiguration";
|
|
286
|
-
const _DQLC = "DeleteQueryLoggingConfiguration";
|
|
287
|
-
const _DQLCR = "DeleteQueryLoggingConfigurationRequest";
|
|
288
|
-
const _DQLCRe = "DescribeQueryLoggingConfigurationRequest";
|
|
289
|
-
const _DQLCRes = "DescribeQueryLoggingConfigurationResponse";
|
|
290
|
-
const _DQLCe = "DescribeQueryLoggingConfiguration";
|
|
291
|
-
const _DRGN = "DeleteRuleGroupsNamespace";
|
|
292
|
-
const _DRGNR = "DeleteRuleGroupsNamespaceRequest";
|
|
293
|
-
const _DRGNRe = "DescribeRuleGroupsNamespaceRequest";
|
|
294
|
-
const _DRGNRes = "DescribeRuleGroupsNamespaceResponse";
|
|
295
|
-
const _DRGNe = "DescribeRuleGroupsNamespace";
|
|
296
|
-
const _DRP = "DeleteResourcePolicy";
|
|
297
|
-
const _DRPR = "DeleteResourcePolicyRequest";
|
|
298
|
-
const _DRPRe = "DescribeResourcePolicyRequest";
|
|
299
|
-
const _DRPRes = "DescribeResourcePolicyResponse";
|
|
300
|
-
const _DRPe = "DescribeResourcePolicy";
|
|
301
|
-
const _DS = "DeleteScraper";
|
|
302
|
-
const _DSLC = "DeleteScraperLoggingConfiguration";
|
|
303
|
-
const _DSLCR = "DeleteScraperLoggingConfigurationRequest";
|
|
304
|
-
const _DSLCRe = "DescribeScraperLoggingConfigurationRequest";
|
|
305
|
-
const _DSLCRes = "DescribeScraperLoggingConfigurationResponse";
|
|
306
|
-
const _DSLCe = "DescribeScraperLoggingConfiguration";
|
|
307
|
-
const _DSR = "DeleteScraperRequest";
|
|
308
|
-
const _DSRe = "DeleteScraperResponse";
|
|
309
|
-
const _DSRes = "DescribeScraperRequest";
|
|
310
|
-
const _DSResc = "DescribeScraperResponse";
|
|
311
|
-
const _DSe = "DescribeScraper";
|
|
312
|
-
const _DW = "DeleteWorkspace";
|
|
313
|
-
const _DWC = "DescribeWorkspaceConfiguration";
|
|
314
|
-
const _DWCR = "DescribeWorkspaceConfigurationRequest";
|
|
315
|
-
const _DWCRe = "DescribeWorkspaceConfigurationResponse";
|
|
316
|
-
const _DWR = "DeleteWorkspaceRequest";
|
|
317
|
-
const _DWRe = "DescribeWorkspaceRequest";
|
|
318
|
-
const _DWRes = "DescribeWorkspaceResponse";
|
|
319
|
-
const _DWe = "DescribeWorkspace";
|
|
320
|
-
const _EC = "EksConfiguration";
|
|
321
|
-
const _GDSC = "GetDefaultScraperConfiguration";
|
|
322
|
-
const _GDSCR = "GetDefaultScraperConfigurationRequest";
|
|
323
|
-
const _GDSCRe = "GetDefaultScraperConfigurationResponse";
|
|
324
|
-
const _INE = "IgnoreNearExpected";
|
|
325
|
-
const _ISE = "InternalServerException";
|
|
326
|
-
const _LAD = "ListAnomalyDetectors";
|
|
327
|
-
const _LADR = "ListAnomalyDetectorsRequest";
|
|
328
|
-
const _LADRi = "ListAnomalyDetectorsResponse";
|
|
329
|
-
const _LCM = "LoggingConfigurationMetadata";
|
|
330
|
-
const _LCS = "LoggingConfigurationStatus";
|
|
331
|
-
const _LD = "LoggingDestination";
|
|
332
|
-
const _LDo = "LoggingDestinations";
|
|
333
|
-
const _LF = "LoggingFilter";
|
|
334
|
-
const _LPLS = "LimitsPerLabelSet";
|
|
335
|
-
const _LPLSE = "LimitsPerLabelSetEntry";
|
|
336
|
-
const _LPLSL = "LimitsPerLabelSetList";
|
|
337
|
-
const _LRGN = "ListRuleGroupsNamespaces";
|
|
338
|
-
const _LRGNR = "ListRuleGroupsNamespacesRequest";
|
|
339
|
-
const _LRGNRi = "ListRuleGroupsNamespacesResponse";
|
|
340
|
-
const _LS = "ListScrapers";
|
|
341
|
-
const _LSR = "ListScrapersRequest";
|
|
342
|
-
const _LSRi = "ListScrapersResponse";
|
|
343
|
-
const _LTFR = "ListTagsForResource";
|
|
344
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
345
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
346
|
-
const _LW = "ListWorkspaces";
|
|
347
|
-
const _LWR = "ListWorkspacesRequest";
|
|
348
|
-
const _LWRi = "ListWorkspacesResponse";
|
|
349
|
-
const _PAD = "PutAnomalyDetector";
|
|
350
|
-
const _PADR = "PutAnomalyDetectorRequest";
|
|
351
|
-
const _PADRu = "PutAnomalyDetectorResponse";
|
|
352
|
-
const _PAMD = "PutAlertManagerDefinition";
|
|
353
|
-
const _PAMDR = "PutAlertManagerDefinitionRequest";
|
|
354
|
-
const _PAMDRu = "PutAlertManagerDefinitionResponse";
|
|
355
|
-
const _PRGN = "PutRuleGroupsNamespace";
|
|
356
|
-
const _PRGNR = "PutRuleGroupsNamespaceRequest";
|
|
357
|
-
const _PRGNRu = "PutRuleGroupsNamespaceResponse";
|
|
358
|
-
const _PRP = "PutResourcePolicy";
|
|
359
|
-
const _PRPR = "PutResourcePolicyRequest";
|
|
360
|
-
const _PRPRu = "PutResourcePolicyResponse";
|
|
361
|
-
const _QLCM = "QueryLoggingConfigurationMetadata";
|
|
362
|
-
const _QLCS = "QueryLoggingConfigurationStatus";
|
|
363
|
-
const _RA = "Retry-After";
|
|
364
|
-
const _RC = "RoleConfiguration";
|
|
365
|
-
const _RCFC = "RandomCutForestConfiguration";
|
|
366
|
-
const _RGND = "RuleGroupsNamespaceDescription";
|
|
367
|
-
const _RGNS = "RuleGroupsNamespaceStatus";
|
|
368
|
-
const _RGNSL = "RuleGroupsNamespaceSummaryList";
|
|
369
|
-
const _RGNSu = "RuleGroupsNamespaceSummary";
|
|
370
|
-
const _RNFE = "ResourceNotFoundException";
|
|
371
|
-
const _S = "Source";
|
|
372
|
-
const _SC = "ScraperComponent";
|
|
373
|
-
const _SCc = "ScraperComponents";
|
|
374
|
-
const _SCcr = "ScrapeConfiguration";
|
|
375
|
-
const _SD = "ScraperDescription";
|
|
376
|
-
const _SF = "ScraperFilters";
|
|
377
|
-
const _SLCS = "ScraperLoggingConfigurationStatus";
|
|
378
|
-
const _SLD = "ScraperLoggingDestination";
|
|
379
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
380
|
-
const _SS = "ScraperStatus";
|
|
381
|
-
const _SSL = "ScraperSummaryList";
|
|
382
|
-
const _SSc = "ScraperSummary";
|
|
383
|
-
const _TE = "ThrottlingException";
|
|
384
|
-
const _TR = "TagResource";
|
|
385
|
-
const _TRR = "TagResourceRequest";
|
|
386
|
-
const _TRRa = "TagResourceResponse";
|
|
387
|
-
const _ULC = "UpdateLoggingConfiguration";
|
|
388
|
-
const _ULCR = "UpdateLoggingConfigurationRequest";
|
|
389
|
-
const _ULCRp = "UpdateLoggingConfigurationResponse";
|
|
390
|
-
const _UQLC = "UpdateQueryLoggingConfiguration";
|
|
391
|
-
const _UQLCR = "UpdateQueryLoggingConfigurationRequest";
|
|
392
|
-
const _UQLCRp = "UpdateQueryLoggingConfigurationResponse";
|
|
393
|
-
const _UR = "UntagResource";
|
|
394
|
-
const _URR = "UntagResourceRequest";
|
|
395
|
-
const _URRn = "UntagResourceResponse";
|
|
396
|
-
const _US = "UpdateScraper";
|
|
397
|
-
const _USLC = "UpdateScraperLoggingConfiguration";
|
|
398
|
-
const _USLCR = "UpdateScraperLoggingConfigurationRequest";
|
|
399
|
-
const _USLCRp = "UpdateScraperLoggingConfigurationResponse";
|
|
400
|
-
const _USR = "UpdateScraperRequest";
|
|
401
|
-
const _USRp = "UpdateScraperResponse";
|
|
402
|
-
const _UWA = "UpdateWorkspaceAlias";
|
|
403
|
-
const _UWAR = "UpdateWorkspaceAliasRequest";
|
|
404
|
-
const _UWC = "UpdateWorkspaceConfiguration";
|
|
405
|
-
const _UWCR = "UpdateWorkspaceConfigurationRequest";
|
|
406
|
-
const _UWCRp = "UpdateWorkspaceConfigurationResponse";
|
|
407
|
-
const _VC = "VpcConfiguration";
|
|
408
|
-
const _VE = "ValidationException";
|
|
409
|
-
const _VEF = "ValidationExceptionField";
|
|
410
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
411
|
-
const _WCD = "WorkspaceConfigurationDescription";
|
|
412
|
-
const _WCS = "WorkspaceConfigurationStatus";
|
|
413
|
-
const _WD = "WorkspaceDescription";
|
|
414
|
-
const _WS = "WorkspaceStatus";
|
|
415
|
-
const _WSL = "WorkspaceSummaryList";
|
|
416
|
-
const _WSo = "WorkspaceSummary";
|
|
417
|
-
const _a = "arn";
|
|
418
|
-
const _aC = "ampConfiguration";
|
|
419
|
-
const _aD = "anomalyDetector";
|
|
420
|
-
const _aDI = "anomalyDetectorId";
|
|
421
|
-
const _aDn = "anomalyDetectors";
|
|
422
|
-
const _aMD = "alertManagerDefinition";
|
|
423
|
-
const _al = "alias";
|
|
424
|
-
const _am = "amount";
|
|
425
|
-
const _c = "client";
|
|
426
|
-
const _cA = "createdAt";
|
|
427
|
-
const _cAl = "clusterArn";
|
|
428
|
-
const _cB = "configurationBlob";
|
|
429
|
-
const _cT = "clientToken";
|
|
430
|
-
const _cWL = "cloudWatchLogs";
|
|
431
|
-
const _co = "configuration";
|
|
432
|
-
const _con = "config";
|
|
433
|
-
const _d = "data";
|
|
434
|
-
const _de = "destinations";
|
|
435
|
-
const _des = "destination";
|
|
436
|
-
const _e = "error";
|
|
437
|
-
const _eC = "eksConfiguration";
|
|
438
|
-
const _eIIS = "evaluationIntervalInSeconds";
|
|
439
|
-
const _f = "filters";
|
|
440
|
-
const _fL = "fieldList";
|
|
441
|
-
const _h = "http";
|
|
442
|
-
const _hE = "httpError";
|
|
443
|
-
const _hH = "httpHeader";
|
|
444
|
-
const _hQ = "httpQuery";
|
|
445
|
-
const _iNEFA = "ignoreNearExpectedFromAbove";
|
|
446
|
-
const _iNEFB = "ignoreNearExpectedFromBelow";
|
|
447
|
-
const _iT = "idempotencyToken";
|
|
448
|
-
const _kKA = "kmsKeyArn";
|
|
449
|
-
const _l = "labels";
|
|
450
|
-
const _lC = "loggingConfiguration";
|
|
451
|
-
const _lD = "loggingDestination";
|
|
452
|
-
const _lGA = "logGroupArn";
|
|
453
|
-
const _lMA = "lastModifiedAt";
|
|
454
|
-
const _lPLS = "limitsPerLabelSet";
|
|
455
|
-
const _lS = "labelSet";
|
|
456
|
-
const _li = "limits";
|
|
457
|
-
const _m = "message";
|
|
458
|
-
const _mA = "modifiedAt";
|
|
459
|
-
const _mAA = "markAsAnomaly";
|
|
460
|
-
const _mDA = "missingDataAction";
|
|
461
|
-
const _mR = "maxResults";
|
|
462
|
-
const _mS = "maxSeries";
|
|
463
|
-
const _n = "name";
|
|
464
|
-
const _nT = "nextToken";
|
|
465
|
-
const _o = "options";
|
|
466
|
-
const _pD = "policyDocument";
|
|
467
|
-
const _pE = "prometheusEndpoint";
|
|
468
|
-
const _pS = "policyStatus";
|
|
469
|
-
const _q = "query";
|
|
470
|
-
const _qC = "quotaCode";
|
|
471
|
-
const _qLC = "queryLoggingConfiguration";
|
|
472
|
-
const _qT = "qspThreshold";
|
|
473
|
-
const _r = "reason";
|
|
474
|
-
const _rA = "resourceArn";
|
|
475
|
-
const _rAS = "retryAfterSeconds";
|
|
476
|
-
const _rAo = "roleArn";
|
|
477
|
-
const _rC = "roleConfiguration";
|
|
478
|
-
const _rCF = "randomCutForest";
|
|
479
|
-
const _rGN = "ruleGroupsNamespace";
|
|
480
|
-
const _rGNu = "ruleGroupsNamespaces";
|
|
481
|
-
const _rI = "resourceId";
|
|
482
|
-
const _rIe = "revisionId";
|
|
483
|
-
const _rPID = "retentionPeriodInDays";
|
|
484
|
-
const _rT = "resourceType";
|
|
485
|
-
const _ra = "ratio";
|
|
486
|
-
const _s = "status";
|
|
487
|
-
const _sC = "statusCode";
|
|
488
|
-
const _sCc = "scrapeConfiguration";
|
|
489
|
-
const _sCcr = "scraperComponents";
|
|
490
|
-
const _sCe = "serviceCode";
|
|
491
|
-
const _sGI = "securityGroupIds";
|
|
492
|
-
const _sI = "scraperId";
|
|
493
|
-
const _sIu = "subnetIds";
|
|
494
|
-
const _sR = "statusReason";
|
|
495
|
-
const _sRA = "sourceRoleArn";
|
|
496
|
-
const _sS = "shingleSize";
|
|
497
|
-
const _sSa = "sampleSize";
|
|
498
|
-
const _sc = "scraper";
|
|
499
|
-
const _scr = "scrapers";
|
|
500
|
-
const _se = "server";
|
|
501
|
-
const _sk = "skip";
|
|
502
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.amp";
|
|
503
|
-
const _so = "source";
|
|
504
|
-
const _t = "tags";
|
|
505
|
-
const _tK = "tagKeys";
|
|
506
|
-
const _tRA = "targetRoleArn";
|
|
507
|
-
const _ty = "type";
|
|
508
|
-
const _vC = "vpcConfiguration";
|
|
509
|
-
const _w = "workspace";
|
|
510
|
-
const _wA = "workspaceArn";
|
|
511
|
-
const _wC = "workspaceConfiguration";
|
|
512
|
-
const _wI = "workspaceId";
|
|
513
|
-
const _wo = "workspaces";
|
|
514
|
-
const n0 = "com.amazonaws.amp";
|
|
515
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
516
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
517
|
-
[_m],
|
|
518
|
-
[0], 1
|
|
519
|
-
];
|
|
520
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
521
|
-
var AlertManagerDefinitionDescription$ = [3, n0, _AMDD,
|
|
522
|
-
0,
|
|
523
|
-
[_s, _d, _cA, _mA],
|
|
524
|
-
[() => AlertManagerDefinitionStatus$, 21, 4, 4], 4
|
|
525
|
-
];
|
|
526
|
-
var AlertManagerDefinitionStatus$ = [3, n0, _AMDS,
|
|
527
|
-
0,
|
|
528
|
-
[_sC, _sR],
|
|
529
|
-
[0, 0], 1
|
|
530
|
-
];
|
|
531
|
-
var AmpConfiguration$ = [3, n0, _AC,
|
|
532
|
-
0,
|
|
533
|
-
[_wA],
|
|
534
|
-
[0], 1
|
|
535
|
-
];
|
|
536
|
-
var AnomalyDetectorDescription$ = [3, n0, _ADD,
|
|
537
|
-
0,
|
|
538
|
-
[_a, _aDI, _al, _s, _cA, _mA, _eIIS, _mDA, _co, _l, _t],
|
|
539
|
-
[0, 0, 0, () => AnomalyDetectorStatus$, 4, 4, 1, () => AnomalyDetectorMissingDataAction$, () => AnomalyDetectorConfiguration$, 128 | 0, 128 | 0], 6
|
|
540
|
-
];
|
|
541
|
-
var AnomalyDetectorStatus$ = [3, n0, _ADS,
|
|
542
|
-
0,
|
|
543
|
-
[_sC, _sR],
|
|
544
|
-
[0, 0], 1
|
|
545
|
-
];
|
|
546
|
-
var AnomalyDetectorSummary$ = [3, n0, _ADSn,
|
|
547
|
-
0,
|
|
548
|
-
[_a, _aDI, _al, _s, _cA, _mA, _t],
|
|
549
|
-
[0, 0, 0, () => AnomalyDetectorStatus$, 4, 4, 128 | 0], 6
|
|
550
|
-
];
|
|
551
|
-
var CloudWatchLogDestination$ = [3, n0, _CWLD,
|
|
552
|
-
0,
|
|
553
|
-
[_lGA],
|
|
554
|
-
[0], 1
|
|
555
|
-
];
|
|
556
|
-
var ComponentConfig$ = [3, n0, _CC,
|
|
557
|
-
0,
|
|
558
|
-
[_o],
|
|
559
|
-
[128 | 0]
|
|
560
|
-
];
|
|
561
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
562
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
563
|
-
[_m, _rI, _rT],
|
|
564
|
-
[0, 0, 0], 3
|
|
565
|
-
];
|
|
566
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
567
|
-
var CreateAlertManagerDefinitionRequest$ = [3, n0, _CAMDR,
|
|
568
|
-
0,
|
|
569
|
-
[_wI, _d, _cT],
|
|
570
|
-
[[0, 1], 21, [0, 4]], 2
|
|
571
|
-
];
|
|
572
|
-
var CreateAlertManagerDefinitionResponse$ = [3, n0, _CAMDRr,
|
|
573
|
-
0,
|
|
574
|
-
[_s],
|
|
575
|
-
[() => AlertManagerDefinitionStatus$], 1
|
|
576
|
-
];
|
|
577
|
-
var CreateAnomalyDetectorRequest$ = [3, n0, _CADR,
|
|
578
|
-
0,
|
|
579
|
-
[_wI, _al, _co, _eIIS, _mDA, _l, _cT, _t],
|
|
580
|
-
[[0, 1], 0, () => AnomalyDetectorConfiguration$, 1, () => AnomalyDetectorMissingDataAction$, 128 | 0, [0, 4], 128 | 0], 3
|
|
581
|
-
];
|
|
582
|
-
var CreateAnomalyDetectorResponse$ = [3, n0, _CADRr,
|
|
583
|
-
0,
|
|
584
|
-
[_aDI, _a, _s, _t],
|
|
585
|
-
[0, 0, () => AnomalyDetectorStatus$, 128 | 0], 3
|
|
586
|
-
];
|
|
587
|
-
var CreateLoggingConfigurationRequest$ = [3, n0, _CLCR,
|
|
588
|
-
0,
|
|
589
|
-
[_wI, _lGA, _cT],
|
|
590
|
-
[[0, 1], 0, [0, 4]], 2
|
|
591
|
-
];
|
|
592
|
-
var CreateLoggingConfigurationResponse$ = [3, n0, _CLCRr,
|
|
593
|
-
0,
|
|
594
|
-
[_s],
|
|
595
|
-
[() => LoggingConfigurationStatus$], 1
|
|
596
|
-
];
|
|
597
|
-
var CreateQueryLoggingConfigurationRequest$ = [3, n0, _CQLCR,
|
|
598
|
-
0,
|
|
599
|
-
[_wI, _de, _cT],
|
|
600
|
-
[[0, 1], () => LoggingDestinations, [0, 4]], 2
|
|
601
|
-
];
|
|
602
|
-
var CreateQueryLoggingConfigurationResponse$ = [3, n0, _CQLCRr,
|
|
603
|
-
0,
|
|
604
|
-
[_s],
|
|
605
|
-
[() => QueryLoggingConfigurationStatus$], 1
|
|
606
|
-
];
|
|
607
|
-
var CreateRuleGroupsNamespaceRequest$ = [3, n0, _CRGNR,
|
|
608
|
-
0,
|
|
609
|
-
[_wI, _n, _d, _cT, _t],
|
|
610
|
-
[[0, 1], 0, 21, [0, 4], 128 | 0], 3
|
|
611
|
-
];
|
|
612
|
-
var CreateRuleGroupsNamespaceResponse$ = [3, n0, _CRGNRr,
|
|
613
|
-
0,
|
|
614
|
-
[_n, _a, _s, _t],
|
|
615
|
-
[0, 0, () => RuleGroupsNamespaceStatus$, 128 | 0], 3
|
|
616
|
-
];
|
|
617
|
-
var CreateScraperRequest$ = [3, n0, _CSR,
|
|
618
|
-
0,
|
|
619
|
-
[_sCc, _so, _des, _al, _rC, _cT, _t],
|
|
620
|
-
[() => ScrapeConfiguration$, () => Source$, () => Destination$, 0, () => RoleConfiguration$, [0, 4], 128 | 0], 3
|
|
621
|
-
];
|
|
622
|
-
var CreateScraperResponse$ = [3, n0, _CSRr,
|
|
623
|
-
0,
|
|
624
|
-
[_sI, _a, _s, _t],
|
|
625
|
-
[0, 0, () => ScraperStatus$, 128 | 0], 3
|
|
626
|
-
];
|
|
627
|
-
var CreateWorkspaceRequest$ = [3, n0, _CWR,
|
|
628
|
-
0,
|
|
629
|
-
[_al, _cT, _t, _kKA],
|
|
630
|
-
[0, [0, 4], 128 | 0, 0]
|
|
631
|
-
];
|
|
632
|
-
var CreateWorkspaceResponse$ = [3, n0, _CWRr,
|
|
633
|
-
0,
|
|
634
|
-
[_wI, _a, _s, _t, _kKA],
|
|
635
|
-
[0, 0, () => WorkspaceStatus$, 128 | 0, 0], 3
|
|
636
|
-
];
|
|
637
|
-
var DeleteAlertManagerDefinitionRequest$ = [3, n0, _DAMDR,
|
|
638
|
-
0,
|
|
639
|
-
[_wI, _cT],
|
|
640
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
641
|
-
];
|
|
642
|
-
var DeleteAnomalyDetectorRequest$ = [3, n0, _DADR,
|
|
643
|
-
0,
|
|
644
|
-
[_wI, _aDI, _cT],
|
|
645
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 2
|
|
646
|
-
];
|
|
647
|
-
var DeleteLoggingConfigurationRequest$ = [3, n0, _DLCR,
|
|
648
|
-
0,
|
|
649
|
-
[_wI, _cT],
|
|
650
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
651
|
-
];
|
|
652
|
-
var DeleteQueryLoggingConfigurationRequest$ = [3, n0, _DQLCR,
|
|
653
|
-
0,
|
|
654
|
-
[_wI, _cT],
|
|
655
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
656
|
-
];
|
|
657
|
-
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
658
|
-
0,
|
|
659
|
-
[_wI, _cT, _rIe],
|
|
660
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }], [0, { [_hQ]: _rIe }]], 1
|
|
661
|
-
];
|
|
662
|
-
var DeleteRuleGroupsNamespaceRequest$ = [3, n0, _DRGNR,
|
|
663
|
-
0,
|
|
664
|
-
[_wI, _n, _cT],
|
|
665
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 2
|
|
666
|
-
];
|
|
667
|
-
var DeleteScraperLoggingConfigurationRequest$ = [3, n0, _DSLCR,
|
|
668
|
-
0,
|
|
669
|
-
[_sI, _cT],
|
|
670
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
671
|
-
];
|
|
672
|
-
var DeleteScraperRequest$ = [3, n0, _DSR,
|
|
673
|
-
0,
|
|
674
|
-
[_sI, _cT],
|
|
675
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
676
|
-
];
|
|
677
|
-
var DeleteScraperResponse$ = [3, n0, _DSRe,
|
|
678
|
-
0,
|
|
679
|
-
[_sI, _s],
|
|
680
|
-
[0, () => ScraperStatus$], 2
|
|
681
|
-
];
|
|
682
|
-
var DeleteWorkspaceRequest$ = [3, n0, _DWR,
|
|
683
|
-
0,
|
|
684
|
-
[_wI, _cT],
|
|
685
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
686
|
-
];
|
|
687
|
-
var DescribeAlertManagerDefinitionRequest$ = [3, n0, _DAMDRe,
|
|
688
|
-
0,
|
|
689
|
-
[_wI],
|
|
690
|
-
[[0, 1]], 1
|
|
691
|
-
];
|
|
692
|
-
var DescribeAlertManagerDefinitionResponse$ = [3, n0, _DAMDRes,
|
|
693
|
-
0,
|
|
694
|
-
[_aMD],
|
|
695
|
-
[() => AlertManagerDefinitionDescription$], 1
|
|
696
|
-
];
|
|
697
|
-
var DescribeAnomalyDetectorRequest$ = [3, n0, _DADRe,
|
|
698
|
-
0,
|
|
699
|
-
[_wI, _aDI],
|
|
700
|
-
[[0, 1], [0, 1]], 2
|
|
701
|
-
];
|
|
702
|
-
var DescribeAnomalyDetectorResponse$ = [3, n0, _DADRes,
|
|
703
|
-
0,
|
|
704
|
-
[_aD],
|
|
705
|
-
[() => AnomalyDetectorDescription$], 1
|
|
706
|
-
];
|
|
707
|
-
var DescribeLoggingConfigurationRequest$ = [3, n0, _DLCRe,
|
|
708
|
-
0,
|
|
709
|
-
[_wI],
|
|
710
|
-
[[0, 1]], 1
|
|
711
|
-
];
|
|
712
|
-
var DescribeLoggingConfigurationResponse$ = [3, n0, _DLCRes,
|
|
713
|
-
0,
|
|
714
|
-
[_lC],
|
|
715
|
-
[() => LoggingConfigurationMetadata$], 1
|
|
716
|
-
];
|
|
717
|
-
var DescribeQueryLoggingConfigurationRequest$ = [3, n0, _DQLCRe,
|
|
718
|
-
0,
|
|
719
|
-
[_wI],
|
|
720
|
-
[[0, 1]], 1
|
|
721
|
-
];
|
|
722
|
-
var DescribeQueryLoggingConfigurationResponse$ = [3, n0, _DQLCRes,
|
|
723
|
-
0,
|
|
724
|
-
[_qLC],
|
|
725
|
-
[() => QueryLoggingConfigurationMetadata$], 1
|
|
726
|
-
];
|
|
727
|
-
var DescribeResourcePolicyRequest$ = [3, n0, _DRPRe,
|
|
728
|
-
0,
|
|
729
|
-
[_wI],
|
|
730
|
-
[[0, 1]], 1
|
|
731
|
-
];
|
|
732
|
-
var DescribeResourcePolicyResponse$ = [3, n0, _DRPRes,
|
|
733
|
-
0,
|
|
734
|
-
[_pD, _pS, _rIe],
|
|
735
|
-
[0, 0, 0], 3
|
|
736
|
-
];
|
|
737
|
-
var DescribeRuleGroupsNamespaceRequest$ = [3, n0, _DRGNRe,
|
|
738
|
-
0,
|
|
739
|
-
[_wI, _n],
|
|
740
|
-
[[0, 1], [0, 1]], 2
|
|
741
|
-
];
|
|
742
|
-
var DescribeRuleGroupsNamespaceResponse$ = [3, n0, _DRGNRes,
|
|
743
|
-
0,
|
|
744
|
-
[_rGN],
|
|
745
|
-
[() => RuleGroupsNamespaceDescription$], 1
|
|
746
|
-
];
|
|
747
|
-
var DescribeScraperLoggingConfigurationRequest$ = [3, n0, _DSLCRe,
|
|
748
|
-
0,
|
|
749
|
-
[_sI],
|
|
750
|
-
[[0, 1]], 1
|
|
751
|
-
];
|
|
752
|
-
var DescribeScraperLoggingConfigurationResponse$ = [3, n0, _DSLCRes,
|
|
753
|
-
0,
|
|
754
|
-
[_s, _sI, _lD, _sCcr, _mA],
|
|
755
|
-
[() => ScraperLoggingConfigurationStatus$, 0, () => ScraperLoggingDestination$, () => ScraperComponents, 4], 5
|
|
756
|
-
];
|
|
757
|
-
var DescribeScraperRequest$ = [3, n0, _DSRes,
|
|
758
|
-
0,
|
|
759
|
-
[_sI],
|
|
760
|
-
[[0, 1]], 1
|
|
761
|
-
];
|
|
762
|
-
var DescribeScraperResponse$ = [3, n0, _DSResc,
|
|
763
|
-
0,
|
|
764
|
-
[_sc],
|
|
765
|
-
[() => ScraperDescription$], 1
|
|
766
|
-
];
|
|
767
|
-
var DescribeWorkspaceConfigurationRequest$ = [3, n0, _DWCR,
|
|
768
|
-
0,
|
|
769
|
-
[_wI],
|
|
770
|
-
[[0, 1]], 1
|
|
771
|
-
];
|
|
772
|
-
var DescribeWorkspaceConfigurationResponse$ = [3, n0, _DWCRe,
|
|
773
|
-
0,
|
|
774
|
-
[_wC],
|
|
775
|
-
[() => WorkspaceConfigurationDescription$], 1
|
|
776
|
-
];
|
|
777
|
-
var DescribeWorkspaceRequest$ = [3, n0, _DWRe,
|
|
778
|
-
0,
|
|
779
|
-
[_wI],
|
|
780
|
-
[[0, 1]], 1
|
|
781
|
-
];
|
|
782
|
-
var DescribeWorkspaceResponse$ = [3, n0, _DWRes,
|
|
783
|
-
0,
|
|
784
|
-
[_w],
|
|
785
|
-
[() => WorkspaceDescription$], 1
|
|
786
|
-
];
|
|
787
|
-
var EksConfiguration$ = [3, n0, _EC,
|
|
788
|
-
0,
|
|
789
|
-
[_cAl, _sIu, _sGI],
|
|
790
|
-
[0, 64 | 0, 64 | 0], 2
|
|
791
|
-
];
|
|
792
|
-
var GetDefaultScraperConfigurationRequest$ = [3, n0, _GDSCR,
|
|
793
|
-
0,
|
|
794
|
-
[],
|
|
795
|
-
[]
|
|
796
|
-
];
|
|
797
|
-
var GetDefaultScraperConfigurationResponse$ = [3, n0, _GDSCRe,
|
|
798
|
-
0,
|
|
799
|
-
[_co],
|
|
800
|
-
[21], 1
|
|
801
|
-
];
|
|
802
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
803
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
804
|
-
[_m, _rAS],
|
|
805
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
806
|
-
];
|
|
807
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
808
|
-
var LimitsPerLabelSet$ = [3, n0, _LPLS,
|
|
809
|
-
0,
|
|
810
|
-
[_li, _lS],
|
|
811
|
-
[() => LimitsPerLabelSetEntry$, 128 | 0], 2
|
|
812
|
-
];
|
|
813
|
-
var LimitsPerLabelSetEntry$ = [3, n0, _LPLSE,
|
|
814
|
-
0,
|
|
815
|
-
[_mS],
|
|
816
|
-
[1]
|
|
817
|
-
];
|
|
818
|
-
var ListAnomalyDetectorsRequest$ = [3, n0, _LADR,
|
|
819
|
-
0,
|
|
820
|
-
[_wI, _al, _mR, _nT],
|
|
821
|
-
[[0, 1], [0, { [_hQ]: _al }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
822
|
-
];
|
|
823
|
-
var ListAnomalyDetectorsResponse$ = [3, n0, _LADRi,
|
|
824
|
-
0,
|
|
825
|
-
[_aDn, _nT],
|
|
826
|
-
[() => AnomalyDetectorSummaryList, 0], 1
|
|
827
|
-
];
|
|
828
|
-
var ListRuleGroupsNamespacesRequest$ = [3, n0, _LRGNR,
|
|
829
|
-
0,
|
|
830
|
-
[_wI, _n, _nT, _mR],
|
|
831
|
-
[[0, 1], [0, { [_hQ]: _n }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
832
|
-
];
|
|
833
|
-
var ListRuleGroupsNamespacesResponse$ = [3, n0, _LRGNRi,
|
|
834
|
-
0,
|
|
835
|
-
[_rGNu, _nT],
|
|
836
|
-
[() => RuleGroupsNamespaceSummaryList, 0], 1
|
|
837
|
-
];
|
|
838
|
-
var ListScrapersRequest$ = [3, n0, _LSR,
|
|
839
|
-
0,
|
|
840
|
-
[_f, _nT, _mR],
|
|
841
|
-
[[[2, n0, _SF, 0, 0, 64 | 0], 64], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
842
|
-
];
|
|
843
|
-
var ListScrapersResponse$ = [3, n0, _LSRi,
|
|
844
|
-
0,
|
|
845
|
-
[_scr, _nT],
|
|
846
|
-
[() => ScraperSummaryList, 0], 1
|
|
847
|
-
];
|
|
848
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
849
|
-
0,
|
|
850
|
-
[_rA],
|
|
851
|
-
[[0, 1]], 1
|
|
852
|
-
];
|
|
853
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
854
|
-
0,
|
|
855
|
-
[_t],
|
|
856
|
-
[128 | 0]
|
|
857
|
-
];
|
|
858
|
-
var ListWorkspacesRequest$ = [3, n0, _LWR,
|
|
859
|
-
0,
|
|
860
|
-
[_nT, _al, _mR],
|
|
861
|
-
[[0, { [_hQ]: _nT }], [0, { [_hQ]: _al }], [1, { [_hQ]: _mR }]]
|
|
862
|
-
];
|
|
863
|
-
var ListWorkspacesResponse$ = [3, n0, _LWRi,
|
|
864
|
-
0,
|
|
865
|
-
[_wo, _nT],
|
|
866
|
-
[() => WorkspaceSummaryList, 0], 1
|
|
867
|
-
];
|
|
868
|
-
var LoggingConfigurationMetadata$ = [3, n0, _LCM,
|
|
869
|
-
0,
|
|
870
|
-
[_s, _w, _lGA, _cA, _mA],
|
|
871
|
-
[() => LoggingConfigurationStatus$, 0, 0, 4, 4], 5
|
|
872
|
-
];
|
|
873
|
-
var LoggingConfigurationStatus$ = [3, n0, _LCS,
|
|
874
|
-
0,
|
|
875
|
-
[_sC, _sR],
|
|
876
|
-
[0, 0], 1
|
|
877
|
-
];
|
|
878
|
-
var LoggingDestination$ = [3, n0, _LD,
|
|
879
|
-
0,
|
|
880
|
-
[_cWL, _f],
|
|
881
|
-
[() => CloudWatchLogDestination$, () => LoggingFilter$], 2
|
|
882
|
-
];
|
|
883
|
-
var LoggingFilter$ = [3, n0, _LF,
|
|
884
|
-
0,
|
|
885
|
-
[_qT],
|
|
886
|
-
[1], 1
|
|
887
|
-
];
|
|
888
|
-
var PutAlertManagerDefinitionRequest$ = [3, n0, _PAMDR,
|
|
889
|
-
0,
|
|
890
|
-
[_wI, _d, _cT],
|
|
891
|
-
[[0, 1], 21, [0, 4]], 2
|
|
892
|
-
];
|
|
893
|
-
var PutAlertManagerDefinitionResponse$ = [3, n0, _PAMDRu,
|
|
894
|
-
0,
|
|
895
|
-
[_s],
|
|
896
|
-
[() => AlertManagerDefinitionStatus$], 1
|
|
897
|
-
];
|
|
898
|
-
var PutAnomalyDetectorRequest$ = [3, n0, _PADR,
|
|
899
|
-
0,
|
|
900
|
-
[_wI, _aDI, _co, _eIIS, _mDA, _l, _cT],
|
|
901
|
-
[[0, 1], [0, 1], () => AnomalyDetectorConfiguration$, 1, () => AnomalyDetectorMissingDataAction$, 128 | 0, [0, 4]], 3
|
|
902
|
-
];
|
|
903
|
-
var PutAnomalyDetectorResponse$ = [3, n0, _PADRu,
|
|
904
|
-
0,
|
|
905
|
-
[_aDI, _a, _s, _t],
|
|
906
|
-
[0, 0, () => AnomalyDetectorStatus$, 128 | 0], 3
|
|
907
|
-
];
|
|
908
|
-
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
909
|
-
0,
|
|
910
|
-
[_wI, _pD, _cT, _rIe],
|
|
911
|
-
[[0, 1], 0, [0, 4], 0], 2
|
|
912
|
-
];
|
|
913
|
-
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
914
|
-
0,
|
|
915
|
-
[_pS, _rIe],
|
|
916
|
-
[0, 0], 2
|
|
917
|
-
];
|
|
918
|
-
var PutRuleGroupsNamespaceRequest$ = [3, n0, _PRGNR,
|
|
919
|
-
0,
|
|
920
|
-
[_wI, _n, _d, _cT],
|
|
921
|
-
[[0, 1], [0, 1], 21, [0, 4]], 3
|
|
922
|
-
];
|
|
923
|
-
var PutRuleGroupsNamespaceResponse$ = [3, n0, _PRGNRu,
|
|
924
|
-
0,
|
|
925
|
-
[_n, _a, _s, _t],
|
|
926
|
-
[0, 0, () => RuleGroupsNamespaceStatus$, 128 | 0], 3
|
|
927
|
-
];
|
|
928
|
-
var QueryLoggingConfigurationMetadata$ = [3, n0, _QLCM,
|
|
929
|
-
0,
|
|
930
|
-
[_s, _w, _de, _cA, _mA],
|
|
931
|
-
[() => QueryLoggingConfigurationStatus$, 0, () => LoggingDestinations, 4, 4], 5
|
|
932
|
-
];
|
|
933
|
-
var QueryLoggingConfigurationStatus$ = [3, n0, _QLCS,
|
|
934
|
-
0,
|
|
935
|
-
[_sC, _sR],
|
|
936
|
-
[0, 0], 1
|
|
937
|
-
];
|
|
938
|
-
var RandomCutForestConfiguration$ = [3, n0, _RCFC,
|
|
939
|
-
0,
|
|
940
|
-
[_q, _sS, _sSa, _iNEFA, _iNEFB],
|
|
941
|
-
[0, 1, 1, () => IgnoreNearExpected$, () => IgnoreNearExpected$], 1
|
|
942
|
-
];
|
|
943
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
944
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
945
|
-
[_m, _rI, _rT],
|
|
946
|
-
[0, 0, 0], 3
|
|
947
|
-
];
|
|
948
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
949
|
-
var RoleConfiguration$ = [3, n0, _RC,
|
|
950
|
-
0,
|
|
951
|
-
[_sRA, _tRA],
|
|
952
|
-
[0, 0]
|
|
953
|
-
];
|
|
954
|
-
var RuleGroupsNamespaceDescription$ = [3, n0, _RGND,
|
|
955
|
-
0,
|
|
956
|
-
[_a, _n, _s, _d, _cA, _mA, _t],
|
|
957
|
-
[0, 0, () => RuleGroupsNamespaceStatus$, 21, 4, 4, 128 | 0], 6
|
|
958
|
-
];
|
|
959
|
-
var RuleGroupsNamespaceStatus$ = [3, n0, _RGNS,
|
|
960
|
-
0,
|
|
961
|
-
[_sC, _sR],
|
|
962
|
-
[0, 0], 1
|
|
963
|
-
];
|
|
964
|
-
var RuleGroupsNamespaceSummary$ = [3, n0, _RGNSu,
|
|
965
|
-
0,
|
|
966
|
-
[_a, _n, _s, _cA, _mA, _t],
|
|
967
|
-
[0, 0, () => RuleGroupsNamespaceStatus$, 4, 4, 128 | 0], 5
|
|
968
|
-
];
|
|
969
|
-
var ScraperComponent$ = [3, n0, _SC,
|
|
970
|
-
0,
|
|
971
|
-
[_ty, _con],
|
|
972
|
-
[0, () => ComponentConfig$], 1
|
|
973
|
-
];
|
|
974
|
-
var ScraperDescription$ = [3, n0, _SD,
|
|
975
|
-
0,
|
|
976
|
-
[_sI, _a, _rAo, _s, _cA, _lMA, _sCc, _so, _des, _al, _t, _sR, _rC],
|
|
977
|
-
[0, 0, 0, () => ScraperStatus$, 4, 4, () => ScrapeConfiguration$, () => Source$, () => Destination$, 0, 128 | 0, 0, () => RoleConfiguration$], 9
|
|
978
|
-
];
|
|
979
|
-
var ScraperLoggingConfigurationStatus$ = [3, n0, _SLCS,
|
|
980
|
-
0,
|
|
981
|
-
[_sC, _sR],
|
|
982
|
-
[0, 0], 1
|
|
983
|
-
];
|
|
984
|
-
var ScraperStatus$ = [3, n0, _SS,
|
|
985
|
-
0,
|
|
986
|
-
[_sC],
|
|
987
|
-
[0], 1
|
|
988
|
-
];
|
|
989
|
-
var ScraperSummary$ = [3, n0, _SSc,
|
|
990
|
-
0,
|
|
991
|
-
[_sI, _a, _rAo, _s, _cA, _lMA, _so, _des, _al, _t, _sR, _rC],
|
|
992
|
-
[0, 0, 0, () => ScraperStatus$, 4, 4, () => Source$, () => Destination$, 0, 128 | 0, 0, () => RoleConfiguration$], 8
|
|
993
|
-
];
|
|
994
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
995
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
996
|
-
[_m, _rI, _rT, _sCe, _qC],
|
|
997
|
-
[0, 0, 0, 0, 0], 5
|
|
998
|
-
];
|
|
999
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1000
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1001
|
-
0,
|
|
1002
|
-
[_rA, _t],
|
|
1003
|
-
[[0, 1], 128 | 0], 2
|
|
1004
|
-
];
|
|
1005
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1006
|
-
0,
|
|
1007
|
-
[],
|
|
1008
|
-
[]
|
|
1009
|
-
];
|
|
1010
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1011
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1012
|
-
[_m, _sCe, _qC, _rAS],
|
|
1013
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
1014
|
-
];
|
|
1015
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1016
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1017
|
-
0,
|
|
1018
|
-
[_rA, _tK],
|
|
1019
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1020
|
-
];
|
|
1021
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1022
|
-
0,
|
|
1023
|
-
[],
|
|
1024
|
-
[]
|
|
1025
|
-
];
|
|
1026
|
-
var UpdateLoggingConfigurationRequest$ = [3, n0, _ULCR,
|
|
1027
|
-
0,
|
|
1028
|
-
[_wI, _lGA, _cT],
|
|
1029
|
-
[[0, 1], 0, [0, 4]], 2
|
|
1030
|
-
];
|
|
1031
|
-
var UpdateLoggingConfigurationResponse$ = [3, n0, _ULCRp,
|
|
1032
|
-
0,
|
|
1033
|
-
[_s],
|
|
1034
|
-
[() => LoggingConfigurationStatus$], 1
|
|
1035
|
-
];
|
|
1036
|
-
var UpdateQueryLoggingConfigurationRequest$ = [3, n0, _UQLCR,
|
|
1037
|
-
0,
|
|
1038
|
-
[_wI, _de, _cT],
|
|
1039
|
-
[[0, 1], () => LoggingDestinations, [0, 4]], 2
|
|
1040
|
-
];
|
|
1041
|
-
var UpdateQueryLoggingConfigurationResponse$ = [3, n0, _UQLCRp,
|
|
1042
|
-
0,
|
|
1043
|
-
[_s],
|
|
1044
|
-
[() => QueryLoggingConfigurationStatus$], 1
|
|
1045
|
-
];
|
|
1046
|
-
var UpdateScraperLoggingConfigurationRequest$ = [3, n0, _USLCR,
|
|
1047
|
-
0,
|
|
1048
|
-
[_sI, _lD, _sCcr],
|
|
1049
|
-
[[0, 1], () => ScraperLoggingDestination$, () => ScraperComponents], 2
|
|
1050
|
-
];
|
|
1051
|
-
var UpdateScraperLoggingConfigurationResponse$ = [3, n0, _USLCRp,
|
|
1052
|
-
0,
|
|
1053
|
-
[_s],
|
|
1054
|
-
[() => ScraperLoggingConfigurationStatus$], 1
|
|
1055
|
-
];
|
|
1056
|
-
var UpdateScraperRequest$ = [3, n0, _USR,
|
|
1057
|
-
0,
|
|
1058
|
-
[_sI, _al, _sCc, _des, _rC, _cT],
|
|
1059
|
-
[[0, 1], 0, () => ScrapeConfiguration$, () => Destination$, () => RoleConfiguration$, [0, 4]], 1
|
|
1060
|
-
];
|
|
1061
|
-
var UpdateScraperResponse$ = [3, n0, _USRp,
|
|
1062
|
-
0,
|
|
1063
|
-
[_sI, _a, _s, _t],
|
|
1064
|
-
[0, 0, () => ScraperStatus$, 128 | 0], 3
|
|
1065
|
-
];
|
|
1066
|
-
var UpdateWorkspaceAliasRequest$ = [3, n0, _UWAR,
|
|
1067
|
-
0,
|
|
1068
|
-
[_wI, _al, _cT],
|
|
1069
|
-
[[0, 1], 0, [0, 4]], 1
|
|
1070
|
-
];
|
|
1071
|
-
var UpdateWorkspaceConfigurationRequest$ = [3, n0, _UWCR,
|
|
1072
|
-
0,
|
|
1073
|
-
[_wI, _cT, _lPLS, _rPID],
|
|
1074
|
-
[[0, 1], [0, 4], () => LimitsPerLabelSetList, 1], 1
|
|
1075
|
-
];
|
|
1076
|
-
var UpdateWorkspaceConfigurationResponse$ = [3, n0, _UWCRp,
|
|
1077
|
-
0,
|
|
1078
|
-
[_s],
|
|
1079
|
-
[() => WorkspaceConfigurationStatus$], 1
|
|
1080
|
-
];
|
|
1081
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1082
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1083
|
-
[_m, _r, _fL],
|
|
1084
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
1085
|
-
];
|
|
1086
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1087
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1088
|
-
0,
|
|
1089
|
-
[_n, _m],
|
|
1090
|
-
[0, 0], 2
|
|
1091
|
-
];
|
|
1092
|
-
var VpcConfiguration$ = [3, n0, _VC,
|
|
1093
|
-
0,
|
|
1094
|
-
[_sGI, _sIu],
|
|
1095
|
-
[64 | 0, 64 | 0], 2
|
|
1096
|
-
];
|
|
1097
|
-
var WorkspaceConfigurationDescription$ = [3, n0, _WCD,
|
|
1098
|
-
0,
|
|
1099
|
-
[_s, _lPLS, _rPID],
|
|
1100
|
-
[() => WorkspaceConfigurationStatus$, () => LimitsPerLabelSetList, 1], 1
|
|
1101
|
-
];
|
|
1102
|
-
var WorkspaceConfigurationStatus$ = [3, n0, _WCS,
|
|
1103
|
-
0,
|
|
1104
|
-
[_sC, _sR],
|
|
1105
|
-
[0, 0], 1
|
|
1106
|
-
];
|
|
1107
|
-
var WorkspaceDescription$ = [3, n0, _WD,
|
|
1108
|
-
0,
|
|
1109
|
-
[_wI, _a, _s, _cA, _al, _pE, _t, _kKA],
|
|
1110
|
-
[0, 0, () => WorkspaceStatus$, 4, 0, 0, 128 | 0, 0], 4
|
|
1111
|
-
];
|
|
1112
|
-
var WorkspaceStatus$ = [3, n0, _WS,
|
|
1113
|
-
0,
|
|
1114
|
-
[_sC],
|
|
1115
|
-
[0], 1
|
|
1116
|
-
];
|
|
1117
|
-
var WorkspaceSummary$ = [3, n0, _WSo,
|
|
1118
|
-
0,
|
|
1119
|
-
[_wI, _a, _s, _cA, _al, _t, _kKA],
|
|
1120
|
-
[0, 0, () => WorkspaceStatus$, 4, 0, 128 | 0, 0], 4
|
|
1121
|
-
];
|
|
1122
|
-
var __Unit = "unit";
|
|
1123
|
-
var AmpServiceException$ = [-3, _sm, "AmpServiceException", 0, [], []];
|
|
1124
|
-
schema.TypeRegistry.for(_sm).registerError(AmpServiceException$, AmpServiceException);
|
|
1125
|
-
var AnomalyDetectorSummaryList = [1, n0, _ADSL,
|
|
1126
|
-
0, () => AnomalyDetectorSummary$
|
|
1127
|
-
];
|
|
1128
|
-
var LimitsPerLabelSetList = [1, n0, _LPLSL,
|
|
1129
|
-
0, () => LimitsPerLabelSet$
|
|
1130
|
-
];
|
|
1131
|
-
var LoggingDestinations = [1, n0, _LDo,
|
|
1132
|
-
0, () => LoggingDestination$
|
|
1133
|
-
];
|
|
1134
|
-
var RuleGroupsNamespaceSummaryList = [1, n0, _RGNSL,
|
|
1135
|
-
0, () => RuleGroupsNamespaceSummary$
|
|
1136
|
-
];
|
|
1137
|
-
var ScraperComponents = [1, n0, _SCc,
|
|
1138
|
-
0, () => ScraperComponent$
|
|
1139
|
-
];
|
|
1140
|
-
var ScraperSummaryList = [1, n0, _SSL,
|
|
1141
|
-
0, () => ScraperSummary$
|
|
1142
|
-
];
|
|
1143
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1144
|
-
0, () => ValidationExceptionField$
|
|
1145
|
-
];
|
|
1146
|
-
var WorkspaceSummaryList = [1, n0, _WSL,
|
|
1147
|
-
0, () => WorkspaceSummary$
|
|
1148
|
-
];
|
|
1149
|
-
var AnomalyDetectorConfiguration$ = [4, n0, _ADC,
|
|
1150
|
-
0,
|
|
1151
|
-
[_rCF],
|
|
1152
|
-
[() => RandomCutForestConfiguration$]
|
|
1153
|
-
];
|
|
1154
|
-
var AnomalyDetectorMissingDataAction$ = [4, n0, _ADMDA,
|
|
1155
|
-
0,
|
|
1156
|
-
[_mAA, _sk],
|
|
1157
|
-
[2, 2]
|
|
1158
|
-
];
|
|
1159
|
-
var Destination$ = [4, n0, _D,
|
|
1160
|
-
0,
|
|
1161
|
-
[_aC],
|
|
1162
|
-
[() => AmpConfiguration$]
|
|
1163
|
-
];
|
|
1164
|
-
var IgnoreNearExpected$ = [4, n0, _INE,
|
|
1165
|
-
0,
|
|
1166
|
-
[_am, _ra],
|
|
1167
|
-
[1, 1]
|
|
1168
|
-
];
|
|
1169
|
-
var ScrapeConfiguration$ = [4, n0, _SCcr,
|
|
1170
|
-
0,
|
|
1171
|
-
[_cB],
|
|
1172
|
-
[21]
|
|
1173
|
-
];
|
|
1174
|
-
var ScraperLoggingDestination$ = [4, n0, _SLD,
|
|
1175
|
-
0,
|
|
1176
|
-
[_cWL],
|
|
1177
|
-
[() => CloudWatchLogDestination$]
|
|
1178
|
-
];
|
|
1179
|
-
var Source$ = [4, n0, _S,
|
|
1180
|
-
0,
|
|
1181
|
-
[_eC, _vC],
|
|
1182
|
-
[() => EksConfiguration$, () => VpcConfiguration$]
|
|
1183
|
-
];
|
|
1184
|
-
var CreateAlertManagerDefinition$ = [9, n0, _CAMD,
|
|
1185
|
-
{ [_h]: ["POST", "/workspaces/{workspaceId}/alertmanager/definition", 202] }, () => CreateAlertManagerDefinitionRequest$, () => CreateAlertManagerDefinitionResponse$
|
|
1186
|
-
];
|
|
1187
|
-
var CreateAnomalyDetector$ = [9, n0, _CAD,
|
|
1188
|
-
{ [_h]: ["POST", "/workspaces/{workspaceId}/anomalydetectors", 202] }, () => CreateAnomalyDetectorRequest$, () => CreateAnomalyDetectorResponse$
|
|
1189
|
-
];
|
|
1190
|
-
var CreateLoggingConfiguration$ = [9, n0, _CLC,
|
|
1191
|
-
{ [_h]: ["POST", "/workspaces/{workspaceId}/logging", 202] }, () => CreateLoggingConfigurationRequest$, () => CreateLoggingConfigurationResponse$
|
|
1192
|
-
];
|
|
1193
|
-
var CreateQueryLoggingConfiguration$ = [9, n0, _CQLC,
|
|
1194
|
-
{ [_h]: ["POST", "/workspaces/{workspaceId}/logging/query", 202] }, () => CreateQueryLoggingConfigurationRequest$, () => CreateQueryLoggingConfigurationResponse$
|
|
1195
|
-
];
|
|
1196
|
-
var CreateRuleGroupsNamespace$ = [9, n0, _CRGN,
|
|
1197
|
-
{ [_h]: ["POST", "/workspaces/{workspaceId}/rulegroupsnamespaces", 202] }, () => CreateRuleGroupsNamespaceRequest$, () => CreateRuleGroupsNamespaceResponse$
|
|
1198
|
-
];
|
|
1199
|
-
var CreateScraper$ = [9, n0, _CS,
|
|
1200
|
-
{ [_h]: ["POST", "/scrapers", 202] }, () => CreateScraperRequest$, () => CreateScraperResponse$
|
|
1201
|
-
];
|
|
1202
|
-
var CreateWorkspace$ = [9, n0, _CW,
|
|
1203
|
-
{ [_h]: ["POST", "/workspaces", 202] }, () => CreateWorkspaceRequest$, () => CreateWorkspaceResponse$
|
|
1204
|
-
];
|
|
1205
|
-
var DeleteAlertManagerDefinition$ = [9, n0, _DAMD,
|
|
1206
|
-
{ [_h]: ["DELETE", "/workspaces/{workspaceId}/alertmanager/definition", 202] }, () => DeleteAlertManagerDefinitionRequest$, () => __Unit
|
|
1207
|
-
];
|
|
1208
|
-
var DeleteAnomalyDetector$ = [9, n0, _DAD,
|
|
1209
|
-
{ [_h]: ["DELETE", "/workspaces/{workspaceId}/anomalydetectors/{anomalyDetectorId}", 202] }, () => DeleteAnomalyDetectorRequest$, () => __Unit
|
|
1210
|
-
];
|
|
1211
|
-
var DeleteLoggingConfiguration$ = [9, n0, _DLC,
|
|
1212
|
-
{ [_h]: ["DELETE", "/workspaces/{workspaceId}/logging", 202] }, () => DeleteLoggingConfigurationRequest$, () => __Unit
|
|
1213
|
-
];
|
|
1214
|
-
var DeleteQueryLoggingConfiguration$ = [9, n0, _DQLC,
|
|
1215
|
-
{ [_h]: ["DELETE", "/workspaces/{workspaceId}/logging/query", 202] }, () => DeleteQueryLoggingConfigurationRequest$, () => __Unit
|
|
1216
|
-
];
|
|
1217
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1218
|
-
{ [_h]: ["DELETE", "/workspaces/{workspaceId}/policy", 202] }, () => DeleteResourcePolicyRequest$, () => __Unit
|
|
1219
|
-
];
|
|
1220
|
-
var DeleteRuleGroupsNamespace$ = [9, n0, _DRGN,
|
|
1221
|
-
{ [_h]: ["DELETE", "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}", 202] }, () => DeleteRuleGroupsNamespaceRequest$, () => __Unit
|
|
1222
|
-
];
|
|
1223
|
-
var DeleteScraper$ = [9, n0, _DS,
|
|
1224
|
-
{ [_h]: ["DELETE", "/scrapers/{scraperId}", 202] }, () => DeleteScraperRequest$, () => DeleteScraperResponse$
|
|
1225
|
-
];
|
|
1226
|
-
var DeleteScraperLoggingConfiguration$ = [9, n0, _DSLC,
|
|
1227
|
-
{ [_h]: ["DELETE", "/scrapers/{scraperId}/logging-configuration", 202] }, () => DeleteScraperLoggingConfigurationRequest$, () => __Unit
|
|
1228
|
-
];
|
|
1229
|
-
var DeleteWorkspace$ = [9, n0, _DW,
|
|
1230
|
-
{ [_h]: ["DELETE", "/workspaces/{workspaceId}", 202] }, () => DeleteWorkspaceRequest$, () => __Unit
|
|
1231
|
-
];
|
|
1232
|
-
var DescribeAlertManagerDefinition$ = [9, n0, _DAMDe,
|
|
1233
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/alertmanager/definition", 200] }, () => DescribeAlertManagerDefinitionRequest$, () => DescribeAlertManagerDefinitionResponse$
|
|
1234
|
-
];
|
|
1235
|
-
var DescribeAnomalyDetector$ = [9, n0, _DADe,
|
|
1236
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/anomalydetectors/{anomalyDetectorId}", 200] }, () => DescribeAnomalyDetectorRequest$, () => DescribeAnomalyDetectorResponse$
|
|
1237
|
-
];
|
|
1238
|
-
var DescribeLoggingConfiguration$ = [9, n0, _DLCe,
|
|
1239
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/logging", 200] }, () => DescribeLoggingConfigurationRequest$, () => DescribeLoggingConfigurationResponse$
|
|
1240
|
-
];
|
|
1241
|
-
var DescribeQueryLoggingConfiguration$ = [9, n0, _DQLCe,
|
|
1242
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/logging/query", 200] }, () => DescribeQueryLoggingConfigurationRequest$, () => DescribeQueryLoggingConfigurationResponse$
|
|
1243
|
-
];
|
|
1244
|
-
var DescribeResourcePolicy$ = [9, n0, _DRPe,
|
|
1245
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/policy", 200] }, () => DescribeResourcePolicyRequest$, () => DescribeResourcePolicyResponse$
|
|
1246
|
-
];
|
|
1247
|
-
var DescribeRuleGroupsNamespace$ = [9, n0, _DRGNe,
|
|
1248
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}", 200] }, () => DescribeRuleGroupsNamespaceRequest$, () => DescribeRuleGroupsNamespaceResponse$
|
|
1249
|
-
];
|
|
1250
|
-
var DescribeScraper$ = [9, n0, _DSe,
|
|
1251
|
-
{ [_h]: ["GET", "/scrapers/{scraperId}", 200] }, () => DescribeScraperRequest$, () => DescribeScraperResponse$
|
|
1252
|
-
];
|
|
1253
|
-
var DescribeScraperLoggingConfiguration$ = [9, n0, _DSLCe,
|
|
1254
|
-
{ [_h]: ["GET", "/scrapers/{scraperId}/logging-configuration", 200] }, () => DescribeScraperLoggingConfigurationRequest$, () => DescribeScraperLoggingConfigurationResponse$
|
|
1255
|
-
];
|
|
1256
|
-
var DescribeWorkspace$ = [9, n0, _DWe,
|
|
1257
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}", 200] }, () => DescribeWorkspaceRequest$, () => DescribeWorkspaceResponse$
|
|
1258
|
-
];
|
|
1259
|
-
var DescribeWorkspaceConfiguration$ = [9, n0, _DWC,
|
|
1260
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/configuration", 200] }, () => DescribeWorkspaceConfigurationRequest$, () => DescribeWorkspaceConfigurationResponse$
|
|
1261
|
-
];
|
|
1262
|
-
var GetDefaultScraperConfiguration$ = [9, n0, _GDSC,
|
|
1263
|
-
{ [_h]: ["GET", "/scraperconfiguration", 200] }, () => GetDefaultScraperConfigurationRequest$, () => GetDefaultScraperConfigurationResponse$
|
|
1264
|
-
];
|
|
1265
|
-
var ListAnomalyDetectors$ = [9, n0, _LAD,
|
|
1266
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/anomalydetectors", 200] }, () => ListAnomalyDetectorsRequest$, () => ListAnomalyDetectorsResponse$
|
|
1267
|
-
];
|
|
1268
|
-
var ListRuleGroupsNamespaces$ = [9, n0, _LRGN,
|
|
1269
|
-
{ [_h]: ["GET", "/workspaces/{workspaceId}/rulegroupsnamespaces", 200] }, () => ListRuleGroupsNamespacesRequest$, () => ListRuleGroupsNamespacesResponse$
|
|
1270
|
-
];
|
|
1271
|
-
var ListScrapers$ = [9, n0, _LS,
|
|
1272
|
-
{ [_h]: ["GET", "/scrapers", 200] }, () => ListScrapersRequest$, () => ListScrapersResponse$
|
|
1273
|
-
];
|
|
1274
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1275
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1276
|
-
];
|
|
1277
|
-
var ListWorkspaces$ = [9, n0, _LW,
|
|
1278
|
-
{ [_h]: ["GET", "/workspaces", 200] }, () => ListWorkspacesRequest$, () => ListWorkspacesResponse$
|
|
1279
|
-
];
|
|
1280
|
-
var PutAlertManagerDefinition$ = [9, n0, _PAMD,
|
|
1281
|
-
{ [_h]: ["PUT", "/workspaces/{workspaceId}/alertmanager/definition", 202] }, () => PutAlertManagerDefinitionRequest$, () => PutAlertManagerDefinitionResponse$
|
|
1282
|
-
];
|
|
1283
|
-
var PutAnomalyDetector$ = [9, n0, _PAD,
|
|
1284
|
-
{ [_h]: ["PUT", "/workspaces/{workspaceId}/anomalydetectors/{anomalyDetectorId}", 202] }, () => PutAnomalyDetectorRequest$, () => PutAnomalyDetectorResponse$
|
|
1285
|
-
];
|
|
1286
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1287
|
-
{ [_h]: ["PUT", "/workspaces/{workspaceId}/policy", 202] }, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
1288
|
-
];
|
|
1289
|
-
var PutRuleGroupsNamespace$ = [9, n0, _PRGN,
|
|
1290
|
-
{ [_h]: ["PUT", "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}", 202] }, () => PutRuleGroupsNamespaceRequest$, () => PutRuleGroupsNamespaceResponse$
|
|
1291
|
-
];
|
|
1292
|
-
var TagResource$ = [9, n0, _TR,
|
|
1293
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1294
|
-
];
|
|
1295
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1296
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1297
|
-
];
|
|
1298
|
-
var UpdateLoggingConfiguration$ = [9, n0, _ULC,
|
|
1299
|
-
{ [_h]: ["PUT", "/workspaces/{workspaceId}/logging", 202] }, () => UpdateLoggingConfigurationRequest$, () => UpdateLoggingConfigurationResponse$
|
|
1300
|
-
];
|
|
1301
|
-
var UpdateQueryLoggingConfiguration$ = [9, n0, _UQLC,
|
|
1302
|
-
{ [_h]: ["PUT", "/workspaces/{workspaceId}/logging/query", 202] }, () => UpdateQueryLoggingConfigurationRequest$, () => UpdateQueryLoggingConfigurationResponse$
|
|
1303
|
-
];
|
|
1304
|
-
var UpdateScraper$ = [9, n0, _US,
|
|
1305
|
-
{ [_h]: ["PUT", "/scrapers/{scraperId}", 202] }, () => UpdateScraperRequest$, () => UpdateScraperResponse$
|
|
1306
|
-
];
|
|
1307
|
-
var UpdateScraperLoggingConfiguration$ = [9, n0, _USLC,
|
|
1308
|
-
{ [_h]: ["PUT", "/scrapers/{scraperId}/logging-configuration", 202] }, () => UpdateScraperLoggingConfigurationRequest$, () => UpdateScraperLoggingConfigurationResponse$
|
|
1309
|
-
];
|
|
1310
|
-
var UpdateWorkspaceAlias$ = [9, n0, _UWA,
|
|
1311
|
-
{ [_h]: ["POST", "/workspaces/{workspaceId}/alias", 204] }, () => UpdateWorkspaceAliasRequest$, () => __Unit
|
|
1312
|
-
];
|
|
1313
|
-
var UpdateWorkspaceConfiguration$ = [9, n0, _UWC,
|
|
1314
|
-
{ [_h]: ["PATCH", "/workspaces/{workspaceId}/configuration", 202] }, () => UpdateWorkspaceConfigurationRequest$, () => UpdateWorkspaceConfigurationResponse$
|
|
1315
|
-
];
|
|
1316
|
-
|
|
1317
117
|
class CreateAlertManagerDefinitionCommand extends smithyClient.Command
|
|
1318
118
|
.classBuilder()
|
|
1319
119
|
.ep(commonParams)
|
|
@@ -1322,7 +122,7 @@ class CreateAlertManagerDefinitionCommand extends smithyClient.Command
|
|
|
1322
122
|
})
|
|
1323
123
|
.s("AmazonPrometheusService", "CreateAlertManagerDefinition", {})
|
|
1324
124
|
.n("AmpClient", "CreateAlertManagerDefinitionCommand")
|
|
1325
|
-
.sc(CreateAlertManagerDefinition$)
|
|
125
|
+
.sc(schemas_0.CreateAlertManagerDefinition$)
|
|
1326
126
|
.build() {
|
|
1327
127
|
}
|
|
1328
128
|
|
|
@@ -1334,7 +134,7 @@ class CreateAnomalyDetectorCommand extends smithyClient.Command
|
|
|
1334
134
|
})
|
|
1335
135
|
.s("AmazonPrometheusService", "CreateAnomalyDetector", {})
|
|
1336
136
|
.n("AmpClient", "CreateAnomalyDetectorCommand")
|
|
1337
|
-
.sc(CreateAnomalyDetector$)
|
|
137
|
+
.sc(schemas_0.CreateAnomalyDetector$)
|
|
1338
138
|
.build() {
|
|
1339
139
|
}
|
|
1340
140
|
|
|
@@ -1346,7 +146,7 @@ class CreateLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1346
146
|
})
|
|
1347
147
|
.s("AmazonPrometheusService", "CreateLoggingConfiguration", {})
|
|
1348
148
|
.n("AmpClient", "CreateLoggingConfigurationCommand")
|
|
1349
|
-
.sc(CreateLoggingConfiguration$)
|
|
149
|
+
.sc(schemas_0.CreateLoggingConfiguration$)
|
|
1350
150
|
.build() {
|
|
1351
151
|
}
|
|
1352
152
|
|
|
@@ -1358,7 +158,7 @@ class CreateQueryLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1358
158
|
})
|
|
1359
159
|
.s("AmazonPrometheusService", "CreateQueryLoggingConfiguration", {})
|
|
1360
160
|
.n("AmpClient", "CreateQueryLoggingConfigurationCommand")
|
|
1361
|
-
.sc(CreateQueryLoggingConfiguration$)
|
|
161
|
+
.sc(schemas_0.CreateQueryLoggingConfiguration$)
|
|
1362
162
|
.build() {
|
|
1363
163
|
}
|
|
1364
164
|
|
|
@@ -1370,7 +170,7 @@ class CreateRuleGroupsNamespaceCommand extends smithyClient.Command
|
|
|
1370
170
|
})
|
|
1371
171
|
.s("AmazonPrometheusService", "CreateRuleGroupsNamespace", {})
|
|
1372
172
|
.n("AmpClient", "CreateRuleGroupsNamespaceCommand")
|
|
1373
|
-
.sc(CreateRuleGroupsNamespace$)
|
|
173
|
+
.sc(schemas_0.CreateRuleGroupsNamespace$)
|
|
1374
174
|
.build() {
|
|
1375
175
|
}
|
|
1376
176
|
|
|
@@ -1382,7 +182,7 @@ class CreateScraperCommand extends smithyClient.Command
|
|
|
1382
182
|
})
|
|
1383
183
|
.s("AmazonPrometheusService", "CreateScraper", {})
|
|
1384
184
|
.n("AmpClient", "CreateScraperCommand")
|
|
1385
|
-
.sc(CreateScraper$)
|
|
185
|
+
.sc(schemas_0.CreateScraper$)
|
|
1386
186
|
.build() {
|
|
1387
187
|
}
|
|
1388
188
|
|
|
@@ -1394,7 +194,7 @@ class CreateWorkspaceCommand extends smithyClient.Command
|
|
|
1394
194
|
})
|
|
1395
195
|
.s("AmazonPrometheusService", "CreateWorkspace", {})
|
|
1396
196
|
.n("AmpClient", "CreateWorkspaceCommand")
|
|
1397
|
-
.sc(CreateWorkspace$)
|
|
197
|
+
.sc(schemas_0.CreateWorkspace$)
|
|
1398
198
|
.build() {
|
|
1399
199
|
}
|
|
1400
200
|
|
|
@@ -1406,7 +206,7 @@ class DeleteAlertManagerDefinitionCommand extends smithyClient.Command
|
|
|
1406
206
|
})
|
|
1407
207
|
.s("AmazonPrometheusService", "DeleteAlertManagerDefinition", {})
|
|
1408
208
|
.n("AmpClient", "DeleteAlertManagerDefinitionCommand")
|
|
1409
|
-
.sc(DeleteAlertManagerDefinition$)
|
|
209
|
+
.sc(schemas_0.DeleteAlertManagerDefinition$)
|
|
1410
210
|
.build() {
|
|
1411
211
|
}
|
|
1412
212
|
|
|
@@ -1418,7 +218,7 @@ class DeleteAnomalyDetectorCommand extends smithyClient.Command
|
|
|
1418
218
|
})
|
|
1419
219
|
.s("AmazonPrometheusService", "DeleteAnomalyDetector", {})
|
|
1420
220
|
.n("AmpClient", "DeleteAnomalyDetectorCommand")
|
|
1421
|
-
.sc(DeleteAnomalyDetector$)
|
|
221
|
+
.sc(schemas_0.DeleteAnomalyDetector$)
|
|
1422
222
|
.build() {
|
|
1423
223
|
}
|
|
1424
224
|
|
|
@@ -1430,7 +230,7 @@ class DeleteLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1430
230
|
})
|
|
1431
231
|
.s("AmazonPrometheusService", "DeleteLoggingConfiguration", {})
|
|
1432
232
|
.n("AmpClient", "DeleteLoggingConfigurationCommand")
|
|
1433
|
-
.sc(DeleteLoggingConfiguration$)
|
|
233
|
+
.sc(schemas_0.DeleteLoggingConfiguration$)
|
|
1434
234
|
.build() {
|
|
1435
235
|
}
|
|
1436
236
|
|
|
@@ -1442,7 +242,7 @@ class DeleteQueryLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1442
242
|
})
|
|
1443
243
|
.s("AmazonPrometheusService", "DeleteQueryLoggingConfiguration", {})
|
|
1444
244
|
.n("AmpClient", "DeleteQueryLoggingConfigurationCommand")
|
|
1445
|
-
.sc(DeleteQueryLoggingConfiguration$)
|
|
245
|
+
.sc(schemas_0.DeleteQueryLoggingConfiguration$)
|
|
1446
246
|
.build() {
|
|
1447
247
|
}
|
|
1448
248
|
|
|
@@ -1454,7 +254,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
1454
254
|
})
|
|
1455
255
|
.s("AmazonPrometheusService", "DeleteResourcePolicy", {})
|
|
1456
256
|
.n("AmpClient", "DeleteResourcePolicyCommand")
|
|
1457
|
-
.sc(DeleteResourcePolicy$)
|
|
257
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
1458
258
|
.build() {
|
|
1459
259
|
}
|
|
1460
260
|
|
|
@@ -1466,7 +266,7 @@ class DeleteRuleGroupsNamespaceCommand extends smithyClient.Command
|
|
|
1466
266
|
})
|
|
1467
267
|
.s("AmazonPrometheusService", "DeleteRuleGroupsNamespace", {})
|
|
1468
268
|
.n("AmpClient", "DeleteRuleGroupsNamespaceCommand")
|
|
1469
|
-
.sc(DeleteRuleGroupsNamespace$)
|
|
269
|
+
.sc(schemas_0.DeleteRuleGroupsNamespace$)
|
|
1470
270
|
.build() {
|
|
1471
271
|
}
|
|
1472
272
|
|
|
@@ -1478,7 +278,7 @@ class DeleteScraperCommand extends smithyClient.Command
|
|
|
1478
278
|
})
|
|
1479
279
|
.s("AmazonPrometheusService", "DeleteScraper", {})
|
|
1480
280
|
.n("AmpClient", "DeleteScraperCommand")
|
|
1481
|
-
.sc(DeleteScraper$)
|
|
281
|
+
.sc(schemas_0.DeleteScraper$)
|
|
1482
282
|
.build() {
|
|
1483
283
|
}
|
|
1484
284
|
|
|
@@ -1490,7 +290,7 @@ class DeleteScraperLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1490
290
|
})
|
|
1491
291
|
.s("AmazonPrometheusService", "DeleteScraperLoggingConfiguration", {})
|
|
1492
292
|
.n("AmpClient", "DeleteScraperLoggingConfigurationCommand")
|
|
1493
|
-
.sc(DeleteScraperLoggingConfiguration$)
|
|
293
|
+
.sc(schemas_0.DeleteScraperLoggingConfiguration$)
|
|
1494
294
|
.build() {
|
|
1495
295
|
}
|
|
1496
296
|
|
|
@@ -1502,7 +302,7 @@ class DeleteWorkspaceCommand extends smithyClient.Command
|
|
|
1502
302
|
})
|
|
1503
303
|
.s("AmazonPrometheusService", "DeleteWorkspace", {})
|
|
1504
304
|
.n("AmpClient", "DeleteWorkspaceCommand")
|
|
1505
|
-
.sc(DeleteWorkspace$)
|
|
305
|
+
.sc(schemas_0.DeleteWorkspace$)
|
|
1506
306
|
.build() {
|
|
1507
307
|
}
|
|
1508
308
|
|
|
@@ -1514,7 +314,7 @@ class DescribeAlertManagerDefinitionCommand extends smithyClient.Command
|
|
|
1514
314
|
})
|
|
1515
315
|
.s("AmazonPrometheusService", "DescribeAlertManagerDefinition", {})
|
|
1516
316
|
.n("AmpClient", "DescribeAlertManagerDefinitionCommand")
|
|
1517
|
-
.sc(DescribeAlertManagerDefinition$)
|
|
317
|
+
.sc(schemas_0.DescribeAlertManagerDefinition$)
|
|
1518
318
|
.build() {
|
|
1519
319
|
}
|
|
1520
320
|
|
|
@@ -1526,7 +326,7 @@ class DescribeAnomalyDetectorCommand extends smithyClient.Command
|
|
|
1526
326
|
})
|
|
1527
327
|
.s("AmazonPrometheusService", "DescribeAnomalyDetector", {})
|
|
1528
328
|
.n("AmpClient", "DescribeAnomalyDetectorCommand")
|
|
1529
|
-
.sc(DescribeAnomalyDetector$)
|
|
329
|
+
.sc(schemas_0.DescribeAnomalyDetector$)
|
|
1530
330
|
.build() {
|
|
1531
331
|
}
|
|
1532
332
|
|
|
@@ -1538,7 +338,7 @@ class DescribeLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1538
338
|
})
|
|
1539
339
|
.s("AmazonPrometheusService", "DescribeLoggingConfiguration", {})
|
|
1540
340
|
.n("AmpClient", "DescribeLoggingConfigurationCommand")
|
|
1541
|
-
.sc(DescribeLoggingConfiguration$)
|
|
341
|
+
.sc(schemas_0.DescribeLoggingConfiguration$)
|
|
1542
342
|
.build() {
|
|
1543
343
|
}
|
|
1544
344
|
|
|
@@ -1550,7 +350,7 @@ class DescribeQueryLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1550
350
|
})
|
|
1551
351
|
.s("AmazonPrometheusService", "DescribeQueryLoggingConfiguration", {})
|
|
1552
352
|
.n("AmpClient", "DescribeQueryLoggingConfigurationCommand")
|
|
1553
|
-
.sc(DescribeQueryLoggingConfiguration$)
|
|
353
|
+
.sc(schemas_0.DescribeQueryLoggingConfiguration$)
|
|
1554
354
|
.build() {
|
|
1555
355
|
}
|
|
1556
356
|
|
|
@@ -1562,7 +362,7 @@ class DescribeResourcePolicyCommand extends smithyClient.Command
|
|
|
1562
362
|
})
|
|
1563
363
|
.s("AmazonPrometheusService", "DescribeResourcePolicy", {})
|
|
1564
364
|
.n("AmpClient", "DescribeResourcePolicyCommand")
|
|
1565
|
-
.sc(DescribeResourcePolicy$)
|
|
365
|
+
.sc(schemas_0.DescribeResourcePolicy$)
|
|
1566
366
|
.build() {
|
|
1567
367
|
}
|
|
1568
368
|
|
|
@@ -1574,7 +374,7 @@ class DescribeRuleGroupsNamespaceCommand extends smithyClient.Command
|
|
|
1574
374
|
})
|
|
1575
375
|
.s("AmazonPrometheusService", "DescribeRuleGroupsNamespace", {})
|
|
1576
376
|
.n("AmpClient", "DescribeRuleGroupsNamespaceCommand")
|
|
1577
|
-
.sc(DescribeRuleGroupsNamespace$)
|
|
377
|
+
.sc(schemas_0.DescribeRuleGroupsNamespace$)
|
|
1578
378
|
.build() {
|
|
1579
379
|
}
|
|
1580
380
|
|
|
@@ -1586,7 +386,7 @@ class DescribeScraperCommand extends smithyClient.Command
|
|
|
1586
386
|
})
|
|
1587
387
|
.s("AmazonPrometheusService", "DescribeScraper", {})
|
|
1588
388
|
.n("AmpClient", "DescribeScraperCommand")
|
|
1589
|
-
.sc(DescribeScraper$)
|
|
389
|
+
.sc(schemas_0.DescribeScraper$)
|
|
1590
390
|
.build() {
|
|
1591
391
|
}
|
|
1592
392
|
|
|
@@ -1598,7 +398,7 @@ class DescribeScraperLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1598
398
|
})
|
|
1599
399
|
.s("AmazonPrometheusService", "DescribeScraperLoggingConfiguration", {})
|
|
1600
400
|
.n("AmpClient", "DescribeScraperLoggingConfigurationCommand")
|
|
1601
|
-
.sc(DescribeScraperLoggingConfiguration$)
|
|
401
|
+
.sc(schemas_0.DescribeScraperLoggingConfiguration$)
|
|
1602
402
|
.build() {
|
|
1603
403
|
}
|
|
1604
404
|
|
|
@@ -1610,7 +410,7 @@ class DescribeWorkspaceCommand extends smithyClient.Command
|
|
|
1610
410
|
})
|
|
1611
411
|
.s("AmazonPrometheusService", "DescribeWorkspace", {})
|
|
1612
412
|
.n("AmpClient", "DescribeWorkspaceCommand")
|
|
1613
|
-
.sc(DescribeWorkspace$)
|
|
413
|
+
.sc(schemas_0.DescribeWorkspace$)
|
|
1614
414
|
.build() {
|
|
1615
415
|
}
|
|
1616
416
|
|
|
@@ -1622,7 +422,7 @@ class DescribeWorkspaceConfigurationCommand extends smithyClient.Command
|
|
|
1622
422
|
})
|
|
1623
423
|
.s("AmazonPrometheusService", "DescribeWorkspaceConfiguration", {})
|
|
1624
424
|
.n("AmpClient", "DescribeWorkspaceConfigurationCommand")
|
|
1625
|
-
.sc(DescribeWorkspaceConfiguration$)
|
|
425
|
+
.sc(schemas_0.DescribeWorkspaceConfiguration$)
|
|
1626
426
|
.build() {
|
|
1627
427
|
}
|
|
1628
428
|
|
|
@@ -1634,7 +434,7 @@ class GetDefaultScraperConfigurationCommand extends smithyClient.Command
|
|
|
1634
434
|
})
|
|
1635
435
|
.s("AmazonPrometheusService", "GetDefaultScraperConfiguration", {})
|
|
1636
436
|
.n("AmpClient", "GetDefaultScraperConfigurationCommand")
|
|
1637
|
-
.sc(GetDefaultScraperConfiguration$)
|
|
437
|
+
.sc(schemas_0.GetDefaultScraperConfiguration$)
|
|
1638
438
|
.build() {
|
|
1639
439
|
}
|
|
1640
440
|
|
|
@@ -1646,7 +446,7 @@ class ListAnomalyDetectorsCommand extends smithyClient.Command
|
|
|
1646
446
|
})
|
|
1647
447
|
.s("AmazonPrometheusService", "ListAnomalyDetectors", {})
|
|
1648
448
|
.n("AmpClient", "ListAnomalyDetectorsCommand")
|
|
1649
|
-
.sc(ListAnomalyDetectors$)
|
|
449
|
+
.sc(schemas_0.ListAnomalyDetectors$)
|
|
1650
450
|
.build() {
|
|
1651
451
|
}
|
|
1652
452
|
|
|
@@ -1658,7 +458,7 @@ class ListRuleGroupsNamespacesCommand extends smithyClient.Command
|
|
|
1658
458
|
})
|
|
1659
459
|
.s("AmazonPrometheusService", "ListRuleGroupsNamespaces", {})
|
|
1660
460
|
.n("AmpClient", "ListRuleGroupsNamespacesCommand")
|
|
1661
|
-
.sc(ListRuleGroupsNamespaces$)
|
|
461
|
+
.sc(schemas_0.ListRuleGroupsNamespaces$)
|
|
1662
462
|
.build() {
|
|
1663
463
|
}
|
|
1664
464
|
|
|
@@ -1670,7 +470,7 @@ class ListScrapersCommand extends smithyClient.Command
|
|
|
1670
470
|
})
|
|
1671
471
|
.s("AmazonPrometheusService", "ListScrapers", {})
|
|
1672
472
|
.n("AmpClient", "ListScrapersCommand")
|
|
1673
|
-
.sc(ListScrapers$)
|
|
473
|
+
.sc(schemas_0.ListScrapers$)
|
|
1674
474
|
.build() {
|
|
1675
475
|
}
|
|
1676
476
|
|
|
@@ -1682,7 +482,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1682
482
|
})
|
|
1683
483
|
.s("AmazonPrometheusService", "ListTagsForResource", {})
|
|
1684
484
|
.n("AmpClient", "ListTagsForResourceCommand")
|
|
1685
|
-
.sc(ListTagsForResource$)
|
|
485
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1686
486
|
.build() {
|
|
1687
487
|
}
|
|
1688
488
|
|
|
@@ -1694,7 +494,7 @@ class ListWorkspacesCommand extends smithyClient.Command
|
|
|
1694
494
|
})
|
|
1695
495
|
.s("AmazonPrometheusService", "ListWorkspaces", {})
|
|
1696
496
|
.n("AmpClient", "ListWorkspacesCommand")
|
|
1697
|
-
.sc(ListWorkspaces$)
|
|
497
|
+
.sc(schemas_0.ListWorkspaces$)
|
|
1698
498
|
.build() {
|
|
1699
499
|
}
|
|
1700
500
|
|
|
@@ -1706,7 +506,7 @@ class PutAlertManagerDefinitionCommand extends smithyClient.Command
|
|
|
1706
506
|
})
|
|
1707
507
|
.s("AmazonPrometheusService", "PutAlertManagerDefinition", {})
|
|
1708
508
|
.n("AmpClient", "PutAlertManagerDefinitionCommand")
|
|
1709
|
-
.sc(PutAlertManagerDefinition$)
|
|
509
|
+
.sc(schemas_0.PutAlertManagerDefinition$)
|
|
1710
510
|
.build() {
|
|
1711
511
|
}
|
|
1712
512
|
|
|
@@ -1718,7 +518,7 @@ class PutAnomalyDetectorCommand extends smithyClient.Command
|
|
|
1718
518
|
})
|
|
1719
519
|
.s("AmazonPrometheusService", "PutAnomalyDetector", {})
|
|
1720
520
|
.n("AmpClient", "PutAnomalyDetectorCommand")
|
|
1721
|
-
.sc(PutAnomalyDetector$)
|
|
521
|
+
.sc(schemas_0.PutAnomalyDetector$)
|
|
1722
522
|
.build() {
|
|
1723
523
|
}
|
|
1724
524
|
|
|
@@ -1730,7 +530,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1730
530
|
})
|
|
1731
531
|
.s("AmazonPrometheusService", "PutResourcePolicy", {})
|
|
1732
532
|
.n("AmpClient", "PutResourcePolicyCommand")
|
|
1733
|
-
.sc(PutResourcePolicy$)
|
|
533
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
1734
534
|
.build() {
|
|
1735
535
|
}
|
|
1736
536
|
|
|
@@ -1742,7 +542,7 @@ class PutRuleGroupsNamespaceCommand extends smithyClient.Command
|
|
|
1742
542
|
})
|
|
1743
543
|
.s("AmazonPrometheusService", "PutRuleGroupsNamespace", {})
|
|
1744
544
|
.n("AmpClient", "PutRuleGroupsNamespaceCommand")
|
|
1745
|
-
.sc(PutRuleGroupsNamespace$)
|
|
545
|
+
.sc(schemas_0.PutRuleGroupsNamespace$)
|
|
1746
546
|
.build() {
|
|
1747
547
|
}
|
|
1748
548
|
|
|
@@ -1754,7 +554,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1754
554
|
})
|
|
1755
555
|
.s("AmazonPrometheusService", "TagResource", {})
|
|
1756
556
|
.n("AmpClient", "TagResourceCommand")
|
|
1757
|
-
.sc(TagResource$)
|
|
557
|
+
.sc(schemas_0.TagResource$)
|
|
1758
558
|
.build() {
|
|
1759
559
|
}
|
|
1760
560
|
|
|
@@ -1766,7 +566,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1766
566
|
})
|
|
1767
567
|
.s("AmazonPrometheusService", "UntagResource", {})
|
|
1768
568
|
.n("AmpClient", "UntagResourceCommand")
|
|
1769
|
-
.sc(UntagResource$)
|
|
569
|
+
.sc(schemas_0.UntagResource$)
|
|
1770
570
|
.build() {
|
|
1771
571
|
}
|
|
1772
572
|
|
|
@@ -1778,7 +578,7 @@ class UpdateLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1778
578
|
})
|
|
1779
579
|
.s("AmazonPrometheusService", "UpdateLoggingConfiguration", {})
|
|
1780
580
|
.n("AmpClient", "UpdateLoggingConfigurationCommand")
|
|
1781
|
-
.sc(UpdateLoggingConfiguration$)
|
|
581
|
+
.sc(schemas_0.UpdateLoggingConfiguration$)
|
|
1782
582
|
.build() {
|
|
1783
583
|
}
|
|
1784
584
|
|
|
@@ -1790,7 +590,7 @@ class UpdateQueryLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1790
590
|
})
|
|
1791
591
|
.s("AmazonPrometheusService", "UpdateQueryLoggingConfiguration", {})
|
|
1792
592
|
.n("AmpClient", "UpdateQueryLoggingConfigurationCommand")
|
|
1793
|
-
.sc(UpdateQueryLoggingConfiguration$)
|
|
593
|
+
.sc(schemas_0.UpdateQueryLoggingConfiguration$)
|
|
1794
594
|
.build() {
|
|
1795
595
|
}
|
|
1796
596
|
|
|
@@ -1802,7 +602,7 @@ class UpdateScraperCommand extends smithyClient.Command
|
|
|
1802
602
|
})
|
|
1803
603
|
.s("AmazonPrometheusService", "UpdateScraper", {})
|
|
1804
604
|
.n("AmpClient", "UpdateScraperCommand")
|
|
1805
|
-
.sc(UpdateScraper$)
|
|
605
|
+
.sc(schemas_0.UpdateScraper$)
|
|
1806
606
|
.build() {
|
|
1807
607
|
}
|
|
1808
608
|
|
|
@@ -1814,7 +614,7 @@ class UpdateScraperLoggingConfigurationCommand extends smithyClient.Command
|
|
|
1814
614
|
})
|
|
1815
615
|
.s("AmazonPrometheusService", "UpdateScraperLoggingConfiguration", {})
|
|
1816
616
|
.n("AmpClient", "UpdateScraperLoggingConfigurationCommand")
|
|
1817
|
-
.sc(UpdateScraperLoggingConfiguration$)
|
|
617
|
+
.sc(schemas_0.UpdateScraperLoggingConfiguration$)
|
|
1818
618
|
.build() {
|
|
1819
619
|
}
|
|
1820
620
|
|
|
@@ -1826,7 +626,7 @@ class UpdateWorkspaceAliasCommand extends smithyClient.Command
|
|
|
1826
626
|
})
|
|
1827
627
|
.s("AmazonPrometheusService", "UpdateWorkspaceAlias", {})
|
|
1828
628
|
.n("AmpClient", "UpdateWorkspaceAliasCommand")
|
|
1829
|
-
.sc(UpdateWorkspaceAlias$)
|
|
629
|
+
.sc(schemas_0.UpdateWorkspaceAlias$)
|
|
1830
630
|
.build() {
|
|
1831
631
|
}
|
|
1832
632
|
|
|
@@ -1838,7 +638,7 @@ class UpdateWorkspaceConfigurationCommand extends smithyClient.Command
|
|
|
1838
638
|
})
|
|
1839
639
|
.s("AmazonPrometheusService", "UpdateWorkspaceConfiguration", {})
|
|
1840
640
|
.n("AmpClient", "UpdateWorkspaceConfigurationCommand")
|
|
1841
|
-
.sc(UpdateWorkspaceConfiguration$)
|
|
641
|
+
.sc(schemas_0.UpdateWorkspaceConfiguration$)
|
|
1842
642
|
.build() {
|
|
1843
643
|
}
|
|
1844
644
|
|
|
@@ -2244,244 +1044,68 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2244
1044
|
enumerable: true,
|
|
2245
1045
|
get: function () { return smithyClient.Client; }
|
|
2246
1046
|
});
|
|
2247
|
-
exports
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
1047
|
+
Object.defineProperty(exports, "AmpServiceException", {
|
|
1048
|
+
enumerable: true,
|
|
1049
|
+
get: function () { return AmpServiceException.AmpServiceException; }
|
|
1050
|
+
});
|
|
2251
1051
|
exports.AlertManagerDefinitionStatusCode = AlertManagerDefinitionStatusCode;
|
|
2252
1052
|
exports.Amp = Amp;
|
|
2253
1053
|
exports.AmpClient = AmpClient;
|
|
2254
|
-
exports.AmpConfiguration$ = AmpConfiguration$;
|
|
2255
|
-
exports.AmpServiceException = AmpServiceException;
|
|
2256
|
-
exports.AmpServiceException$ = AmpServiceException$;
|
|
2257
|
-
exports.AnomalyDetectorConfiguration$ = AnomalyDetectorConfiguration$;
|
|
2258
|
-
exports.AnomalyDetectorDescription$ = AnomalyDetectorDescription$;
|
|
2259
|
-
exports.AnomalyDetectorMissingDataAction$ = AnomalyDetectorMissingDataAction$;
|
|
2260
|
-
exports.AnomalyDetectorStatus$ = AnomalyDetectorStatus$;
|
|
2261
1054
|
exports.AnomalyDetectorStatusCode = AnomalyDetectorStatusCode;
|
|
2262
|
-
exports.AnomalyDetectorSummary$ = AnomalyDetectorSummary$;
|
|
2263
|
-
exports.CloudWatchLogDestination$ = CloudWatchLogDestination$;
|
|
2264
|
-
exports.ComponentConfig$ = ComponentConfig$;
|
|
2265
|
-
exports.ConflictException = ConflictException;
|
|
2266
|
-
exports.ConflictException$ = ConflictException$;
|
|
2267
|
-
exports.CreateAlertManagerDefinition$ = CreateAlertManagerDefinition$;
|
|
2268
1055
|
exports.CreateAlertManagerDefinitionCommand = CreateAlertManagerDefinitionCommand;
|
|
2269
|
-
exports.CreateAlertManagerDefinitionRequest$ = CreateAlertManagerDefinitionRequest$;
|
|
2270
|
-
exports.CreateAlertManagerDefinitionResponse$ = CreateAlertManagerDefinitionResponse$;
|
|
2271
|
-
exports.CreateAnomalyDetector$ = CreateAnomalyDetector$;
|
|
2272
1056
|
exports.CreateAnomalyDetectorCommand = CreateAnomalyDetectorCommand;
|
|
2273
|
-
exports.CreateAnomalyDetectorRequest$ = CreateAnomalyDetectorRequest$;
|
|
2274
|
-
exports.CreateAnomalyDetectorResponse$ = CreateAnomalyDetectorResponse$;
|
|
2275
|
-
exports.CreateLoggingConfiguration$ = CreateLoggingConfiguration$;
|
|
2276
1057
|
exports.CreateLoggingConfigurationCommand = CreateLoggingConfigurationCommand;
|
|
2277
|
-
exports.CreateLoggingConfigurationRequest$ = CreateLoggingConfigurationRequest$;
|
|
2278
|
-
exports.CreateLoggingConfigurationResponse$ = CreateLoggingConfigurationResponse$;
|
|
2279
|
-
exports.CreateQueryLoggingConfiguration$ = CreateQueryLoggingConfiguration$;
|
|
2280
1058
|
exports.CreateQueryLoggingConfigurationCommand = CreateQueryLoggingConfigurationCommand;
|
|
2281
|
-
exports.CreateQueryLoggingConfigurationRequest$ = CreateQueryLoggingConfigurationRequest$;
|
|
2282
|
-
exports.CreateQueryLoggingConfigurationResponse$ = CreateQueryLoggingConfigurationResponse$;
|
|
2283
|
-
exports.CreateRuleGroupsNamespace$ = CreateRuleGroupsNamespace$;
|
|
2284
1059
|
exports.CreateRuleGroupsNamespaceCommand = CreateRuleGroupsNamespaceCommand;
|
|
2285
|
-
exports.CreateRuleGroupsNamespaceRequest$ = CreateRuleGroupsNamespaceRequest$;
|
|
2286
|
-
exports.CreateRuleGroupsNamespaceResponse$ = CreateRuleGroupsNamespaceResponse$;
|
|
2287
|
-
exports.CreateScraper$ = CreateScraper$;
|
|
2288
1060
|
exports.CreateScraperCommand = CreateScraperCommand;
|
|
2289
|
-
exports.CreateScraperRequest$ = CreateScraperRequest$;
|
|
2290
|
-
exports.CreateScraperResponse$ = CreateScraperResponse$;
|
|
2291
|
-
exports.CreateWorkspace$ = CreateWorkspace$;
|
|
2292
1061
|
exports.CreateWorkspaceCommand = CreateWorkspaceCommand;
|
|
2293
|
-
exports.CreateWorkspaceRequest$ = CreateWorkspaceRequest$;
|
|
2294
|
-
exports.CreateWorkspaceResponse$ = CreateWorkspaceResponse$;
|
|
2295
|
-
exports.DeleteAlertManagerDefinition$ = DeleteAlertManagerDefinition$;
|
|
2296
1062
|
exports.DeleteAlertManagerDefinitionCommand = DeleteAlertManagerDefinitionCommand;
|
|
2297
|
-
exports.DeleteAlertManagerDefinitionRequest$ = DeleteAlertManagerDefinitionRequest$;
|
|
2298
|
-
exports.DeleteAnomalyDetector$ = DeleteAnomalyDetector$;
|
|
2299
1063
|
exports.DeleteAnomalyDetectorCommand = DeleteAnomalyDetectorCommand;
|
|
2300
|
-
exports.DeleteAnomalyDetectorRequest$ = DeleteAnomalyDetectorRequest$;
|
|
2301
|
-
exports.DeleteLoggingConfiguration$ = DeleteLoggingConfiguration$;
|
|
2302
1064
|
exports.DeleteLoggingConfigurationCommand = DeleteLoggingConfigurationCommand;
|
|
2303
|
-
exports.DeleteLoggingConfigurationRequest$ = DeleteLoggingConfigurationRequest$;
|
|
2304
|
-
exports.DeleteQueryLoggingConfiguration$ = DeleteQueryLoggingConfiguration$;
|
|
2305
1065
|
exports.DeleteQueryLoggingConfigurationCommand = DeleteQueryLoggingConfigurationCommand;
|
|
2306
|
-
exports.DeleteQueryLoggingConfigurationRequest$ = DeleteQueryLoggingConfigurationRequest$;
|
|
2307
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
2308
1066
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
2309
|
-
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
2310
|
-
exports.DeleteRuleGroupsNamespace$ = DeleteRuleGroupsNamespace$;
|
|
2311
1067
|
exports.DeleteRuleGroupsNamespaceCommand = DeleteRuleGroupsNamespaceCommand;
|
|
2312
|
-
exports.DeleteRuleGroupsNamespaceRequest$ = DeleteRuleGroupsNamespaceRequest$;
|
|
2313
|
-
exports.DeleteScraper$ = DeleteScraper$;
|
|
2314
1068
|
exports.DeleteScraperCommand = DeleteScraperCommand;
|
|
2315
|
-
exports.DeleteScraperLoggingConfiguration$ = DeleteScraperLoggingConfiguration$;
|
|
2316
1069
|
exports.DeleteScraperLoggingConfigurationCommand = DeleteScraperLoggingConfigurationCommand;
|
|
2317
|
-
exports.DeleteScraperLoggingConfigurationRequest$ = DeleteScraperLoggingConfigurationRequest$;
|
|
2318
|
-
exports.DeleteScraperRequest$ = DeleteScraperRequest$;
|
|
2319
|
-
exports.DeleteScraperResponse$ = DeleteScraperResponse$;
|
|
2320
|
-
exports.DeleteWorkspace$ = DeleteWorkspace$;
|
|
2321
1070
|
exports.DeleteWorkspaceCommand = DeleteWorkspaceCommand;
|
|
2322
|
-
exports.DeleteWorkspaceRequest$ = DeleteWorkspaceRequest$;
|
|
2323
|
-
exports.DescribeAlertManagerDefinition$ = DescribeAlertManagerDefinition$;
|
|
2324
1071
|
exports.DescribeAlertManagerDefinitionCommand = DescribeAlertManagerDefinitionCommand;
|
|
2325
|
-
exports.DescribeAlertManagerDefinitionRequest$ = DescribeAlertManagerDefinitionRequest$;
|
|
2326
|
-
exports.DescribeAlertManagerDefinitionResponse$ = DescribeAlertManagerDefinitionResponse$;
|
|
2327
|
-
exports.DescribeAnomalyDetector$ = DescribeAnomalyDetector$;
|
|
2328
1072
|
exports.DescribeAnomalyDetectorCommand = DescribeAnomalyDetectorCommand;
|
|
2329
|
-
exports.DescribeAnomalyDetectorRequest$ = DescribeAnomalyDetectorRequest$;
|
|
2330
|
-
exports.DescribeAnomalyDetectorResponse$ = DescribeAnomalyDetectorResponse$;
|
|
2331
|
-
exports.DescribeLoggingConfiguration$ = DescribeLoggingConfiguration$;
|
|
2332
1073
|
exports.DescribeLoggingConfigurationCommand = DescribeLoggingConfigurationCommand;
|
|
2333
|
-
exports.DescribeLoggingConfigurationRequest$ = DescribeLoggingConfigurationRequest$;
|
|
2334
|
-
exports.DescribeLoggingConfigurationResponse$ = DescribeLoggingConfigurationResponse$;
|
|
2335
|
-
exports.DescribeQueryLoggingConfiguration$ = DescribeQueryLoggingConfiguration$;
|
|
2336
1074
|
exports.DescribeQueryLoggingConfigurationCommand = DescribeQueryLoggingConfigurationCommand;
|
|
2337
|
-
exports.DescribeQueryLoggingConfigurationRequest$ = DescribeQueryLoggingConfigurationRequest$;
|
|
2338
|
-
exports.DescribeQueryLoggingConfigurationResponse$ = DescribeQueryLoggingConfigurationResponse$;
|
|
2339
|
-
exports.DescribeResourcePolicy$ = DescribeResourcePolicy$;
|
|
2340
1075
|
exports.DescribeResourcePolicyCommand = DescribeResourcePolicyCommand;
|
|
2341
|
-
exports.DescribeResourcePolicyRequest$ = DescribeResourcePolicyRequest$;
|
|
2342
|
-
exports.DescribeResourcePolicyResponse$ = DescribeResourcePolicyResponse$;
|
|
2343
|
-
exports.DescribeRuleGroupsNamespace$ = DescribeRuleGroupsNamespace$;
|
|
2344
1076
|
exports.DescribeRuleGroupsNamespaceCommand = DescribeRuleGroupsNamespaceCommand;
|
|
2345
|
-
exports.DescribeRuleGroupsNamespaceRequest$ = DescribeRuleGroupsNamespaceRequest$;
|
|
2346
|
-
exports.DescribeRuleGroupsNamespaceResponse$ = DescribeRuleGroupsNamespaceResponse$;
|
|
2347
|
-
exports.DescribeScraper$ = DescribeScraper$;
|
|
2348
1077
|
exports.DescribeScraperCommand = DescribeScraperCommand;
|
|
2349
|
-
exports.DescribeScraperLoggingConfiguration$ = DescribeScraperLoggingConfiguration$;
|
|
2350
1078
|
exports.DescribeScraperLoggingConfigurationCommand = DescribeScraperLoggingConfigurationCommand;
|
|
2351
|
-
exports.DescribeScraperLoggingConfigurationRequest$ = DescribeScraperLoggingConfigurationRequest$;
|
|
2352
|
-
exports.DescribeScraperLoggingConfigurationResponse$ = DescribeScraperLoggingConfigurationResponse$;
|
|
2353
|
-
exports.DescribeScraperRequest$ = DescribeScraperRequest$;
|
|
2354
|
-
exports.DescribeScraperResponse$ = DescribeScraperResponse$;
|
|
2355
|
-
exports.DescribeWorkspace$ = DescribeWorkspace$;
|
|
2356
1079
|
exports.DescribeWorkspaceCommand = DescribeWorkspaceCommand;
|
|
2357
|
-
exports.DescribeWorkspaceConfiguration$ = DescribeWorkspaceConfiguration$;
|
|
2358
1080
|
exports.DescribeWorkspaceConfigurationCommand = DescribeWorkspaceConfigurationCommand;
|
|
2359
|
-
exports.DescribeWorkspaceConfigurationRequest$ = DescribeWorkspaceConfigurationRequest$;
|
|
2360
|
-
exports.DescribeWorkspaceConfigurationResponse$ = DescribeWorkspaceConfigurationResponse$;
|
|
2361
|
-
exports.DescribeWorkspaceRequest$ = DescribeWorkspaceRequest$;
|
|
2362
|
-
exports.DescribeWorkspaceResponse$ = DescribeWorkspaceResponse$;
|
|
2363
|
-
exports.Destination$ = Destination$;
|
|
2364
|
-
exports.EksConfiguration$ = EksConfiguration$;
|
|
2365
|
-
exports.GetDefaultScraperConfiguration$ = GetDefaultScraperConfiguration$;
|
|
2366
1081
|
exports.GetDefaultScraperConfigurationCommand = GetDefaultScraperConfigurationCommand;
|
|
2367
|
-
exports.GetDefaultScraperConfigurationRequest$ = GetDefaultScraperConfigurationRequest$;
|
|
2368
|
-
exports.GetDefaultScraperConfigurationResponse$ = GetDefaultScraperConfigurationResponse$;
|
|
2369
|
-
exports.IgnoreNearExpected$ = IgnoreNearExpected$;
|
|
2370
|
-
exports.InternalServerException = InternalServerException;
|
|
2371
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2372
|
-
exports.LimitsPerLabelSet$ = LimitsPerLabelSet$;
|
|
2373
|
-
exports.LimitsPerLabelSetEntry$ = LimitsPerLabelSetEntry$;
|
|
2374
|
-
exports.ListAnomalyDetectors$ = ListAnomalyDetectors$;
|
|
2375
1082
|
exports.ListAnomalyDetectorsCommand = ListAnomalyDetectorsCommand;
|
|
2376
|
-
exports.ListAnomalyDetectorsRequest$ = ListAnomalyDetectorsRequest$;
|
|
2377
|
-
exports.ListAnomalyDetectorsResponse$ = ListAnomalyDetectorsResponse$;
|
|
2378
|
-
exports.ListRuleGroupsNamespaces$ = ListRuleGroupsNamespaces$;
|
|
2379
1083
|
exports.ListRuleGroupsNamespacesCommand = ListRuleGroupsNamespacesCommand;
|
|
2380
|
-
exports.ListRuleGroupsNamespacesRequest$ = ListRuleGroupsNamespacesRequest$;
|
|
2381
|
-
exports.ListRuleGroupsNamespacesResponse$ = ListRuleGroupsNamespacesResponse$;
|
|
2382
|
-
exports.ListScrapers$ = ListScrapers$;
|
|
2383
1084
|
exports.ListScrapersCommand = ListScrapersCommand;
|
|
2384
|
-
exports.ListScrapersRequest$ = ListScrapersRequest$;
|
|
2385
|
-
exports.ListScrapersResponse$ = ListScrapersResponse$;
|
|
2386
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2387
1085
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2388
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2389
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2390
|
-
exports.ListWorkspaces$ = ListWorkspaces$;
|
|
2391
1086
|
exports.ListWorkspacesCommand = ListWorkspacesCommand;
|
|
2392
|
-
exports.ListWorkspacesRequest$ = ListWorkspacesRequest$;
|
|
2393
|
-
exports.ListWorkspacesResponse$ = ListWorkspacesResponse$;
|
|
2394
|
-
exports.LoggingConfigurationMetadata$ = LoggingConfigurationMetadata$;
|
|
2395
|
-
exports.LoggingConfigurationStatus$ = LoggingConfigurationStatus$;
|
|
2396
1087
|
exports.LoggingConfigurationStatusCode = LoggingConfigurationStatusCode;
|
|
2397
|
-
exports.LoggingDestination$ = LoggingDestination$;
|
|
2398
|
-
exports.LoggingFilter$ = LoggingFilter$;
|
|
2399
|
-
exports.PutAlertManagerDefinition$ = PutAlertManagerDefinition$;
|
|
2400
1088
|
exports.PutAlertManagerDefinitionCommand = PutAlertManagerDefinitionCommand;
|
|
2401
|
-
exports.PutAlertManagerDefinitionRequest$ = PutAlertManagerDefinitionRequest$;
|
|
2402
|
-
exports.PutAlertManagerDefinitionResponse$ = PutAlertManagerDefinitionResponse$;
|
|
2403
|
-
exports.PutAnomalyDetector$ = PutAnomalyDetector$;
|
|
2404
1089
|
exports.PutAnomalyDetectorCommand = PutAnomalyDetectorCommand;
|
|
2405
|
-
exports.PutAnomalyDetectorRequest$ = PutAnomalyDetectorRequest$;
|
|
2406
|
-
exports.PutAnomalyDetectorResponse$ = PutAnomalyDetectorResponse$;
|
|
2407
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
2408
1090
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
2409
|
-
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
2410
|
-
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
2411
|
-
exports.PutRuleGroupsNamespace$ = PutRuleGroupsNamespace$;
|
|
2412
1091
|
exports.PutRuleGroupsNamespaceCommand = PutRuleGroupsNamespaceCommand;
|
|
2413
|
-
exports.PutRuleGroupsNamespaceRequest$ = PutRuleGroupsNamespaceRequest$;
|
|
2414
|
-
exports.PutRuleGroupsNamespaceResponse$ = PutRuleGroupsNamespaceResponse$;
|
|
2415
|
-
exports.QueryLoggingConfigurationMetadata$ = QueryLoggingConfigurationMetadata$;
|
|
2416
|
-
exports.QueryLoggingConfigurationStatus$ = QueryLoggingConfigurationStatus$;
|
|
2417
1092
|
exports.QueryLoggingConfigurationStatusCode = QueryLoggingConfigurationStatusCode;
|
|
2418
|
-
exports.RandomCutForestConfiguration$ = RandomCutForestConfiguration$;
|
|
2419
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2420
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2421
|
-
exports.RoleConfiguration$ = RoleConfiguration$;
|
|
2422
|
-
exports.RuleGroupsNamespaceDescription$ = RuleGroupsNamespaceDescription$;
|
|
2423
|
-
exports.RuleGroupsNamespaceStatus$ = RuleGroupsNamespaceStatus$;
|
|
2424
1093
|
exports.RuleGroupsNamespaceStatusCode = RuleGroupsNamespaceStatusCode;
|
|
2425
|
-
exports.RuleGroupsNamespaceSummary$ = RuleGroupsNamespaceSummary$;
|
|
2426
|
-
exports.ScrapeConfiguration$ = ScrapeConfiguration$;
|
|
2427
|
-
exports.ScraperComponent$ = ScraperComponent$;
|
|
2428
1094
|
exports.ScraperComponentType = ScraperComponentType;
|
|
2429
|
-
exports.ScraperDescription$ = ScraperDescription$;
|
|
2430
|
-
exports.ScraperLoggingConfigurationStatus$ = ScraperLoggingConfigurationStatus$;
|
|
2431
1095
|
exports.ScraperLoggingConfigurationStatusCode = ScraperLoggingConfigurationStatusCode;
|
|
2432
|
-
exports.ScraperLoggingDestination$ = ScraperLoggingDestination$;
|
|
2433
|
-
exports.ScraperStatus$ = ScraperStatus$;
|
|
2434
1096
|
exports.ScraperStatusCode = ScraperStatusCode;
|
|
2435
|
-
exports.ScraperSummary$ = ScraperSummary$;
|
|
2436
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2437
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2438
|
-
exports.Source$ = Source$;
|
|
2439
|
-
exports.TagResource$ = TagResource$;
|
|
2440
1097
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2441
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2442
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2443
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2444
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2445
|
-
exports.UntagResource$ = UntagResource$;
|
|
2446
1098
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2447
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2448
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2449
|
-
exports.UpdateLoggingConfiguration$ = UpdateLoggingConfiguration$;
|
|
2450
1099
|
exports.UpdateLoggingConfigurationCommand = UpdateLoggingConfigurationCommand;
|
|
2451
|
-
exports.UpdateLoggingConfigurationRequest$ = UpdateLoggingConfigurationRequest$;
|
|
2452
|
-
exports.UpdateLoggingConfigurationResponse$ = UpdateLoggingConfigurationResponse$;
|
|
2453
|
-
exports.UpdateQueryLoggingConfiguration$ = UpdateQueryLoggingConfiguration$;
|
|
2454
1100
|
exports.UpdateQueryLoggingConfigurationCommand = UpdateQueryLoggingConfigurationCommand;
|
|
2455
|
-
exports.UpdateQueryLoggingConfigurationRequest$ = UpdateQueryLoggingConfigurationRequest$;
|
|
2456
|
-
exports.UpdateQueryLoggingConfigurationResponse$ = UpdateQueryLoggingConfigurationResponse$;
|
|
2457
|
-
exports.UpdateScraper$ = UpdateScraper$;
|
|
2458
1101
|
exports.UpdateScraperCommand = UpdateScraperCommand;
|
|
2459
|
-
exports.UpdateScraperLoggingConfiguration$ = UpdateScraperLoggingConfiguration$;
|
|
2460
1102
|
exports.UpdateScraperLoggingConfigurationCommand = UpdateScraperLoggingConfigurationCommand;
|
|
2461
|
-
exports.UpdateScraperLoggingConfigurationRequest$ = UpdateScraperLoggingConfigurationRequest$;
|
|
2462
|
-
exports.UpdateScraperLoggingConfigurationResponse$ = UpdateScraperLoggingConfigurationResponse$;
|
|
2463
|
-
exports.UpdateScraperRequest$ = UpdateScraperRequest$;
|
|
2464
|
-
exports.UpdateScraperResponse$ = UpdateScraperResponse$;
|
|
2465
|
-
exports.UpdateWorkspaceAlias$ = UpdateWorkspaceAlias$;
|
|
2466
1103
|
exports.UpdateWorkspaceAliasCommand = UpdateWorkspaceAliasCommand;
|
|
2467
|
-
exports.UpdateWorkspaceAliasRequest$ = UpdateWorkspaceAliasRequest$;
|
|
2468
|
-
exports.UpdateWorkspaceConfiguration$ = UpdateWorkspaceConfiguration$;
|
|
2469
1104
|
exports.UpdateWorkspaceConfigurationCommand = UpdateWorkspaceConfigurationCommand;
|
|
2470
|
-
exports.UpdateWorkspaceConfigurationRequest$ = UpdateWorkspaceConfigurationRequest$;
|
|
2471
|
-
exports.UpdateWorkspaceConfigurationResponse$ = UpdateWorkspaceConfigurationResponse$;
|
|
2472
|
-
exports.ValidationException = ValidationException;
|
|
2473
|
-
exports.ValidationException$ = ValidationException$;
|
|
2474
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2475
1105
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2476
|
-
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
2477
|
-
exports.WorkspaceConfigurationDescription$ = WorkspaceConfigurationDescription$;
|
|
2478
|
-
exports.WorkspaceConfigurationStatus$ = WorkspaceConfigurationStatus$;
|
|
2479
1106
|
exports.WorkspaceConfigurationStatusCode = WorkspaceConfigurationStatusCode;
|
|
2480
|
-
exports.WorkspaceDescription$ = WorkspaceDescription$;
|
|
2481
1107
|
exports.WorkspacePolicyStatusCode = WorkspacePolicyStatusCode;
|
|
2482
|
-
exports.WorkspaceStatus$ = WorkspaceStatus$;
|
|
2483
1108
|
exports.WorkspaceStatusCode = WorkspaceStatusCode;
|
|
2484
|
-
exports.WorkspaceSummary$ = WorkspaceSummary$;
|
|
2485
1109
|
exports.paginateListAnomalyDetectors = paginateListAnomalyDetectors;
|
|
2486
1110
|
exports.paginateListRuleGroupsNamespaces = paginateListRuleGroupsNamespaces;
|
|
2487
1111
|
exports.paginateListScrapers = paginateListScrapers;
|
|
@@ -2498,3 +1122,15 @@ exports.waitUntilScraperActive = waitUntilScraperActive;
|
|
|
2498
1122
|
exports.waitUntilScraperDeleted = waitUntilScraperDeleted;
|
|
2499
1123
|
exports.waitUntilWorkspaceActive = waitUntilWorkspaceActive;
|
|
2500
1124
|
exports.waitUntilWorkspaceDeleted = waitUntilWorkspaceDeleted;
|
|
1125
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1126
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1127
|
+
enumerable: true,
|
|
1128
|
+
get: function () { return schemas_0[k]; }
|
|
1129
|
+
});
|
|
1130
|
+
});
|
|
1131
|
+
Object.keys(errors).forEach(function (k) {
|
|
1132
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1133
|
+
enumerable: true,
|
|
1134
|
+
get: function () { return errors[k]; }
|
|
1135
|
+
});
|
|
1136
|
+
});
|