@aws-sdk/client-sagemaker-metrics 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -13,6 +13,7 @@
13
13
  */
14
14
  export * from "./SageMakerMetricsClient";
15
15
  export * from "./SageMakerMetrics";
16
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
16
17
  export * from "./commands";
17
18
  export * from "./models";
18
19
  export { SageMakerMetricsServiceException } from "./models/SageMakerMetricsServiceException";
@@ -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[];
@@ -1,5 +1,6 @@
1
1
  export * from "./SageMakerMetricsClient";
2
2
  export * from "./SageMakerMetrics";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./models";
5
6
  export { SageMakerMetricsServiceException } from "./models/SageMakerMetricsServiceException";
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.378.0",
4
+ "version": "3.382.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.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
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
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
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",