@aws-sdk/client-cloudwatch 3.952.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist-cjs/index.js +541 -369
  2. package/dist-cjs/runtimeConfig.shared.js +8 -6
  3. package/dist-es/commands/DeleteAlarmsCommand.js +2 -2
  4. package/dist-es/commands/DeleteAnomalyDetectorCommand.js +2 -2
  5. package/dist-es/commands/DeleteDashboardsCommand.js +2 -2
  6. package/dist-es/commands/DeleteInsightRulesCommand.js +2 -2
  7. package/dist-es/commands/DeleteMetricStreamCommand.js +2 -2
  8. package/dist-es/commands/DescribeAlarmContributorsCommand.js +2 -2
  9. package/dist-es/commands/DescribeAlarmHistoryCommand.js +2 -2
  10. package/dist-es/commands/DescribeAlarmsCommand.js +2 -2
  11. package/dist-es/commands/DescribeAlarmsForMetricCommand.js +2 -2
  12. package/dist-es/commands/DescribeAnomalyDetectorsCommand.js +2 -2
  13. package/dist-es/commands/DescribeInsightRulesCommand.js +2 -2
  14. package/dist-es/commands/DisableAlarmActionsCommand.js +2 -2
  15. package/dist-es/commands/DisableInsightRulesCommand.js +2 -2
  16. package/dist-es/commands/EnableAlarmActionsCommand.js +2 -2
  17. package/dist-es/commands/EnableInsightRulesCommand.js +2 -2
  18. package/dist-es/commands/GetDashboardCommand.js +2 -2
  19. package/dist-es/commands/GetInsightRuleReportCommand.js +2 -2
  20. package/dist-es/commands/GetMetricDataCommand.js +2 -2
  21. package/dist-es/commands/GetMetricStatisticsCommand.js +2 -2
  22. package/dist-es/commands/GetMetricStreamCommand.js +2 -2
  23. package/dist-es/commands/GetMetricWidgetImageCommand.js +2 -2
  24. package/dist-es/commands/ListDashboardsCommand.js +2 -2
  25. package/dist-es/commands/ListManagedInsightRulesCommand.js +2 -2
  26. package/dist-es/commands/ListMetricStreamsCommand.js +2 -2
  27. package/dist-es/commands/ListMetricsCommand.js +2 -2
  28. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  29. package/dist-es/commands/PutAnomalyDetectorCommand.js +2 -2
  30. package/dist-es/commands/PutCompositeAlarmCommand.js +2 -2
  31. package/dist-es/commands/PutDashboardCommand.js +2 -2
  32. package/dist-es/commands/PutInsightRuleCommand.js +2 -2
  33. package/dist-es/commands/PutManagedInsightRulesCommand.js +2 -2
  34. package/dist-es/commands/PutMetricAlarmCommand.js +2 -2
  35. package/dist-es/commands/PutMetricDataCommand.js +2 -2
  36. package/dist-es/commands/PutMetricStreamCommand.js +2 -2
  37. package/dist-es/commands/SetAlarmStateCommand.js +2 -2
  38. package/dist-es/commands/StartMetricStreamsCommand.js +2 -2
  39. package/dist-es/commands/StopMetricStreamsCommand.js +2 -2
  40. package/dist-es/commands/TagResourceCommand.js +2 -2
  41. package/dist-es/commands/UntagResourceCommand.js +2 -2
  42. package/dist-es/index.js +1 -0
  43. package/dist-es/runtimeConfig.shared.js +8 -6
  44. package/dist-es/schemas/schemas_0.js +323 -314
  45. package/dist-types/CloudWatchClient.d.ts +1 -10
  46. package/dist-types/index.d.ts +1 -0
  47. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  48. package/dist-types/runtimeConfig.d.ts +6 -2
  49. package/dist-types/runtimeConfig.native.d.ts +6 -2
  50. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  51. package/dist-types/schemas/schemas_0.d.ts +164 -218
  52. package/dist-types/ts3.4/CloudWatchClient.d.ts +0 -4
  53. package/dist-types/ts3.4/index.d.ts +1 -0
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +163 -218
  59. package/package.json +36 -36
@@ -26,12 +26,14 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_0Protocol({
31
- defaultNamespace: "com.amazonaws.cloudwatch",
32
- serviceTarget: "GraniteServiceVersion20100801",
33
- awsQueryCompatible: true,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.cloudwatch",
32
+ xmlNamespace: "http://monitoring.amazonaws.com/doc/2010-08-01/",
33
+ version: "2010-08-01",
34
+ serviceTarget: "GraniteServiceVersion20100801",
35
+ awsQueryCompatible: true,
36
+ },
35
37
  serviceId: config?.serviceId ?? "CloudWatch",
36
38
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
39
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAlarms } from "../schemas/schemas_0";
4
+ import { DeleteAlarms$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAlarmsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAlarmsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DeleteAlarms", {})
13
13
  .n("CloudWatchClient", "DeleteAlarmsCommand")
14
- .sc(DeleteAlarms)
14
+ .sc(DeleteAlarms$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAnomalyDetector } from "../schemas/schemas_0";
4
+ import { DeleteAnomalyDetector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAnomalyDetectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAnomalyDetectorCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DeleteAnomalyDetector", {})
13
13
  .n("CloudWatchClient", "DeleteAnomalyDetectorCommand")
14
- .sc(DeleteAnomalyDetector)
14
+ .sc(DeleteAnomalyDetector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteDashboards } from "../schemas/schemas_0";
4
+ import { DeleteDashboards$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteDashboardsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteDashboardsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DeleteDashboards", {})
13
13
  .n("CloudWatchClient", "DeleteDashboardsCommand")
14
- .sc(DeleteDashboards)
14
+ .sc(DeleteDashboards$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteInsightRules } from "../schemas/schemas_0";
4
+ import { DeleteInsightRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteInsightRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteInsightRulesCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DeleteInsightRules", {})
13
13
  .n("CloudWatchClient", "DeleteInsightRulesCommand")
14
- .sc(DeleteInsightRules)
14
+ .sc(DeleteInsightRules$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteMetricStream } from "../schemas/schemas_0";
4
+ import { DeleteMetricStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMetricStreamCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMetricStreamCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DeleteMetricStream", {})
13
13
  .n("CloudWatchClient", "DeleteMetricStreamCommand")
14
- .sc(DeleteMetricStream)
14
+ .sc(DeleteMetricStream$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeAlarmContributors } from "../schemas/schemas_0";
4
+ import { DescribeAlarmContributors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAlarmContributorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAlarmContributorsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DescribeAlarmContributors", {})
13
13
  .n("CloudWatchClient", "DescribeAlarmContributorsCommand")
14
- .sc(DescribeAlarmContributors)
14
+ .sc(DescribeAlarmContributors$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeAlarmHistory } from "../schemas/schemas_0";
4
+ import { DescribeAlarmHistory$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAlarmHistoryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAlarmHistoryCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DescribeAlarmHistory", {})
13
13
  .n("CloudWatchClient", "DescribeAlarmHistoryCommand")
14
- .sc(DescribeAlarmHistory)
14
+ .sc(DescribeAlarmHistory$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeAlarms } from "../schemas/schemas_0";
4
+ import { DescribeAlarms$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAlarmsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAlarmsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DescribeAlarms", {})
13
13
  .n("CloudWatchClient", "DescribeAlarmsCommand")
14
- .sc(DescribeAlarms)
14
+ .sc(DescribeAlarms$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeAlarmsForMetric } from "../schemas/schemas_0";
4
+ import { DescribeAlarmsForMetric$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAlarmsForMetricCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAlarmsForMetricCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DescribeAlarmsForMetric", {})
13
13
  .n("CloudWatchClient", "DescribeAlarmsForMetricCommand")
14
- .sc(DescribeAlarmsForMetric)
14
+ .sc(DescribeAlarmsForMetric$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeAnomalyDetectors } from "../schemas/schemas_0";
4
+ import { DescribeAnomalyDetectors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAnomalyDetectorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAnomalyDetectorsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DescribeAnomalyDetectors", {})
13
13
  .n("CloudWatchClient", "DescribeAnomalyDetectorsCommand")
14
- .sc(DescribeAnomalyDetectors)
14
+ .sc(DescribeAnomalyDetectors$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeInsightRules } from "../schemas/schemas_0";
4
+ import { DescribeInsightRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeInsightRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeInsightRulesCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DescribeInsightRules", {})
13
13
  .n("CloudWatchClient", "DescribeInsightRulesCommand")
14
- .sc(DescribeInsightRules)
14
+ .sc(DescribeInsightRules$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisableAlarmActions } from "../schemas/schemas_0";
4
+ import { DisableAlarmActions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisableAlarmActionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisableAlarmActionsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DisableAlarmActions", {})
13
13
  .n("CloudWatchClient", "DisableAlarmActionsCommand")
14
- .sc(DisableAlarmActions)
14
+ .sc(DisableAlarmActions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisableInsightRules } from "../schemas/schemas_0";
4
+ import { DisableInsightRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisableInsightRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisableInsightRulesCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "DisableInsightRules", {})
13
13
  .n("CloudWatchClient", "DisableInsightRulesCommand")
14
- .sc(DisableInsightRules)
14
+ .sc(DisableInsightRules$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { EnableAlarmActions } from "../schemas/schemas_0";
4
+ import { EnableAlarmActions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class EnableAlarmActionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class EnableAlarmActionsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "EnableAlarmActions", {})
13
13
  .n("CloudWatchClient", "EnableAlarmActionsCommand")
14
- .sc(EnableAlarmActions)
14
+ .sc(EnableAlarmActions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { EnableInsightRules } from "../schemas/schemas_0";
4
+ import { EnableInsightRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class EnableInsightRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class EnableInsightRulesCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "EnableInsightRules", {})
13
13
  .n("CloudWatchClient", "EnableInsightRulesCommand")
14
- .sc(EnableInsightRules)
14
+ .sc(EnableInsightRules$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetDashboard } from "../schemas/schemas_0";
4
+ import { GetDashboard$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDashboardCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDashboardCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "GetDashboard", {})
13
13
  .n("CloudWatchClient", "GetDashboardCommand")
14
- .sc(GetDashboard)
14
+ .sc(GetDashboard$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetInsightRuleReport } from "../schemas/schemas_0";
4
+ import { GetInsightRuleReport$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetInsightRuleReportCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetInsightRuleReportCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "GetInsightRuleReport", {})
13
13
  .n("CloudWatchClient", "GetInsightRuleReportCommand")
14
- .sc(GetInsightRuleReport)
14
+ .sc(GetInsightRuleReport$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMetricData } from "../schemas/schemas_0";
4
+ import { GetMetricData$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMetricDataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMetricDataCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "GetMetricData", {})
13
13
  .n("CloudWatchClient", "GetMetricDataCommand")
14
- .sc(GetMetricData)
14
+ .sc(GetMetricData$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMetricStatistics } from "../schemas/schemas_0";
4
+ import { GetMetricStatistics$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMetricStatisticsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMetricStatisticsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "GetMetricStatistics", {})
13
13
  .n("CloudWatchClient", "GetMetricStatisticsCommand")
14
- .sc(GetMetricStatistics)
14
+ .sc(GetMetricStatistics$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMetricStream } from "../schemas/schemas_0";
4
+ import { GetMetricStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMetricStreamCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMetricStreamCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "GetMetricStream", {})
13
13
  .n("CloudWatchClient", "GetMetricStreamCommand")
14
- .sc(GetMetricStream)
14
+ .sc(GetMetricStream$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMetricWidgetImage } from "../schemas/schemas_0";
4
+ import { GetMetricWidgetImage$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMetricWidgetImageCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMetricWidgetImageCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "GetMetricWidgetImage", {})
13
13
  .n("CloudWatchClient", "GetMetricWidgetImageCommand")
14
- .sc(GetMetricWidgetImage)
14
+ .sc(GetMetricWidgetImage$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDashboards } from "../schemas/schemas_0";
4
+ import { ListDashboards$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDashboardsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDashboardsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "ListDashboards", {})
13
13
  .n("CloudWatchClient", "ListDashboardsCommand")
14
- .sc(ListDashboards)
14
+ .sc(ListDashboards$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListManagedInsightRules } from "../schemas/schemas_0";
4
+ import { ListManagedInsightRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListManagedInsightRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListManagedInsightRulesCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "ListManagedInsightRules", {})
13
13
  .n("CloudWatchClient", "ListManagedInsightRulesCommand")
14
- .sc(ListManagedInsightRules)
14
+ .sc(ListManagedInsightRules$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMetricStreams } from "../schemas/schemas_0";
4
+ import { ListMetricStreams$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMetricStreamsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMetricStreamsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "ListMetricStreams", {})
13
13
  .n("CloudWatchClient", "ListMetricStreamsCommand")
14
- .sc(ListMetricStreams)
14
+ .sc(ListMetricStreams$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMetrics } from "../schemas/schemas_0";
4
+ import { ListMetrics$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMetricsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMetricsCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "ListMetrics", {})
13
13
  .n("CloudWatchClient", "ListMetricsCommand")
14
- .sc(ListMetrics)
14
+ .sc(ListMetrics$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "ListTagsForResource", {})
13
13
  .n("CloudWatchClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutAnomalyDetector } from "../schemas/schemas_0";
4
+ import { PutAnomalyDetector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutAnomalyDetectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutAnomalyDetectorCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "PutAnomalyDetector", {})
13
13
  .n("CloudWatchClient", "PutAnomalyDetectorCommand")
14
- .sc(PutAnomalyDetector)
14
+ .sc(PutAnomalyDetector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutCompositeAlarm } from "../schemas/schemas_0";
4
+ import { PutCompositeAlarm$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutCompositeAlarmCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutCompositeAlarmCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "PutCompositeAlarm", {})
13
13
  .n("CloudWatchClient", "PutCompositeAlarmCommand")
14
- .sc(PutCompositeAlarm)
14
+ .sc(PutCompositeAlarm$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutDashboard } from "../schemas/schemas_0";
4
+ import { PutDashboard$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutDashboardCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutDashboardCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "PutDashboard", {})
13
13
  .n("CloudWatchClient", "PutDashboardCommand")
14
- .sc(PutDashboard)
14
+ .sc(PutDashboard$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutInsightRule } from "../schemas/schemas_0";
4
+ import { PutInsightRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutInsightRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutInsightRuleCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "PutInsightRule", {})
13
13
  .n("CloudWatchClient", "PutInsightRuleCommand")
14
- .sc(PutInsightRule)
14
+ .sc(PutInsightRule$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutManagedInsightRules } from "../schemas/schemas_0";
4
+ import { PutManagedInsightRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutManagedInsightRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutManagedInsightRulesCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "PutManagedInsightRules", {})
13
13
  .n("CloudWatchClient", "PutManagedInsightRulesCommand")
14
- .sc(PutManagedInsightRules)
14
+ .sc(PutManagedInsightRules$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutMetricAlarm } from "../schemas/schemas_0";
4
+ import { PutMetricAlarm$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutMetricAlarmCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutMetricAlarmCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "PutMetricAlarm", {})
13
13
  .n("CloudWatchClient", "PutMetricAlarmCommand")
14
- .sc(PutMetricAlarm)
14
+ .sc(PutMetricAlarm$)
15
15
  .build() {
16
16
  }
@@ -2,7 +2,7 @@ import { getCompressionPlugin } from "@smithy/middleware-compression";
2
2
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { PutMetricData } from "../schemas/schemas_0";
5
+ import { PutMetricData$ } from "../schemas/schemas_0";
6
6
  export { $Command };
7
7
  export class PutMetricDataCommand extends $Command
8
8
  .classBuilder()
@@ -17,6 +17,6 @@ export class PutMetricDataCommand extends $Command
17
17
  })
18
18
  .s("GraniteServiceVersion20100801", "PutMetricData", {})
19
19
  .n("CloudWatchClient", "PutMetricDataCommand")
20
- .sc(PutMetricData)
20
+ .sc(PutMetricData$)
21
21
  .build() {
22
22
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutMetricStream } from "../schemas/schemas_0";
4
+ import { PutMetricStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutMetricStreamCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutMetricStreamCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "PutMetricStream", {})
13
13
  .n("CloudWatchClient", "PutMetricStreamCommand")
14
- .sc(PutMetricStream)
14
+ .sc(PutMetricStream$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SetAlarmState } from "../schemas/schemas_0";
4
+ import { SetAlarmState$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SetAlarmStateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SetAlarmStateCommand extends $Command
11
11
  })
12
12
  .s("GraniteServiceVersion20100801", "SetAlarmState", {})
13
13
  .n("CloudWatchClient", "SetAlarmStateCommand")
14
- .sc(SetAlarmState)
14
+ .sc(SetAlarmState$)
15
15
  .build() {
16
16
  }