@aws-sdk/client-cloudwatch 3.908.0 → 3.911.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-types/models/models_0.d.ts +12 -12
- package/package.json +35 -35
|
@@ -500,28 +500,28 @@ export interface AnomalyDetector {
|
|
|
500
500
|
/**
|
|
501
501
|
* <p>The namespace of the metric associated with the anomaly detection model.</p>
|
|
502
502
|
*
|
|
503
|
-
* @deprecated
|
|
503
|
+
* @deprecated Use SingleMetricAnomalyDetector.Namespace property.
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
506
|
Namespace?: string | undefined;
|
|
507
507
|
/**
|
|
508
508
|
* <p>The name of the metric associated with the anomaly detection model.</p>
|
|
509
509
|
*
|
|
510
|
-
* @deprecated
|
|
510
|
+
* @deprecated Use SingleMetricAnomalyDetector.MetricName property.
|
|
511
511
|
* @public
|
|
512
512
|
*/
|
|
513
513
|
MetricName?: string | undefined;
|
|
514
514
|
/**
|
|
515
515
|
* <p>The metric dimensions associated with the anomaly detection model.</p>
|
|
516
516
|
*
|
|
517
|
-
* @deprecated
|
|
517
|
+
* @deprecated Use SingleMetricAnomalyDetector.Dimensions property.
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
520
|
Dimensions?: Dimension[] | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The statistic associated with the anomaly detection model.</p>
|
|
523
523
|
*
|
|
524
|
-
* @deprecated
|
|
524
|
+
* @deprecated Use SingleMetricAnomalyDetector.Stat property.
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
527
|
Stat?: string | undefined;
|
|
@@ -929,28 +929,28 @@ export interface DeleteAnomalyDetectorInput {
|
|
|
929
929
|
/**
|
|
930
930
|
* <p>The namespace associated with the anomaly detection model to delete.</p>
|
|
931
931
|
*
|
|
932
|
-
* @deprecated
|
|
932
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
935
|
Namespace?: string | undefined;
|
|
936
936
|
/**
|
|
937
937
|
* <p>The metric name associated with the anomaly detection model to delete.</p>
|
|
938
938
|
*
|
|
939
|
-
* @deprecated
|
|
939
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
940
940
|
* @public
|
|
941
941
|
*/
|
|
942
942
|
MetricName?: string | undefined;
|
|
943
943
|
/**
|
|
944
944
|
* <p>The metric dimensions associated with the anomaly detection model to delete.</p>
|
|
945
945
|
*
|
|
946
|
-
* @deprecated
|
|
946
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
947
947
|
* @public
|
|
948
948
|
*/
|
|
949
949
|
Dimensions?: Dimension[] | undefined;
|
|
950
950
|
/**
|
|
951
951
|
* <p>The statistic associated with the anomaly detection model to delete.</p>
|
|
952
952
|
*
|
|
953
|
-
* @deprecated
|
|
953
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
956
|
Stat?: string | undefined;
|
|
@@ -3254,28 +3254,28 @@ export interface PutAnomalyDetectorInput {
|
|
|
3254
3254
|
/**
|
|
3255
3255
|
* <p>The namespace of the metric to create the anomaly detection model for.</p>
|
|
3256
3256
|
*
|
|
3257
|
-
* @deprecated
|
|
3257
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
3258
3258
|
* @public
|
|
3259
3259
|
*/
|
|
3260
3260
|
Namespace?: string | undefined;
|
|
3261
3261
|
/**
|
|
3262
3262
|
* <p>The name of the metric to create the anomaly detection model for.</p>
|
|
3263
3263
|
*
|
|
3264
|
-
* @deprecated
|
|
3264
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
3265
3265
|
* @public
|
|
3266
3266
|
*/
|
|
3267
3267
|
MetricName?: string | undefined;
|
|
3268
3268
|
/**
|
|
3269
3269
|
* <p>The metric dimensions to create the anomaly detection model for.</p>
|
|
3270
3270
|
*
|
|
3271
|
-
* @deprecated
|
|
3271
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
3272
3272
|
* @public
|
|
3273
3273
|
*/
|
|
3274
3274
|
Dimensions?: Dimension[] | undefined;
|
|
3275
3275
|
/**
|
|
3276
3276
|
* <p>The statistic to use for the metric and the anomaly detection model.</p>
|
|
3277
3277
|
*
|
|
3278
|
-
* @deprecated
|
|
3278
|
+
* @deprecated Use SingleMetricAnomalyDetector.
|
|
3279
3279
|
* @public
|
|
3280
3280
|
*/
|
|
3281
3281
|
Stat?: string | undefined;
|
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.911.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",
|
|
@@ -22,44 +22,44 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^4.3.
|
|
37
|
-
"@smithy/core": "^3.
|
|
38
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
39
|
-
"@smithy/hash-node": "^4.2.
|
|
40
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
41
|
-
"@smithy/middleware-compression": "^4.3.
|
|
42
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
46
|
-
"@smithy/middleware-stack": "^4.2.
|
|
47
|
-
"@smithy/node-config-provider": "^4.3.
|
|
48
|
-
"@smithy/node-http-handler": "^4.
|
|
49
|
-
"@smithy/protocol-http": "^5.3.
|
|
50
|
-
"@smithy/smithy-client": "^4.
|
|
51
|
-
"@smithy/types": "^4.
|
|
52
|
-
"@smithy/url-parser": "^4.2.
|
|
25
|
+
"@aws-sdk/core": "3.911.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.911.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.910.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.910.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.910.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.911.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.910.0",
|
|
32
|
+
"@aws-sdk/types": "3.910.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.910.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.910.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.911.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.3.2",
|
|
37
|
+
"@smithy/core": "^3.16.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.3.3",
|
|
39
|
+
"@smithy/hash-node": "^4.2.2",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.2.2",
|
|
41
|
+
"@smithy/middleware-compression": "^4.3.3",
|
|
42
|
+
"@smithy/middleware-content-length": "^4.2.2",
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.3.3",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.3",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.2",
|
|
46
|
+
"@smithy/middleware-stack": "^4.2.2",
|
|
47
|
+
"@smithy/node-config-provider": "^4.3.2",
|
|
48
|
+
"@smithy/node-http-handler": "^4.4.1",
|
|
49
|
+
"@smithy/protocol-http": "^5.3.2",
|
|
50
|
+
"@smithy/smithy-client": "^4.8.1",
|
|
51
|
+
"@smithy/types": "^4.7.1",
|
|
52
|
+
"@smithy/url-parser": "^4.2.2",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
58
|
-
"@smithy/util-endpoints": "^3.2.
|
|
59
|
-
"@smithy/util-middleware": "^4.2.
|
|
60
|
-
"@smithy/util-retry": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.2",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.3",
|
|
58
|
+
"@smithy/util-endpoints": "^3.2.2",
|
|
59
|
+
"@smithy/util-middleware": "^4.2.2",
|
|
60
|
+
"@smithy/util-retry": "^4.2.2",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.0",
|
|
62
|
-
"@smithy/util-waiter": "^4.2.
|
|
62
|
+
"@smithy/util-waiter": "^4.2.2",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|