@aws-sdk/client-cloudwatch 3.774.0 → 3.777.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/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/CloudWatchClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/DeleteAlarmsCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDashboardsCommand.d.ts +1 -0
- package/dist-types/commands/DeleteInsightRulesCommand.d.ts +1 -0
- package/dist-types/commands/DeleteMetricStreamCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAlarmHistoryCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAlarmsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInsightRulesCommand.d.ts +1 -0
- package/dist-types/commands/DisableAlarmActionsCommand.d.ts +1 -0
- package/dist-types/commands/DisableInsightRulesCommand.d.ts +1 -0
- package/dist-types/commands/EnableAlarmActionsCommand.d.ts +1 -0
- package/dist-types/commands/EnableInsightRulesCommand.d.ts +1 -0
- package/dist-types/commands/GetDashboardCommand.d.ts +1 -0
- package/dist-types/commands/GetInsightRuleReportCommand.d.ts +1 -0
- package/dist-types/commands/GetMetricDataCommand.d.ts +1 -0
- package/dist-types/commands/GetMetricStatisticsCommand.d.ts +1 -0
- package/dist-types/commands/GetMetricStreamCommand.d.ts +1 -0
- package/dist-types/commands/GetMetricWidgetImageCommand.d.ts +1 -0
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -0
- package/dist-types/commands/ListManagedInsightRulesCommand.d.ts +1 -0
- package/dist-types/commands/ListMetricStreamsCommand.d.ts +1 -0
- package/dist-types/commands/ListMetricsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/PutAnomalyDetectorCommand.d.ts +1 -0
- package/dist-types/commands/PutCompositeAlarmCommand.d.ts +1 -0
- package/dist-types/commands/PutDashboardCommand.d.ts +1 -0
- package/dist-types/commands/PutInsightRuleCommand.d.ts +1 -0
- package/dist-types/commands/PutManagedInsightRulesCommand.d.ts +1 -0
- package/dist-types/commands/PutMetricAlarmCommand.d.ts +1 -0
- package/dist-types/commands/PutMetricDataCommand.d.ts +1 -0
- package/dist-types/commands/PutMetricStreamCommand.d.ts +1 -0
- package/dist-types/commands/SetAlarmStateCommand.d.ts +1 -0
- package/dist-types/commands/StartMetricStreamsCommand.d.ts +1 -0
- package/dist-types/commands/StopMetricStreamsCommand.d.ts +1 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/package.json +35 -35
|
@@ -40,8 +40,6 @@ const defaultCloudWatchHttpAuthSchemeProvider = (authParameters) => {
|
|
|
40
40
|
exports.defaultCloudWatchHttpAuthSchemeProvider = defaultCloudWatchHttpAuthSchemeProvider;
|
|
41
41
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
42
42
|
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
43
|
-
return {
|
|
44
|
-
...config_0,
|
|
45
|
-
};
|
|
43
|
+
return Object.assign(config_0, {});
|
|
46
44
|
};
|
|
47
45
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/index.js
CHANGED
|
@@ -122,12 +122,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
|
122
122
|
|
|
123
123
|
// src/endpoint/EndpointParameters.ts
|
|
124
124
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
125
|
-
return {
|
|
126
|
-
...options,
|
|
125
|
+
return Object.assign(options, {
|
|
127
126
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
128
127
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
129
128
|
defaultSigningName: "monitoring"
|
|
130
|
-
};
|
|
129
|
+
});
|
|
131
130
|
}, "resolveClientEndpointParameters");
|
|
132
131
|
var commonParams = {
|
|
133
132
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -184,22 +183,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
|
184
183
|
}, "resolveHttpAuthRuntimeConfig");
|
|
185
184
|
|
|
186
185
|
// src/runtimeExtensions.ts
|
|
187
|
-
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
188
186
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
189
|
-
const extensionConfiguration =
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
187
|
+
const extensionConfiguration = Object.assign(
|
|
188
|
+
(0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
|
|
189
|
+
(0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
|
|
190
|
+
(0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
|
|
191
|
+
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
192
|
+
);
|
|
195
193
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
196
|
-
return
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
194
|
+
return Object.assign(
|
|
195
|
+
runtimeConfig,
|
|
196
|
+
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
197
|
+
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
198
|
+
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
199
|
+
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
200
|
+
);
|
|
203
201
|
}, "resolveRuntimeExtensions");
|
|
204
202
|
|
|
205
203
|
// src/CloudWatchClient.ts
|
|
@@ -213,6 +211,8 @@ var CloudWatchClient = class extends import_smithy_client.Client {
|
|
|
213
211
|
config;
|
|
214
212
|
constructor(...[configuration]) {
|
|
215
213
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
214
|
+
super(_config_0);
|
|
215
|
+
this.initConfig = _config_0;
|
|
216
216
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
217
217
|
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
218
218
|
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
@@ -222,7 +222,6 @@ var CloudWatchClient = class extends import_smithy_client.Client {
|
|
|
222
222
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
223
223
|
const _config_8 = (0, import_middleware_compression.resolveCompressionConfig)(_config_7);
|
|
224
224
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
225
|
-
super(_config_9);
|
|
226
225
|
this.config = _config_9;
|
|
227
226
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
228
227
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
@@ -18,6 +18,8 @@ export class CloudWatchClient extends __Client {
|
|
|
18
18
|
config;
|
|
19
19
|
constructor(...[configuration]) {
|
|
20
20
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
21
|
+
super(_config_0);
|
|
22
|
+
this.initConfig = _config_0;
|
|
21
23
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
22
24
|
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
23
25
|
const _config_3 = resolveRetryConfig(_config_2);
|
|
@@ -27,7 +29,6 @@ export class CloudWatchClient extends __Client {
|
|
|
27
29
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
28
30
|
const _config_8 = resolveCompressionConfig(_config_7);
|
|
29
31
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
30
|
-
super(_config_9);
|
|
31
32
|
this.config = _config_9;
|
|
32
33
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
34
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
@@ -35,7 +35,5 @@ export const defaultCloudWatchHttpAuthSchemeProvider = (authParameters) => {
|
|
|
35
35
|
};
|
|
36
36
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
|
37
37
|
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
38
|
-
return {
|
|
39
|
-
...config_0,
|
|
40
|
-
};
|
|
38
|
+
return Object.assign(config_0, {});
|
|
41
39
|
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
export const resolveClientEndpointParameters = (options) => {
|
|
2
|
-
return {
|
|
3
|
-
...options,
|
|
2
|
+
return Object.assign(options, {
|
|
4
3
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
5
4
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
6
5
|
defaultSigningName: "monitoring",
|
|
7
|
-
};
|
|
6
|
+
});
|
|
8
7
|
};
|
|
9
8
|
export const commonParams = {
|
|
10
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
|
|
|
2
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
3
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
4
4
|
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
-
const asPartial = (t) => t;
|
|
6
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
-
const extensionConfiguration =
|
|
8
|
-
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
9
|
-
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
10
|
-
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
11
|
-
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
|
|
12
|
-
};
|
|
6
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
13
7
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
14
|
-
return
|
|
15
|
-
...runtimeConfig,
|
|
16
|
-
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
17
|
-
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
18
|
-
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
19
|
-
...resolveHttpAuthRuntimeConfig(extensionConfiguration),
|
|
20
|
-
};
|
|
8
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
21
9
|
};
|
|
@@ -76,6 +76,7 @@ declare const DeleteAlarmsCommand_base: {
|
|
|
76
76
|
* @throws {@link CloudWatchServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteAlarmsCommand extends DeleteAlarmsCommand_base {
|
|
@@ -112,6 +112,7 @@ declare const DeleteAnomalyDetectorCommand_base: {
|
|
|
112
112
|
* @throws {@link CloudWatchServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
114
114
|
*
|
|
115
|
+
*
|
|
115
116
|
* @public
|
|
116
117
|
*/
|
|
117
118
|
export declare class DeleteAnomalyDetectorCommand extends DeleteAnomalyDetectorCommand_base {
|
|
@@ -65,6 +65,7 @@ declare const DeleteDashboardsCommand_base: {
|
|
|
65
65
|
* @throws {@link CloudWatchServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
67
67
|
*
|
|
68
|
+
*
|
|
68
69
|
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class DeleteDashboardsCommand extends DeleteDashboardsCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const DeleteInsightRulesCommand_base: {
|
|
|
71
71
|
* @throws {@link CloudWatchServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class DeleteInsightRulesCommand extends DeleteInsightRulesCommand_base {
|
|
@@ -62,6 +62,7 @@ declare const DeleteMetricStreamCommand_base: {
|
|
|
62
62
|
* @throws {@link CloudWatchServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
64
64
|
*
|
|
65
|
+
*
|
|
65
66
|
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DeleteMetricStreamCommand extends DeleteMetricStreamCommand_base {
|
|
@@ -83,6 +83,7 @@ declare const DescribeAlarmHistoryCommand_base: {
|
|
|
83
83
|
* @throws {@link CloudWatchServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
85
85
|
*
|
|
86
|
+
*
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class DescribeAlarmHistoryCommand extends DescribeAlarmHistoryCommand_base {
|
|
@@ -169,6 +169,7 @@ declare const DescribeAlarmsCommand_base: {
|
|
|
169
169
|
* @throws {@link CloudWatchServiceException}
|
|
170
170
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
171
171
|
*
|
|
172
|
+
*
|
|
172
173
|
* @public
|
|
173
174
|
*/
|
|
174
175
|
export declare class DescribeAlarmsCommand extends DescribeAlarmsCommand_base {
|
|
@@ -136,6 +136,7 @@ declare const DescribeAlarmsForMetricCommand_base: {
|
|
|
136
136
|
* @throws {@link CloudWatchServiceException}
|
|
137
137
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
138
138
|
*
|
|
139
|
+
*
|
|
139
140
|
* @public
|
|
140
141
|
*/
|
|
141
142
|
export declare class DescribeAlarmsForMetricCommand extends DescribeAlarmsForMetricCommand_base {
|
|
@@ -144,6 +144,7 @@ declare const DescribeAnomalyDetectorsCommand_base: {
|
|
|
144
144
|
* @throws {@link CloudWatchServiceException}
|
|
145
145
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
146
146
|
*
|
|
147
|
+
*
|
|
147
148
|
* @public
|
|
148
149
|
*/
|
|
149
150
|
export declare class DescribeAnomalyDetectorsCommand extends DescribeAnomalyDetectorsCommand_base {
|
|
@@ -69,6 +69,7 @@ declare const DescribeInsightRulesCommand_base: {
|
|
|
69
69
|
* @throws {@link CloudWatchServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
71
71
|
*
|
|
72
|
+
*
|
|
72
73
|
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DescribeInsightRulesCommand extends DescribeInsightRulesCommand_base {
|
|
@@ -55,6 +55,7 @@ declare const DisableAlarmActionsCommand_base: {
|
|
|
55
55
|
* @throws {@link CloudWatchServiceException}
|
|
56
56
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
57
57
|
*
|
|
58
|
+
*
|
|
58
59
|
* @public
|
|
59
60
|
*/
|
|
60
61
|
export declare class DisableAlarmActionsCommand extends DisableAlarmActionsCommand_base {
|
|
@@ -70,6 +70,7 @@ declare const DisableInsightRulesCommand_base: {
|
|
|
70
70
|
* @throws {@link CloudWatchServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
72
72
|
*
|
|
73
|
+
*
|
|
73
74
|
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class DisableInsightRulesCommand extends DisableInsightRulesCommand_base {
|
|
@@ -54,6 +54,7 @@ declare const EnableAlarmActionsCommand_base: {
|
|
|
54
54
|
* @throws {@link CloudWatchServiceException}
|
|
55
55
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
56
56
|
*
|
|
57
|
+
*
|
|
57
58
|
* @public
|
|
58
59
|
*/
|
|
59
60
|
export declare class EnableAlarmActionsCommand extends EnableAlarmActionsCommand_base {
|
|
@@ -73,6 +73,7 @@ declare const EnableInsightRulesCommand_base: {
|
|
|
73
73
|
* @throws {@link CloudWatchServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
75
75
|
*
|
|
76
|
+
*
|
|
76
77
|
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class EnableInsightRulesCommand extends EnableInsightRulesCommand_base {
|
|
@@ -69,6 +69,7 @@ declare const GetDashboardCommand_base: {
|
|
|
69
69
|
* @throws {@link CloudWatchServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
71
71
|
*
|
|
72
|
+
*
|
|
72
73
|
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class GetDashboardCommand extends GetDashboardCommand_base {
|
|
@@ -147,6 +147,7 @@ declare const GetInsightRuleReportCommand_base: {
|
|
|
147
147
|
* @throws {@link CloudWatchServiceException}
|
|
148
148
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
149
149
|
*
|
|
150
|
+
*
|
|
150
151
|
* @public
|
|
151
152
|
*/
|
|
152
153
|
export declare class GetInsightRuleReportCommand extends GetInsightRuleReportCommand_base {
|
|
@@ -177,6 +177,7 @@ declare const GetMetricDataCommand_base: {
|
|
|
177
177
|
* @throws {@link CloudWatchServiceException}
|
|
178
178
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
179
179
|
*
|
|
180
|
+
*
|
|
180
181
|
* @public
|
|
181
182
|
*/
|
|
182
183
|
export declare class GetMetricDataCommand extends GetMetricDataCommand_base {
|
|
@@ -154,6 +154,7 @@ declare const GetMetricStatisticsCommand_base: {
|
|
|
154
154
|
* @throws {@link CloudWatchServiceException}
|
|
155
155
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
156
156
|
*
|
|
157
|
+
*
|
|
157
158
|
* @public
|
|
158
159
|
*/
|
|
159
160
|
export declare class GetMetricStatisticsCommand extends GetMetricStatisticsCommand_base {
|
|
@@ -107,6 +107,7 @@ declare const GetMetricStreamCommand_base: {
|
|
|
107
107
|
* @throws {@link CloudWatchServiceException}
|
|
108
108
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
109
109
|
*
|
|
110
|
+
*
|
|
110
111
|
* @public
|
|
111
112
|
*/
|
|
112
113
|
export declare class GetMetricStreamCommand extends GetMetricStreamCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const GetMetricWidgetImageCommand_base: {
|
|
|
71
71
|
* @throws {@link CloudWatchServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class GetMetricWidgetImageCommand extends GetMetricWidgetImageCommand_base {
|
|
@@ -77,6 +77,7 @@ declare const ListDashboardsCommand_base: {
|
|
|
77
77
|
* @throws {@link CloudWatchServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
79
79
|
*
|
|
80
|
+
*
|
|
80
81
|
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListDashboardsCommand extends ListDashboardsCommand_base {
|
|
@@ -78,6 +78,7 @@ declare const ListManagedInsightRulesCommand_base: {
|
|
|
78
78
|
* @throws {@link CloudWatchServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
80
80
|
*
|
|
81
|
+
*
|
|
81
82
|
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListManagedInsightRulesCommand extends ListManagedInsightRulesCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const ListMetricStreamsCommand_base: {
|
|
|
79
79
|
* @throws {@link CloudWatchServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class ListMetricStreamsCommand extends ListMetricStreamsCommand_base {
|
|
@@ -97,6 +97,7 @@ declare const ListMetricsCommand_base: {
|
|
|
97
97
|
* @throws {@link CloudWatchServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
99
99
|
*
|
|
100
|
+
*
|
|
100
101
|
* @public
|
|
101
102
|
*/
|
|
102
103
|
export declare class ListMetricsCommand extends ListMetricsCommand_base {
|
|
@@ -70,6 +70,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link CloudWatchServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
72
72
|
*
|
|
73
|
+
*
|
|
73
74
|
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
@@ -128,6 +128,7 @@ declare const PutAnomalyDetectorCommand_base: {
|
|
|
128
128
|
* @throws {@link CloudWatchServiceException}
|
|
129
129
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
130
130
|
*
|
|
131
|
+
*
|
|
131
132
|
* @public
|
|
132
133
|
*/
|
|
133
134
|
export declare class PutAnomalyDetectorCommand extends PutAnomalyDetectorCommand_base {
|
|
@@ -129,6 +129,7 @@ declare const PutCompositeAlarmCommand_base: {
|
|
|
129
129
|
* @throws {@link CloudWatchServiceException}
|
|
130
130
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
131
131
|
*
|
|
132
|
+
*
|
|
132
133
|
* @public
|
|
133
134
|
*/
|
|
134
135
|
export declare class PutCompositeAlarmCommand extends PutCompositeAlarmCommand_base {
|
|
@@ -82,6 +82,7 @@ declare const PutDashboardCommand_base: {
|
|
|
82
82
|
* @throws {@link CloudWatchServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
84
84
|
*
|
|
85
|
+
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class PutDashboardCommand extends PutDashboardCommand_base {
|
|
@@ -74,6 +74,7 @@ declare const PutInsightRuleCommand_base: {
|
|
|
74
74
|
* @throws {@link CloudWatchServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
76
76
|
*
|
|
77
|
+
*
|
|
77
78
|
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class PutInsightRuleCommand extends PutInsightRuleCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const PutManagedInsightRulesCommand_base: {
|
|
|
87
87
|
* @throws {@link CloudWatchServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class PutManagedInsightRulesCommand extends PutManagedInsightRulesCommand_base {
|
|
@@ -165,6 +165,7 @@ declare const PutMetricAlarmCommand_base: {
|
|
|
165
165
|
* @throws {@link CloudWatchServiceException}
|
|
166
166
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
167
167
|
*
|
|
168
|
+
*
|
|
168
169
|
* @public
|
|
169
170
|
*/
|
|
170
171
|
export declare class PutMetricAlarmCommand extends PutMetricAlarmCommand_base {
|
|
@@ -180,6 +180,7 @@ declare const PutMetricDataCommand_base: {
|
|
|
180
180
|
* @throws {@link CloudWatchServiceException}
|
|
181
181
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
182
182
|
*
|
|
183
|
+
*
|
|
183
184
|
* @public
|
|
184
185
|
*/
|
|
185
186
|
export declare class PutMetricDataCommand extends PutMetricDataCommand_base {
|
|
@@ -142,6 +142,7 @@ declare const PutMetricStreamCommand_base: {
|
|
|
142
142
|
* @throws {@link CloudWatchServiceException}
|
|
143
143
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
144
144
|
*
|
|
145
|
+
*
|
|
145
146
|
* @public
|
|
146
147
|
*/
|
|
147
148
|
export declare class PutMetricStreamCommand extends PutMetricStreamCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const SetAlarmStateCommand_base: {
|
|
|
76
76
|
* @throws {@link CloudWatchServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class SetAlarmStateCommand extends SetAlarmStateCommand_base {
|
|
@@ -64,6 +64,7 @@ declare const StartMetricStreamsCommand_base: {
|
|
|
64
64
|
* @throws {@link CloudWatchServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
66
66
|
*
|
|
67
|
+
*
|
|
67
68
|
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class StartMetricStreamsCommand extends StartMetricStreamsCommand_base {
|
|
@@ -64,6 +64,7 @@ declare const StopMetricStreamsCommand_base: {
|
|
|
64
64
|
* @throws {@link CloudWatchServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
66
66
|
*
|
|
67
|
+
*
|
|
67
68
|
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class StopMetricStreamsCommand extends StopMetricStreamsCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const TagResourceCommand_base: {
|
|
|
84
84
|
* @throws {@link CloudWatchServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
@@ -68,6 +68,7 @@ declare const UntagResourceCommand_base: {
|
|
|
68
68
|
* @throws {@link CloudWatchServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from CloudWatch service.</p>
|
|
70
70
|
*
|
|
71
|
+
*
|
|
71
72
|
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.777.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudwatch",
|
|
@@ -20,44 +20,44 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.0
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-compression": "^4.0
|
|
40
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.0
|
|
42
|
-
"@smithy/middleware-retry": "^4.0
|
|
43
|
-
"@smithy/middleware-serde": "^4.0.
|
|
44
|
-
"@smithy/middleware-stack": "^4.0.
|
|
45
|
-
"@smithy/node-config-provider": "^4.0.
|
|
46
|
-
"@smithy/node-http-handler": "^4.0.
|
|
47
|
-
"@smithy/protocol-http": "^5.0
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.775.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.775.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
|
+
"@aws-sdk/types": "3.775.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.775.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.0",
|
|
35
|
+
"@smithy/core": "^3.2.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.2",
|
|
37
|
+
"@smithy/hash-node": "^4.0.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.2",
|
|
39
|
+
"@smithy/middleware-compression": "^4.1.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.0.2",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.1.0",
|
|
42
|
+
"@smithy/middleware-retry": "^4.1.0",
|
|
43
|
+
"@smithy/middleware-serde": "^4.0.3",
|
|
44
|
+
"@smithy/middleware-stack": "^4.0.2",
|
|
45
|
+
"@smithy/node-config-provider": "^4.0.2",
|
|
46
|
+
"@smithy/node-http-handler": "^4.0.4",
|
|
47
|
+
"@smithy/protocol-http": "^5.1.0",
|
|
48
|
+
"@smithy/smithy-client": "^4.2.0",
|
|
49
|
+
"@smithy/types": "^4.2.0",
|
|
50
|
+
"@smithy/url-parser": "^4.0.2",
|
|
51
51
|
"@smithy/util-base64": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
56
|
-
"@smithy/util-endpoints": "^3.0.
|
|
57
|
-
"@smithy/util-middleware": "^4.0.
|
|
58
|
-
"@smithy/util-retry": "^4.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
56
|
+
"@smithy/util-endpoints": "^3.0.2",
|
|
57
|
+
"@smithy/util-middleware": "^4.0.2",
|
|
58
|
+
"@smithy/util-retry": "^4.0.2",
|
|
59
59
|
"@smithy/util-utf8": "^4.0.0",
|
|
60
|
-
"@smithy/util-waiter": "^4.0.
|
|
60
|
+
"@smithy/util-waiter": "^4.0.3",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|