@aws-sdk/client-braket 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/BraketServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +120 -2
- package/dist-cjs/protocols/Aws_restJson1.js +180 -570
- package/dist-es/index.js +1 -0
- package/dist-es/models/BraketServiceException.js +12 -0
- package/dist-es/models/models_0.js +110 -1
- package/dist-es/protocols/Aws_restJson1.js +329 -632
- package/dist-types/BraketClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/BraketServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -38
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/BraketClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/BraketServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
10
10
|
import { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "./commands/CancelQuantumTaskCommand";
|
|
11
11
|
import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
@@ -41,7 +41,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
41
41
|
* A function that can calculate the length of a request body.
|
|
42
42
|
* @internal
|
|
43
43
|
*/
|
|
44
|
-
bodyLengthChecker?:
|
|
44
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
45
45
|
/**
|
|
46
46
|
* A function that converts a stream into an array of bytes.
|
|
47
47
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Braket service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class BraketServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { BraketServiceException as __BaseException } from "./BraketServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccessDeniedException";
|
|
8
|
-
$fault: "client";
|
|
9
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
13
|
}
|
|
11
14
|
/**
|
|
12
15
|
* <p>The container image used to create an Amazon Braket job.</p>
|
|
@@ -128,34 +131,46 @@ export declare namespace GetDeviceResponse {
|
|
|
128
131
|
/**
|
|
129
132
|
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
130
133
|
*/
|
|
131
|
-
export
|
|
132
|
-
name: "InternalServiceException";
|
|
133
|
-
$fault: "server";
|
|
134
|
-
|
|
134
|
+
export declare class InternalServiceException extends __BaseException {
|
|
135
|
+
readonly name: "InternalServiceException";
|
|
136
|
+
readonly $fault: "server";
|
|
137
|
+
/**
|
|
138
|
+
* @internal
|
|
139
|
+
*/
|
|
140
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
135
141
|
}
|
|
136
142
|
/**
|
|
137
143
|
* <p>The specified resource was not found.</p>
|
|
138
144
|
*/
|
|
139
|
-
export
|
|
140
|
-
name: "ResourceNotFoundException";
|
|
141
|
-
$fault: "client";
|
|
142
|
-
|
|
145
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
146
|
+
readonly name: "ResourceNotFoundException";
|
|
147
|
+
readonly $fault: "client";
|
|
148
|
+
/**
|
|
149
|
+
* @internal
|
|
150
|
+
*/
|
|
151
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
143
152
|
}
|
|
144
153
|
/**
|
|
145
154
|
* <p>The throttling rate limit is met.</p>
|
|
146
155
|
*/
|
|
147
|
-
export
|
|
148
|
-
name: "ThrottlingException";
|
|
149
|
-
$fault: "client";
|
|
150
|
-
|
|
156
|
+
export declare class ThrottlingException extends __BaseException {
|
|
157
|
+
readonly name: "ThrottlingException";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
/**
|
|
160
|
+
* @internal
|
|
161
|
+
*/
|
|
162
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
151
163
|
}
|
|
152
164
|
/**
|
|
153
165
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
154
166
|
*/
|
|
155
|
-
export
|
|
156
|
-
name: "ValidationException";
|
|
157
|
-
$fault: "client";
|
|
158
|
-
|
|
167
|
+
export declare class ValidationException extends __BaseException {
|
|
168
|
+
readonly name: "ValidationException";
|
|
169
|
+
readonly $fault: "client";
|
|
170
|
+
/**
|
|
171
|
+
* @internal
|
|
172
|
+
*/
|
|
173
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
159
174
|
}
|
|
160
175
|
/**
|
|
161
176
|
* <p>The filter to use for searching devices.</p>
|
|
@@ -278,10 +293,13 @@ export declare namespace CancelJobResponse {
|
|
|
278
293
|
/**
|
|
279
294
|
* <p>An error occurred due to a conflict.</p>
|
|
280
295
|
*/
|
|
281
|
-
export
|
|
282
|
-
name: "ConflictException";
|
|
283
|
-
$fault: "client";
|
|
284
|
-
|
|
296
|
+
export declare class ConflictException extends __BaseException {
|
|
297
|
+
readonly name: "ConflictException";
|
|
298
|
+
readonly $fault: "client";
|
|
299
|
+
/**
|
|
300
|
+
* @internal
|
|
301
|
+
*/
|
|
302
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
285
303
|
}
|
|
286
304
|
/**
|
|
287
305
|
* <p>Contains information about the output locations for job checkpoint data.</p>
|
|
@@ -553,18 +571,24 @@ export declare namespace CreateJobResponse {
|
|
|
553
571
|
/**
|
|
554
572
|
* <p>The specified device has been retired.</p>
|
|
555
573
|
*/
|
|
556
|
-
export
|
|
557
|
-
name: "DeviceRetiredException";
|
|
558
|
-
$fault: "client";
|
|
559
|
-
|
|
574
|
+
export declare class DeviceRetiredException extends __BaseException {
|
|
575
|
+
readonly name: "DeviceRetiredException";
|
|
576
|
+
readonly $fault: "client";
|
|
577
|
+
/**
|
|
578
|
+
* @internal
|
|
579
|
+
*/
|
|
580
|
+
constructor(opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>);
|
|
560
581
|
}
|
|
561
582
|
/**
|
|
562
583
|
* <p>The request failed because a service quota is exceeded.</p>
|
|
563
584
|
*/
|
|
564
|
-
export
|
|
565
|
-
name: "ServiceQuotaExceededException";
|
|
566
|
-
$fault: "client";
|
|
567
|
-
|
|
585
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
586
|
+
readonly name: "ServiceQuotaExceededException";
|
|
587
|
+
readonly $fault: "client";
|
|
588
|
+
/**
|
|
589
|
+
* @internal
|
|
590
|
+
*/
|
|
591
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
568
592
|
}
|
|
569
593
|
export interface GetJobRequest {
|
|
570
594
|
/**
|
|
@@ -955,10 +979,13 @@ export declare namespace CreateQuantumTaskResponse {
|
|
|
955
979
|
/**
|
|
956
980
|
* <p>The specified device is currently offline.</p>
|
|
957
981
|
*/
|
|
958
|
-
export
|
|
959
|
-
name: "DeviceOfflineException";
|
|
960
|
-
$fault: "client";
|
|
961
|
-
|
|
982
|
+
export declare class DeviceOfflineException extends __BaseException {
|
|
983
|
+
readonly name: "DeviceOfflineException";
|
|
984
|
+
readonly $fault: "client";
|
|
985
|
+
/**
|
|
986
|
+
* @internal
|
|
987
|
+
*/
|
|
988
|
+
constructor(opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>);
|
|
962
989
|
}
|
|
963
990
|
export interface GetQuantumTaskRequest {
|
|
964
991
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
10
10
|
import { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "./commands/CancelQuantumTaskCommand";
|
|
11
11
|
import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
@@ -29,7 +29,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
29
29
|
|
|
30
30
|
urlParser?: __UrlParser;
|
|
31
31
|
|
|
32
|
-
bodyLengthChecker?:
|
|
32
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
33
33
|
|
|
34
34
|
streamCollector?: __StreamCollector;
|
|
35
35
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { BraketServiceException as __BaseException } from "./BraketServiceException";
|
|
3
3
|
|
|
4
|
-
export
|
|
5
|
-
name: "AccessDeniedException";
|
|
6
|
-
$fault: "client";
|
|
7
|
-
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
export interface ContainerImage {
|
|
@@ -79,28 +80,32 @@ export declare namespace GetDeviceResponse {
|
|
|
79
80
|
const filterSensitiveLog: (obj: GetDeviceResponse) => any;
|
|
80
81
|
}
|
|
81
82
|
|
|
82
|
-
export
|
|
83
|
-
name: "InternalServiceException";
|
|
84
|
-
$fault: "server";
|
|
85
|
-
|
|
83
|
+
export declare class InternalServiceException extends __BaseException {
|
|
84
|
+
readonly name: "InternalServiceException";
|
|
85
|
+
readonly $fault: "server";
|
|
86
|
+
|
|
87
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
86
88
|
}
|
|
87
89
|
|
|
88
|
-
export
|
|
89
|
-
name: "ResourceNotFoundException";
|
|
90
|
-
$fault: "client";
|
|
91
|
-
|
|
90
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
91
|
+
readonly name: "ResourceNotFoundException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
|
|
94
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
92
95
|
}
|
|
93
96
|
|
|
94
|
-
export
|
|
95
|
-
name: "ThrottlingException";
|
|
96
|
-
$fault: "client";
|
|
97
|
-
|
|
97
|
+
export declare class ThrottlingException extends __BaseException {
|
|
98
|
+
readonly name: "ThrottlingException";
|
|
99
|
+
readonly $fault: "client";
|
|
100
|
+
|
|
101
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
98
102
|
}
|
|
99
103
|
|
|
100
|
-
export
|
|
101
|
-
name: "ValidationException";
|
|
102
|
-
$fault: "client";
|
|
103
|
-
|
|
104
|
+
export declare class ValidationException extends __BaseException {
|
|
105
|
+
readonly name: "ValidationException";
|
|
106
|
+
readonly $fault: "client";
|
|
107
|
+
|
|
108
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
104
109
|
}
|
|
105
110
|
|
|
106
111
|
export interface SearchDevicesFilter {
|
|
@@ -175,10 +180,11 @@ export declare namespace CancelJobResponse {
|
|
|
175
180
|
const filterSensitiveLog: (obj: CancelJobResponse) => any;
|
|
176
181
|
}
|
|
177
182
|
|
|
178
|
-
export
|
|
179
|
-
name: "ConflictException";
|
|
180
|
-
$fault: "client";
|
|
181
|
-
|
|
183
|
+
export declare class ConflictException extends __BaseException {
|
|
184
|
+
readonly name: "ConflictException";
|
|
185
|
+
readonly $fault: "client";
|
|
186
|
+
|
|
187
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
182
188
|
}
|
|
183
189
|
|
|
184
190
|
export interface JobCheckpointConfig {
|
|
@@ -346,16 +352,18 @@ export declare namespace CreateJobResponse {
|
|
|
346
352
|
const filterSensitiveLog: (obj: CreateJobResponse) => any;
|
|
347
353
|
}
|
|
348
354
|
|
|
349
|
-
export
|
|
350
|
-
name: "DeviceRetiredException";
|
|
351
|
-
$fault: "client";
|
|
352
|
-
|
|
355
|
+
export declare class DeviceRetiredException extends __BaseException {
|
|
356
|
+
readonly name: "DeviceRetiredException";
|
|
357
|
+
readonly $fault: "client";
|
|
358
|
+
|
|
359
|
+
constructor(opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>);
|
|
353
360
|
}
|
|
354
361
|
|
|
355
|
-
export
|
|
356
|
-
name: "ServiceQuotaExceededException";
|
|
357
|
-
$fault: "client";
|
|
358
|
-
|
|
362
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
363
|
+
readonly name: "ServiceQuotaExceededException";
|
|
364
|
+
readonly $fault: "client";
|
|
365
|
+
|
|
366
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
359
367
|
}
|
|
360
368
|
export interface GetJobRequest {
|
|
361
369
|
|
|
@@ -589,10 +597,11 @@ export declare namespace CreateQuantumTaskResponse {
|
|
|
589
597
|
const filterSensitiveLog: (obj: CreateQuantumTaskResponse) => any;
|
|
590
598
|
}
|
|
591
599
|
|
|
592
|
-
export
|
|
593
|
-
name: "DeviceOfflineException";
|
|
594
|
-
$fault: "client";
|
|
595
|
-
|
|
600
|
+
export declare class DeviceOfflineException extends __BaseException {
|
|
601
|
+
readonly name: "DeviceOfflineException";
|
|
602
|
+
readonly $fault: "client";
|
|
603
|
+
|
|
604
|
+
constructor(opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>);
|
|
596
605
|
}
|
|
597
606
|
export interface GetQuantumTaskRequest {
|
|
598
607
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-braket",
|
|
3
3
|
"description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,41 +18,41 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
56
56
|
"@tsconfig/recommended": "1.0.1",
|
|
57
57
|
"@types/node": "^12.7.5",
|
|
58
58
|
"@types/uuid": "^8.3.0",
|