@aws-sdk/client-sagemaker-a2i-runtime 3.170.0 → 3.178.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,22 @@
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.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: SageMakerA2IRuntimeClientConfig)
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: SageMakerA2IRuntimeClientConfig)
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: SageMakerA2IRuntimeClientConfig)
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -20,7 +20,6 @@ import {
20
20
  StopHumanLoopCommandOutput,
21
21
  } from "./commands/StopHumanLoopCommand";
22
22
  import { SageMakerA2IRuntimeClient } from "./SageMakerA2IRuntimeClient";
23
-
24
23
  export declare class SageMakerA2IRuntime extends SageMakerA2IRuntimeClient {
25
24
  deleteHumanLoop(
26
25
  args: DeleteHumanLoopCommandInput,
@@ -35,7 +34,6 @@ export declare class SageMakerA2IRuntime extends SageMakerA2IRuntimeClient {
35
34
  options: __HttpHandlerOptions,
36
35
  cb: (err: any, data?: DeleteHumanLoopCommandOutput) => void
37
36
  ): void;
38
-
39
37
  describeHumanLoop(
40
38
  args: DescribeHumanLoopCommandInput,
41
39
  options?: __HttpHandlerOptions
@@ -49,7 +47,6 @@ export declare class SageMakerA2IRuntime extends SageMakerA2IRuntimeClient {
49
47
  options: __HttpHandlerOptions,
50
48
  cb: (err: any, data?: DescribeHumanLoopCommandOutput) => void
51
49
  ): void;
52
-
53
50
  listHumanLoops(
54
51
  args: ListHumanLoopsCommandInput,
55
52
  options?: __HttpHandlerOptions
@@ -63,7 +60,6 @@ export declare class SageMakerA2IRuntime extends SageMakerA2IRuntimeClient {
63
60
  options: __HttpHandlerOptions,
64
61
  cb: (err: any, data?: ListHumanLoopsCommandOutput) => void
65
62
  ): void;
66
-
67
63
  startHumanLoop(
68
64
  args: StartHumanLoopCommandInput,
69
65
  options?: __HttpHandlerOptions
@@ -77,7 +73,6 @@ export declare class SageMakerA2IRuntime extends SageMakerA2IRuntimeClient {
77
73
  options: __HttpHandlerOptions,
78
74
  cb: (err: any, data?: StartHumanLoopCommandOutput) => void
79
75
  ): void;
80
-
81
76
  stopHumanLoop(
82
77
  args: StopHumanLoopCommandInput,
83
78
  options?: __HttpHandlerOptions
@@ -77,47 +77,26 @@ export declare type ServiceOutputTypes =
77
77
  export interface ClientDefaults
78
78
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
79
79
  requestHandler?: __HttpHandler;
80
-
81
80
  sha256?: __HashConstructor;
82
-
83
81
  urlParser?: __UrlParser;
84
-
85
82
  bodyLengthChecker?: __BodyLengthCalculator;
86
-
87
83
  streamCollector?: __StreamCollector;
88
-
89
84
  base64Decoder?: __Decoder;
90
-
91
85
  base64Encoder?: __Encoder;
92
-
93
86
  utf8Decoder?: __Decoder;
94
-
95
87
  utf8Encoder?: __Encoder;
96
-
97
88
  runtime?: string;
98
-
99
89
  disableHostPrefix?: boolean;
100
-
101
90
  maxAttempts?: number | __Provider<number>;
102
-
103
91
  retryMode?: string | __Provider<string>;
104
-
105
92
  logger?: __Logger;
106
-
107
93
  useDualstackEndpoint?: boolean | __Provider<boolean>;
108
-
109
94
  useFipsEndpoint?: boolean | __Provider<boolean>;
110
-
111
95
  serviceId?: string;
112
-
113
96
  region?: string | __Provider<string>;
114
-
115
97
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
116
-
117
98
  regionInfoProvider?: RegionInfoProvider;
118
-
119
99
  defaultUserAgentProvider?: Provider<__UserAgent>;
120
-
121
100
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
122
101
  }
123
102
  declare type SageMakerA2IRuntimeClientConfigType = Partial<
@@ -130,7 +109,6 @@ declare type SageMakerA2IRuntimeClientConfigType = Partial<
130
109
  HostHeaderInputConfig &
131
110
  AwsAuthInputConfig &
132
111
  UserAgentInputConfig;
133
-
134
112
  export interface SageMakerA2IRuntimeClientConfig
135
113
  extends SageMakerA2IRuntimeClientConfigType {}
136
114
  declare type SageMakerA2IRuntimeClientResolvedConfigType =
@@ -142,10 +120,8 @@ declare type SageMakerA2IRuntimeClientResolvedConfigType =
142
120
  HostHeaderResolvedConfig &
143
121
  AwsAuthResolvedConfig &
144
122
  UserAgentResolvedConfig;
145
-
146
123
  export interface SageMakerA2IRuntimeClientResolvedConfig
147
124
  extends SageMakerA2IRuntimeClientResolvedConfigType {}
148
-
149
125
  export declare class SageMakerA2IRuntimeClient extends __Client<
150
126
  __HttpHandlerOptions,
151
127
  ServiceInputTypes,
@@ -154,7 +130,6 @@ export declare class SageMakerA2IRuntimeClient extends __Client<
154
130
  > {
155
131
  readonly config: SageMakerA2IRuntimeClientResolvedConfig;
156
132
  constructor(configuration: SageMakerA2IRuntimeClientConfig);
157
-
158
133
  destroy(): void;
159
134
  }
160
135
  export {};
@@ -18,7 +18,6 @@ export interface DeleteHumanLoopCommandInput extends DeleteHumanLoopRequest {}
18
18
  export interface DeleteHumanLoopCommandOutput
19
19
  extends DeleteHumanLoopResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DeleteHumanLoopCommand extends $Command<
23
22
  DeleteHumanLoopCommandInput,
24
23
  DeleteHumanLoopCommandOutput,
@@ -26,7 +25,6 @@ export declare class DeleteHumanLoopCommand extends $Command<
26
25
  > {
27
26
  readonly input: DeleteHumanLoopCommandInput;
28
27
  constructor(input: DeleteHumanLoopCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: SageMakerA2IRuntimeClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeHumanLoopCommandInput
19
19
  export interface DescribeHumanLoopCommandOutput
20
20
  extends DescribeHumanLoopResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeHumanLoopCommand extends $Command<
24
23
  DescribeHumanLoopCommandInput,
25
24
  DescribeHumanLoopCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeHumanLoopCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeHumanLoopCommandInput;
29
28
  constructor(input: DescribeHumanLoopCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: SageMakerA2IRuntimeClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface ListHumanLoopsCommandInput extends ListHumanLoopsRequest {}
18
18
  export interface ListHumanLoopsCommandOutput
19
19
  extends ListHumanLoopsResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class ListHumanLoopsCommand extends $Command<
23
22
  ListHumanLoopsCommandInput,
24
23
  ListHumanLoopsCommandOutput,
@@ -26,7 +25,6 @@ export declare class ListHumanLoopsCommand extends $Command<
26
25
  > {
27
26
  readonly input: ListHumanLoopsCommandInput;
28
27
  constructor(input: ListHumanLoopsCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: SageMakerA2IRuntimeClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface StartHumanLoopCommandInput extends StartHumanLoopRequest {}
18
18
  export interface StartHumanLoopCommandOutput
19
19
  extends StartHumanLoopResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class StartHumanLoopCommand extends $Command<
23
22
  StartHumanLoopCommandInput,
24
23
  StartHumanLoopCommandOutput,
@@ -26,7 +25,6 @@ export declare class StartHumanLoopCommand extends $Command<
26
25
  > {
27
26
  readonly input: StartHumanLoopCommandInput;
28
27
  constructor(input: StartHumanLoopCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: SageMakerA2IRuntimeClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface StopHumanLoopCommandInput extends StopHumanLoopRequest {}
18
18
  export interface StopHumanLoopCommandOutput
19
19
  extends StopHumanLoopResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class StopHumanLoopCommand extends $Command<
23
22
  StopHumanLoopCommandInput,
24
23
  StopHumanLoopCommandOutput,
@@ -26,7 +25,6 @@ export declare class StopHumanLoopCommand extends $Command<
26
25
  > {
27
26
  readonly input: StopHumanLoopCommandInput;
28
27
  constructor(input: StopHumanLoopCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: SageMakerA2IRuntimeClientResolvedConfig,
@@ -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 SageMakerA2IRuntimeServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -4,42 +4,34 @@ export interface DeleteHumanLoopRequest {
4
4
  HumanLoopName: string | undefined;
5
5
  }
6
6
  export interface DeleteHumanLoopResponse {}
7
-
8
7
  export declare class InternalServerException extends __BaseException {
9
8
  readonly name: "InternalServerException";
10
9
  readonly $fault: "server";
11
10
  Message?: string;
12
-
13
11
  constructor(
14
12
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
15
13
  );
16
14
  }
17
-
18
15
  export declare class ResourceNotFoundException extends __BaseException {
19
16
  readonly name: "ResourceNotFoundException";
20
17
  readonly $fault: "client";
21
18
  Message?: string;
22
-
23
19
  constructor(
24
20
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
25
21
  );
26
22
  }
27
-
28
23
  export declare class ThrottlingException extends __BaseException {
29
24
  readonly name: "ThrottlingException";
30
25
  readonly $fault: "client";
31
26
  Message?: string;
32
-
33
27
  constructor(
34
28
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
35
29
  );
36
30
  }
37
-
38
31
  export declare class ValidationException extends __BaseException {
39
32
  readonly name: "ValidationException";
40
33
  readonly $fault: "client";
41
34
  Message?: string;
42
-
43
35
  constructor(
44
36
  opts: __ExceptionOptionType<ValidationException, __BaseException>
45
37
  );
@@ -47,7 +39,6 @@ export declare class ValidationException extends __BaseException {
47
39
  export interface DescribeHumanLoopRequest {
48
40
  HumanLoopName: string | undefined;
49
41
  }
50
-
51
42
  export interface HumanLoopOutput {
52
43
  OutputS3Uri: string | undefined;
53
44
  }
@@ -60,19 +51,12 @@ export declare enum HumanLoopStatus {
60
51
  }
61
52
  export interface DescribeHumanLoopResponse {
62
53
  CreationTime: Date | undefined;
63
-
64
54
  FailureReason?: string;
65
-
66
55
  FailureCode?: string;
67
-
68
56
  HumanLoopStatus: HumanLoopStatus | string | undefined;
69
-
70
57
  HumanLoopName: string | undefined;
71
-
72
58
  HumanLoopArn: string | undefined;
73
-
74
59
  FlowDefinitionArn: string | undefined;
75
-
76
60
  HumanLoopOutput?: HumanLoopOutput;
77
61
  }
78
62
  export declare enum SortOrder {
@@ -81,48 +65,33 @@ export declare enum SortOrder {
81
65
  }
82
66
  export interface ListHumanLoopsRequest {
83
67
  CreationTimeAfter?: Date;
84
-
85
68
  CreationTimeBefore?: Date;
86
-
87
69
  FlowDefinitionArn: string | undefined;
88
-
89
70
  SortOrder?: SortOrder | string;
90
-
91
71
  NextToken?: string;
92
-
93
72
  MaxResults?: number;
94
73
  }
95
-
96
74
  export interface HumanLoopSummary {
97
75
  HumanLoopName?: string;
98
-
99
76
  HumanLoopStatus?: HumanLoopStatus | string;
100
-
101
77
  CreationTime?: Date;
102
-
103
78
  FailureReason?: string;
104
-
105
79
  FlowDefinitionArn?: string;
106
80
  }
107
81
  export interface ListHumanLoopsResponse {
108
82
  HumanLoopSummaries: HumanLoopSummary[] | undefined;
109
-
110
83
  NextToken?: string;
111
84
  }
112
-
113
85
  export declare class ConflictException extends __BaseException {
114
86
  readonly name: "ConflictException";
115
87
  readonly $fault: "client";
116
88
  Message?: string;
117
-
118
89
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
119
90
  }
120
-
121
91
  export declare class ServiceQuotaExceededException extends __BaseException {
122
92
  readonly name: "ServiceQuotaExceededException";
123
93
  readonly $fault: "client";
124
94
  Message?: string;
125
-
126
95
  constructor(
127
96
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
128
97
  );
@@ -131,21 +100,16 @@ export declare enum ContentClassifier {
131
100
  FREE_OF_ADULT_CONTENT = "FreeOfAdultContent",
132
101
  FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION = "FreeOfPersonallyIdentifiableInformation",
133
102
  }
134
-
135
103
  export interface HumanLoopDataAttributes {
136
104
  ContentClassifiers: (ContentClassifier | string)[] | undefined;
137
105
  }
138
-
139
106
  export interface HumanLoopInput {
140
107
  InputContent: string | undefined;
141
108
  }
142
109
  export interface StartHumanLoopRequest {
143
110
  HumanLoopName: string | undefined;
144
-
145
111
  FlowDefinitionArn: string | undefined;
146
-
147
112
  HumanLoopInput: HumanLoopInput | undefined;
148
-
149
113
  DataAttributes?: HumanLoopDataAttributes;
150
114
  }
151
115
  export interface StartHumanLoopResponse {
@@ -155,59 +119,45 @@ export interface StopHumanLoopRequest {
155
119
  HumanLoopName: string | undefined;
156
120
  }
157
121
  export interface StopHumanLoopResponse {}
158
-
159
122
  export declare const DeleteHumanLoopRequestFilterSensitiveLog: (
160
123
  obj: DeleteHumanLoopRequest
161
124
  ) => any;
162
-
163
125
  export declare const DeleteHumanLoopResponseFilterSensitiveLog: (
164
126
  obj: DeleteHumanLoopResponse
165
127
  ) => any;
166
-
167
128
  export declare const DescribeHumanLoopRequestFilterSensitiveLog: (
168
129
  obj: DescribeHumanLoopRequest
169
130
  ) => any;
170
-
171
131
  export declare const HumanLoopOutputFilterSensitiveLog: (
172
132
  obj: HumanLoopOutput
173
133
  ) => any;
174
-
175
134
  export declare const DescribeHumanLoopResponseFilterSensitiveLog: (
176
135
  obj: DescribeHumanLoopResponse
177
136
  ) => any;
178
-
179
137
  export declare const ListHumanLoopsRequestFilterSensitiveLog: (
180
138
  obj: ListHumanLoopsRequest
181
139
  ) => any;
182
-
183
140
  export declare const HumanLoopSummaryFilterSensitiveLog: (
184
141
  obj: HumanLoopSummary
185
142
  ) => any;
186
-
187
143
  export declare const ListHumanLoopsResponseFilterSensitiveLog: (
188
144
  obj: ListHumanLoopsResponse
189
145
  ) => any;
190
-
191
146
  export declare const HumanLoopDataAttributesFilterSensitiveLog: (
192
147
  obj: HumanLoopDataAttributes
193
148
  ) => any;
194
-
195
149
  export declare const HumanLoopInputFilterSensitiveLog: (
196
150
  obj: HumanLoopInput
197
151
  ) => any;
198
-
199
152
  export declare const StartHumanLoopRequestFilterSensitiveLog: (
200
153
  obj: StartHumanLoopRequest
201
154
  ) => any;
202
-
203
155
  export declare const StartHumanLoopResponseFilterSensitiveLog: (
204
156
  obj: StartHumanLoopResponse
205
157
  ) => any;
206
-
207
158
  export declare const StopHumanLoopRequestFilterSensitiveLog: (
208
159
  obj: StopHumanLoopRequest
209
160
  ) => any;
210
-
211
161
  export declare const StopHumanLoopResponseFilterSensitiveLog: (
212
162
  obj: StopHumanLoopResponse
213
163
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: SageMakerA2IRuntimeClientConfig
6
5
  ) => {
@@ -53,7 +52,9 @@ export declare const getRuntimeConfig: (
53
52
  | undefined;
54
53
  signer?:
55
54
  | import("@aws-sdk/types").RequestSigner
56
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | ((
56
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
57
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
57
58
  | undefined;
58
59
  signingEscapePath?: boolean | undefined;
59
60
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: SageMakerA2IRuntimeClientConfig
6
5
  ) => {
@@ -53,7 +52,9 @@ export declare const getRuntimeConfig: (
53
52
  | undefined;
54
53
  signer?:
55
54
  | import("@aws-sdk/types").RequestSigner
56
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | ((
56
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
57
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
57
58
  | undefined;
58
59
  signingEscapePath?: boolean | undefined;
59
60
  systemClockOffset?: number | undefined;
@@ -1,5 +1,4 @@
1
1
  import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
2
-
3
2
  export declare const getRuntimeConfig: (
4
3
  config: SageMakerA2IRuntimeClientConfig
5
4
  ) => {
@@ -54,7 +53,9 @@ export declare const getRuntimeConfig: (
54
53
  | undefined;
55
54
  signer?:
56
55
  | import("@aws-sdk/types").RequestSigner
57
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | ((
57
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
58
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
58
59
  | undefined;
59
60
  signingEscapePath?: boolean | undefined;
60
61
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: SageMakerA2IRuntimeClientConfig
6
5
  ) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker-a2i-runtime",
3
3
  "description": "AWS SDK for JavaScript Sagemaker A2i Runtime Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.178.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.178.0",
23
+ "@aws-sdk/config-resolver": "3.178.0",
24
+ "@aws-sdk/credential-provider-node": "3.178.0",
25
+ "@aws-sdk/fetch-http-handler": "3.178.0",
26
+ "@aws-sdk/hash-node": "3.178.0",
27
+ "@aws-sdk/invalid-dependency": "3.178.0",
28
+ "@aws-sdk/middleware-content-length": "3.178.0",
29
+ "@aws-sdk/middleware-host-header": "3.178.0",
30
+ "@aws-sdk/middleware-logger": "3.178.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
32
+ "@aws-sdk/middleware-retry": "3.178.0",
33
+ "@aws-sdk/middleware-serde": "3.178.0",
34
+ "@aws-sdk/middleware-signing": "3.178.0",
35
+ "@aws-sdk/middleware-stack": "3.178.0",
36
+ "@aws-sdk/middleware-user-agent": "3.178.0",
37
+ "@aws-sdk/node-config-provider": "3.178.0",
38
+ "@aws-sdk/node-http-handler": "3.178.0",
39
+ "@aws-sdk/protocol-http": "3.178.0",
40
+ "@aws-sdk/smithy-client": "3.178.0",
41
+ "@aws-sdk/types": "3.178.0",
42
+ "@aws-sdk/url-parser": "3.178.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.178.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
50
+ "@aws-sdk/util-user-agent-node": "3.178.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"