@aws-sdk/client-cloudwatch 3.53.0 → 3.55.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/CHANGELOG.md +24 -0
- package/dist-cjs/CloudWatchClient.js +13 -13
- package/dist-cjs/commands/DeleteAlarmsCommand.js +3 -3
- package/dist-cjs/commands/DeleteAnomalyDetectorCommand.js +3 -3
- package/dist-cjs/commands/DeleteDashboardsCommand.js +3 -3
- package/dist-cjs/commands/DeleteInsightRulesCommand.js +3 -3
- package/dist-cjs/commands/DeleteMetricStreamCommand.js +3 -3
- package/dist-cjs/commands/DescribeAlarmHistoryCommand.js +3 -3
- package/dist-cjs/commands/DescribeAlarmsCommand.js +3 -3
- package/dist-cjs/commands/DescribeAlarmsForMetricCommand.js +3 -3
- package/dist-cjs/commands/DescribeAnomalyDetectorsCommand.js +3 -3
- package/dist-cjs/commands/DescribeInsightRulesCommand.js +3 -3
- package/dist-cjs/commands/DisableAlarmActionsCommand.js +3 -3
- package/dist-cjs/commands/DisableInsightRulesCommand.js +3 -3
- package/dist-cjs/commands/EnableAlarmActionsCommand.js +3 -3
- package/dist-cjs/commands/EnableInsightRulesCommand.js +3 -3
- package/dist-cjs/commands/GetDashboardCommand.js +3 -3
- package/dist-cjs/commands/GetInsightRuleReportCommand.js +3 -3
- package/dist-cjs/commands/GetMetricDataCommand.js +3 -3
- package/dist-cjs/commands/GetMetricStatisticsCommand.js +3 -3
- package/dist-cjs/commands/GetMetricStreamCommand.js +3 -3
- package/dist-cjs/commands/GetMetricWidgetImageCommand.js +3 -3
- package/dist-cjs/commands/ListDashboardsCommand.js +3 -3
- package/dist-cjs/commands/ListMetricStreamsCommand.js +3 -3
- package/dist-cjs/commands/ListMetricsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/PutAnomalyDetectorCommand.js +3 -3
- package/dist-cjs/commands/PutCompositeAlarmCommand.js +3 -3
- package/dist-cjs/commands/PutDashboardCommand.js +3 -3
- package/dist-cjs/commands/PutInsightRuleCommand.js +3 -3
- package/dist-cjs/commands/PutMetricAlarmCommand.js +3 -3
- package/dist-cjs/commands/PutMetricDataCommand.js +3 -3
- package/dist-cjs/commands/PutMetricStreamCommand.js +3 -3
- package/dist-cjs/commands/SetAlarmStateCommand.js +3 -3
- package/dist-cjs/commands/StartMetricStreamsCommand.js +3 -3
- package/dist-cjs/commands/StopMetricStreamsCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_query.js +256 -256
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-cjs/waiters/waitForAlarmExists.js +3 -3
- package/dist-cjs/waiters/waitForCompositeAlarmExists.js +3 -3
- package/dist-es/CloudWatch.js +36 -36
- package/dist-es/pagination/DescribeAlarmHistoryPaginator.js +4 -4
- package/dist-es/pagination/DescribeAlarmsPaginator.js +4 -4
- package/dist-es/pagination/DescribeInsightRulesPaginator.js +4 -4
- package/dist-es/pagination/GetMetricDataPaginator.js +4 -4
- package/dist-es/pagination/ListDashboardsPaginator.js +4 -4
- package/dist-es/pagination/ListMetricStreamsPaginator.js +4 -4
- package/dist-es/pagination/ListMetricsPaginator.js +4 -4
- package/dist-es/protocols/Aws_query.js +76 -76
- package/dist-es/waiters/waitForAlarmExists.js +1 -1
- package/dist-es/waiters/waitForCompositeAlarmExists.js +1 -1
- package/dist-types/CloudWatchClient.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/CloudWatchClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +35 -35
|
@@ -11,7 +11,7 @@ class PutAnomalyDetectorCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class PutAnomalyDetectorCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryPutAnomalyDetectorCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryPutAnomalyDetectorCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryPutAnomalyDetectorCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryPutAnomalyDetectorCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.PutAnomalyDetectorCommand = PutAnomalyDetectorCommand;
|
|
@@ -11,7 +11,7 @@ class PutCompositeAlarmCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class PutCompositeAlarmCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryPutCompositeAlarmCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryPutCompositeAlarmCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryPutCompositeAlarmCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryPutCompositeAlarmCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.PutCompositeAlarmCommand = PutCompositeAlarmCommand;
|
|
@@ -11,7 +11,7 @@ class PutDashboardCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class PutDashboardCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryPutDashboardCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryPutDashboardCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryPutDashboardCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryPutDashboardCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.PutDashboardCommand = PutDashboardCommand;
|
|
@@ -11,7 +11,7 @@ class PutInsightRuleCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class PutInsightRuleCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryPutInsightRuleCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryPutInsightRuleCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryPutInsightRuleCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryPutInsightRuleCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.PutInsightRuleCommand = PutInsightRuleCommand;
|
|
@@ -11,7 +11,7 @@ class PutMetricAlarmCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class PutMetricAlarmCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryPutMetricAlarmCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryPutMetricAlarmCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryPutMetricAlarmCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryPutMetricAlarmCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.PutMetricAlarmCommand = PutMetricAlarmCommand;
|
|
@@ -11,7 +11,7 @@ class PutMetricDataCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class PutMetricDataCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryPutMetricDataCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryPutMetricDataCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryPutMetricDataCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryPutMetricDataCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.PutMetricDataCommand = PutMetricDataCommand;
|
|
@@ -11,7 +11,7 @@ class PutMetricStreamCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class PutMetricStreamCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryPutMetricStreamCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryPutMetricStreamCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryPutMetricStreamCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryPutMetricStreamCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.PutMetricStreamCommand = PutMetricStreamCommand;
|
|
@@ -11,7 +11,7 @@ class SetAlarmStateCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class SetAlarmStateCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_querySetAlarmStateCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_querySetAlarmStateCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_querySetAlarmStateCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_querySetAlarmStateCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.SetAlarmStateCommand = SetAlarmStateCommand;
|
|
@@ -11,7 +11,7 @@ class StartMetricStreamsCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class StartMetricStreamsCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryStartMetricStreamsCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryStartMetricStreamsCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryStartMetricStreamsCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryStartMetricStreamsCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.StartMetricStreamsCommand = StartMetricStreamsCommand;
|
|
@@ -11,7 +11,7 @@ class StopMetricStreamsCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class StopMetricStreamsCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryStopMetricStreamsCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryStopMetricStreamsCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryStopMetricStreamsCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryStopMetricStreamsCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.StopMetricStreamsCommand = StopMetricStreamsCommand;
|
|
@@ -11,7 +11,7 @@ class TagResourceCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class TagResourceCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryTagResourceCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryTagResourceCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryTagResourceCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryTagResourceCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -11,7 +11,7 @@ class UntagResourceCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "CloudWatchClient";
|
|
@@ -27,10 +27,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryUntagResourceCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryUntagResourceCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryUntagResourceCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryUntagResourceCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UntagResourceCommand = UntagResourceCommand;
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -175,7 +175,7 @@ const partitionHash = {
|
|
|
175
175
|
],
|
|
176
176
|
},
|
|
177
177
|
};
|
|
178
|
-
const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
|
|
178
|
+
const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
|
|
179
179
|
...options,
|
|
180
180
|
signingService: "monitoring",
|
|
181
181
|
regionHash,
|