@aws-sdk/client-sagemaker-metrics 3.379.1 → 3.385.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.
|
@@ -4,19 +4,23 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export interface RawMetricData {
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
7
8
|
* <p>The name of the metric.</p>
|
|
8
9
|
*/
|
|
9
10
|
MetricName: string | undefined;
|
|
10
11
|
/**
|
|
12
|
+
* @public
|
|
11
13
|
* <p>The time that the metric was recorded.</p>
|
|
12
14
|
*/
|
|
13
15
|
Timestamp: Date | undefined;
|
|
14
16
|
/**
|
|
17
|
+
* @public
|
|
15
18
|
* <p>The metric step (epoch).
|
|
16
19
|
* </p>
|
|
17
20
|
*/
|
|
18
21
|
Step?: number;
|
|
19
22
|
/**
|
|
23
|
+
* @public
|
|
20
24
|
* <p>The metric value.</p>
|
|
21
25
|
*/
|
|
22
26
|
Value: number | undefined;
|
|
@@ -26,10 +30,12 @@ export interface RawMetricData {
|
|
|
26
30
|
*/
|
|
27
31
|
export interface BatchPutMetricsRequest {
|
|
28
32
|
/**
|
|
33
|
+
* @public
|
|
29
34
|
* <p>The name of the Trial Component to associate with the metrics.</p>
|
|
30
35
|
*/
|
|
31
36
|
TrialComponentName: string | undefined;
|
|
32
37
|
/**
|
|
38
|
+
* @public
|
|
33
39
|
* <p>A list of raw metric values to put.</p>
|
|
34
40
|
*/
|
|
35
41
|
MetricData: RawMetricData[] | undefined;
|
|
@@ -54,6 +60,7 @@ export type PutMetricsErrorCode = (typeof PutMetricsErrorCode)[keyof typeof PutM
|
|
|
54
60
|
*/
|
|
55
61
|
export interface BatchPutMetricsError {
|
|
56
62
|
/**
|
|
63
|
+
* @public
|
|
57
64
|
* <p>The error code of an error that occured when attempting to put metrics.</p>
|
|
58
65
|
* <ul>
|
|
59
66
|
* <li>
|
|
@@ -78,6 +85,7 @@ export interface BatchPutMetricsError {
|
|
|
78
85
|
*/
|
|
79
86
|
Code?: PutMetricsErrorCode | string;
|
|
80
87
|
/**
|
|
88
|
+
* @public
|
|
81
89
|
* <p>An index that corresponds to the metric in the request.</p>
|
|
82
90
|
*/
|
|
83
91
|
MetricIndex?: number;
|
|
@@ -87,6 +95,7 @@ export interface BatchPutMetricsError {
|
|
|
87
95
|
*/
|
|
88
96
|
export interface BatchPutMetricsResponse {
|
|
89
97
|
/**
|
|
98
|
+
* @public
|
|
90
99
|
* <p>Lists any errors that occur when inserting metric data.</p>
|
|
91
100
|
*/
|
|
92
101
|
Errors?: BatchPutMetricsError[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-metrics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Metrics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|