@aws-sdk/client-sagemaker-featurestore-runtime 3.170.0 → 3.171.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 CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime
@@ -16,7 +16,6 @@ import {
16
16
  PutRecordCommandOutput,
17
17
  } from "./commands/PutRecordCommand";
18
18
  import { SageMakerFeatureStoreRuntimeClient } from "./SageMakerFeatureStoreRuntimeClient";
19
-
20
19
  export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreRuntimeClient {
21
20
  batchGetRecord(
22
21
  args: BatchGetRecordCommandInput,
@@ -31,7 +30,6 @@ export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreR
31
30
  options: __HttpHandlerOptions,
32
31
  cb: (err: any, data?: BatchGetRecordCommandOutput) => void
33
32
  ): void;
34
-
35
33
  deleteRecord(
36
34
  args: DeleteRecordCommandInput,
37
35
  options?: __HttpHandlerOptions
@@ -45,7 +43,6 @@ export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreR
45
43
  options: __HttpHandlerOptions,
46
44
  cb: (err: any, data?: DeleteRecordCommandOutput) => void
47
45
  ): void;
48
-
49
46
  getRecord(
50
47
  args: GetRecordCommandInput,
51
48
  options?: __HttpHandlerOptions
@@ -59,7 +56,6 @@ export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreR
59
56
  options: __HttpHandlerOptions,
60
57
  cb: (err: any, data?: GetRecordCommandOutput) => void
61
58
  ): void;
62
-
63
59
  putRecord(
64
60
  args: PutRecordCommandInput,
65
61
  options?: __HttpHandlerOptions
@@ -71,47 +71,26 @@ export declare type ServiceOutputTypes =
71
71
  export interface ClientDefaults
72
72
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
73
73
  requestHandler?: __HttpHandler;
74
-
75
74
  sha256?: __HashConstructor;
76
-
77
75
  urlParser?: __UrlParser;
78
-
79
76
  bodyLengthChecker?: __BodyLengthCalculator;
80
-
81
77
  streamCollector?: __StreamCollector;
82
-
83
78
  base64Decoder?: __Decoder;
84
-
85
79
  base64Encoder?: __Encoder;
86
-
87
80
  utf8Decoder?: __Decoder;
88
-
89
81
  utf8Encoder?: __Encoder;
90
-
91
82
  runtime?: string;
92
-
93
83
  disableHostPrefix?: boolean;
94
-
95
84
  maxAttempts?: number | __Provider<number>;
96
-
97
85
  retryMode?: string | __Provider<string>;
98
-
99
86
  logger?: __Logger;
100
-
101
87
  useDualstackEndpoint?: boolean | __Provider<boolean>;
102
-
103
88
  useFipsEndpoint?: boolean | __Provider<boolean>;
104
-
105
89
  serviceId?: string;
106
-
107
90
  region?: string | __Provider<string>;
108
-
109
91
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
110
-
111
92
  regionInfoProvider?: RegionInfoProvider;
112
-
113
93
  defaultUserAgentProvider?: Provider<__UserAgent>;
114
-
115
94
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
116
95
  }
117
96
  declare type SageMakerFeatureStoreRuntimeClientConfigType = Partial<
@@ -124,7 +103,6 @@ declare type SageMakerFeatureStoreRuntimeClientConfigType = Partial<
124
103
  HostHeaderInputConfig &
125
104
  AwsAuthInputConfig &
126
105
  UserAgentInputConfig;
127
-
128
106
  export interface SageMakerFeatureStoreRuntimeClientConfig
129
107
  extends SageMakerFeatureStoreRuntimeClientConfigType {}
130
108
  declare type SageMakerFeatureStoreRuntimeClientResolvedConfigType =
@@ -136,10 +114,8 @@ declare type SageMakerFeatureStoreRuntimeClientResolvedConfigType =
136
114
  HostHeaderResolvedConfig &
137
115
  AwsAuthResolvedConfig &
138
116
  UserAgentResolvedConfig;
139
-
140
117
  export interface SageMakerFeatureStoreRuntimeClientResolvedConfig
141
118
  extends SageMakerFeatureStoreRuntimeClientResolvedConfigType {}
142
-
143
119
  export declare class SageMakerFeatureStoreRuntimeClient extends __Client<
144
120
  __HttpHandlerOptions,
145
121
  ServiceInputTypes,
@@ -148,7 +124,6 @@ export declare class SageMakerFeatureStoreRuntimeClient extends __Client<
148
124
  > {
149
125
  readonly config: SageMakerFeatureStoreRuntimeClientResolvedConfig;
150
126
  constructor(configuration: SageMakerFeatureStoreRuntimeClientConfig);
151
-
152
127
  destroy(): void;
153
128
  }
154
129
  export {};
@@ -18,7 +18,6 @@ export interface BatchGetRecordCommandInput extends BatchGetRecordRequest {}
18
18
  export interface BatchGetRecordCommandOutput
19
19
  extends BatchGetRecordResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class BatchGetRecordCommand extends $Command<
23
22
  BatchGetRecordCommandInput,
24
23
  BatchGetRecordCommandOutput,
@@ -26,7 +25,6 @@ export declare class BatchGetRecordCommand extends $Command<
26
25
  > {
27
26
  readonly input: BatchGetRecordCommandInput;
28
27
  constructor(input: BatchGetRecordCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
@@ -13,7 +13,6 @@ import {
13
13
  } from "../SageMakerFeatureStoreRuntimeClient";
14
14
  export interface DeleteRecordCommandInput extends DeleteRecordRequest {}
15
15
  export interface DeleteRecordCommandOutput extends __MetadataBearer {}
16
-
17
16
  export declare class DeleteRecordCommand extends $Command<
18
17
  DeleteRecordCommandInput,
19
18
  DeleteRecordCommandOutput,
@@ -21,7 +20,6 @@ export declare class DeleteRecordCommand extends $Command<
21
20
  > {
22
21
  readonly input: DeleteRecordCommandInput;
23
22
  constructor(input: DeleteRecordCommandInput);
24
-
25
23
  resolveMiddleware(
26
24
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
25
  configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetRecordCommandInput extends GetRecordRequest {}
15
15
  export interface GetRecordCommandOutput
16
16
  extends GetRecordResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetRecordCommand extends $Command<
20
19
  GetRecordCommandInput,
21
20
  GetRecordCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetRecordCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetRecordCommandInput;
25
24
  constructor(input: GetRecordCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
@@ -13,7 +13,6 @@ import {
13
13
  } from "../SageMakerFeatureStoreRuntimeClient";
14
14
  export interface PutRecordCommandInput extends PutRecordRequest {}
15
15
  export interface PutRecordCommandOutput extends __MetadataBearer {}
16
-
17
16
  export declare class PutRecordCommand extends $Command<
18
17
  PutRecordCommandInput,
19
18
  PutRecordCommandOutput,
@@ -21,7 +20,6 @@ export declare class PutRecordCommand extends $Command<
21
20
  > {
22
21
  readonly input: PutRecordCommandInput;
23
22
  constructor(input: PutRecordCommandInput);
24
-
25
23
  resolveMiddleware(
26
24
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
25
  configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class SageMakerFeatureStoreRuntimeServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,144 +1,105 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
3
-
4
3
  export declare class AccessForbidden extends __BaseException {
5
4
  readonly name: "AccessForbidden";
6
5
  readonly $fault: "client";
7
6
  Message?: string;
8
-
9
7
  constructor(opts: __ExceptionOptionType<AccessForbidden, __BaseException>);
10
8
  }
11
-
12
9
  export interface BatchGetRecordIdentifier {
13
10
  FeatureGroupName: string | undefined;
14
-
15
11
  RecordIdentifiersValueAsString: string[] | undefined;
16
-
17
12
  FeatureNames?: string[];
18
13
  }
19
14
  export interface BatchGetRecordRequest {
20
15
  Identifiers: BatchGetRecordIdentifier[] | undefined;
21
16
  }
22
-
23
17
  export interface BatchGetRecordError {
24
18
  FeatureGroupName: string | undefined;
25
-
26
19
  RecordIdentifierValueAsString: string | undefined;
27
-
28
20
  ErrorCode: string | undefined;
29
-
30
21
  ErrorMessage: string | undefined;
31
22
  }
32
-
33
23
  export interface FeatureValue {
34
24
  FeatureName: string | undefined;
35
-
36
25
  ValueAsString: string | undefined;
37
26
  }
38
-
39
27
  export interface BatchGetRecordResultDetail {
40
28
  FeatureGroupName: string | undefined;
41
-
42
29
  RecordIdentifierValueAsString: string | undefined;
43
-
44
30
  Record: FeatureValue[] | undefined;
45
31
  }
46
32
  export interface BatchGetRecordResponse {
47
33
  Records: BatchGetRecordResultDetail[] | undefined;
48
-
49
34
  Errors: BatchGetRecordError[] | undefined;
50
-
51
35
  UnprocessedIdentifiers: BatchGetRecordIdentifier[] | undefined;
52
36
  }
53
-
54
37
  export declare class InternalFailure extends __BaseException {
55
38
  readonly name: "InternalFailure";
56
39
  readonly $fault: "server";
57
40
  Message?: string;
58
-
59
41
  constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
60
42
  }
61
-
62
43
  export declare class ServiceUnavailable extends __BaseException {
63
44
  readonly name: "ServiceUnavailable";
64
45
  readonly $fault: "server";
65
46
  Message?: string;
66
-
67
47
  constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
68
48
  }
69
-
70
49
  export declare class ValidationError extends __BaseException {
71
50
  readonly name: "ValidationError";
72
51
  readonly $fault: "client";
73
52
  Message?: string;
74
-
75
53
  constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
76
54
  }
77
55
  export interface DeleteRecordRequest {
78
56
  FeatureGroupName: string | undefined;
79
-
80
57
  RecordIdentifierValueAsString: string | undefined;
81
-
82
58
  EventTime: string | undefined;
83
59
  }
84
60
  export interface GetRecordRequest {
85
61
  FeatureGroupName: string | undefined;
86
-
87
62
  RecordIdentifierValueAsString: string | undefined;
88
-
89
63
  FeatureNames?: string[];
90
64
  }
91
65
  export interface GetRecordResponse {
92
66
  Record?: FeatureValue[];
93
67
  }
94
-
95
68
  export declare class ResourceNotFound extends __BaseException {
96
69
  readonly name: "ResourceNotFound";
97
70
  readonly $fault: "client";
98
71
  Message?: string;
99
-
100
72
  constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
101
73
  }
102
74
  export interface PutRecordRequest {
103
75
  FeatureGroupName: string | undefined;
104
-
105
76
  Record: FeatureValue[] | undefined;
106
77
  }
107
-
108
78
  export declare const BatchGetRecordIdentifierFilterSensitiveLog: (
109
79
  obj: BatchGetRecordIdentifier
110
80
  ) => any;
111
-
112
81
  export declare const BatchGetRecordRequestFilterSensitiveLog: (
113
82
  obj: BatchGetRecordRequest
114
83
  ) => any;
115
-
116
84
  export declare const BatchGetRecordErrorFilterSensitiveLog: (
117
85
  obj: BatchGetRecordError
118
86
  ) => any;
119
-
120
87
  export declare const FeatureValueFilterSensitiveLog: (obj: FeatureValue) => any;
121
-
122
88
  export declare const BatchGetRecordResultDetailFilterSensitiveLog: (
123
89
  obj: BatchGetRecordResultDetail
124
90
  ) => any;
125
-
126
91
  export declare const BatchGetRecordResponseFilterSensitiveLog: (
127
92
  obj: BatchGetRecordResponse
128
93
  ) => any;
129
-
130
94
  export declare const DeleteRecordRequestFilterSensitiveLog: (
131
95
  obj: DeleteRecordRequest
132
96
  ) => any;
133
-
134
97
  export declare const GetRecordRequestFilterSensitiveLog: (
135
98
  obj: GetRecordRequest
136
99
  ) => any;
137
-
138
100
  export declare const GetRecordResponseFilterSensitiveLog: (
139
101
  obj: GetRecordResponse
140
102
  ) => any;
141
-
142
103
  export declare const PutRecordRequestFilterSensitiveLog: (
143
104
  obj: PutRecordRequest
144
105
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: SageMakerFeatureStoreRuntimeClientConfig
6
5
  ) => {
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: SageMakerFeatureStoreRuntimeClientConfig
6
5
  ) => {
@@ -1,5 +1,4 @@
1
1
  import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
2
-
3
2
  export declare const getRuntimeConfig: (
4
3
  config: SageMakerFeatureStoreRuntimeClientConfig
5
4
  ) => {
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: SageMakerFeatureStoreRuntimeClientConfig
6
5
  ) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker-featurestore-runtime",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Featurestore Runtime Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.171.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",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.171.0",
23
+ "@aws-sdk/config-resolver": "3.171.0",
24
+ "@aws-sdk/credential-provider-node": "3.171.0",
25
+ "@aws-sdk/fetch-http-handler": "3.171.0",
26
+ "@aws-sdk/hash-node": "3.171.0",
27
+ "@aws-sdk/invalid-dependency": "3.171.0",
28
+ "@aws-sdk/middleware-content-length": "3.171.0",
29
+ "@aws-sdk/middleware-host-header": "3.171.0",
30
+ "@aws-sdk/middleware-logger": "3.171.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
+ "@aws-sdk/middleware-retry": "3.171.0",
33
+ "@aws-sdk/middleware-serde": "3.171.0",
34
+ "@aws-sdk/middleware-signing": "3.171.0",
35
+ "@aws-sdk/middleware-stack": "3.171.0",
36
+ "@aws-sdk/middleware-user-agent": "3.171.0",
37
+ "@aws-sdk/node-config-provider": "3.171.0",
38
+ "@aws-sdk/node-http-handler": "3.171.0",
39
+ "@aws-sdk/protocol-http": "3.171.0",
40
+ "@aws-sdk/smithy-client": "3.171.0",
41
+ "@aws-sdk/types": "3.171.0",
42
+ "@aws-sdk/url-parser": "3.171.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.171.0",
50
+ "@aws-sdk/util-user-agent-node": "3.171.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"