@aws-sdk/client-cloudwatch 3.716.0 → 3.723.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 +314 -282
- package/dist-es/CloudWatchClient.js +1 -0
- package/dist-es/models/models_0.js +33 -26
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +45 -45
package/dist-cjs/index.js
CHANGED
|
@@ -203,7 +203,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
203
203
|
}, "resolveRuntimeExtensions");
|
|
204
204
|
|
|
205
205
|
// src/CloudWatchClient.ts
|
|
206
|
-
var
|
|
206
|
+
var CloudWatchClient = class extends import_smithy_client.Client {
|
|
207
|
+
static {
|
|
208
|
+
__name(this, "CloudWatchClient");
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* The resolved configuration of CloudWatchClient class. This is resolved and normalized from the {@link CloudWatchClientConfig | constructor configuration interface}.
|
|
212
|
+
*/
|
|
213
|
+
config;
|
|
207
214
|
constructor(...[configuration]) {
|
|
208
215
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
209
216
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -214,7 +221,7 @@ var _CloudWatchClient = class _CloudWatchClient extends import_smithy_client.Cli
|
|
|
214
221
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
215
222
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
216
223
|
const _config_8 = (0, import_middleware_compression.resolveCompressionConfig)(_config_7);
|
|
217
|
-
const _config_9 = resolveRuntimeExtensions(_config_8,
|
|
224
|
+
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
218
225
|
super(_config_9);
|
|
219
226
|
this.config = _config_9;
|
|
220
227
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -242,8 +249,6 @@ var _CloudWatchClient = class _CloudWatchClient extends import_smithy_client.Cli
|
|
|
242
249
|
super.destroy();
|
|
243
250
|
}
|
|
244
251
|
};
|
|
245
|
-
__name(_CloudWatchClient, "CloudWatchClient");
|
|
246
|
-
var CloudWatchClient = _CloudWatchClient;
|
|
247
252
|
|
|
248
253
|
// src/CloudWatch.ts
|
|
249
254
|
|
|
@@ -260,7 +265,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
260
265
|
|
|
261
266
|
// src/models/CloudWatchServiceException.ts
|
|
262
267
|
|
|
263
|
-
var
|
|
268
|
+
var CloudWatchServiceException = class _CloudWatchServiceException extends import_smithy_client.ServiceException {
|
|
269
|
+
static {
|
|
270
|
+
__name(this, "CloudWatchServiceException");
|
|
271
|
+
}
|
|
264
272
|
/**
|
|
265
273
|
* @internal
|
|
266
274
|
*/
|
|
@@ -269,8 +277,6 @@ var _CloudWatchServiceException = class _CloudWatchServiceException extends impo
|
|
|
269
277
|
Object.setPrototypeOf(this, _CloudWatchServiceException.prototype);
|
|
270
278
|
}
|
|
271
279
|
};
|
|
272
|
-
__name(_CloudWatchServiceException, "CloudWatchServiceException");
|
|
273
|
-
var CloudWatchServiceException = _CloudWatchServiceException;
|
|
274
280
|
|
|
275
281
|
// src/models/models_0.ts
|
|
276
282
|
var ActionsSuppressedBy = {
|
|
@@ -339,7 +345,13 @@ var StateValue = {
|
|
|
339
345
|
INSUFFICIENT_DATA: "INSUFFICIENT_DATA",
|
|
340
346
|
OK: "OK"
|
|
341
347
|
};
|
|
342
|
-
var
|
|
348
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends CloudWatchServiceException {
|
|
349
|
+
static {
|
|
350
|
+
__name(this, "ConcurrentModificationException");
|
|
351
|
+
}
|
|
352
|
+
name = "ConcurrentModificationException";
|
|
353
|
+
$fault = "client";
|
|
354
|
+
Message;
|
|
343
355
|
/**
|
|
344
356
|
* @internal
|
|
345
357
|
*/
|
|
@@ -349,15 +361,17 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
349
361
|
$fault: "client",
|
|
350
362
|
...opts
|
|
351
363
|
});
|
|
352
|
-
this.name = "ConcurrentModificationException";
|
|
353
|
-
this.$fault = "client";
|
|
354
364
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
355
365
|
this.Message = opts.Message;
|
|
356
366
|
}
|
|
357
367
|
};
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
368
|
+
var DashboardInvalidInputError = class _DashboardInvalidInputError extends CloudWatchServiceException {
|
|
369
|
+
static {
|
|
370
|
+
__name(this, "DashboardInvalidInputError");
|
|
371
|
+
}
|
|
372
|
+
name = "DashboardInvalidInputError";
|
|
373
|
+
$fault = "client";
|
|
374
|
+
dashboardValidationMessages;
|
|
361
375
|
/**
|
|
362
376
|
* @internal
|
|
363
377
|
*/
|
|
@@ -367,15 +381,16 @@ var _DashboardInvalidInputError = class _DashboardInvalidInputError extends Clou
|
|
|
367
381
|
$fault: "client",
|
|
368
382
|
...opts
|
|
369
383
|
});
|
|
370
|
-
this.name = "DashboardInvalidInputError";
|
|
371
|
-
this.$fault = "client";
|
|
372
384
|
Object.setPrototypeOf(this, _DashboardInvalidInputError.prototype);
|
|
373
385
|
this.dashboardValidationMessages = opts.dashboardValidationMessages;
|
|
374
386
|
}
|
|
375
387
|
};
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
388
|
+
var DashboardNotFoundError = class _DashboardNotFoundError extends CloudWatchServiceException {
|
|
389
|
+
static {
|
|
390
|
+
__name(this, "DashboardNotFoundError");
|
|
391
|
+
}
|
|
392
|
+
name = "DashboardNotFoundError";
|
|
393
|
+
$fault = "client";
|
|
379
394
|
/**
|
|
380
395
|
* @internal
|
|
381
396
|
*/
|
|
@@ -385,14 +400,15 @@ var _DashboardNotFoundError = class _DashboardNotFoundError extends CloudWatchSe
|
|
|
385
400
|
$fault: "client",
|
|
386
401
|
...opts
|
|
387
402
|
});
|
|
388
|
-
this.name = "DashboardNotFoundError";
|
|
389
|
-
this.$fault = "client";
|
|
390
403
|
Object.setPrototypeOf(this, _DashboardNotFoundError.prototype);
|
|
391
404
|
}
|
|
392
405
|
};
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
406
|
+
var ResourceNotFound = class _ResourceNotFound extends CloudWatchServiceException {
|
|
407
|
+
static {
|
|
408
|
+
__name(this, "ResourceNotFound");
|
|
409
|
+
}
|
|
410
|
+
name = "ResourceNotFound";
|
|
411
|
+
$fault = "client";
|
|
396
412
|
/**
|
|
397
413
|
* @internal
|
|
398
414
|
*/
|
|
@@ -402,14 +418,20 @@ var _ResourceNotFound = class _ResourceNotFound extends CloudWatchServiceExcepti
|
|
|
402
418
|
$fault: "client",
|
|
403
419
|
...opts
|
|
404
420
|
});
|
|
405
|
-
this.name = "ResourceNotFound";
|
|
406
|
-
this.$fault = "client";
|
|
407
421
|
Object.setPrototypeOf(this, _ResourceNotFound.prototype);
|
|
408
422
|
}
|
|
409
423
|
};
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
424
|
+
var InternalServiceFault = class _InternalServiceFault extends CloudWatchServiceException {
|
|
425
|
+
static {
|
|
426
|
+
__name(this, "InternalServiceFault");
|
|
427
|
+
}
|
|
428
|
+
name = "InternalServiceFault";
|
|
429
|
+
$fault = "server";
|
|
430
|
+
/**
|
|
431
|
+
* <p></p>
|
|
432
|
+
* @public
|
|
433
|
+
*/
|
|
434
|
+
Message;
|
|
413
435
|
/**
|
|
414
436
|
* @internal
|
|
415
437
|
*/
|
|
@@ -419,15 +441,16 @@ var _InternalServiceFault = class _InternalServiceFault extends CloudWatchServic
|
|
|
419
441
|
$fault: "server",
|
|
420
442
|
...opts
|
|
421
443
|
});
|
|
422
|
-
this.name = "InternalServiceFault";
|
|
423
|
-
this.$fault = "server";
|
|
424
444
|
Object.setPrototypeOf(this, _InternalServiceFault.prototype);
|
|
425
445
|
this.Message = opts.Message;
|
|
426
446
|
}
|
|
427
447
|
};
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
448
|
+
var InvalidParameterCombinationException = class _InvalidParameterCombinationException extends CloudWatchServiceException {
|
|
449
|
+
static {
|
|
450
|
+
__name(this, "InvalidParameterCombinationException");
|
|
451
|
+
}
|
|
452
|
+
name = "InvalidParameterCombinationException";
|
|
453
|
+
$fault = "client";
|
|
431
454
|
/**
|
|
432
455
|
* @internal
|
|
433
456
|
*/
|
|
@@ -437,14 +460,15 @@ var _InvalidParameterCombinationException = class _InvalidParameterCombinationEx
|
|
|
437
460
|
$fault: "client",
|
|
438
461
|
...opts
|
|
439
462
|
});
|
|
440
|
-
this.name = "InvalidParameterCombinationException";
|
|
441
|
-
this.$fault = "client";
|
|
442
463
|
Object.setPrototypeOf(this, _InvalidParameterCombinationException.prototype);
|
|
443
464
|
}
|
|
444
465
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
466
|
+
var InvalidParameterValueException = class _InvalidParameterValueException extends CloudWatchServiceException {
|
|
467
|
+
static {
|
|
468
|
+
__name(this, "InvalidParameterValueException");
|
|
469
|
+
}
|
|
470
|
+
name = "InvalidParameterValueException";
|
|
471
|
+
$fault = "client";
|
|
448
472
|
/**
|
|
449
473
|
* @internal
|
|
450
474
|
*/
|
|
@@ -454,14 +478,15 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
|
|
|
454
478
|
$fault: "client",
|
|
455
479
|
...opts
|
|
456
480
|
});
|
|
457
|
-
this.name = "InvalidParameterValueException";
|
|
458
|
-
this.$fault = "client";
|
|
459
481
|
Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
|
|
460
482
|
}
|
|
461
483
|
};
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
484
|
+
var MissingRequiredParameterException = class _MissingRequiredParameterException extends CloudWatchServiceException {
|
|
485
|
+
static {
|
|
486
|
+
__name(this, "MissingRequiredParameterException");
|
|
487
|
+
}
|
|
488
|
+
name = "MissingRequiredParameterException";
|
|
489
|
+
$fault = "client";
|
|
465
490
|
/**
|
|
466
491
|
* @internal
|
|
467
492
|
*/
|
|
@@ -471,14 +496,18 @@ var _MissingRequiredParameterException = class _MissingRequiredParameterExceptio
|
|
|
471
496
|
$fault: "client",
|
|
472
497
|
...opts
|
|
473
498
|
});
|
|
474
|
-
this.name = "MissingRequiredParameterException";
|
|
475
|
-
this.$fault = "client";
|
|
476
499
|
Object.setPrototypeOf(this, _MissingRequiredParameterException.prototype);
|
|
477
500
|
}
|
|
478
501
|
};
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
502
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends CloudWatchServiceException {
|
|
503
|
+
static {
|
|
504
|
+
__name(this, "ResourceNotFoundException");
|
|
505
|
+
}
|
|
506
|
+
name = "ResourceNotFoundException";
|
|
507
|
+
$fault = "client";
|
|
508
|
+
ResourceType;
|
|
509
|
+
ResourceId;
|
|
510
|
+
Message;
|
|
482
511
|
/**
|
|
483
512
|
* @internal
|
|
484
513
|
*/
|
|
@@ -488,21 +517,22 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends CloudW
|
|
|
488
517
|
$fault: "client",
|
|
489
518
|
...opts
|
|
490
519
|
});
|
|
491
|
-
this.name = "ResourceNotFoundException";
|
|
492
|
-
this.$fault = "client";
|
|
493
520
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
494
521
|
this.ResourceType = opts.ResourceType;
|
|
495
522
|
this.ResourceId = opts.ResourceId;
|
|
496
523
|
this.Message = opts.Message;
|
|
497
524
|
}
|
|
498
525
|
};
|
|
499
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
500
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
501
526
|
var ScanBy = {
|
|
502
527
|
TIMESTAMP_ASCENDING: "TimestampAscending",
|
|
503
528
|
TIMESTAMP_DESCENDING: "TimestampDescending"
|
|
504
529
|
};
|
|
505
|
-
var
|
|
530
|
+
var InvalidNextToken = class _InvalidNextToken extends CloudWatchServiceException {
|
|
531
|
+
static {
|
|
532
|
+
__name(this, "InvalidNextToken");
|
|
533
|
+
}
|
|
534
|
+
name = "InvalidNextToken";
|
|
535
|
+
$fault = "client";
|
|
506
536
|
/**
|
|
507
537
|
* @internal
|
|
508
538
|
*/
|
|
@@ -512,13 +542,9 @@ var _InvalidNextToken = class _InvalidNextToken extends CloudWatchServiceExcepti
|
|
|
512
542
|
$fault: "client",
|
|
513
543
|
...opts
|
|
514
544
|
});
|
|
515
|
-
this.name = "InvalidNextToken";
|
|
516
|
-
this.$fault = "client";
|
|
517
545
|
Object.setPrototypeOf(this, _InvalidNextToken.prototype);
|
|
518
546
|
}
|
|
519
547
|
};
|
|
520
|
-
__name(_InvalidNextToken, "InvalidNextToken");
|
|
521
|
-
var InvalidNextToken = _InvalidNextToken;
|
|
522
548
|
var EvaluationState = {
|
|
523
549
|
PARTIAL_DATA: "PARTIAL_DATA"
|
|
524
550
|
};
|
|
@@ -529,7 +555,13 @@ var Statistic = {
|
|
|
529
555
|
SampleCount: "SampleCount",
|
|
530
556
|
Sum: "Sum"
|
|
531
557
|
};
|
|
532
|
-
var
|
|
558
|
+
var LimitExceededException = class _LimitExceededException extends CloudWatchServiceException {
|
|
559
|
+
static {
|
|
560
|
+
__name(this, "LimitExceededException");
|
|
561
|
+
}
|
|
562
|
+
name = "LimitExceededException";
|
|
563
|
+
$fault = "client";
|
|
564
|
+
Message;
|
|
533
565
|
/**
|
|
534
566
|
* @internal
|
|
535
567
|
*/
|
|
@@ -539,14 +571,10 @@ var _LimitExceededException = class _LimitExceededException extends CloudWatchSe
|
|
|
539
571
|
$fault: "client",
|
|
540
572
|
...opts
|
|
541
573
|
});
|
|
542
|
-
this.name = "LimitExceededException";
|
|
543
|
-
this.$fault = "client";
|
|
544
574
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
545
575
|
this.Message = opts.Message;
|
|
546
576
|
}
|
|
547
577
|
};
|
|
548
|
-
__name(_LimitExceededException, "LimitExceededException");
|
|
549
|
-
var LimitExceededException = _LimitExceededException;
|
|
550
578
|
var StatusCode = {
|
|
551
579
|
COMPLETE: "Complete",
|
|
552
580
|
FORBIDDEN: "Forbidden",
|
|
@@ -561,7 +589,12 @@ var MetricStreamOutputFormat = {
|
|
|
561
589
|
var RecentlyActive = {
|
|
562
590
|
PT3H: "PT3H"
|
|
563
591
|
};
|
|
564
|
-
var
|
|
592
|
+
var LimitExceededFault = class _LimitExceededFault extends CloudWatchServiceException {
|
|
593
|
+
static {
|
|
594
|
+
__name(this, "LimitExceededFault");
|
|
595
|
+
}
|
|
596
|
+
name = "LimitExceededFault";
|
|
597
|
+
$fault = "client";
|
|
565
598
|
/**
|
|
566
599
|
* @internal
|
|
567
600
|
*/
|
|
@@ -571,14 +604,15 @@ var _LimitExceededFault = class _LimitExceededFault extends CloudWatchServiceExc
|
|
|
571
604
|
$fault: "client",
|
|
572
605
|
...opts
|
|
573
606
|
});
|
|
574
|
-
this.name = "LimitExceededFault";
|
|
575
|
-
this.$fault = "client";
|
|
576
607
|
Object.setPrototypeOf(this, _LimitExceededFault.prototype);
|
|
577
608
|
}
|
|
578
609
|
};
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
610
|
+
var InvalidFormatFault = class _InvalidFormatFault extends CloudWatchServiceException {
|
|
611
|
+
static {
|
|
612
|
+
__name(this, "InvalidFormatFault");
|
|
613
|
+
}
|
|
614
|
+
name = "InvalidFormatFault";
|
|
615
|
+
$fault = "client";
|
|
582
616
|
/**
|
|
583
617
|
* @internal
|
|
584
618
|
*/
|
|
@@ -588,13 +622,9 @@ var _InvalidFormatFault = class _InvalidFormatFault extends CloudWatchServiceExc
|
|
|
588
622
|
$fault: "client",
|
|
589
623
|
...opts
|
|
590
624
|
});
|
|
591
|
-
this.name = "InvalidFormatFault";
|
|
592
|
-
this.$fault = "client";
|
|
593
625
|
Object.setPrototypeOf(this, _InvalidFormatFault.prototype);
|
|
594
626
|
}
|
|
595
627
|
};
|
|
596
|
-
__name(_InvalidFormatFault, "InvalidFormatFault");
|
|
597
|
-
var InvalidFormatFault = _InvalidFormatFault;
|
|
598
628
|
|
|
599
629
|
// src/protocols/Aws_query.ts
|
|
600
630
|
var se_DeleteAlarmsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1635,11 +1665,10 @@ var se_AlarmTypes = /* @__PURE__ */ __name((input, context) => {
|
|
|
1635
1665
|
return entries;
|
|
1636
1666
|
}, "se_AlarmTypes");
|
|
1637
1667
|
var se_AnomalyDetectorConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
1638
|
-
var _a;
|
|
1639
1668
|
const entries = {};
|
|
1640
1669
|
if (input[_ETR] != null) {
|
|
1641
1670
|
const memberEntries = se_AnomalyDetectorExcludedTimeRanges(input[_ETR], context);
|
|
1642
|
-
if (
|
|
1671
|
+
if (input[_ETR]?.length === 0) {
|
|
1643
1672
|
entries.ExcludedTimeRanges = [];
|
|
1644
1673
|
}
|
|
1645
1674
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1704,11 +1733,10 @@ var se_DashboardNames = /* @__PURE__ */ __name((input, context) => {
|
|
|
1704
1733
|
return entries;
|
|
1705
1734
|
}, "se_DashboardNames");
|
|
1706
1735
|
var se_DeleteAlarmsInput = /* @__PURE__ */ __name((input, context) => {
|
|
1707
|
-
var _a;
|
|
1708
1736
|
const entries = {};
|
|
1709
1737
|
if (input[_AN] != null) {
|
|
1710
1738
|
const memberEntries = se_AlarmNames(input[_AN], context);
|
|
1711
|
-
if (
|
|
1739
|
+
if (input[_AN]?.length === 0) {
|
|
1712
1740
|
entries.AlarmNames = [];
|
|
1713
1741
|
}
|
|
1714
1742
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1719,7 +1747,6 @@ var se_DeleteAlarmsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1719
1747
|
return entries;
|
|
1720
1748
|
}, "se_DeleteAlarmsInput");
|
|
1721
1749
|
var se_DeleteAnomalyDetectorInput = /* @__PURE__ */ __name((input, context) => {
|
|
1722
|
-
var _a;
|
|
1723
1750
|
const entries = {};
|
|
1724
1751
|
if (input[_N] != null) {
|
|
1725
1752
|
entries[_N] = input[_N];
|
|
@@ -1729,7 +1756,7 @@ var se_DeleteAnomalyDetectorInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1729
1756
|
}
|
|
1730
1757
|
if (input[_D] != null) {
|
|
1731
1758
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
1732
|
-
if (
|
|
1759
|
+
if (input[_D]?.length === 0) {
|
|
1733
1760
|
entries.Dimensions = [];
|
|
1734
1761
|
}
|
|
1735
1762
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1757,11 +1784,10 @@ var se_DeleteAnomalyDetectorInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1757
1784
|
return entries;
|
|
1758
1785
|
}, "se_DeleteAnomalyDetectorInput");
|
|
1759
1786
|
var se_DeleteDashboardsInput = /* @__PURE__ */ __name((input, context) => {
|
|
1760
|
-
var _a;
|
|
1761
1787
|
const entries = {};
|
|
1762
1788
|
if (input[_DN] != null) {
|
|
1763
1789
|
const memberEntries = se_DashboardNames(input[_DN], context);
|
|
1764
|
-
if (
|
|
1790
|
+
if (input[_DN]?.length === 0) {
|
|
1765
1791
|
entries.DashboardNames = [];
|
|
1766
1792
|
}
|
|
1767
1793
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1772,11 +1798,10 @@ var se_DeleteDashboardsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1772
1798
|
return entries;
|
|
1773
1799
|
}, "se_DeleteDashboardsInput");
|
|
1774
1800
|
var se_DeleteInsightRulesInput = /* @__PURE__ */ __name((input, context) => {
|
|
1775
|
-
var _a;
|
|
1776
1801
|
const entries = {};
|
|
1777
1802
|
if (input[_RN] != null) {
|
|
1778
1803
|
const memberEntries = se_InsightRuleNames(input[_RN], context);
|
|
1779
|
-
if (
|
|
1804
|
+
if (input[_RN]?.length === 0) {
|
|
1780
1805
|
entries.RuleNames = [];
|
|
1781
1806
|
}
|
|
1782
1807
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1794,14 +1819,13 @@ var se_DeleteMetricStreamInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1794
1819
|
return entries;
|
|
1795
1820
|
}, "se_DeleteMetricStreamInput");
|
|
1796
1821
|
var se_DescribeAlarmHistoryInput = /* @__PURE__ */ __name((input, context) => {
|
|
1797
|
-
var _a;
|
|
1798
1822
|
const entries = {};
|
|
1799
1823
|
if (input[_ANl] != null) {
|
|
1800
1824
|
entries[_ANl] = input[_ANl];
|
|
1801
1825
|
}
|
|
1802
1826
|
if (input[_AT] != null) {
|
|
1803
1827
|
const memberEntries = se_AlarmTypes(input[_AT], context);
|
|
1804
|
-
if (
|
|
1828
|
+
if (input[_AT]?.length === 0) {
|
|
1805
1829
|
entries.AlarmTypes = [];
|
|
1806
1830
|
}
|
|
1807
1831
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1830,7 +1854,6 @@ var se_DescribeAlarmHistoryInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1830
1854
|
return entries;
|
|
1831
1855
|
}, "se_DescribeAlarmHistoryInput");
|
|
1832
1856
|
var se_DescribeAlarmsForMetricInput = /* @__PURE__ */ __name((input, context) => {
|
|
1833
|
-
var _a;
|
|
1834
1857
|
const entries = {};
|
|
1835
1858
|
if (input[_MN] != null) {
|
|
1836
1859
|
entries[_MN] = input[_MN];
|
|
@@ -1846,7 +1869,7 @@ var se_DescribeAlarmsForMetricInput = /* @__PURE__ */ __name((input, context) =>
|
|
|
1846
1869
|
}
|
|
1847
1870
|
if (input[_D] != null) {
|
|
1848
1871
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
1849
|
-
if (
|
|
1872
|
+
if (input[_D]?.length === 0) {
|
|
1850
1873
|
entries.Dimensions = [];
|
|
1851
1874
|
}
|
|
1852
1875
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1863,11 +1886,10 @@ var se_DescribeAlarmsForMetricInput = /* @__PURE__ */ __name((input, context) =>
|
|
|
1863
1886
|
return entries;
|
|
1864
1887
|
}, "se_DescribeAlarmsForMetricInput");
|
|
1865
1888
|
var se_DescribeAlarmsInput = /* @__PURE__ */ __name((input, context) => {
|
|
1866
|
-
var _a, _b;
|
|
1867
1889
|
const entries = {};
|
|
1868
1890
|
if (input[_AN] != null) {
|
|
1869
1891
|
const memberEntries = se_AlarmNames(input[_AN], context);
|
|
1870
|
-
if (
|
|
1892
|
+
if (input[_AN]?.length === 0) {
|
|
1871
1893
|
entries.AlarmNames = [];
|
|
1872
1894
|
}
|
|
1873
1895
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1880,7 +1902,7 @@ var se_DescribeAlarmsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1880
1902
|
}
|
|
1881
1903
|
if (input[_AT] != null) {
|
|
1882
1904
|
const memberEntries = se_AlarmTypes(input[_AT], context);
|
|
1883
|
-
if (
|
|
1905
|
+
if (input[_AT]?.length === 0) {
|
|
1884
1906
|
entries.AlarmTypes = [];
|
|
1885
1907
|
}
|
|
1886
1908
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1909,7 +1931,6 @@ var se_DescribeAlarmsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1909
1931
|
return entries;
|
|
1910
1932
|
}, "se_DescribeAlarmsInput");
|
|
1911
1933
|
var se_DescribeAnomalyDetectorsInput = /* @__PURE__ */ __name((input, context) => {
|
|
1912
|
-
var _a, _b;
|
|
1913
1934
|
const entries = {};
|
|
1914
1935
|
if (input[_NT] != null) {
|
|
1915
1936
|
entries[_NT] = input[_NT];
|
|
@@ -1925,7 +1946,7 @@ var se_DescribeAnomalyDetectorsInput = /* @__PURE__ */ __name((input, context) =
|
|
|
1925
1946
|
}
|
|
1926
1947
|
if (input[_D] != null) {
|
|
1927
1948
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
1928
|
-
if (
|
|
1949
|
+
if (input[_D]?.length === 0) {
|
|
1929
1950
|
entries.Dimensions = [];
|
|
1930
1951
|
}
|
|
1931
1952
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -1935,7 +1956,7 @@ var se_DescribeAnomalyDetectorsInput = /* @__PURE__ */ __name((input, context) =
|
|
|
1935
1956
|
}
|
|
1936
1957
|
if (input[_ADT] != null) {
|
|
1937
1958
|
const memberEntries = se_AnomalyDetectorTypes(input[_ADT], context);
|
|
1938
|
-
if (
|
|
1959
|
+
if (input[_ADT]?.length === 0) {
|
|
1939
1960
|
entries.AnomalyDetectorTypes = [];
|
|
1940
1961
|
}
|
|
1941
1962
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2006,11 +2027,10 @@ var se_Dimensions = /* @__PURE__ */ __name((input, context) => {
|
|
|
2006
2027
|
return entries;
|
|
2007
2028
|
}, "se_Dimensions");
|
|
2008
2029
|
var se_DisableAlarmActionsInput = /* @__PURE__ */ __name((input, context) => {
|
|
2009
|
-
var _a;
|
|
2010
2030
|
const entries = {};
|
|
2011
2031
|
if (input[_AN] != null) {
|
|
2012
2032
|
const memberEntries = se_AlarmNames(input[_AN], context);
|
|
2013
|
-
if (
|
|
2033
|
+
if (input[_AN]?.length === 0) {
|
|
2014
2034
|
entries.AlarmNames = [];
|
|
2015
2035
|
}
|
|
2016
2036
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2021,11 +2041,10 @@ var se_DisableAlarmActionsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2021
2041
|
return entries;
|
|
2022
2042
|
}, "se_DisableAlarmActionsInput");
|
|
2023
2043
|
var se_DisableInsightRulesInput = /* @__PURE__ */ __name((input, context) => {
|
|
2024
|
-
var _a;
|
|
2025
2044
|
const entries = {};
|
|
2026
2045
|
if (input[_RN] != null) {
|
|
2027
2046
|
const memberEntries = se_InsightRuleNames(input[_RN], context);
|
|
2028
|
-
if (
|
|
2047
|
+
if (input[_RN]?.length === 0) {
|
|
2029
2048
|
entries.RuleNames = [];
|
|
2030
2049
|
}
|
|
2031
2050
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2036,11 +2055,10 @@ var se_DisableInsightRulesInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2036
2055
|
return entries;
|
|
2037
2056
|
}, "se_DisableInsightRulesInput");
|
|
2038
2057
|
var se_EnableAlarmActionsInput = /* @__PURE__ */ __name((input, context) => {
|
|
2039
|
-
var _a;
|
|
2040
2058
|
const entries = {};
|
|
2041
2059
|
if (input[_AN] != null) {
|
|
2042
2060
|
const memberEntries = se_AlarmNames(input[_AN], context);
|
|
2043
|
-
if (
|
|
2061
|
+
if (input[_AN]?.length === 0) {
|
|
2044
2062
|
entries.AlarmNames = [];
|
|
2045
2063
|
}
|
|
2046
2064
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2051,11 +2069,10 @@ var se_EnableAlarmActionsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2051
2069
|
return entries;
|
|
2052
2070
|
}, "se_EnableAlarmActionsInput");
|
|
2053
2071
|
var se_EnableInsightRulesInput = /* @__PURE__ */ __name((input, context) => {
|
|
2054
|
-
var _a;
|
|
2055
2072
|
const entries = {};
|
|
2056
2073
|
if (input[_RN] != null) {
|
|
2057
2074
|
const memberEntries = se_InsightRuleNames(input[_RN], context);
|
|
2058
|
-
if (
|
|
2075
|
+
if (input[_RN]?.length === 0) {
|
|
2059
2076
|
entries.RuleNames = [];
|
|
2060
2077
|
}
|
|
2061
2078
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2104,7 +2121,6 @@ var se_EntityKeyAttributesMap = /* @__PURE__ */ __name((input, context) => {
|
|
|
2104
2121
|
return entries;
|
|
2105
2122
|
}, "se_EntityKeyAttributesMap");
|
|
2106
2123
|
var se_EntityMetricData = /* @__PURE__ */ __name((input, context) => {
|
|
2107
|
-
var _a;
|
|
2108
2124
|
const entries = {};
|
|
2109
2125
|
if (input[_E] != null) {
|
|
2110
2126
|
const memberEntries = se_Entity(input[_E], context);
|
|
@@ -2115,7 +2131,7 @@ var se_EntityMetricData = /* @__PURE__ */ __name((input, context) => {
|
|
|
2115
2131
|
}
|
|
2116
2132
|
if (input[_MD] != null) {
|
|
2117
2133
|
const memberEntries = se_MetricData(input[_MD], context);
|
|
2118
|
-
if (
|
|
2134
|
+
if (input[_MD]?.length === 0) {
|
|
2119
2135
|
entries.MetricData = [];
|
|
2120
2136
|
}
|
|
2121
2137
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2160,7 +2176,6 @@ var se_GetDashboardInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2160
2176
|
return entries;
|
|
2161
2177
|
}, "se_GetDashboardInput");
|
|
2162
2178
|
var se_GetInsightRuleReportInput = /* @__PURE__ */ __name((input, context) => {
|
|
2163
|
-
var _a;
|
|
2164
2179
|
const entries = {};
|
|
2165
2180
|
if (input[_RNu] != null) {
|
|
2166
2181
|
entries[_RNu] = input[_RNu];
|
|
@@ -2179,7 +2194,7 @@ var se_GetInsightRuleReportInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2179
2194
|
}
|
|
2180
2195
|
if (input[_M] != null) {
|
|
2181
2196
|
const memberEntries = se_InsightRuleMetricList(input[_M], context);
|
|
2182
|
-
if (
|
|
2197
|
+
if (input[_M]?.length === 0) {
|
|
2183
2198
|
entries.Metrics = [];
|
|
2184
2199
|
}
|
|
2185
2200
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2193,11 +2208,10 @@ var se_GetInsightRuleReportInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2193
2208
|
return entries;
|
|
2194
2209
|
}, "se_GetInsightRuleReportInput");
|
|
2195
2210
|
var se_GetMetricDataInput = /* @__PURE__ */ __name((input, context) => {
|
|
2196
|
-
var _a;
|
|
2197
2211
|
const entries = {};
|
|
2198
2212
|
if (input[_MDQ] != null) {
|
|
2199
2213
|
const memberEntries = se_MetricDataQueries(input[_MDQ], context);
|
|
2200
|
-
if (
|
|
2214
|
+
if (input[_MDQ]?.length === 0) {
|
|
2201
2215
|
entries.MetricDataQueries = [];
|
|
2202
2216
|
}
|
|
2203
2217
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2230,7 +2244,6 @@ var se_GetMetricDataInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2230
2244
|
return entries;
|
|
2231
2245
|
}, "se_GetMetricDataInput");
|
|
2232
2246
|
var se_GetMetricStatisticsInput = /* @__PURE__ */ __name((input, context) => {
|
|
2233
|
-
var _a, _b, _c;
|
|
2234
2247
|
const entries = {};
|
|
2235
2248
|
if (input[_N] != null) {
|
|
2236
2249
|
entries[_N] = input[_N];
|
|
@@ -2240,7 +2253,7 @@ var se_GetMetricStatisticsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2240
2253
|
}
|
|
2241
2254
|
if (input[_D] != null) {
|
|
2242
2255
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
2243
|
-
if (
|
|
2256
|
+
if (input[_D]?.length === 0) {
|
|
2244
2257
|
entries.Dimensions = [];
|
|
2245
2258
|
}
|
|
2246
2259
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2259,7 +2272,7 @@ var se_GetMetricStatisticsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2259
2272
|
}
|
|
2260
2273
|
if (input[_Sta] != null) {
|
|
2261
2274
|
const memberEntries = se_Statistics(input[_Sta], context);
|
|
2262
|
-
if (
|
|
2275
|
+
if (input[_Sta]?.length === 0) {
|
|
2263
2276
|
entries.Statistics = [];
|
|
2264
2277
|
}
|
|
2265
2278
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2269,7 +2282,7 @@ var se_GetMetricStatisticsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2269
2282
|
}
|
|
2270
2283
|
if (input[_ESx] != null) {
|
|
2271
2284
|
const memberEntries = se_ExtendedStatistics(input[_ESx], context);
|
|
2272
|
-
if (
|
|
2285
|
+
if (input[_ESx]?.length === 0) {
|
|
2273
2286
|
entries.ExtendedStatistics = [];
|
|
2274
2287
|
}
|
|
2275
2288
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2354,7 +2367,6 @@ var se_ListManagedInsightRulesInput = /* @__PURE__ */ __name((input, context) =>
|
|
|
2354
2367
|
return entries;
|
|
2355
2368
|
}, "se_ListManagedInsightRulesInput");
|
|
2356
2369
|
var se_ListMetricsInput = /* @__PURE__ */ __name((input, context) => {
|
|
2357
|
-
var _a;
|
|
2358
2370
|
const entries = {};
|
|
2359
2371
|
if (input[_N] != null) {
|
|
2360
2372
|
entries[_N] = input[_N];
|
|
@@ -2364,7 +2376,7 @@ var se_ListMetricsInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2364
2376
|
}
|
|
2365
2377
|
if (input[_D] != null) {
|
|
2366
2378
|
const memberEntries = se_DimensionFilters(input[_D], context);
|
|
2367
|
-
if (
|
|
2379
|
+
if (input[_D]?.length === 0) {
|
|
2368
2380
|
entries.Dimensions = [];
|
|
2369
2381
|
}
|
|
2370
2382
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2404,7 +2416,6 @@ var se_ListTagsForResourceInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2404
2416
|
return entries;
|
|
2405
2417
|
}, "se_ListTagsForResourceInput");
|
|
2406
2418
|
var se_ManagedRule = /* @__PURE__ */ __name((input, context) => {
|
|
2407
|
-
var _a;
|
|
2408
2419
|
const entries = {};
|
|
2409
2420
|
if (input[_TN] != null) {
|
|
2410
2421
|
entries[_TN] = input[_TN];
|
|
@@ -2414,7 +2425,7 @@ var se_ManagedRule = /* @__PURE__ */ __name((input, context) => {
|
|
|
2414
2425
|
}
|
|
2415
2426
|
if (input[_Ta] != null) {
|
|
2416
2427
|
const memberEntries = se_TagList(input[_Ta], context);
|
|
2417
|
-
if (
|
|
2428
|
+
if (input[_Ta]?.length === 0) {
|
|
2418
2429
|
entries.Tags = [];
|
|
2419
2430
|
}
|
|
2420
2431
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2440,7 +2451,6 @@ var se_ManagedRules = /* @__PURE__ */ __name((input, context) => {
|
|
|
2440
2451
|
return entries;
|
|
2441
2452
|
}, "se_ManagedRules");
|
|
2442
2453
|
var se_Metric = /* @__PURE__ */ __name((input, context) => {
|
|
2443
|
-
var _a;
|
|
2444
2454
|
const entries = {};
|
|
2445
2455
|
if (input[_N] != null) {
|
|
2446
2456
|
entries[_N] = input[_N];
|
|
@@ -2450,7 +2460,7 @@ var se_Metric = /* @__PURE__ */ __name((input, context) => {
|
|
|
2450
2460
|
}
|
|
2451
2461
|
if (input[_D] != null) {
|
|
2452
2462
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
2453
|
-
if (
|
|
2463
|
+
if (input[_D]?.length === 0) {
|
|
2454
2464
|
entries.Dimensions = [];
|
|
2455
2465
|
}
|
|
2456
2466
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2527,14 +2537,13 @@ var se_MetricDataQuery = /* @__PURE__ */ __name((input, context) => {
|
|
|
2527
2537
|
return entries;
|
|
2528
2538
|
}, "se_MetricDataQuery");
|
|
2529
2539
|
var se_MetricDatum = /* @__PURE__ */ __name((input, context) => {
|
|
2530
|
-
var _a, _b, _c;
|
|
2531
2540
|
const entries = {};
|
|
2532
2541
|
if (input[_MN] != null) {
|
|
2533
2542
|
entries[_MN] = input[_MN];
|
|
2534
2543
|
}
|
|
2535
2544
|
if (input[_D] != null) {
|
|
2536
2545
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
2537
|
-
if (
|
|
2546
|
+
if (input[_D]?.length === 0) {
|
|
2538
2547
|
entries.Dimensions = [];
|
|
2539
2548
|
}
|
|
2540
2549
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2557,7 +2566,7 @@ var se_MetricDatum = /* @__PURE__ */ __name((input, context) => {
|
|
|
2557
2566
|
}
|
|
2558
2567
|
if (input[_Val] != null) {
|
|
2559
2568
|
const memberEntries = se_Values(input[_Val], context);
|
|
2560
|
-
if (
|
|
2569
|
+
if (input[_Val]?.length === 0) {
|
|
2561
2570
|
entries.Values = [];
|
|
2562
2571
|
}
|
|
2563
2572
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2567,7 +2576,7 @@ var se_MetricDatum = /* @__PURE__ */ __name((input, context) => {
|
|
|
2567
2576
|
}
|
|
2568
2577
|
if (input[_C] != null) {
|
|
2569
2578
|
const memberEntries = se_Counts(input[_C], context);
|
|
2570
|
-
if (
|
|
2579
|
+
if (input[_C]?.length === 0) {
|
|
2571
2580
|
entries.Counts = [];
|
|
2572
2581
|
}
|
|
2573
2582
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2584,11 +2593,10 @@ var se_MetricDatum = /* @__PURE__ */ __name((input, context) => {
|
|
|
2584
2593
|
return entries;
|
|
2585
2594
|
}, "se_MetricDatum");
|
|
2586
2595
|
var se_MetricMathAnomalyDetector = /* @__PURE__ */ __name((input, context) => {
|
|
2587
|
-
var _a;
|
|
2588
2596
|
const entries = {};
|
|
2589
2597
|
if (input[_MDQ] != null) {
|
|
2590
2598
|
const memberEntries = se_MetricDataQueries(input[_MDQ], context);
|
|
2591
|
-
if (
|
|
2599
|
+
if (input[_MDQ]?.length === 0) {
|
|
2592
2600
|
entries.MetricDataQueries = [];
|
|
2593
2601
|
}
|
|
2594
2602
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2619,14 +2627,13 @@ var se_MetricStat = /* @__PURE__ */ __name((input, context) => {
|
|
|
2619
2627
|
return entries;
|
|
2620
2628
|
}, "se_MetricStat");
|
|
2621
2629
|
var se_MetricStreamFilter = /* @__PURE__ */ __name((input, context) => {
|
|
2622
|
-
var _a;
|
|
2623
2630
|
const entries = {};
|
|
2624
2631
|
if (input[_N] != null) {
|
|
2625
2632
|
entries[_N] = input[_N];
|
|
2626
2633
|
}
|
|
2627
2634
|
if (input[_MNe] != null) {
|
|
2628
2635
|
const memberEntries = se_MetricStreamFilterMetricNames(input[_MNe], context);
|
|
2629
|
-
if (
|
|
2636
|
+
if (input[_MNe]?.length === 0) {
|
|
2630
2637
|
entries.MetricNames = [];
|
|
2631
2638
|
}
|
|
2632
2639
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2688,11 +2695,10 @@ var se_MetricStreamStatisticsAdditionalStatistics = /* @__PURE__ */ __name((inpu
|
|
|
2688
2695
|
return entries;
|
|
2689
2696
|
}, "se_MetricStreamStatisticsAdditionalStatistics");
|
|
2690
2697
|
var se_MetricStreamStatisticsConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
2691
|
-
var _a, _b;
|
|
2692
2698
|
const entries = {};
|
|
2693
2699
|
if (input[_IM] != null) {
|
|
2694
2700
|
const memberEntries = se_MetricStreamStatisticsIncludeMetrics(input[_IM], context);
|
|
2695
|
-
if (
|
|
2701
|
+
if (input[_IM]?.length === 0) {
|
|
2696
2702
|
entries.IncludeMetrics = [];
|
|
2697
2703
|
}
|
|
2698
2704
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2702,7 +2708,7 @@ var se_MetricStreamStatisticsConfiguration = /* @__PURE__ */ __name((input, cont
|
|
|
2702
2708
|
}
|
|
2703
2709
|
if (input[_AS] != null) {
|
|
2704
2710
|
const memberEntries = se_MetricStreamStatisticsAdditionalStatistics(input[_AS], context);
|
|
2705
|
-
if (
|
|
2711
|
+
if (input[_AS]?.length === 0) {
|
|
2706
2712
|
entries.AdditionalStatistics = [];
|
|
2707
2713
|
}
|
|
2708
2714
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2753,7 +2759,6 @@ var se_MetricStreamStatisticsMetric = /* @__PURE__ */ __name((input, context) =>
|
|
|
2753
2759
|
return entries;
|
|
2754
2760
|
}, "se_MetricStreamStatisticsMetric");
|
|
2755
2761
|
var se_PutAnomalyDetectorInput = /* @__PURE__ */ __name((input, context) => {
|
|
2756
|
-
var _a;
|
|
2757
2762
|
const entries = {};
|
|
2758
2763
|
if (input[_N] != null) {
|
|
2759
2764
|
entries[_N] = input[_N];
|
|
@@ -2763,7 +2768,7 @@ var se_PutAnomalyDetectorInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2763
2768
|
}
|
|
2764
2769
|
if (input[_D] != null) {
|
|
2765
2770
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
2766
|
-
if (
|
|
2771
|
+
if (input[_D]?.length === 0) {
|
|
2767
2772
|
entries.Dimensions = [];
|
|
2768
2773
|
}
|
|
2769
2774
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2805,14 +2810,13 @@ var se_PutAnomalyDetectorInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2805
2810
|
return entries;
|
|
2806
2811
|
}, "se_PutAnomalyDetectorInput");
|
|
2807
2812
|
var se_PutCompositeAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
2808
|
-
var _a, _b, _c, _d;
|
|
2809
2813
|
const entries = {};
|
|
2810
2814
|
if (input[_AE] != null) {
|
|
2811
2815
|
entries[_AE] = input[_AE];
|
|
2812
2816
|
}
|
|
2813
2817
|
if (input[_AA] != null) {
|
|
2814
2818
|
const memberEntries = se_ResourceList(input[_AA], context);
|
|
2815
|
-
if (
|
|
2819
|
+
if (input[_AA]?.length === 0) {
|
|
2816
2820
|
entries.AlarmActions = [];
|
|
2817
2821
|
}
|
|
2818
2822
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2831,7 +2835,7 @@ var se_PutCompositeAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2831
2835
|
}
|
|
2832
2836
|
if (input[_IDA] != null) {
|
|
2833
2837
|
const memberEntries = se_ResourceList(input[_IDA], context);
|
|
2834
|
-
if (
|
|
2838
|
+
if (input[_IDA]?.length === 0) {
|
|
2835
2839
|
entries.InsufficientDataActions = [];
|
|
2836
2840
|
}
|
|
2837
2841
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2841,7 +2845,7 @@ var se_PutCompositeAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2841
2845
|
}
|
|
2842
2846
|
if (input[_OKA] != null) {
|
|
2843
2847
|
const memberEntries = se_ResourceList(input[_OKA], context);
|
|
2844
|
-
if (
|
|
2848
|
+
if (input[_OKA]?.length === 0) {
|
|
2845
2849
|
entries.OKActions = [];
|
|
2846
2850
|
}
|
|
2847
2851
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2851,7 +2855,7 @@ var se_PutCompositeAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2851
2855
|
}
|
|
2852
2856
|
if (input[_Ta] != null) {
|
|
2853
2857
|
const memberEntries = se_TagList(input[_Ta], context);
|
|
2854
|
-
if (
|
|
2858
|
+
if (input[_Ta]?.length === 0) {
|
|
2855
2859
|
entries.Tags = [];
|
|
2856
2860
|
}
|
|
2857
2861
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2881,7 +2885,6 @@ var se_PutDashboardInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2881
2885
|
return entries;
|
|
2882
2886
|
}, "se_PutDashboardInput");
|
|
2883
2887
|
var se_PutInsightRuleInput = /* @__PURE__ */ __name((input, context) => {
|
|
2884
|
-
var _a;
|
|
2885
2888
|
const entries = {};
|
|
2886
2889
|
if (input[_RNu] != null) {
|
|
2887
2890
|
entries[_RNu] = input[_RNu];
|
|
@@ -2894,7 +2897,7 @@ var se_PutInsightRuleInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2894
2897
|
}
|
|
2895
2898
|
if (input[_Ta] != null) {
|
|
2896
2899
|
const memberEntries = se_TagList(input[_Ta], context);
|
|
2897
|
-
if (
|
|
2900
|
+
if (input[_Ta]?.length === 0) {
|
|
2898
2901
|
entries.Tags = [];
|
|
2899
2902
|
}
|
|
2900
2903
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2905,11 +2908,10 @@ var se_PutInsightRuleInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2905
2908
|
return entries;
|
|
2906
2909
|
}, "se_PutInsightRuleInput");
|
|
2907
2910
|
var se_PutManagedInsightRulesInput = /* @__PURE__ */ __name((input, context) => {
|
|
2908
|
-
var _a;
|
|
2909
2911
|
const entries = {};
|
|
2910
2912
|
if (input[_MRan] != null) {
|
|
2911
2913
|
const memberEntries = se_ManagedRules(input[_MRan], context);
|
|
2912
|
-
if (
|
|
2914
|
+
if (input[_MRan]?.length === 0) {
|
|
2913
2915
|
entries.ManagedRules = [];
|
|
2914
2916
|
}
|
|
2915
2917
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2920,7 +2922,6 @@ var se_PutManagedInsightRulesInput = /* @__PURE__ */ __name((input, context) =>
|
|
|
2920
2922
|
return entries;
|
|
2921
2923
|
}, "se_PutManagedInsightRulesInput");
|
|
2922
2924
|
var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
2923
|
-
var _a, _b, _c, _d, _e2, _f;
|
|
2924
2925
|
const entries = {};
|
|
2925
2926
|
if (input[_ANl] != null) {
|
|
2926
2927
|
entries[_ANl] = input[_ANl];
|
|
@@ -2933,7 +2934,7 @@ var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2933
2934
|
}
|
|
2934
2935
|
if (input[_OKA] != null) {
|
|
2935
2936
|
const memberEntries = se_ResourceList(input[_OKA], context);
|
|
2936
|
-
if (
|
|
2937
|
+
if (input[_OKA]?.length === 0) {
|
|
2937
2938
|
entries.OKActions = [];
|
|
2938
2939
|
}
|
|
2939
2940
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2943,7 +2944,7 @@ var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2943
2944
|
}
|
|
2944
2945
|
if (input[_AA] != null) {
|
|
2945
2946
|
const memberEntries = se_ResourceList(input[_AA], context);
|
|
2946
|
-
if (
|
|
2947
|
+
if (input[_AA]?.length === 0) {
|
|
2947
2948
|
entries.AlarmActions = [];
|
|
2948
2949
|
}
|
|
2949
2950
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2953,7 +2954,7 @@ var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2953
2954
|
}
|
|
2954
2955
|
if (input[_IDA] != null) {
|
|
2955
2956
|
const memberEntries = se_ResourceList(input[_IDA], context);
|
|
2956
|
-
if (
|
|
2957
|
+
if (input[_IDA]?.length === 0) {
|
|
2957
2958
|
entries.InsufficientDataActions = [];
|
|
2958
2959
|
}
|
|
2959
2960
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2975,7 +2976,7 @@ var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
2975
2976
|
}
|
|
2976
2977
|
if (input[_D] != null) {
|
|
2977
2978
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
2978
|
-
if (
|
|
2979
|
+
if (input[_D]?.length === 0) {
|
|
2979
2980
|
entries.Dimensions = [];
|
|
2980
2981
|
}
|
|
2981
2982
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3009,7 +3010,7 @@ var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3009
3010
|
}
|
|
3010
3011
|
if (input[_M] != null) {
|
|
3011
3012
|
const memberEntries = se_MetricDataQueries(input[_M], context);
|
|
3012
|
-
if (
|
|
3013
|
+
if (input[_M]?.length === 0) {
|
|
3013
3014
|
entries.Metrics = [];
|
|
3014
3015
|
}
|
|
3015
3016
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3019,7 +3020,7 @@ var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3019
3020
|
}
|
|
3020
3021
|
if (input[_Ta] != null) {
|
|
3021
3022
|
const memberEntries = se_TagList(input[_Ta], context);
|
|
3022
|
-
if (
|
|
3023
|
+
if (input[_Ta]?.length === 0) {
|
|
3023
3024
|
entries.Tags = [];
|
|
3024
3025
|
}
|
|
3025
3026
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3033,14 +3034,13 @@ var se_PutMetricAlarmInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3033
3034
|
return entries;
|
|
3034
3035
|
}, "se_PutMetricAlarmInput");
|
|
3035
3036
|
var se_PutMetricDataInput = /* @__PURE__ */ __name((input, context) => {
|
|
3036
|
-
var _a, _b;
|
|
3037
3037
|
const entries = {};
|
|
3038
3038
|
if (input[_N] != null) {
|
|
3039
3039
|
entries[_N] = input[_N];
|
|
3040
3040
|
}
|
|
3041
3041
|
if (input[_MD] != null) {
|
|
3042
3042
|
const memberEntries = se_MetricData(input[_MD], context);
|
|
3043
|
-
if (
|
|
3043
|
+
if (input[_MD]?.length === 0) {
|
|
3044
3044
|
entries.MetricData = [];
|
|
3045
3045
|
}
|
|
3046
3046
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3050,7 +3050,7 @@ var se_PutMetricDataInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3050
3050
|
}
|
|
3051
3051
|
if (input[_EMD] != null) {
|
|
3052
3052
|
const memberEntries = se_EntityMetricDataList(input[_EMD], context);
|
|
3053
|
-
if (
|
|
3053
|
+
if (input[_EMD]?.length === 0) {
|
|
3054
3054
|
entries.EntityMetricData = [];
|
|
3055
3055
|
}
|
|
3056
3056
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3064,14 +3064,13 @@ var se_PutMetricDataInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3064
3064
|
return entries;
|
|
3065
3065
|
}, "se_PutMetricDataInput");
|
|
3066
3066
|
var se_PutMetricStreamInput = /* @__PURE__ */ __name((input, context) => {
|
|
3067
|
-
var _a, _b, _c, _d;
|
|
3068
3067
|
const entries = {};
|
|
3069
3068
|
if (input[_Na] != null) {
|
|
3070
3069
|
entries[_Na] = input[_Na];
|
|
3071
3070
|
}
|
|
3072
3071
|
if (input[_IF] != null) {
|
|
3073
3072
|
const memberEntries = se_MetricStreamFilters(input[_IF], context);
|
|
3074
|
-
if (
|
|
3073
|
+
if (input[_IF]?.length === 0) {
|
|
3075
3074
|
entries.IncludeFilters = [];
|
|
3076
3075
|
}
|
|
3077
3076
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3081,7 +3080,7 @@ var se_PutMetricStreamInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3081
3080
|
}
|
|
3082
3081
|
if (input[_EF] != null) {
|
|
3083
3082
|
const memberEntries = se_MetricStreamFilters(input[_EF], context);
|
|
3084
|
-
if (
|
|
3083
|
+
if (input[_EF]?.length === 0) {
|
|
3085
3084
|
entries.ExcludeFilters = [];
|
|
3086
3085
|
}
|
|
3087
3086
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3100,7 +3099,7 @@ var se_PutMetricStreamInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3100
3099
|
}
|
|
3101
3100
|
if (input[_Ta] != null) {
|
|
3102
3101
|
const memberEntries = se_TagList(input[_Ta], context);
|
|
3103
|
-
if (
|
|
3102
|
+
if (input[_Ta]?.length === 0) {
|
|
3104
3103
|
entries.Tags = [];
|
|
3105
3104
|
}
|
|
3106
3105
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3110,7 +3109,7 @@ var se_PutMetricStreamInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3110
3109
|
}
|
|
3111
3110
|
if (input[_SC] != null) {
|
|
3112
3111
|
const memberEntries = se_MetricStreamStatisticsConfigurations(input[_SC], context);
|
|
3113
|
-
if (
|
|
3112
|
+
if (input[_SC]?.length === 0) {
|
|
3114
3113
|
entries.StatisticsConfigurations = [];
|
|
3115
3114
|
}
|
|
3116
3115
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3162,7 +3161,6 @@ var se_SetAlarmStateInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3162
3161
|
return entries;
|
|
3163
3162
|
}, "se_SetAlarmStateInput");
|
|
3164
3163
|
var se_SingleMetricAnomalyDetector = /* @__PURE__ */ __name((input, context) => {
|
|
3165
|
-
var _a;
|
|
3166
3164
|
const entries = {};
|
|
3167
3165
|
if (input[_AI] != null) {
|
|
3168
3166
|
entries[_AI] = input[_AI];
|
|
@@ -3175,7 +3173,7 @@ var se_SingleMetricAnomalyDetector = /* @__PURE__ */ __name((input, context) =>
|
|
|
3175
3173
|
}
|
|
3176
3174
|
if (input[_D] != null) {
|
|
3177
3175
|
const memberEntries = se_Dimensions(input[_D], context);
|
|
3178
|
-
if (
|
|
3176
|
+
if (input[_D]?.length === 0) {
|
|
3179
3177
|
entries.Dimensions = [];
|
|
3180
3178
|
}
|
|
3181
3179
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3189,11 +3187,10 @@ var se_SingleMetricAnomalyDetector = /* @__PURE__ */ __name((input, context) =>
|
|
|
3189
3187
|
return entries;
|
|
3190
3188
|
}, "se_SingleMetricAnomalyDetector");
|
|
3191
3189
|
var se_StartMetricStreamsInput = /* @__PURE__ */ __name((input, context) => {
|
|
3192
|
-
var _a;
|
|
3193
3190
|
const entries = {};
|
|
3194
3191
|
if (input[_Nam] != null) {
|
|
3195
3192
|
const memberEntries = se_MetricStreamNames(input[_Nam], context);
|
|
3196
|
-
if (
|
|
3193
|
+
if (input[_Nam]?.length === 0) {
|
|
3197
3194
|
entries.Names = [];
|
|
3198
3195
|
}
|
|
3199
3196
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3232,11 +3229,10 @@ var se_StatisticSet = /* @__PURE__ */ __name((input, context) => {
|
|
|
3232
3229
|
return entries;
|
|
3233
3230
|
}, "se_StatisticSet");
|
|
3234
3231
|
var se_StopMetricStreamsInput = /* @__PURE__ */ __name((input, context) => {
|
|
3235
|
-
var _a;
|
|
3236
3232
|
const entries = {};
|
|
3237
3233
|
if (input[_Nam] != null) {
|
|
3238
3234
|
const memberEntries = se_MetricStreamNames(input[_Nam], context);
|
|
3239
|
-
if (
|
|
3235
|
+
if (input[_Nam]?.length === 0) {
|
|
3240
3236
|
entries.Names = [];
|
|
3241
3237
|
}
|
|
3242
3238
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3284,14 +3280,13 @@ var se_TagList = /* @__PURE__ */ __name((input, context) => {
|
|
|
3284
3280
|
return entries;
|
|
3285
3281
|
}, "se_TagList");
|
|
3286
3282
|
var se_TagResourceInput = /* @__PURE__ */ __name((input, context) => {
|
|
3287
|
-
var _a;
|
|
3288
3283
|
const entries = {};
|
|
3289
3284
|
if (input[_RARN] != null) {
|
|
3290
3285
|
entries[_RARN] = input[_RARN];
|
|
3291
3286
|
}
|
|
3292
3287
|
if (input[_Ta] != null) {
|
|
3293
3288
|
const memberEntries = se_TagList(input[_Ta], context);
|
|
3294
|
-
if (
|
|
3289
|
+
if (input[_Ta]?.length === 0) {
|
|
3295
3290
|
entries.Tags = [];
|
|
3296
3291
|
}
|
|
3297
3292
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3302,14 +3297,13 @@ var se_TagResourceInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
3302
3297
|
return entries;
|
|
3303
3298
|
}, "se_TagResourceInput");
|
|
3304
3299
|
var se_UntagResourceInput = /* @__PURE__ */ __name((input, context) => {
|
|
3305
|
-
var _a;
|
|
3306
3300
|
const entries = {};
|
|
3307
3301
|
if (input[_RARN] != null) {
|
|
3308
3302
|
entries[_RARN] = input[_RARN];
|
|
3309
3303
|
}
|
|
3310
3304
|
if (input[_TK] != null) {
|
|
3311
3305
|
const memberEntries = se_TagKeyList(input[_TK], context);
|
|
3312
|
-
if (
|
|
3306
|
+
if (input[_TK]?.length === 0) {
|
|
3313
3307
|
entries.TagKeys = [];
|
|
3314
3308
|
}
|
|
3315
3309
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4801,8 +4795,7 @@ var _m = "member";
|
|
|
4801
4795
|
var _me = "message";
|
|
4802
4796
|
var buildFormUrlencodedString = /* @__PURE__ */ __name((formEntries) => Object.entries(formEntries).map(([key, value]) => (0, import_smithy_client.extendedEncodeURIComponent)(key) + "=" + (0, import_smithy_client.extendedEncodeURIComponent)(value)).join("&"), "buildFormUrlencodedString");
|
|
4803
4797
|
var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
4804
|
-
|
|
4805
|
-
if (((_a = data.Error) == null ? void 0 : _a.Code) !== void 0) {
|
|
4798
|
+
if (data.Error?.Code !== void 0) {
|
|
4806
4799
|
return data.Error.Code;
|
|
4807
4800
|
}
|
|
4808
4801
|
if (output.statusCode == 404) {
|
|
@@ -4811,442 +4804,473 @@ var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
|
4811
4804
|
}, "loadQueryErrorCode");
|
|
4812
4805
|
|
|
4813
4806
|
// src/commands/DeleteAlarmsCommand.ts
|
|
4814
|
-
var
|
|
4807
|
+
var DeleteAlarmsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4815
4808
|
return [
|
|
4816
4809
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4817
4810
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4818
4811
|
];
|
|
4819
4812
|
}).s("GraniteServiceVersion20100801", "DeleteAlarms", {}).n("CloudWatchClient", "DeleteAlarmsCommand").f(void 0, void 0).ser(se_DeleteAlarmsCommand).de(de_DeleteAlarmsCommand).build() {
|
|
4813
|
+
static {
|
|
4814
|
+
__name(this, "DeleteAlarmsCommand");
|
|
4815
|
+
}
|
|
4820
4816
|
};
|
|
4821
|
-
__name(_DeleteAlarmsCommand, "DeleteAlarmsCommand");
|
|
4822
|
-
var DeleteAlarmsCommand = _DeleteAlarmsCommand;
|
|
4823
4817
|
|
|
4824
4818
|
// src/commands/DeleteAnomalyDetectorCommand.ts
|
|
4825
4819
|
|
|
4826
4820
|
|
|
4827
4821
|
|
|
4828
|
-
var
|
|
4822
|
+
var DeleteAnomalyDetectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4829
4823
|
return [
|
|
4830
4824
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4831
4825
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4832
4826
|
];
|
|
4833
4827
|
}).s("GraniteServiceVersion20100801", "DeleteAnomalyDetector", {}).n("CloudWatchClient", "DeleteAnomalyDetectorCommand").f(void 0, void 0).ser(se_DeleteAnomalyDetectorCommand).de(de_DeleteAnomalyDetectorCommand).build() {
|
|
4828
|
+
static {
|
|
4829
|
+
__name(this, "DeleteAnomalyDetectorCommand");
|
|
4830
|
+
}
|
|
4834
4831
|
};
|
|
4835
|
-
__name(_DeleteAnomalyDetectorCommand, "DeleteAnomalyDetectorCommand");
|
|
4836
|
-
var DeleteAnomalyDetectorCommand = _DeleteAnomalyDetectorCommand;
|
|
4837
4832
|
|
|
4838
4833
|
// src/commands/DeleteDashboardsCommand.ts
|
|
4839
4834
|
|
|
4840
4835
|
|
|
4841
4836
|
|
|
4842
|
-
var
|
|
4837
|
+
var DeleteDashboardsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4843
4838
|
return [
|
|
4844
4839
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4845
4840
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4846
4841
|
];
|
|
4847
4842
|
}).s("GraniteServiceVersion20100801", "DeleteDashboards", {}).n("CloudWatchClient", "DeleteDashboardsCommand").f(void 0, void 0).ser(se_DeleteDashboardsCommand).de(de_DeleteDashboardsCommand).build() {
|
|
4843
|
+
static {
|
|
4844
|
+
__name(this, "DeleteDashboardsCommand");
|
|
4845
|
+
}
|
|
4848
4846
|
};
|
|
4849
|
-
__name(_DeleteDashboardsCommand, "DeleteDashboardsCommand");
|
|
4850
|
-
var DeleteDashboardsCommand = _DeleteDashboardsCommand;
|
|
4851
4847
|
|
|
4852
4848
|
// src/commands/DeleteInsightRulesCommand.ts
|
|
4853
4849
|
|
|
4854
4850
|
|
|
4855
4851
|
|
|
4856
|
-
var
|
|
4852
|
+
var DeleteInsightRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4857
4853
|
return [
|
|
4858
4854
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4859
4855
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4860
4856
|
];
|
|
4861
4857
|
}).s("GraniteServiceVersion20100801", "DeleteInsightRules", {}).n("CloudWatchClient", "DeleteInsightRulesCommand").f(void 0, void 0).ser(se_DeleteInsightRulesCommand).de(de_DeleteInsightRulesCommand).build() {
|
|
4858
|
+
static {
|
|
4859
|
+
__name(this, "DeleteInsightRulesCommand");
|
|
4860
|
+
}
|
|
4862
4861
|
};
|
|
4863
|
-
__name(_DeleteInsightRulesCommand, "DeleteInsightRulesCommand");
|
|
4864
|
-
var DeleteInsightRulesCommand = _DeleteInsightRulesCommand;
|
|
4865
4862
|
|
|
4866
4863
|
// src/commands/DeleteMetricStreamCommand.ts
|
|
4867
4864
|
|
|
4868
4865
|
|
|
4869
4866
|
|
|
4870
|
-
var
|
|
4867
|
+
var DeleteMetricStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4871
4868
|
return [
|
|
4872
4869
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4873
4870
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4874
4871
|
];
|
|
4875
4872
|
}).s("GraniteServiceVersion20100801", "DeleteMetricStream", {}).n("CloudWatchClient", "DeleteMetricStreamCommand").f(void 0, void 0).ser(se_DeleteMetricStreamCommand).de(de_DeleteMetricStreamCommand).build() {
|
|
4873
|
+
static {
|
|
4874
|
+
__name(this, "DeleteMetricStreamCommand");
|
|
4875
|
+
}
|
|
4876
4876
|
};
|
|
4877
|
-
__name(_DeleteMetricStreamCommand, "DeleteMetricStreamCommand");
|
|
4878
|
-
var DeleteMetricStreamCommand = _DeleteMetricStreamCommand;
|
|
4879
4877
|
|
|
4880
4878
|
// src/commands/DescribeAlarmHistoryCommand.ts
|
|
4881
4879
|
|
|
4882
4880
|
|
|
4883
4881
|
|
|
4884
|
-
var
|
|
4882
|
+
var DescribeAlarmHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4885
4883
|
return [
|
|
4886
4884
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4887
4885
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4888
4886
|
];
|
|
4889
4887
|
}).s("GraniteServiceVersion20100801", "DescribeAlarmHistory", {}).n("CloudWatchClient", "DescribeAlarmHistoryCommand").f(void 0, void 0).ser(se_DescribeAlarmHistoryCommand).de(de_DescribeAlarmHistoryCommand).build() {
|
|
4888
|
+
static {
|
|
4889
|
+
__name(this, "DescribeAlarmHistoryCommand");
|
|
4890
|
+
}
|
|
4890
4891
|
};
|
|
4891
|
-
__name(_DescribeAlarmHistoryCommand, "DescribeAlarmHistoryCommand");
|
|
4892
|
-
var DescribeAlarmHistoryCommand = _DescribeAlarmHistoryCommand;
|
|
4893
4892
|
|
|
4894
4893
|
// src/commands/DescribeAlarmsCommand.ts
|
|
4895
4894
|
|
|
4896
4895
|
|
|
4897
4896
|
|
|
4898
|
-
var
|
|
4897
|
+
var DescribeAlarmsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4899
4898
|
return [
|
|
4900
4899
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4901
4900
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4902
4901
|
];
|
|
4903
4902
|
}).s("GraniteServiceVersion20100801", "DescribeAlarms", {}).n("CloudWatchClient", "DescribeAlarmsCommand").f(void 0, void 0).ser(se_DescribeAlarmsCommand).de(de_DescribeAlarmsCommand).build() {
|
|
4903
|
+
static {
|
|
4904
|
+
__name(this, "DescribeAlarmsCommand");
|
|
4905
|
+
}
|
|
4904
4906
|
};
|
|
4905
|
-
__name(_DescribeAlarmsCommand, "DescribeAlarmsCommand");
|
|
4906
|
-
var DescribeAlarmsCommand = _DescribeAlarmsCommand;
|
|
4907
4907
|
|
|
4908
4908
|
// src/commands/DescribeAlarmsForMetricCommand.ts
|
|
4909
4909
|
|
|
4910
4910
|
|
|
4911
4911
|
|
|
4912
|
-
var
|
|
4912
|
+
var DescribeAlarmsForMetricCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4913
4913
|
return [
|
|
4914
4914
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4915
4915
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4916
4916
|
];
|
|
4917
4917
|
}).s("GraniteServiceVersion20100801", "DescribeAlarmsForMetric", {}).n("CloudWatchClient", "DescribeAlarmsForMetricCommand").f(void 0, void 0).ser(se_DescribeAlarmsForMetricCommand).de(de_DescribeAlarmsForMetricCommand).build() {
|
|
4918
|
+
static {
|
|
4919
|
+
__name(this, "DescribeAlarmsForMetricCommand");
|
|
4920
|
+
}
|
|
4918
4921
|
};
|
|
4919
|
-
__name(_DescribeAlarmsForMetricCommand, "DescribeAlarmsForMetricCommand");
|
|
4920
|
-
var DescribeAlarmsForMetricCommand = _DescribeAlarmsForMetricCommand;
|
|
4921
4922
|
|
|
4922
4923
|
// src/commands/DescribeAnomalyDetectorsCommand.ts
|
|
4923
4924
|
|
|
4924
4925
|
|
|
4925
4926
|
|
|
4926
|
-
var
|
|
4927
|
+
var DescribeAnomalyDetectorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4927
4928
|
return [
|
|
4928
4929
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4929
4930
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4930
4931
|
];
|
|
4931
4932
|
}).s("GraniteServiceVersion20100801", "DescribeAnomalyDetectors", {}).n("CloudWatchClient", "DescribeAnomalyDetectorsCommand").f(void 0, void 0).ser(se_DescribeAnomalyDetectorsCommand).de(de_DescribeAnomalyDetectorsCommand).build() {
|
|
4933
|
+
static {
|
|
4934
|
+
__name(this, "DescribeAnomalyDetectorsCommand");
|
|
4935
|
+
}
|
|
4932
4936
|
};
|
|
4933
|
-
__name(_DescribeAnomalyDetectorsCommand, "DescribeAnomalyDetectorsCommand");
|
|
4934
|
-
var DescribeAnomalyDetectorsCommand = _DescribeAnomalyDetectorsCommand;
|
|
4935
4937
|
|
|
4936
4938
|
// src/commands/DescribeInsightRulesCommand.ts
|
|
4937
4939
|
|
|
4938
4940
|
|
|
4939
4941
|
|
|
4940
|
-
var
|
|
4942
|
+
var DescribeInsightRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4941
4943
|
return [
|
|
4942
4944
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4943
4945
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4944
4946
|
];
|
|
4945
4947
|
}).s("GraniteServiceVersion20100801", "DescribeInsightRules", {}).n("CloudWatchClient", "DescribeInsightRulesCommand").f(void 0, void 0).ser(se_DescribeInsightRulesCommand).de(de_DescribeInsightRulesCommand).build() {
|
|
4948
|
+
static {
|
|
4949
|
+
__name(this, "DescribeInsightRulesCommand");
|
|
4950
|
+
}
|
|
4946
4951
|
};
|
|
4947
|
-
__name(_DescribeInsightRulesCommand, "DescribeInsightRulesCommand");
|
|
4948
|
-
var DescribeInsightRulesCommand = _DescribeInsightRulesCommand;
|
|
4949
4952
|
|
|
4950
4953
|
// src/commands/DisableAlarmActionsCommand.ts
|
|
4951
4954
|
|
|
4952
4955
|
|
|
4953
4956
|
|
|
4954
|
-
var
|
|
4957
|
+
var DisableAlarmActionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4955
4958
|
return [
|
|
4956
4959
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4957
4960
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4958
4961
|
];
|
|
4959
4962
|
}).s("GraniteServiceVersion20100801", "DisableAlarmActions", {}).n("CloudWatchClient", "DisableAlarmActionsCommand").f(void 0, void 0).ser(se_DisableAlarmActionsCommand).de(de_DisableAlarmActionsCommand).build() {
|
|
4963
|
+
static {
|
|
4964
|
+
__name(this, "DisableAlarmActionsCommand");
|
|
4965
|
+
}
|
|
4960
4966
|
};
|
|
4961
|
-
__name(_DisableAlarmActionsCommand, "DisableAlarmActionsCommand");
|
|
4962
|
-
var DisableAlarmActionsCommand = _DisableAlarmActionsCommand;
|
|
4963
4967
|
|
|
4964
4968
|
// src/commands/DisableInsightRulesCommand.ts
|
|
4965
4969
|
|
|
4966
4970
|
|
|
4967
4971
|
|
|
4968
|
-
var
|
|
4972
|
+
var DisableInsightRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4969
4973
|
return [
|
|
4970
4974
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4971
4975
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4972
4976
|
];
|
|
4973
4977
|
}).s("GraniteServiceVersion20100801", "DisableInsightRules", {}).n("CloudWatchClient", "DisableInsightRulesCommand").f(void 0, void 0).ser(se_DisableInsightRulesCommand).de(de_DisableInsightRulesCommand).build() {
|
|
4978
|
+
static {
|
|
4979
|
+
__name(this, "DisableInsightRulesCommand");
|
|
4980
|
+
}
|
|
4974
4981
|
};
|
|
4975
|
-
__name(_DisableInsightRulesCommand, "DisableInsightRulesCommand");
|
|
4976
|
-
var DisableInsightRulesCommand = _DisableInsightRulesCommand;
|
|
4977
4982
|
|
|
4978
4983
|
// src/commands/EnableAlarmActionsCommand.ts
|
|
4979
4984
|
|
|
4980
4985
|
|
|
4981
4986
|
|
|
4982
|
-
var
|
|
4987
|
+
var EnableAlarmActionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4983
4988
|
return [
|
|
4984
4989
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4985
4990
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4986
4991
|
];
|
|
4987
4992
|
}).s("GraniteServiceVersion20100801", "EnableAlarmActions", {}).n("CloudWatchClient", "EnableAlarmActionsCommand").f(void 0, void 0).ser(se_EnableAlarmActionsCommand).de(de_EnableAlarmActionsCommand).build() {
|
|
4993
|
+
static {
|
|
4994
|
+
__name(this, "EnableAlarmActionsCommand");
|
|
4995
|
+
}
|
|
4988
4996
|
};
|
|
4989
|
-
__name(_EnableAlarmActionsCommand, "EnableAlarmActionsCommand");
|
|
4990
|
-
var EnableAlarmActionsCommand = _EnableAlarmActionsCommand;
|
|
4991
4997
|
|
|
4992
4998
|
// src/commands/EnableInsightRulesCommand.ts
|
|
4993
4999
|
|
|
4994
5000
|
|
|
4995
5001
|
|
|
4996
|
-
var
|
|
5002
|
+
var EnableInsightRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4997
5003
|
return [
|
|
4998
5004
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4999
5005
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5000
5006
|
];
|
|
5001
5007
|
}).s("GraniteServiceVersion20100801", "EnableInsightRules", {}).n("CloudWatchClient", "EnableInsightRulesCommand").f(void 0, void 0).ser(se_EnableInsightRulesCommand).de(de_EnableInsightRulesCommand).build() {
|
|
5008
|
+
static {
|
|
5009
|
+
__name(this, "EnableInsightRulesCommand");
|
|
5010
|
+
}
|
|
5002
5011
|
};
|
|
5003
|
-
__name(_EnableInsightRulesCommand, "EnableInsightRulesCommand");
|
|
5004
|
-
var EnableInsightRulesCommand = _EnableInsightRulesCommand;
|
|
5005
5012
|
|
|
5006
5013
|
// src/commands/GetDashboardCommand.ts
|
|
5007
5014
|
|
|
5008
5015
|
|
|
5009
5016
|
|
|
5010
|
-
var
|
|
5017
|
+
var GetDashboardCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5011
5018
|
return [
|
|
5012
5019
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5013
5020
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5014
5021
|
];
|
|
5015
5022
|
}).s("GraniteServiceVersion20100801", "GetDashboard", {}).n("CloudWatchClient", "GetDashboardCommand").f(void 0, void 0).ser(se_GetDashboardCommand).de(de_GetDashboardCommand).build() {
|
|
5023
|
+
static {
|
|
5024
|
+
__name(this, "GetDashboardCommand");
|
|
5025
|
+
}
|
|
5016
5026
|
};
|
|
5017
|
-
__name(_GetDashboardCommand, "GetDashboardCommand");
|
|
5018
|
-
var GetDashboardCommand = _GetDashboardCommand;
|
|
5019
5027
|
|
|
5020
5028
|
// src/commands/GetInsightRuleReportCommand.ts
|
|
5021
5029
|
|
|
5022
5030
|
|
|
5023
5031
|
|
|
5024
|
-
var
|
|
5032
|
+
var GetInsightRuleReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5025
5033
|
return [
|
|
5026
5034
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5027
5035
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5028
5036
|
];
|
|
5029
5037
|
}).s("GraniteServiceVersion20100801", "GetInsightRuleReport", {}).n("CloudWatchClient", "GetInsightRuleReportCommand").f(void 0, void 0).ser(se_GetInsightRuleReportCommand).de(de_GetInsightRuleReportCommand).build() {
|
|
5038
|
+
static {
|
|
5039
|
+
__name(this, "GetInsightRuleReportCommand");
|
|
5040
|
+
}
|
|
5030
5041
|
};
|
|
5031
|
-
__name(_GetInsightRuleReportCommand, "GetInsightRuleReportCommand");
|
|
5032
|
-
var GetInsightRuleReportCommand = _GetInsightRuleReportCommand;
|
|
5033
5042
|
|
|
5034
5043
|
// src/commands/GetMetricDataCommand.ts
|
|
5035
5044
|
|
|
5036
5045
|
|
|
5037
5046
|
|
|
5038
|
-
var
|
|
5047
|
+
var GetMetricDataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5039
5048
|
return [
|
|
5040
5049
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5041
5050
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5042
5051
|
];
|
|
5043
5052
|
}).s("GraniteServiceVersion20100801", "GetMetricData", {}).n("CloudWatchClient", "GetMetricDataCommand").f(void 0, void 0).ser(se_GetMetricDataCommand).de(de_GetMetricDataCommand).build() {
|
|
5053
|
+
static {
|
|
5054
|
+
__name(this, "GetMetricDataCommand");
|
|
5055
|
+
}
|
|
5044
5056
|
};
|
|
5045
|
-
__name(_GetMetricDataCommand, "GetMetricDataCommand");
|
|
5046
|
-
var GetMetricDataCommand = _GetMetricDataCommand;
|
|
5047
5057
|
|
|
5048
5058
|
// src/commands/GetMetricStatisticsCommand.ts
|
|
5049
5059
|
|
|
5050
5060
|
|
|
5051
5061
|
|
|
5052
|
-
var
|
|
5062
|
+
var GetMetricStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5053
5063
|
return [
|
|
5054
5064
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5055
5065
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5056
5066
|
];
|
|
5057
5067
|
}).s("GraniteServiceVersion20100801", "GetMetricStatistics", {}).n("CloudWatchClient", "GetMetricStatisticsCommand").f(void 0, void 0).ser(se_GetMetricStatisticsCommand).de(de_GetMetricStatisticsCommand).build() {
|
|
5068
|
+
static {
|
|
5069
|
+
__name(this, "GetMetricStatisticsCommand");
|
|
5070
|
+
}
|
|
5058
5071
|
};
|
|
5059
|
-
__name(_GetMetricStatisticsCommand, "GetMetricStatisticsCommand");
|
|
5060
|
-
var GetMetricStatisticsCommand = _GetMetricStatisticsCommand;
|
|
5061
5072
|
|
|
5062
5073
|
// src/commands/GetMetricStreamCommand.ts
|
|
5063
5074
|
|
|
5064
5075
|
|
|
5065
5076
|
|
|
5066
|
-
var
|
|
5077
|
+
var GetMetricStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5067
5078
|
return [
|
|
5068
5079
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5069
5080
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5070
5081
|
];
|
|
5071
5082
|
}).s("GraniteServiceVersion20100801", "GetMetricStream", {}).n("CloudWatchClient", "GetMetricStreamCommand").f(void 0, void 0).ser(se_GetMetricStreamCommand).de(de_GetMetricStreamCommand).build() {
|
|
5083
|
+
static {
|
|
5084
|
+
__name(this, "GetMetricStreamCommand");
|
|
5085
|
+
}
|
|
5072
5086
|
};
|
|
5073
|
-
__name(_GetMetricStreamCommand, "GetMetricStreamCommand");
|
|
5074
|
-
var GetMetricStreamCommand = _GetMetricStreamCommand;
|
|
5075
5087
|
|
|
5076
5088
|
// src/commands/GetMetricWidgetImageCommand.ts
|
|
5077
5089
|
|
|
5078
5090
|
|
|
5079
5091
|
|
|
5080
|
-
var
|
|
5092
|
+
var GetMetricWidgetImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5081
5093
|
return [
|
|
5082
5094
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5083
5095
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5084
5096
|
];
|
|
5085
5097
|
}).s("GraniteServiceVersion20100801", "GetMetricWidgetImage", {}).n("CloudWatchClient", "GetMetricWidgetImageCommand").f(void 0, void 0).ser(se_GetMetricWidgetImageCommand).de(de_GetMetricWidgetImageCommand).build() {
|
|
5098
|
+
static {
|
|
5099
|
+
__name(this, "GetMetricWidgetImageCommand");
|
|
5100
|
+
}
|
|
5086
5101
|
};
|
|
5087
|
-
__name(_GetMetricWidgetImageCommand, "GetMetricWidgetImageCommand");
|
|
5088
|
-
var GetMetricWidgetImageCommand = _GetMetricWidgetImageCommand;
|
|
5089
5102
|
|
|
5090
5103
|
// src/commands/ListDashboardsCommand.ts
|
|
5091
5104
|
|
|
5092
5105
|
|
|
5093
5106
|
|
|
5094
|
-
var
|
|
5107
|
+
var ListDashboardsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5095
5108
|
return [
|
|
5096
5109
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5097
5110
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5098
5111
|
];
|
|
5099
5112
|
}).s("GraniteServiceVersion20100801", "ListDashboards", {}).n("CloudWatchClient", "ListDashboardsCommand").f(void 0, void 0).ser(se_ListDashboardsCommand).de(de_ListDashboardsCommand).build() {
|
|
5113
|
+
static {
|
|
5114
|
+
__name(this, "ListDashboardsCommand");
|
|
5115
|
+
}
|
|
5100
5116
|
};
|
|
5101
|
-
__name(_ListDashboardsCommand, "ListDashboardsCommand");
|
|
5102
|
-
var ListDashboardsCommand = _ListDashboardsCommand;
|
|
5103
5117
|
|
|
5104
5118
|
// src/commands/ListManagedInsightRulesCommand.ts
|
|
5105
5119
|
|
|
5106
5120
|
|
|
5107
5121
|
|
|
5108
|
-
var
|
|
5122
|
+
var ListManagedInsightRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5109
5123
|
return [
|
|
5110
5124
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5111
5125
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5112
5126
|
];
|
|
5113
5127
|
}).s("GraniteServiceVersion20100801", "ListManagedInsightRules", {}).n("CloudWatchClient", "ListManagedInsightRulesCommand").f(void 0, void 0).ser(se_ListManagedInsightRulesCommand).de(de_ListManagedInsightRulesCommand).build() {
|
|
5128
|
+
static {
|
|
5129
|
+
__name(this, "ListManagedInsightRulesCommand");
|
|
5130
|
+
}
|
|
5114
5131
|
};
|
|
5115
|
-
__name(_ListManagedInsightRulesCommand, "ListManagedInsightRulesCommand");
|
|
5116
|
-
var ListManagedInsightRulesCommand = _ListManagedInsightRulesCommand;
|
|
5117
5132
|
|
|
5118
5133
|
// src/commands/ListMetricsCommand.ts
|
|
5119
5134
|
|
|
5120
5135
|
|
|
5121
5136
|
|
|
5122
|
-
var
|
|
5137
|
+
var ListMetricsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5123
5138
|
return [
|
|
5124
5139
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5125
5140
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5126
5141
|
];
|
|
5127
5142
|
}).s("GraniteServiceVersion20100801", "ListMetrics", {}).n("CloudWatchClient", "ListMetricsCommand").f(void 0, void 0).ser(se_ListMetricsCommand).de(de_ListMetricsCommand).build() {
|
|
5143
|
+
static {
|
|
5144
|
+
__name(this, "ListMetricsCommand");
|
|
5145
|
+
}
|
|
5128
5146
|
};
|
|
5129
|
-
__name(_ListMetricsCommand, "ListMetricsCommand");
|
|
5130
|
-
var ListMetricsCommand = _ListMetricsCommand;
|
|
5131
5147
|
|
|
5132
5148
|
// src/commands/ListMetricStreamsCommand.ts
|
|
5133
5149
|
|
|
5134
5150
|
|
|
5135
5151
|
|
|
5136
|
-
var
|
|
5152
|
+
var ListMetricStreamsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5137
5153
|
return [
|
|
5138
5154
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5139
5155
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5140
5156
|
];
|
|
5141
5157
|
}).s("GraniteServiceVersion20100801", "ListMetricStreams", {}).n("CloudWatchClient", "ListMetricStreamsCommand").f(void 0, void 0).ser(se_ListMetricStreamsCommand).de(de_ListMetricStreamsCommand).build() {
|
|
5158
|
+
static {
|
|
5159
|
+
__name(this, "ListMetricStreamsCommand");
|
|
5160
|
+
}
|
|
5142
5161
|
};
|
|
5143
|
-
__name(_ListMetricStreamsCommand, "ListMetricStreamsCommand");
|
|
5144
|
-
var ListMetricStreamsCommand = _ListMetricStreamsCommand;
|
|
5145
5162
|
|
|
5146
5163
|
// src/commands/ListTagsForResourceCommand.ts
|
|
5147
5164
|
|
|
5148
5165
|
|
|
5149
5166
|
|
|
5150
|
-
var
|
|
5167
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5151
5168
|
return [
|
|
5152
5169
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5153
5170
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5154
5171
|
];
|
|
5155
5172
|
}).s("GraniteServiceVersion20100801", "ListTagsForResource", {}).n("CloudWatchClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
5173
|
+
static {
|
|
5174
|
+
__name(this, "ListTagsForResourceCommand");
|
|
5175
|
+
}
|
|
5156
5176
|
};
|
|
5157
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
5158
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
5159
5177
|
|
|
5160
5178
|
// src/commands/PutAnomalyDetectorCommand.ts
|
|
5161
5179
|
|
|
5162
5180
|
|
|
5163
5181
|
|
|
5164
|
-
var
|
|
5182
|
+
var PutAnomalyDetectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5165
5183
|
return [
|
|
5166
5184
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5167
5185
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5168
5186
|
];
|
|
5169
5187
|
}).s("GraniteServiceVersion20100801", "PutAnomalyDetector", {}).n("CloudWatchClient", "PutAnomalyDetectorCommand").f(void 0, void 0).ser(se_PutAnomalyDetectorCommand).de(de_PutAnomalyDetectorCommand).build() {
|
|
5188
|
+
static {
|
|
5189
|
+
__name(this, "PutAnomalyDetectorCommand");
|
|
5190
|
+
}
|
|
5170
5191
|
};
|
|
5171
|
-
__name(_PutAnomalyDetectorCommand, "PutAnomalyDetectorCommand");
|
|
5172
|
-
var PutAnomalyDetectorCommand = _PutAnomalyDetectorCommand;
|
|
5173
5192
|
|
|
5174
5193
|
// src/commands/PutCompositeAlarmCommand.ts
|
|
5175
5194
|
|
|
5176
5195
|
|
|
5177
5196
|
|
|
5178
|
-
var
|
|
5197
|
+
var PutCompositeAlarmCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5179
5198
|
return [
|
|
5180
5199
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5181
5200
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5182
5201
|
];
|
|
5183
5202
|
}).s("GraniteServiceVersion20100801", "PutCompositeAlarm", {}).n("CloudWatchClient", "PutCompositeAlarmCommand").f(void 0, void 0).ser(se_PutCompositeAlarmCommand).de(de_PutCompositeAlarmCommand).build() {
|
|
5203
|
+
static {
|
|
5204
|
+
__name(this, "PutCompositeAlarmCommand");
|
|
5205
|
+
}
|
|
5184
5206
|
};
|
|
5185
|
-
__name(_PutCompositeAlarmCommand, "PutCompositeAlarmCommand");
|
|
5186
|
-
var PutCompositeAlarmCommand = _PutCompositeAlarmCommand;
|
|
5187
5207
|
|
|
5188
5208
|
// src/commands/PutDashboardCommand.ts
|
|
5189
5209
|
|
|
5190
5210
|
|
|
5191
5211
|
|
|
5192
|
-
var
|
|
5212
|
+
var PutDashboardCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5193
5213
|
return [
|
|
5194
5214
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5195
5215
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5196
5216
|
];
|
|
5197
5217
|
}).s("GraniteServiceVersion20100801", "PutDashboard", {}).n("CloudWatchClient", "PutDashboardCommand").f(void 0, void 0).ser(se_PutDashboardCommand).de(de_PutDashboardCommand).build() {
|
|
5218
|
+
static {
|
|
5219
|
+
__name(this, "PutDashboardCommand");
|
|
5220
|
+
}
|
|
5198
5221
|
};
|
|
5199
|
-
__name(_PutDashboardCommand, "PutDashboardCommand");
|
|
5200
|
-
var PutDashboardCommand = _PutDashboardCommand;
|
|
5201
5222
|
|
|
5202
5223
|
// src/commands/PutInsightRuleCommand.ts
|
|
5203
5224
|
|
|
5204
5225
|
|
|
5205
5226
|
|
|
5206
|
-
var
|
|
5227
|
+
var PutInsightRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5207
5228
|
return [
|
|
5208
5229
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5209
5230
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5210
5231
|
];
|
|
5211
5232
|
}).s("GraniteServiceVersion20100801", "PutInsightRule", {}).n("CloudWatchClient", "PutInsightRuleCommand").f(void 0, void 0).ser(se_PutInsightRuleCommand).de(de_PutInsightRuleCommand).build() {
|
|
5233
|
+
static {
|
|
5234
|
+
__name(this, "PutInsightRuleCommand");
|
|
5235
|
+
}
|
|
5212
5236
|
};
|
|
5213
|
-
__name(_PutInsightRuleCommand, "PutInsightRuleCommand");
|
|
5214
|
-
var PutInsightRuleCommand = _PutInsightRuleCommand;
|
|
5215
5237
|
|
|
5216
5238
|
// src/commands/PutManagedInsightRulesCommand.ts
|
|
5217
5239
|
|
|
5218
5240
|
|
|
5219
5241
|
|
|
5220
|
-
var
|
|
5242
|
+
var PutManagedInsightRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5221
5243
|
return [
|
|
5222
5244
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5223
5245
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5224
5246
|
];
|
|
5225
5247
|
}).s("GraniteServiceVersion20100801", "PutManagedInsightRules", {}).n("CloudWatchClient", "PutManagedInsightRulesCommand").f(void 0, void 0).ser(se_PutManagedInsightRulesCommand).de(de_PutManagedInsightRulesCommand).build() {
|
|
5248
|
+
static {
|
|
5249
|
+
__name(this, "PutManagedInsightRulesCommand");
|
|
5250
|
+
}
|
|
5226
5251
|
};
|
|
5227
|
-
__name(_PutManagedInsightRulesCommand, "PutManagedInsightRulesCommand");
|
|
5228
|
-
var PutManagedInsightRulesCommand = _PutManagedInsightRulesCommand;
|
|
5229
5252
|
|
|
5230
5253
|
// src/commands/PutMetricAlarmCommand.ts
|
|
5231
5254
|
|
|
5232
5255
|
|
|
5233
5256
|
|
|
5234
|
-
var
|
|
5257
|
+
var PutMetricAlarmCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5235
5258
|
return [
|
|
5236
5259
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5237
5260
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5238
5261
|
];
|
|
5239
5262
|
}).s("GraniteServiceVersion20100801", "PutMetricAlarm", {}).n("CloudWatchClient", "PutMetricAlarmCommand").f(void 0, void 0).ser(se_PutMetricAlarmCommand).de(de_PutMetricAlarmCommand).build() {
|
|
5263
|
+
static {
|
|
5264
|
+
__name(this, "PutMetricAlarmCommand");
|
|
5265
|
+
}
|
|
5240
5266
|
};
|
|
5241
|
-
__name(_PutMetricAlarmCommand, "PutMetricAlarmCommand");
|
|
5242
|
-
var PutMetricAlarmCommand = _PutMetricAlarmCommand;
|
|
5243
5267
|
|
|
5244
5268
|
// src/commands/PutMetricDataCommand.ts
|
|
5245
5269
|
|
|
5246
5270
|
|
|
5247
5271
|
|
|
5248
5272
|
|
|
5249
|
-
var
|
|
5273
|
+
var PutMetricDataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5250
5274
|
return [
|
|
5251
5275
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5252
5276
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -5255,93 +5279,100 @@ var _PutMetricDataCommand = class _PutMetricDataCommand extends import_smithy_cl
|
|
|
5255
5279
|
})
|
|
5256
5280
|
];
|
|
5257
5281
|
}).s("GraniteServiceVersion20100801", "PutMetricData", {}).n("CloudWatchClient", "PutMetricDataCommand").f(void 0, void 0).ser(se_PutMetricDataCommand).de(de_PutMetricDataCommand).build() {
|
|
5282
|
+
static {
|
|
5283
|
+
__name(this, "PutMetricDataCommand");
|
|
5284
|
+
}
|
|
5258
5285
|
};
|
|
5259
|
-
__name(_PutMetricDataCommand, "PutMetricDataCommand");
|
|
5260
|
-
var PutMetricDataCommand = _PutMetricDataCommand;
|
|
5261
5286
|
|
|
5262
5287
|
// src/commands/PutMetricStreamCommand.ts
|
|
5263
5288
|
|
|
5264
5289
|
|
|
5265
5290
|
|
|
5266
|
-
var
|
|
5291
|
+
var PutMetricStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5267
5292
|
return [
|
|
5268
5293
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5269
5294
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5270
5295
|
];
|
|
5271
5296
|
}).s("GraniteServiceVersion20100801", "PutMetricStream", {}).n("CloudWatchClient", "PutMetricStreamCommand").f(void 0, void 0).ser(se_PutMetricStreamCommand).de(de_PutMetricStreamCommand).build() {
|
|
5297
|
+
static {
|
|
5298
|
+
__name(this, "PutMetricStreamCommand");
|
|
5299
|
+
}
|
|
5272
5300
|
};
|
|
5273
|
-
__name(_PutMetricStreamCommand, "PutMetricStreamCommand");
|
|
5274
|
-
var PutMetricStreamCommand = _PutMetricStreamCommand;
|
|
5275
5301
|
|
|
5276
5302
|
// src/commands/SetAlarmStateCommand.ts
|
|
5277
5303
|
|
|
5278
5304
|
|
|
5279
5305
|
|
|
5280
|
-
var
|
|
5306
|
+
var SetAlarmStateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5281
5307
|
return [
|
|
5282
5308
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5283
5309
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5284
5310
|
];
|
|
5285
5311
|
}).s("GraniteServiceVersion20100801", "SetAlarmState", {}).n("CloudWatchClient", "SetAlarmStateCommand").f(void 0, void 0).ser(se_SetAlarmStateCommand).de(de_SetAlarmStateCommand).build() {
|
|
5312
|
+
static {
|
|
5313
|
+
__name(this, "SetAlarmStateCommand");
|
|
5314
|
+
}
|
|
5286
5315
|
};
|
|
5287
|
-
__name(_SetAlarmStateCommand, "SetAlarmStateCommand");
|
|
5288
|
-
var SetAlarmStateCommand = _SetAlarmStateCommand;
|
|
5289
5316
|
|
|
5290
5317
|
// src/commands/StartMetricStreamsCommand.ts
|
|
5291
5318
|
|
|
5292
5319
|
|
|
5293
5320
|
|
|
5294
|
-
var
|
|
5321
|
+
var StartMetricStreamsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5295
5322
|
return [
|
|
5296
5323
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5297
5324
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5298
5325
|
];
|
|
5299
5326
|
}).s("GraniteServiceVersion20100801", "StartMetricStreams", {}).n("CloudWatchClient", "StartMetricStreamsCommand").f(void 0, void 0).ser(se_StartMetricStreamsCommand).de(de_StartMetricStreamsCommand).build() {
|
|
5327
|
+
static {
|
|
5328
|
+
__name(this, "StartMetricStreamsCommand");
|
|
5329
|
+
}
|
|
5300
5330
|
};
|
|
5301
|
-
__name(_StartMetricStreamsCommand, "StartMetricStreamsCommand");
|
|
5302
|
-
var StartMetricStreamsCommand = _StartMetricStreamsCommand;
|
|
5303
5331
|
|
|
5304
5332
|
// src/commands/StopMetricStreamsCommand.ts
|
|
5305
5333
|
|
|
5306
5334
|
|
|
5307
5335
|
|
|
5308
|
-
var
|
|
5336
|
+
var StopMetricStreamsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5309
5337
|
return [
|
|
5310
5338
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5311
5339
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5312
5340
|
];
|
|
5313
5341
|
}).s("GraniteServiceVersion20100801", "StopMetricStreams", {}).n("CloudWatchClient", "StopMetricStreamsCommand").f(void 0, void 0).ser(se_StopMetricStreamsCommand).de(de_StopMetricStreamsCommand).build() {
|
|
5342
|
+
static {
|
|
5343
|
+
__name(this, "StopMetricStreamsCommand");
|
|
5344
|
+
}
|
|
5314
5345
|
};
|
|
5315
|
-
__name(_StopMetricStreamsCommand, "StopMetricStreamsCommand");
|
|
5316
|
-
var StopMetricStreamsCommand = _StopMetricStreamsCommand;
|
|
5317
5346
|
|
|
5318
5347
|
// src/commands/TagResourceCommand.ts
|
|
5319
5348
|
|
|
5320
5349
|
|
|
5321
5350
|
|
|
5322
|
-
var
|
|
5351
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5323
5352
|
return [
|
|
5324
5353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5325
5354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5326
5355
|
];
|
|
5327
5356
|
}).s("GraniteServiceVersion20100801", "TagResource", {}).n("CloudWatchClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
5357
|
+
static {
|
|
5358
|
+
__name(this, "TagResourceCommand");
|
|
5359
|
+
}
|
|
5328
5360
|
};
|
|
5329
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
5330
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
5331
5361
|
|
|
5332
5362
|
// src/commands/UntagResourceCommand.ts
|
|
5333
5363
|
|
|
5334
5364
|
|
|
5335
5365
|
|
|
5336
|
-
var
|
|
5366
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5337
5367
|
return [
|
|
5338
5368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5339
5369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5340
5370
|
];
|
|
5341
5371
|
}).s("GraniteServiceVersion20100801", "UntagResource", {}).n("CloudWatchClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
5372
|
+
static {
|
|
5373
|
+
__name(this, "UntagResourceCommand");
|
|
5374
|
+
}
|
|
5342
5375
|
};
|
|
5343
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
5344
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
5345
5376
|
|
|
5346
5377
|
// src/CloudWatch.ts
|
|
5347
5378
|
var commands = {
|
|
@@ -5384,10 +5415,11 @@ var commands = {
|
|
|
5384
5415
|
TagResourceCommand,
|
|
5385
5416
|
UntagResourceCommand
|
|
5386
5417
|
};
|
|
5387
|
-
var
|
|
5418
|
+
var CloudWatch = class extends CloudWatchClient {
|
|
5419
|
+
static {
|
|
5420
|
+
__name(this, "CloudWatch");
|
|
5421
|
+
}
|
|
5388
5422
|
};
|
|
5389
|
-
__name(_CloudWatch, "CloudWatch");
|
|
5390
|
-
var CloudWatch = _CloudWatch;
|
|
5391
5423
|
(0, import_smithy_client.createAggregatedClient)(commands, CloudWatch);
|
|
5392
5424
|
|
|
5393
5425
|
// src/pagination/DescribeAlarmHistoryPaginator.ts
|