@aws-sdk/client-braket 3.180.0 → 3.183.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 +20 -0
- package/dist-cjs/protocols/Aws_restJson1.js +19 -13
- package/dist-es/Braket.js +54 -61
- package/dist-es/BraketClient.js +22 -28
- package/dist-es/commands/CancelJobCommand.js +21 -28
- package/dist-es/commands/CancelQuantumTaskCommand.js +21 -28
- package/dist-es/commands/CreateJobCommand.js +21 -28
- package/dist-es/commands/CreateQuantumTaskCommand.js +21 -28
- package/dist-es/commands/GetDeviceCommand.js +21 -28
- package/dist-es/commands/GetJobCommand.js +21 -28
- package/dist-es/commands/GetQuantumTaskCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/SearchDevicesCommand.js +21 -28
- package/dist-es/commands/SearchJobsCommand.js +21 -28
- package/dist-es/commands/SearchQuantumTasksCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/BraketServiceException.js +5 -10
- package/dist-es/models/models_0.js +231 -144
- package/dist-es/pagination/SearchDevicesPaginator.js +25 -68
- package/dist-es/pagination/SearchJobsPaginator.js +25 -68
- package/dist-es/pagination/SearchQuantumTasksPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +1220 -1568
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
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.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-braket
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **clients:** make parseErrorBody async ([#3999](https://github.com/aws/aws-sdk-js-v3/issues/3999)) ([2558c93](https://github.com/aws/aws-sdk-js-v3/commit/2558c93c050357ac6dc47aa0452b15b12ebfd676))
|
|
20
|
+
* **clients:** populate message field when parsing errors ([#3995](https://github.com/aws/aws-sdk-js-v3/issues/3995)) ([02e47f1](https://github.com/aws/aws-sdk-js-v3/commit/02e47f14397ae0a5d2e2883350d038b307fdcdb4))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
# [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @aws-sdk/client-braket
|
|
@@ -327,7 +327,7 @@ exports.deserializeAws_restJson1CancelJobCommand = deserializeAws_restJson1Cance
|
|
|
327
327
|
const deserializeAws_restJson1CancelJobCommandError = async (output, context) => {
|
|
328
328
|
const parsedOutput = {
|
|
329
329
|
...output,
|
|
330
|
-
body: await
|
|
330
|
+
body: await parseErrorBody(output.body, context),
|
|
331
331
|
};
|
|
332
332
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
333
333
|
switch (errorCode) {
|
|
@@ -379,7 +379,7 @@ exports.deserializeAws_restJson1CancelQuantumTaskCommand = deserializeAws_restJs
|
|
|
379
379
|
const deserializeAws_restJson1CancelQuantumTaskCommandError = async (output, context) => {
|
|
380
380
|
const parsedOutput = {
|
|
381
381
|
...output,
|
|
382
|
-
body: await
|
|
382
|
+
body: await parseErrorBody(output.body, context),
|
|
383
383
|
};
|
|
384
384
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
385
385
|
switch (errorCode) {
|
|
@@ -428,7 +428,7 @@ exports.deserializeAws_restJson1CreateJobCommand = deserializeAws_restJson1Creat
|
|
|
428
428
|
const deserializeAws_restJson1CreateJobCommandError = async (output, context) => {
|
|
429
429
|
const parsedOutput = {
|
|
430
430
|
...output,
|
|
431
|
-
body: await
|
|
431
|
+
body: await parseErrorBody(output.body, context),
|
|
432
432
|
};
|
|
433
433
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
434
434
|
switch (errorCode) {
|
|
@@ -480,7 +480,7 @@ exports.deserializeAws_restJson1CreateQuantumTaskCommand = deserializeAws_restJs
|
|
|
480
480
|
const deserializeAws_restJson1CreateQuantumTaskCommandError = async (output, context) => {
|
|
481
481
|
const parsedOutput = {
|
|
482
482
|
...output,
|
|
483
|
-
body: await
|
|
483
|
+
body: await parseErrorBody(output.body, context),
|
|
484
484
|
};
|
|
485
485
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
486
486
|
switch (errorCode) {
|
|
@@ -547,7 +547,7 @@ exports.deserializeAws_restJson1GetDeviceCommand = deserializeAws_restJson1GetDe
|
|
|
547
547
|
const deserializeAws_restJson1GetDeviceCommandError = async (output, context) => {
|
|
548
548
|
const parsedOutput = {
|
|
549
549
|
...output,
|
|
550
|
-
body: await
|
|
550
|
+
body: await parseErrorBody(output.body, context),
|
|
551
551
|
};
|
|
552
552
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
553
553
|
switch (errorCode) {
|
|
@@ -647,7 +647,7 @@ exports.deserializeAws_restJson1GetJobCommand = deserializeAws_restJson1GetJobCo
|
|
|
647
647
|
const deserializeAws_restJson1GetJobCommandError = async (output, context) => {
|
|
648
648
|
const parsedOutput = {
|
|
649
649
|
...output,
|
|
650
|
-
body: await
|
|
650
|
+
body: await parseErrorBody(output.body, context),
|
|
651
651
|
};
|
|
652
652
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
653
653
|
switch (errorCode) {
|
|
@@ -726,7 +726,7 @@ exports.deserializeAws_restJson1GetQuantumTaskCommand = deserializeAws_restJson1
|
|
|
726
726
|
const deserializeAws_restJson1GetQuantumTaskCommandError = async (output, context) => {
|
|
727
727
|
const parsedOutput = {
|
|
728
728
|
...output,
|
|
729
|
-
body: await
|
|
729
|
+
body: await parseErrorBody(output.body, context),
|
|
730
730
|
};
|
|
731
731
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
732
732
|
switch (errorCode) {
|
|
@@ -772,7 +772,7 @@ exports.deserializeAws_restJson1ListTagsForResourceCommand = deserializeAws_rest
|
|
|
772
772
|
const deserializeAws_restJson1ListTagsForResourceCommandError = async (output, context) => {
|
|
773
773
|
const parsedOutput = {
|
|
774
774
|
...output,
|
|
775
|
-
body: await
|
|
775
|
+
body: await parseErrorBody(output.body, context),
|
|
776
776
|
};
|
|
777
777
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
778
778
|
switch (errorCode) {
|
|
@@ -815,7 +815,7 @@ exports.deserializeAws_restJson1SearchDevicesCommand = deserializeAws_restJson1S
|
|
|
815
815
|
const deserializeAws_restJson1SearchDevicesCommandError = async (output, context) => {
|
|
816
816
|
const parsedOutput = {
|
|
817
817
|
...output,
|
|
818
|
-
body: await
|
|
818
|
+
body: await parseErrorBody(output.body, context),
|
|
819
819
|
};
|
|
820
820
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
821
821
|
switch (errorCode) {
|
|
@@ -861,7 +861,7 @@ exports.deserializeAws_restJson1SearchJobsCommand = deserializeAws_restJson1Sear
|
|
|
861
861
|
const deserializeAws_restJson1SearchJobsCommandError = async (output, context) => {
|
|
862
862
|
const parsedOutput = {
|
|
863
863
|
...output,
|
|
864
|
-
body: await
|
|
864
|
+
body: await parseErrorBody(output.body, context),
|
|
865
865
|
};
|
|
866
866
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
867
867
|
switch (errorCode) {
|
|
@@ -907,7 +907,7 @@ exports.deserializeAws_restJson1SearchQuantumTasksCommand = deserializeAws_restJ
|
|
|
907
907
|
const deserializeAws_restJson1SearchQuantumTasksCommandError = async (output, context) => {
|
|
908
908
|
const parsedOutput = {
|
|
909
909
|
...output,
|
|
910
|
-
body: await
|
|
910
|
+
body: await parseErrorBody(output.body, context),
|
|
911
911
|
};
|
|
912
912
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
913
913
|
switch (errorCode) {
|
|
@@ -947,7 +947,7 @@ exports.deserializeAws_restJson1TagResourceCommand = deserializeAws_restJson1Tag
|
|
|
947
947
|
const deserializeAws_restJson1TagResourceCommandError = async (output, context) => {
|
|
948
948
|
const parsedOutput = {
|
|
949
949
|
...output,
|
|
950
|
-
body: await
|
|
950
|
+
body: await parseErrorBody(output.body, context),
|
|
951
951
|
};
|
|
952
952
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
953
953
|
switch (errorCode) {
|
|
@@ -984,7 +984,7 @@ exports.deserializeAws_restJson1UntagResourceCommand = deserializeAws_restJson1U
|
|
|
984
984
|
const deserializeAws_restJson1UntagResourceCommandError = async (output, context) => {
|
|
985
985
|
const parsedOutput = {
|
|
986
986
|
...output,
|
|
987
|
-
body: await
|
|
987
|
+
body: await parseErrorBody(output.body, context),
|
|
988
988
|
};
|
|
989
989
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
990
990
|
switch (errorCode) {
|
|
@@ -1476,6 +1476,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
1476
1476
|
}
|
|
1477
1477
|
return {};
|
|
1478
1478
|
});
|
|
1479
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
1480
|
+
var _a;
|
|
1481
|
+
const value = await parseBody(errorBody, context);
|
|
1482
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1483
|
+
return value;
|
|
1484
|
+
};
|
|
1479
1485
|
const loadRestJsonErrorCode = (output, data) => {
|
|
1480
1486
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1481
1487
|
const sanitizeErrorCode = (rawValue) => {
|
package/dist-es/Braket.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { BraketClient } from "./BraketClient";
|
|
3
2
|
import { CancelJobCommand } from "./commands/CancelJobCommand";
|
|
4
3
|
import { CancelQuantumTaskCommand, } from "./commands/CancelQuantumTaskCommand";
|
|
@@ -13,193 +12,187 @@ import { SearchJobsCommand } from "./commands/SearchJobsCommand";
|
|
|
13
12
|
import { SearchQuantumTasksCommand, } from "./commands/SearchQuantumTasksCommand";
|
|
14
13
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
15
14
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
20
|
-
}
|
|
21
|
-
Braket.prototype.cancelJob = function (args, optionsOrCb, cb) {
|
|
22
|
-
var command = new CancelJobCommand(args);
|
|
15
|
+
export class Braket extends BraketClient {
|
|
16
|
+
cancelJob(args, optionsOrCb, cb) {
|
|
17
|
+
const command = new CancelJobCommand(args);
|
|
23
18
|
if (typeof optionsOrCb === "function") {
|
|
24
19
|
this.send(command, optionsOrCb);
|
|
25
20
|
}
|
|
26
21
|
else if (typeof cb === "function") {
|
|
27
22
|
if (typeof optionsOrCb !== "object")
|
|
28
|
-
throw new Error(
|
|
23
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
29
24
|
this.send(command, optionsOrCb || {}, cb);
|
|
30
25
|
}
|
|
31
26
|
else {
|
|
32
27
|
return this.send(command, optionsOrCb);
|
|
33
28
|
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
29
|
+
}
|
|
30
|
+
cancelQuantumTask(args, optionsOrCb, cb) {
|
|
31
|
+
const command = new CancelQuantumTaskCommand(args);
|
|
37
32
|
if (typeof optionsOrCb === "function") {
|
|
38
33
|
this.send(command, optionsOrCb);
|
|
39
34
|
}
|
|
40
35
|
else if (typeof cb === "function") {
|
|
41
36
|
if (typeof optionsOrCb !== "object")
|
|
42
|
-
throw new Error(
|
|
37
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
43
38
|
this.send(command, optionsOrCb || {}, cb);
|
|
44
39
|
}
|
|
45
40
|
else {
|
|
46
41
|
return this.send(command, optionsOrCb);
|
|
47
42
|
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
43
|
+
}
|
|
44
|
+
createJob(args, optionsOrCb, cb) {
|
|
45
|
+
const command = new CreateJobCommand(args);
|
|
51
46
|
if (typeof optionsOrCb === "function") {
|
|
52
47
|
this.send(command, optionsOrCb);
|
|
53
48
|
}
|
|
54
49
|
else if (typeof cb === "function") {
|
|
55
50
|
if (typeof optionsOrCb !== "object")
|
|
56
|
-
throw new Error(
|
|
51
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
57
52
|
this.send(command, optionsOrCb || {}, cb);
|
|
58
53
|
}
|
|
59
54
|
else {
|
|
60
55
|
return this.send(command, optionsOrCb);
|
|
61
56
|
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
|
|
57
|
+
}
|
|
58
|
+
createQuantumTask(args, optionsOrCb, cb) {
|
|
59
|
+
const command = new CreateQuantumTaskCommand(args);
|
|
65
60
|
if (typeof optionsOrCb === "function") {
|
|
66
61
|
this.send(command, optionsOrCb);
|
|
67
62
|
}
|
|
68
63
|
else if (typeof cb === "function") {
|
|
69
64
|
if (typeof optionsOrCb !== "object")
|
|
70
|
-
throw new Error(
|
|
65
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
71
66
|
this.send(command, optionsOrCb || {}, cb);
|
|
72
67
|
}
|
|
73
68
|
else {
|
|
74
69
|
return this.send(command, optionsOrCb);
|
|
75
70
|
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
71
|
+
}
|
|
72
|
+
getDevice(args, optionsOrCb, cb) {
|
|
73
|
+
const command = new GetDeviceCommand(args);
|
|
79
74
|
if (typeof optionsOrCb === "function") {
|
|
80
75
|
this.send(command, optionsOrCb);
|
|
81
76
|
}
|
|
82
77
|
else if (typeof cb === "function") {
|
|
83
78
|
if (typeof optionsOrCb !== "object")
|
|
84
|
-
throw new Error(
|
|
79
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
85
80
|
this.send(command, optionsOrCb || {}, cb);
|
|
86
81
|
}
|
|
87
82
|
else {
|
|
88
83
|
return this.send(command, optionsOrCb);
|
|
89
84
|
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
|
|
85
|
+
}
|
|
86
|
+
getJob(args, optionsOrCb, cb) {
|
|
87
|
+
const command = new GetJobCommand(args);
|
|
93
88
|
if (typeof optionsOrCb === "function") {
|
|
94
89
|
this.send(command, optionsOrCb);
|
|
95
90
|
}
|
|
96
91
|
else if (typeof cb === "function") {
|
|
97
92
|
if (typeof optionsOrCb !== "object")
|
|
98
|
-
throw new Error(
|
|
93
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
99
94
|
this.send(command, optionsOrCb || {}, cb);
|
|
100
95
|
}
|
|
101
96
|
else {
|
|
102
97
|
return this.send(command, optionsOrCb);
|
|
103
98
|
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
|
|
99
|
+
}
|
|
100
|
+
getQuantumTask(args, optionsOrCb, cb) {
|
|
101
|
+
const command = new GetQuantumTaskCommand(args);
|
|
107
102
|
if (typeof optionsOrCb === "function") {
|
|
108
103
|
this.send(command, optionsOrCb);
|
|
109
104
|
}
|
|
110
105
|
else if (typeof cb === "function") {
|
|
111
106
|
if (typeof optionsOrCb !== "object")
|
|
112
|
-
throw new Error(
|
|
107
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
113
108
|
this.send(command, optionsOrCb || {}, cb);
|
|
114
109
|
}
|
|
115
110
|
else {
|
|
116
111
|
return this.send(command, optionsOrCb);
|
|
117
112
|
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
|
|
113
|
+
}
|
|
114
|
+
listTagsForResource(args, optionsOrCb, cb) {
|
|
115
|
+
const command = new ListTagsForResourceCommand(args);
|
|
121
116
|
if (typeof optionsOrCb === "function") {
|
|
122
117
|
this.send(command, optionsOrCb);
|
|
123
118
|
}
|
|
124
119
|
else if (typeof cb === "function") {
|
|
125
120
|
if (typeof optionsOrCb !== "object")
|
|
126
|
-
throw new Error(
|
|
121
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
127
122
|
this.send(command, optionsOrCb || {}, cb);
|
|
128
123
|
}
|
|
129
124
|
else {
|
|
130
125
|
return this.send(command, optionsOrCb);
|
|
131
126
|
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
|
|
127
|
+
}
|
|
128
|
+
searchDevices(args, optionsOrCb, cb) {
|
|
129
|
+
const command = new SearchDevicesCommand(args);
|
|
135
130
|
if (typeof optionsOrCb === "function") {
|
|
136
131
|
this.send(command, optionsOrCb);
|
|
137
132
|
}
|
|
138
133
|
else if (typeof cb === "function") {
|
|
139
134
|
if (typeof optionsOrCb !== "object")
|
|
140
|
-
throw new Error(
|
|
135
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
141
136
|
this.send(command, optionsOrCb || {}, cb);
|
|
142
137
|
}
|
|
143
138
|
else {
|
|
144
139
|
return this.send(command, optionsOrCb);
|
|
145
140
|
}
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
|
|
141
|
+
}
|
|
142
|
+
searchJobs(args, optionsOrCb, cb) {
|
|
143
|
+
const command = new SearchJobsCommand(args);
|
|
149
144
|
if (typeof optionsOrCb === "function") {
|
|
150
145
|
this.send(command, optionsOrCb);
|
|
151
146
|
}
|
|
152
147
|
else if (typeof cb === "function") {
|
|
153
148
|
if (typeof optionsOrCb !== "object")
|
|
154
|
-
throw new Error(
|
|
149
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
155
150
|
this.send(command, optionsOrCb || {}, cb);
|
|
156
151
|
}
|
|
157
152
|
else {
|
|
158
153
|
return this.send(command, optionsOrCb);
|
|
159
154
|
}
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
|
|
155
|
+
}
|
|
156
|
+
searchQuantumTasks(args, optionsOrCb, cb) {
|
|
157
|
+
const command = new SearchQuantumTasksCommand(args);
|
|
163
158
|
if (typeof optionsOrCb === "function") {
|
|
164
159
|
this.send(command, optionsOrCb);
|
|
165
160
|
}
|
|
166
161
|
else if (typeof cb === "function") {
|
|
167
162
|
if (typeof optionsOrCb !== "object")
|
|
168
|
-
throw new Error(
|
|
163
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
169
164
|
this.send(command, optionsOrCb || {}, cb);
|
|
170
165
|
}
|
|
171
166
|
else {
|
|
172
167
|
return this.send(command, optionsOrCb);
|
|
173
168
|
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
|
|
169
|
+
}
|
|
170
|
+
tagResource(args, optionsOrCb, cb) {
|
|
171
|
+
const command = new TagResourceCommand(args);
|
|
177
172
|
if (typeof optionsOrCb === "function") {
|
|
178
173
|
this.send(command, optionsOrCb);
|
|
179
174
|
}
|
|
180
175
|
else if (typeof cb === "function") {
|
|
181
176
|
if (typeof optionsOrCb !== "object")
|
|
182
|
-
throw new Error(
|
|
177
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
183
178
|
this.send(command, optionsOrCb || {}, cb);
|
|
184
179
|
}
|
|
185
180
|
else {
|
|
186
181
|
return this.send(command, optionsOrCb);
|
|
187
182
|
}
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
|
|
183
|
+
}
|
|
184
|
+
untagResource(args, optionsOrCb, cb) {
|
|
185
|
+
const command = new UntagResourceCommand(args);
|
|
191
186
|
if (typeof optionsOrCb === "function") {
|
|
192
187
|
this.send(command, optionsOrCb);
|
|
193
188
|
}
|
|
194
189
|
else if (typeof cb === "function") {
|
|
195
190
|
if (typeof optionsOrCb !== "object")
|
|
196
|
-
throw new Error(
|
|
191
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
197
192
|
this.send(command, optionsOrCb || {}, cb);
|
|
198
193
|
}
|
|
199
194
|
else {
|
|
200
195
|
return this.send(command, optionsOrCb);
|
|
201
196
|
}
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
}(BraketClient));
|
|
205
|
-
export { Braket };
|
|
197
|
+
}
|
|
198
|
+
}
|
package/dist-es/BraketClient.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
3
2
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
3
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -9,31 +8,26 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
9
8
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
10
9
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
11
10
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
-
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
-
return _this;
|
|
11
|
+
export class BraketClient extends __Client {
|
|
12
|
+
constructor(configuration) {
|
|
13
|
+
const _config_0 = __getRuntimeConfig(configuration);
|
|
14
|
+
const _config_1 = resolveRegionConfig(_config_0);
|
|
15
|
+
const _config_2 = resolveEndpointsConfig(_config_1);
|
|
16
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
17
|
+
const _config_4 = resolveHostHeaderConfig(_config_3);
|
|
18
|
+
const _config_5 = resolveAwsAuthConfig(_config_4);
|
|
19
|
+
const _config_6 = resolveUserAgentConfig(_config_5);
|
|
20
|
+
super(_config_6);
|
|
21
|
+
this.config = _config_6;
|
|
22
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
23
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
24
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
25
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
26
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
27
|
+
this.middlewareStack.use(getAwsAuthPlugin(this.config));
|
|
28
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
29
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}(__Client));
|
|
39
|
-
export { BraketClient };
|
|
30
|
+
destroy() {
|
|
31
|
+
super.destroy();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -1,39 +1,32 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
3
|
import { CancelJobRequestFilterSensitiveLog, CancelJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1CancelJobCommand, serializeAws_restJson1CancelJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_this.input = input;
|
|
11
|
-
return _this;
|
|
5
|
+
export class CancelJobCommand extends $Command {
|
|
6
|
+
constructor(input) {
|
|
7
|
+
super();
|
|
8
|
+
this.input = input;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
11
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
logger
|
|
21
|
-
clientName
|
|
22
|
-
commandName
|
|
12
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
13
|
+
const { logger } = configuration;
|
|
14
|
+
const clientName = "BraketClient";
|
|
15
|
+
const commandName = "CancelJobCommand";
|
|
16
|
+
const handlerExecutionContext = {
|
|
17
|
+
logger,
|
|
18
|
+
clientName,
|
|
19
|
+
commandName,
|
|
23
20
|
inputFilterSensitiveLog: CancelJobRequestFilterSensitiveLog,
|
|
24
21
|
outputFilterSensitiveLog: CancelJobResponseFilterSensitiveLog,
|
|
25
22
|
};
|
|
26
|
-
|
|
27
|
-
return stack.resolve(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
CancelJobCommand.prototype.serialize = function (input, context) {
|
|
23
|
+
const { requestHandler } = configuration;
|
|
24
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
25
|
+
}
|
|
26
|
+
serialize(input, context) {
|
|
32
27
|
return serializeAws_restJson1CancelJobCommand(input, context);
|
|
33
|
-
}
|
|
34
|
-
|
|
28
|
+
}
|
|
29
|
+
deserialize(output, context) {
|
|
35
30
|
return deserializeAws_restJson1CancelJobCommand(output, context);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}($Command));
|
|
39
|
-
export { CancelJobCommand };
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -1,39 +1,32 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
3
|
import { CancelQuantumTaskRequestFilterSensitiveLog, CancelQuantumTaskResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1CancelQuantumTaskCommand, serializeAws_restJson1CancelQuantumTaskCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_this.input = input;
|
|
11
|
-
return _this;
|
|
5
|
+
export class CancelQuantumTaskCommand extends $Command {
|
|
6
|
+
constructor(input) {
|
|
7
|
+
super();
|
|
8
|
+
this.input = input;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
11
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
logger
|
|
21
|
-
clientName
|
|
22
|
-
commandName
|
|
12
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
13
|
+
const { logger } = configuration;
|
|
14
|
+
const clientName = "BraketClient";
|
|
15
|
+
const commandName = "CancelQuantumTaskCommand";
|
|
16
|
+
const handlerExecutionContext = {
|
|
17
|
+
logger,
|
|
18
|
+
clientName,
|
|
19
|
+
commandName,
|
|
23
20
|
inputFilterSensitiveLog: CancelQuantumTaskRequestFilterSensitiveLog,
|
|
24
21
|
outputFilterSensitiveLog: CancelQuantumTaskResponseFilterSensitiveLog,
|
|
25
22
|
};
|
|
26
|
-
|
|
27
|
-
return stack.resolve(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
CancelQuantumTaskCommand.prototype.serialize = function (input, context) {
|
|
23
|
+
const { requestHandler } = configuration;
|
|
24
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
25
|
+
}
|
|
26
|
+
serialize(input, context) {
|
|
32
27
|
return serializeAws_restJson1CancelQuantumTaskCommand(input, context);
|
|
33
|
-
}
|
|
34
|
-
|
|
28
|
+
}
|
|
29
|
+
deserialize(output, context) {
|
|
35
30
|
return deserializeAws_restJson1CancelQuantumTaskCommand(output, context);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}($Command));
|
|
39
|
-
export { CancelQuantumTaskCommand };
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -1,39 +1,32 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
3
|
import { CreateJobRequestFilterSensitiveLog, CreateJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1CreateJobCommand, serializeAws_restJson1CreateJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_this.input = input;
|
|
11
|
-
return _this;
|
|
5
|
+
export class CreateJobCommand extends $Command {
|
|
6
|
+
constructor(input) {
|
|
7
|
+
super();
|
|
8
|
+
this.input = input;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
11
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
logger
|
|
21
|
-
clientName
|
|
22
|
-
commandName
|
|
12
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
13
|
+
const { logger } = configuration;
|
|
14
|
+
const clientName = "BraketClient";
|
|
15
|
+
const commandName = "CreateJobCommand";
|
|
16
|
+
const handlerExecutionContext = {
|
|
17
|
+
logger,
|
|
18
|
+
clientName,
|
|
19
|
+
commandName,
|
|
23
20
|
inputFilterSensitiveLog: CreateJobRequestFilterSensitiveLog,
|
|
24
21
|
outputFilterSensitiveLog: CreateJobResponseFilterSensitiveLog,
|
|
25
22
|
};
|
|
26
|
-
|
|
27
|
-
return stack.resolve(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
CreateJobCommand.prototype.serialize = function (input, context) {
|
|
23
|
+
const { requestHandler } = configuration;
|
|
24
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
25
|
+
}
|
|
26
|
+
serialize(input, context) {
|
|
32
27
|
return serializeAws_restJson1CreateJobCommand(input, context);
|
|
33
|
-
}
|
|
34
|
-
|
|
28
|
+
}
|
|
29
|
+
deserialize(output, context) {
|
|
35
30
|
return deserializeAws_restJson1CreateJobCommand(output, context);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}($Command));
|
|
39
|
-
export { CreateJobCommand };
|
|
31
|
+
}
|
|
32
|
+
}
|