@aws-sdk/client-braket 3.300.0 → 3.301.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/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CancelQuantumTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +15 -15
- package/dist-types/commands/CreateQuantumTaskCommand.d.ts +2 -2
- package/dist-types/commands/GetDeviceCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetQuantumTaskCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/SearchDevicesCommand.d.ts +4 -4
- package/dist-types/commands/SearchJobsCommand.d.ts +4 -4
- package/dist-types/commands/SearchQuantumTasksCommand.d.ts +4 -4
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea
|
|
|
26
26
|
* import { BraketClient, CancelJobCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, CancelJobCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CancelJobRequest
|
|
30
30
|
* jobArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelJobCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface CancelQuantumTaskCommandOutput extends CancelQuantumTaskRespons
|
|
|
26
26
|
* import { BraketClient, CancelQuantumTaskCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, CancelQuantumTaskCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CancelQuantumTaskRequest
|
|
30
30
|
* quantumTaskArn: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,54 +26,54 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
26
26
|
* import { BraketClient, CreateJobCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, CreateJobCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateJobRequest
|
|
30
30
|
* clientToken: "STRING_VALUE", // required
|
|
31
|
-
* algorithmSpecification: {
|
|
32
|
-
* scriptModeConfig: {
|
|
31
|
+
* algorithmSpecification: { // AlgorithmSpecification
|
|
32
|
+
* scriptModeConfig: { // ScriptModeConfig
|
|
33
33
|
* entryPoint: "STRING_VALUE", // required
|
|
34
34
|
* s3Uri: "STRING_VALUE", // required
|
|
35
35
|
* compressionType: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
|
-
* containerImage: {
|
|
37
|
+
* containerImage: { // ContainerImage
|
|
38
38
|
* uri: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
40
|
* },
|
|
41
|
-
* inputDataConfig: [
|
|
42
|
-
* {
|
|
41
|
+
* inputDataConfig: [ // InputConfigList
|
|
42
|
+
* { // InputFileConfig
|
|
43
43
|
* channelName: "STRING_VALUE", // required
|
|
44
44
|
* contentType: "STRING_VALUE",
|
|
45
|
-
* dataSource: {
|
|
46
|
-
* s3DataSource: {
|
|
45
|
+
* dataSource: { // DataSource
|
|
46
|
+
* s3DataSource: { // S3DataSource
|
|
47
47
|
* s3Uri: "STRING_VALUE", // required
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
50
|
* },
|
|
51
51
|
* ],
|
|
52
|
-
* outputDataConfig: {
|
|
52
|
+
* outputDataConfig: { // JobOutputDataConfig
|
|
53
53
|
* kmsKeyId: "STRING_VALUE",
|
|
54
54
|
* s3Path: "STRING_VALUE", // required
|
|
55
55
|
* },
|
|
56
|
-
* checkpointConfig: {
|
|
56
|
+
* checkpointConfig: { // JobCheckpointConfig
|
|
57
57
|
* localPath: "STRING_VALUE",
|
|
58
58
|
* s3Uri: "STRING_VALUE", // required
|
|
59
59
|
* },
|
|
60
60
|
* jobName: "STRING_VALUE", // required
|
|
61
61
|
* roleArn: "STRING_VALUE", // required
|
|
62
|
-
* stoppingCondition: {
|
|
62
|
+
* stoppingCondition: { // JobStoppingCondition
|
|
63
63
|
* maxRuntimeInSeconds: Number("int"),
|
|
64
64
|
* },
|
|
65
|
-
* instanceConfig: {
|
|
65
|
+
* instanceConfig: { // InstanceConfig
|
|
66
66
|
* instanceType: "STRING_VALUE", // required
|
|
67
67
|
* volumeSizeInGb: Number("int"), // required
|
|
68
68
|
* instanceCount: Number("int"),
|
|
69
69
|
* },
|
|
70
|
-
* hyperParameters: {
|
|
70
|
+
* hyperParameters: { // HyperParameters
|
|
71
71
|
* "<keys>": "STRING_VALUE",
|
|
72
72
|
* },
|
|
73
|
-
* deviceConfig: {
|
|
73
|
+
* deviceConfig: { // DeviceConfig
|
|
74
74
|
* device: "STRING_VALUE", // required
|
|
75
75
|
* },
|
|
76
|
-
* tags: {
|
|
76
|
+
* tags: { // TagsMap
|
|
77
77
|
* "<keys>": "STRING_VALUE",
|
|
78
78
|
* },
|
|
79
79
|
* };
|
|
@@ -26,7 +26,7 @@ export interface CreateQuantumTaskCommandOutput extends CreateQuantumTaskRespons
|
|
|
26
26
|
* import { BraketClient, CreateQuantumTaskCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, CreateQuantumTaskCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateQuantumTaskRequest
|
|
30
30
|
* clientToken: "STRING_VALUE", // required
|
|
31
31
|
* deviceArn: "STRING_VALUE", // required
|
|
32
32
|
* deviceParameters: "STRING_VALUE",
|
|
@@ -34,7 +34,7 @@ export interface CreateQuantumTaskCommandOutput extends CreateQuantumTaskRespons
|
|
|
34
34
|
* outputS3Bucket: "STRING_VALUE", // required
|
|
35
35
|
* outputS3KeyPrefix: "STRING_VALUE", // required
|
|
36
36
|
* action: "STRING_VALUE", // required
|
|
37
|
-
* tags: {
|
|
37
|
+
* tags: { // TagsMap
|
|
38
38
|
* "<keys>": "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
40
|
* jobToken: "STRING_VALUE",
|
|
@@ -35,7 +35,7 @@ export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBea
|
|
|
35
35
|
* import { BraketClient, GetDeviceCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
36
36
|
* // const { BraketClient, GetDeviceCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
37
37
|
* const client = new BraketClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // GetDeviceRequest
|
|
39
39
|
* deviceArn: "STRING_VALUE", // required
|
|
40
40
|
* };
|
|
41
41
|
* const command = new GetDeviceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
|
26
26
|
* import { BraketClient, GetJobCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, GetJobCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetJobRequest
|
|
30
30
|
* jobArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetJobCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __M
|
|
|
26
26
|
* import { BraketClient, GetQuantumTaskCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, GetQuantumTaskCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetQuantumTaskRequest
|
|
30
30
|
* quantumTaskArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetQuantumTaskCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { BraketClient, ListTagsForResourceCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, ListTagsForResourceCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,13 +26,13 @@ export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __Met
|
|
|
26
26
|
* import { BraketClient, SearchDevicesCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, SearchDevicesCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // SearchDevicesRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
|
-
* filters: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* filters: [ // SearchDevicesFilterList // required
|
|
33
|
+
* { // SearchDevicesFilter
|
|
34
34
|
* name: "STRING_VALUE", // required
|
|
35
|
-
* values: [ // required
|
|
35
|
+
* values: [ // String256List // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* },
|
|
@@ -26,13 +26,13 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB
|
|
|
26
26
|
* import { BraketClient, SearchJobsCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, SearchJobsCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // SearchJobsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
|
-
* filters: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* filters: [ // SearchJobsFilterList // required
|
|
33
|
+
* { // SearchJobsFilter
|
|
34
34
|
* name: "STRING_VALUE", // required
|
|
35
|
-
* values: [ // required
|
|
35
|
+
* values: [ // String256List // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* operator: "STRING_VALUE", // required
|
|
@@ -26,13 +26,13 @@ export interface SearchQuantumTasksCommandOutput extends SearchQuantumTasksRespo
|
|
|
26
26
|
* import { BraketClient, SearchQuantumTasksCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, SearchQuantumTasksCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // SearchQuantumTasksRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
|
-
* filters: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* filters: [ // SearchQuantumTasksFilterList // required
|
|
33
|
+
* { // SearchQuantumTasksFilter
|
|
34
34
|
* name: "STRING_VALUE", // required
|
|
35
|
-
* values: [ // required
|
|
35
|
+
* values: [ // String256List // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* operator: "STRING_VALUE", // required
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { BraketClient, TagResourceCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, TagResourceCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: { // required
|
|
31
|
+
* tags: { // TagsMap // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { BraketClient, UntagResourceCommand } from "@aws-sdk/client-braket"; // ES Modules import
|
|
27
27
|
* // const { BraketClient, UntagResourceCommand } = require("@aws-sdk/client-braket"); // CommonJS import
|
|
28
28
|
* const client = new BraketClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeys // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
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.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|