@aws-sdk/client-braket 3.864.0 → 3.872.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/README.md +1 -10
- package/dist-cjs/index.js +22 -1
- package/dist-es/models/models_0.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/Braket.d.ts +1 -10
- package/dist-types/BraketClient.d.ts +1 -10
- package/dist-types/commands/CancelJobCommand.d.ts +5 -6
- package/dist-types/commands/CancelQuantumTaskCommand.d.ts +4 -5
- package/dist-types/commands/CreateJobCommand.d.ts +5 -6
- package/dist-types/commands/CreateQuantumTaskCommand.d.ts +4 -5
- package/dist-types/commands/GetDeviceCommand.d.ts +5 -15
- package/dist-types/commands/GetJobCommand.d.ts +5 -6
- package/dist-types/commands/GetQuantumTaskCommand.d.ts +10 -5
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -3
- package/dist-types/commands/SearchDevicesCommand.d.ts +4 -5
- package/dist-types/commands/SearchJobsCommand.d.ts +5 -6
- package/dist-types/commands/SearchQuantumTasksCommand.d.ts +4 -5
- package/dist-types/commands/TagResourceCommand.d.ts +2 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -3
- package/dist-types/index.d.ts +1 -10
- package/dist-types/models/models_0.d.ts +225 -214
- package/dist-types/ts3.4/models/models_0.d.ts +19 -0
- package/package.json +2 -2
|
@@ -10,6 +10,11 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
10
10
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
11
|
);
|
|
12
12
|
}
|
|
13
|
+
export interface ActionMetadata {
|
|
14
|
+
actionType: string | undefined;
|
|
15
|
+
programCount?: number | undefined;
|
|
16
|
+
executableCount?: number | undefined;
|
|
17
|
+
}
|
|
13
18
|
export interface ContainerImage {
|
|
14
19
|
uri: string | undefined;
|
|
15
20
|
}
|
|
@@ -96,9 +101,21 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
96
101
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
97
102
|
);
|
|
98
103
|
}
|
|
104
|
+
export interface ProgramSetValidationFailure {
|
|
105
|
+
programIndex: number | undefined;
|
|
106
|
+
inputsIndex?: number | undefined;
|
|
107
|
+
errors?: string[] | undefined;
|
|
108
|
+
}
|
|
109
|
+
export declare const ValidationExceptionReason: {
|
|
110
|
+
readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
|
|
111
|
+
};
|
|
112
|
+
export type ValidationExceptionReason =
|
|
113
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
99
114
|
export declare class ValidationException extends __BaseException {
|
|
100
115
|
readonly name: "ValidationException";
|
|
101
116
|
readonly $fault: "client";
|
|
117
|
+
reason?: ValidationExceptionReason | undefined;
|
|
118
|
+
programSetValidationFailures?: ProgramSetValidationFailure[] | undefined;
|
|
102
119
|
constructor(
|
|
103
120
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
104
121
|
);
|
|
@@ -423,6 +440,8 @@ export interface GetQuantumTaskResponse {
|
|
|
423
440
|
jobArn?: string | undefined;
|
|
424
441
|
queueInfo?: QuantumTaskQueueInfo | undefined;
|
|
425
442
|
associations?: Association[] | undefined;
|
|
443
|
+
numSuccessfulShots?: number | undefined;
|
|
444
|
+
actionMetadata?: ActionMetadata | undefined;
|
|
426
445
|
}
|
|
427
446
|
export declare const SearchQuantumTasksFilterOperator: {
|
|
428
447
|
readonly BETWEEN: "BETWEEN";
|
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.872.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-braket",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.864.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.872.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.862.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.862.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.862.0",
|