@aws-sdk/client-braket 3.40.0 → 3.45.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/Braket.js +60 -0
  4. package/dist-cjs/commands/CancelJobCommand.js +36 -0
  5. package/dist-cjs/commands/CreateJobCommand.js +36 -0
  6. package/dist-cjs/commands/GetJobCommand.js +36 -0
  7. package/dist-cjs/commands/SearchJobsCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +4 -0
  9. package/dist-cjs/endpoints.js +9 -0
  10. package/dist-cjs/models/models_0.js +237 -24
  11. package/dist-cjs/pagination/SearchJobsPaginator.js +35 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +824 -25
  14. package/dist-es/Braket.js +60 -0
  15. package/dist-es/commands/CancelJobCommand.js +39 -0
  16. package/dist-es/commands/CreateJobCommand.js +39 -0
  17. package/dist-es/commands/GetJobCommand.js +39 -0
  18. package/dist-es/commands/SearchJobsCommand.js +39 -0
  19. package/dist-es/commands/index.js +4 -0
  20. package/dist-es/endpoints.js +9 -0
  21. package/dist-es/models/models_0.js +189 -21
  22. package/dist-es/pagination/SearchJobsPaginator.js +74 -0
  23. package/dist-es/pagination/index.js +1 -0
  24. package/dist-es/protocols/Aws_restJson1.js +887 -66
  25. package/dist-types/Braket.d.ts +28 -0
  26. package/dist-types/BraketClient.d.ts +6 -2
  27. package/dist-types/commands/CancelJobCommand.d.ts +35 -0
  28. package/dist-types/commands/CancelQuantumTaskCommand.d.ts +1 -1
  29. package/dist-types/commands/CreateJobCommand.d.ts +35 -0
  30. package/dist-types/commands/CreateQuantumTaskCommand.d.ts +1 -1
  31. package/dist-types/commands/GetDeviceCommand.d.ts +1 -1
  32. package/dist-types/commands/GetJobCommand.d.ts +35 -0
  33. package/dist-types/commands/GetQuantumTaskCommand.d.ts +1 -1
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/SearchDevicesCommand.d.ts +1 -1
  36. package/dist-types/commands/SearchJobsCommand.d.ts +35 -0
  37. package/dist-types/commands/SearchQuantumTasksCommand.d.ts +1 -1
  38. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  39. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  40. package/dist-types/commands/index.d.ts +4 -0
  41. package/dist-types/models/models_0.d.ts +674 -37
  42. package/dist-types/pagination/SearchJobsPaginator.d.ts +4 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
  45. package/dist-types/ts3.4/Braket.d.ts +20 -0
  46. package/dist-types/ts3.4/BraketClient.d.ts +6 -2
  47. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +17 -0
  48. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +17 -0
  49. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +17 -0
  50. package/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +413 -30
  53. package/dist-types/ts3.4/pagination/SearchJobsPaginator.d.ts +4 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  55. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  56. package/package.json +6 -6
@@ -11,24 +11,41 @@ export declare namespace AccessDeniedException {
11
11
  const filterSensitiveLog: (obj: AccessDeniedException) => any;
12
12
  }
13
13
 
14
- export interface DeviceOfflineException extends __SmithyException, $MetadataBearer {
15
- name: "DeviceOfflineException";
16
- $fault: "client";
17
- message?: string;
14
+ export interface ContainerImage {
15
+
16
+ uri: string | undefined;
18
17
  }
19
- export declare namespace DeviceOfflineException {
18
+ export declare namespace ContainerImage {
20
19
 
21
- const filterSensitiveLog: (obj: DeviceOfflineException) => any;
20
+ const filterSensitiveLog: (obj: ContainerImage) => any;
21
+ }
22
+ export declare enum CompressionType {
23
+ GZIP = "GZIP",
24
+ NONE = "NONE"
22
25
  }
23
26
 
24
- export interface DeviceRetiredException extends __SmithyException, $MetadataBearer {
25
- name: "DeviceRetiredException";
26
- $fault: "client";
27
- message?: string;
27
+ export interface ScriptModeConfig {
28
+
29
+ entryPoint: string | undefined;
30
+
31
+ s3Uri: string | undefined;
32
+
33
+ compressionType?: CompressionType | string;
28
34
  }
29
- export declare namespace DeviceRetiredException {
35
+ export declare namespace ScriptModeConfig {
30
36
 
31
- const filterSensitiveLog: (obj: DeviceRetiredException) => any;
37
+ const filterSensitiveLog: (obj: ScriptModeConfig) => any;
38
+ }
39
+
40
+ export interface AlgorithmSpecification {
41
+
42
+ scriptModeConfig?: ScriptModeConfig;
43
+
44
+ containerImage?: ContainerImage;
45
+ }
46
+ export declare namespace AlgorithmSpecification {
47
+
48
+ const filterSensitiveLog: (obj: AlgorithmSpecification) => any;
32
49
  }
33
50
  export interface GetDeviceRequest {
34
51
 
@@ -155,6 +172,382 @@ export declare namespace SearchDevicesResponse {
155
172
 
156
173
  const filterSensitiveLog: (obj: SearchDevicesResponse) => any;
157
174
  }
175
+ export interface CancelJobRequest {
176
+
177
+ jobArn: string | undefined;
178
+ }
179
+ export declare namespace CancelJobRequest {
180
+
181
+ const filterSensitiveLog: (obj: CancelJobRequest) => any;
182
+ }
183
+ export declare enum CancellationStatus {
184
+ CANCELLED = "CANCELLED",
185
+ CANCELLING = "CANCELLING"
186
+ }
187
+ export interface CancelJobResponse {
188
+
189
+ jobArn: string | undefined;
190
+
191
+ cancellationStatus: CancellationStatus | string | undefined;
192
+ }
193
+ export declare namespace CancelJobResponse {
194
+
195
+ const filterSensitiveLog: (obj: CancelJobResponse) => any;
196
+ }
197
+
198
+ export interface ConflictException extends __SmithyException, $MetadataBearer {
199
+ name: "ConflictException";
200
+ $fault: "client";
201
+ message?: string;
202
+ }
203
+ export declare namespace ConflictException {
204
+
205
+ const filterSensitiveLog: (obj: ConflictException) => any;
206
+ }
207
+
208
+ export interface JobCheckpointConfig {
209
+
210
+ localPath?: string;
211
+
212
+ s3Uri: string | undefined;
213
+ }
214
+ export declare namespace JobCheckpointConfig {
215
+
216
+ const filterSensitiveLog: (obj: JobCheckpointConfig) => any;
217
+ }
218
+
219
+ export interface DeviceConfig {
220
+
221
+ device: string | undefined;
222
+ }
223
+ export declare namespace DeviceConfig {
224
+
225
+ const filterSensitiveLog: (obj: DeviceConfig) => any;
226
+ }
227
+
228
+ export interface S3DataSource {
229
+
230
+ s3Uri: string | undefined;
231
+ }
232
+ export declare namespace S3DataSource {
233
+
234
+ const filterSensitiveLog: (obj: S3DataSource) => any;
235
+ }
236
+
237
+ export interface DataSource {
238
+
239
+ s3DataSource: S3DataSource | undefined;
240
+ }
241
+ export declare namespace DataSource {
242
+
243
+ const filterSensitiveLog: (obj: DataSource) => any;
244
+ }
245
+
246
+ export interface InputFileConfig {
247
+
248
+ channelName: string | undefined;
249
+
250
+ contentType?: string;
251
+
252
+ dataSource: DataSource | undefined;
253
+ }
254
+ export declare namespace InputFileConfig {
255
+
256
+ const filterSensitiveLog: (obj: InputFileConfig) => any;
257
+ }
258
+ export declare enum _InstanceType {
259
+ ML_C4_2XLARGE = "ml.c4.2xlarge",
260
+ ML_C4_4XLARGE = "ml.c4.4xlarge",
261
+ ML_C4_8XLARGE = "ml.c4.8xlarge",
262
+ ML_C4_XLARGE = "ml.c4.xlarge",
263
+ ML_C5N_18XLARGE = "ml.c5n.18xlarge",
264
+ ML_C5N_2XLARGE = "ml.c5n.2xlarge",
265
+ ML_C5N_4XLARGE = "ml.c5n.4xlarge",
266
+ ML_C5N_9XLARGE = "ml.c5n.9xlarge",
267
+ ML_C5N_XLARGE = "ml.c5n.xlarge",
268
+ ML_C5_18XLARGE = "ml.c5.18xlarge",
269
+ ML_C5_2XLARGE = "ml.c5.2xlarge",
270
+ ML_C5_4XLARGE = "ml.c5.4xlarge",
271
+ ML_C5_9XLARGE = "ml.c5.9xlarge",
272
+ ML_C5_XLARGE = "ml.c5.xlarge",
273
+ ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
274
+ ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
275
+ ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
276
+ ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
277
+ ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
278
+ ML_G4DN_XLARGE = "ml.g4dn.xlarge",
279
+ ML_M4_10XLARGE = "ml.m4.10xlarge",
280
+ ML_M4_16XLARGE = "ml.m4.16xlarge",
281
+ ML_M4_2XLARGE = "ml.m4.2xlarge",
282
+ ML_M4_4XLARGE = "ml.m4.4xlarge",
283
+ ML_M4_XLARGE = "ml.m4.xlarge",
284
+ ML_M5_12XLARGE = "ml.m5.12xlarge",
285
+ ML_M5_24XLARGE = "ml.m5.24xlarge",
286
+ ML_M5_2XLARGE = "ml.m5.2xlarge",
287
+ ML_M5_4XLARGE = "ml.m5.4xlarge",
288
+ ML_M5_LARGE = "ml.m5.large",
289
+ ML_M5_XLARGE = "ml.m5.xlarge",
290
+ ML_P2_16XLARGE = "ml.p2.16xlarge",
291
+ ML_P2_8XLARGE = "ml.p2.8xlarge",
292
+ ML_P2_XLARGE = "ml.p2.xlarge",
293
+ ML_P3DN_24XLARGE = "ml.p3dn.24xlarge",
294
+ ML_P3_16XLARGE = "ml.p3.16xlarge",
295
+ ML_P3_2XLARGE = "ml.p3.2xlarge",
296
+ ML_P3_8XLARGE = "ml.p3.8xlarge",
297
+ ML_P4D_24XLARGE = "ml.p4d.24xlarge"
298
+ }
299
+
300
+ export interface InstanceConfig {
301
+
302
+ instanceType: _InstanceType | string | undefined;
303
+
304
+ volumeSizeInGb: number | undefined;
305
+ }
306
+ export declare namespace InstanceConfig {
307
+
308
+ const filterSensitiveLog: (obj: InstanceConfig) => any;
309
+ }
310
+
311
+ export interface JobOutputDataConfig {
312
+
313
+ kmsKeyId?: string;
314
+
315
+ s3Path: string | undefined;
316
+ }
317
+ export declare namespace JobOutputDataConfig {
318
+
319
+ const filterSensitiveLog: (obj: JobOutputDataConfig) => any;
320
+ }
321
+
322
+ export interface JobStoppingCondition {
323
+
324
+ maxRuntimeInSeconds?: number;
325
+ }
326
+ export declare namespace JobStoppingCondition {
327
+
328
+ const filterSensitiveLog: (obj: JobStoppingCondition) => any;
329
+ }
330
+ export interface CreateJobRequest {
331
+
332
+ clientToken?: string;
333
+
334
+ algorithmSpecification: AlgorithmSpecification | undefined;
335
+
336
+ inputDataConfig?: InputFileConfig[];
337
+
338
+ outputDataConfig: JobOutputDataConfig | undefined;
339
+
340
+ checkpointConfig?: JobCheckpointConfig;
341
+
342
+ jobName: string | undefined;
343
+
344
+ roleArn: string | undefined;
345
+
346
+ stoppingCondition?: JobStoppingCondition;
347
+
348
+ instanceConfig: InstanceConfig | undefined;
349
+
350
+ hyperParameters?: {
351
+ [key: string]: string;
352
+ };
353
+
354
+ deviceConfig: DeviceConfig | undefined;
355
+
356
+ tags?: {
357
+ [key: string]: string;
358
+ };
359
+ }
360
+ export declare namespace CreateJobRequest {
361
+
362
+ const filterSensitiveLog: (obj: CreateJobRequest) => any;
363
+ }
364
+ export interface CreateJobResponse {
365
+
366
+ jobArn: string | undefined;
367
+ }
368
+ export declare namespace CreateJobResponse {
369
+
370
+ const filterSensitiveLog: (obj: CreateJobResponse) => any;
371
+ }
372
+
373
+ export interface DeviceRetiredException extends __SmithyException, $MetadataBearer {
374
+ name: "DeviceRetiredException";
375
+ $fault: "client";
376
+ message?: string;
377
+ }
378
+ export declare namespace DeviceRetiredException {
379
+
380
+ const filterSensitiveLog: (obj: DeviceRetiredException) => any;
381
+ }
382
+
383
+ export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
384
+ name: "ServiceQuotaExceededException";
385
+ $fault: "client";
386
+ message?: string;
387
+ }
388
+ export declare namespace ServiceQuotaExceededException {
389
+
390
+ const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
391
+ }
392
+ export interface GetJobRequest {
393
+
394
+ jobArn: string | undefined;
395
+ }
396
+ export declare namespace GetJobRequest {
397
+
398
+ const filterSensitiveLog: (obj: GetJobRequest) => any;
399
+ }
400
+ export declare enum JobEventType {
401
+ CANCELLED = "CANCELLED",
402
+ COMPLETED = "COMPLETED",
403
+ DEPRIORITIZED_DUE_TO_INACTIVITY = "DEPRIORITIZED_DUE_TO_INACTIVITY",
404
+ DOWNLOADING_DATA = "DOWNLOADING_DATA",
405
+ FAILED = "FAILED",
406
+ MAX_RUNTIME_EXCEEDED = "MAX_RUNTIME_EXCEEDED",
407
+ QUEUED_FOR_EXECUTION = "QUEUED_FOR_EXECUTION",
408
+ RUNNING = "RUNNING",
409
+ STARTING_INSTANCE = "STARTING_INSTANCE",
410
+ UPLOADING_RESULTS = "UPLOADING_RESULTS",
411
+ WAITING_FOR_PRIORITY = "WAITING_FOR_PRIORITY"
412
+ }
413
+
414
+ export interface JobEventDetails {
415
+
416
+ eventType?: JobEventType | string;
417
+
418
+ timeOfEvent?: Date;
419
+
420
+ message?: string;
421
+ }
422
+ export declare namespace JobEventDetails {
423
+
424
+ const filterSensitiveLog: (obj: JobEventDetails) => any;
425
+ }
426
+ export declare enum JobPrimaryStatus {
427
+ CANCELLED = "CANCELLED",
428
+ CANCELLING = "CANCELLING",
429
+ COMPLETED = "COMPLETED",
430
+ FAILED = "FAILED",
431
+ QUEUED = "QUEUED",
432
+ RUNNING = "RUNNING"
433
+ }
434
+ export interface GetJobResponse {
435
+
436
+ status: JobPrimaryStatus | string | undefined;
437
+
438
+ jobArn: string | undefined;
439
+
440
+ roleArn: string | undefined;
441
+
442
+ failureReason?: string;
443
+
444
+ jobName: string | undefined;
445
+
446
+ hyperParameters?: {
447
+ [key: string]: string;
448
+ };
449
+
450
+ inputDataConfig?: InputFileConfig[];
451
+
452
+ outputDataConfig: JobOutputDataConfig | undefined;
453
+
454
+ stoppingCondition?: JobStoppingCondition;
455
+
456
+ checkpointConfig?: JobCheckpointConfig;
457
+
458
+ algorithmSpecification: AlgorithmSpecification | undefined;
459
+
460
+ instanceConfig: InstanceConfig | undefined;
461
+
462
+ createdAt: Date | undefined;
463
+
464
+ startedAt?: Date;
465
+
466
+ endedAt?: Date;
467
+
468
+ billableDuration?: number;
469
+
470
+ deviceConfig?: DeviceConfig;
471
+
472
+ events?: JobEventDetails[];
473
+
474
+ tags?: {
475
+ [key: string]: string;
476
+ };
477
+ }
478
+ export declare namespace GetJobResponse {
479
+
480
+ const filterSensitiveLog: (obj: GetJobResponse) => any;
481
+ }
482
+ export declare enum SearchJobsFilterOperator {
483
+ BETWEEN = "BETWEEN",
484
+ CONTAINS = "CONTAINS",
485
+ EQUAL = "EQUAL",
486
+ GT = "GT",
487
+ GTE = "GTE",
488
+ LT = "LT",
489
+ LTE = "LTE"
490
+ }
491
+
492
+ export interface SearchJobsFilter {
493
+
494
+ name: string | undefined;
495
+
496
+ values: string[] | undefined;
497
+
498
+ operator: SearchJobsFilterOperator | string | undefined;
499
+ }
500
+ export declare namespace SearchJobsFilter {
501
+
502
+ const filterSensitiveLog: (obj: SearchJobsFilter) => any;
503
+ }
504
+ export interface SearchJobsRequest {
505
+
506
+ nextToken?: string;
507
+
508
+ maxResults?: number;
509
+
510
+ filters: SearchJobsFilter[] | undefined;
511
+ }
512
+ export declare namespace SearchJobsRequest {
513
+
514
+ const filterSensitiveLog: (obj: SearchJobsRequest) => any;
515
+ }
516
+
517
+ export interface JobSummary {
518
+
519
+ status: JobPrimaryStatus | string | undefined;
520
+
521
+ jobArn: string | undefined;
522
+
523
+ jobName: string | undefined;
524
+
525
+ device: string | undefined;
526
+
527
+ createdAt: Date | undefined;
528
+
529
+ startedAt?: Date;
530
+
531
+ endedAt?: Date;
532
+
533
+ tags?: {
534
+ [key: string]: string;
535
+ };
536
+ }
537
+ export declare namespace JobSummary {
538
+
539
+ const filterSensitiveLog: (obj: JobSummary) => any;
540
+ }
541
+ export interface SearchJobsResponse {
542
+
543
+ jobs: JobSummary[] | undefined;
544
+
545
+ nextToken?: string;
546
+ }
547
+ export declare namespace SearchJobsResponse {
548
+
549
+ const filterSensitiveLog: (obj: SearchJobsResponse) => any;
550
+ }
158
551
  export interface ListTagsForResourceRequest {
159
552
 
160
553
  resourceArn: string | undefined;
@@ -183,10 +576,6 @@ export declare namespace CancelQuantumTaskRequest {
183
576
 
184
577
  const filterSensitiveLog: (obj: CancelQuantumTaskRequest) => any;
185
578
  }
186
- export declare enum CancellationStatus {
187
- CANCELLED = "CANCELLED",
188
- CANCELLING = "CANCELLING"
189
- }
190
579
  export interface CancelQuantumTaskResponse {
191
580
 
192
581
  quantumTaskArn: string | undefined;
@@ -197,16 +586,6 @@ export declare namespace CancelQuantumTaskResponse {
197
586
 
198
587
  const filterSensitiveLog: (obj: CancelQuantumTaskResponse) => any;
199
588
  }
200
-
201
- export interface ConflictException extends __SmithyException, $MetadataBearer {
202
- name: "ConflictException";
203
- $fault: "client";
204
- message?: string;
205
- }
206
- export declare namespace ConflictException {
207
-
208
- const filterSensitiveLog: (obj: ConflictException) => any;
209
- }
210
589
  export interface CreateQuantumTaskRequest {
211
590
 
212
591
  clientToken?: string;
@@ -226,6 +605,8 @@ export interface CreateQuantumTaskRequest {
226
605
  tags?: {
227
606
  [key: string]: string;
228
607
  };
608
+
609
+ jobToken?: string;
229
610
  }
230
611
  export declare namespace CreateQuantumTaskRequest {
231
612
 
@@ -240,14 +621,14 @@ export declare namespace CreateQuantumTaskResponse {
240
621
  const filterSensitiveLog: (obj: CreateQuantumTaskResponse) => any;
241
622
  }
242
623
 
243
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
244
- name: "ServiceQuotaExceededException";
624
+ export interface DeviceOfflineException extends __SmithyException, $MetadataBearer {
625
+ name: "DeviceOfflineException";
245
626
  $fault: "client";
246
627
  message?: string;
247
628
  }
248
- export declare namespace ServiceQuotaExceededException {
629
+ export declare namespace DeviceOfflineException {
249
630
 
250
- const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
631
+ const filterSensitiveLog: (obj: DeviceOfflineException) => any;
251
632
  }
252
633
  export interface GetQuantumTaskRequest {
253
634
 
@@ -291,6 +672,8 @@ export interface GetQuantumTaskResponse {
291
672
  tags?: {
292
673
  [key: string]: string;
293
674
  };
675
+
676
+ jobArn?: string;
294
677
  }
295
678
  export declare namespace GetQuantumTaskResponse {
296
679
 
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
3
+ import { BraketPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateSearchJobs(config: BraketPaginationConfiguration, input: SearchJobsCommandInput, ...additionalArguments: any): Paginator<SearchJobsCommandOutput>;
@@ -1,3 +1,4 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./SearchDevicesPaginator";
3
+ export * from "./SearchJobsPaginator";
3
4
  export * from "./SearchQuantumTasksPaginator";
@@ -1,29 +1,41 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CancelJobCommandInput, CancelJobCommandOutput } from "../commands/CancelJobCommand";
3
4
  import { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "../commands/CancelQuantumTaskCommand";
5
+ import { CreateJobCommandInput, CreateJobCommandOutput } from "../commands/CreateJobCommand";
4
6
  import { CreateQuantumTaskCommandInput, CreateQuantumTaskCommandOutput } from "../commands/CreateQuantumTaskCommand";
5
7
  import { GetDeviceCommandInput, GetDeviceCommandOutput } from "../commands/GetDeviceCommand";
8
+ import { GetJobCommandInput, GetJobCommandOutput } from "../commands/GetJobCommand";
6
9
  import { GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput } from "../commands/GetQuantumTaskCommand";
7
10
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
8
11
  import { SearchDevicesCommandInput, SearchDevicesCommandOutput } from "../commands/SearchDevicesCommand";
12
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
9
13
  import { SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput } from "../commands/SearchQuantumTasksCommand";
10
14
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
15
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
16
+ export declare const serializeAws_restJson1CancelJobCommand: (input: CancelJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
17
  export declare const serializeAws_restJson1CancelQuantumTaskCommand: (input: CancelQuantumTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1CreateJobCommand: (input: CreateJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
19
  export declare const serializeAws_restJson1CreateQuantumTaskCommand: (input: CreateQuantumTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
20
  export declare const serializeAws_restJson1GetDeviceCommand: (input: GetDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1GetJobCommand: (input: GetJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
22
  export declare const serializeAws_restJson1GetQuantumTaskCommand: (input: GetQuantumTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
23
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
24
  export declare const serializeAws_restJson1SearchDevicesCommand: (input: SearchDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1SearchJobsCommand: (input: SearchJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
26
  export declare const serializeAws_restJson1SearchQuantumTasksCommand: (input: SearchQuantumTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
27
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
28
  export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const deserializeAws_restJson1CancelJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobCommandOutput>;
21
30
  export declare const deserializeAws_restJson1CancelQuantumTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelQuantumTaskCommandOutput>;
31
+ export declare const deserializeAws_restJson1CreateJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateJobCommandOutput>;
22
32
  export declare const deserializeAws_restJson1CreateQuantumTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQuantumTaskCommandOutput>;
23
33
  export declare const deserializeAws_restJson1GetDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeviceCommandOutput>;
34
+ export declare const deserializeAws_restJson1GetJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetJobCommandOutput>;
24
35
  export declare const deserializeAws_restJson1GetQuantumTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQuantumTaskCommandOutput>;
25
36
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
26
37
  export declare const deserializeAws_restJson1SearchDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchDevicesCommandOutput>;
38
+ export declare const deserializeAws_restJson1SearchJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchJobsCommandOutput>;
27
39
  export declare const deserializeAws_restJson1SearchQuantumTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQuantumTasksCommandOutput>;
28
40
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
29
41
  export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
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.40.0",
4
+ "version": "3.45.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.40.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.40.0",
24
+ "@aws-sdk/client-sts": "3.45.0",
25
+ "@aws-sdk/config-resolver": "3.45.0",
26
+ "@aws-sdk/credential-provider-node": "3.45.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",
28
28
  "@aws-sdk/hash-node": "3.40.0",
29
29
  "@aws-sdk/invalid-dependency": "3.40.0",
@@ -32,13 +32,13 @@
32
32
  "@aws-sdk/middleware-logger": "3.40.0",
33
33
  "@aws-sdk/middleware-retry": "3.40.0",
34
34
  "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.45.0",
36
36
  "@aws-sdk/middleware-stack": "3.40.0",
37
37
  "@aws-sdk/middleware-user-agent": "3.40.0",
38
38
  "@aws-sdk/node-config-provider": "3.40.0",
39
39
  "@aws-sdk/node-http-handler": "3.40.0",
40
40
  "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.41.0",
42
42
  "@aws-sdk/types": "3.40.0",
43
43
  "@aws-sdk/url-parser": "3.40.0",
44
44
  "@aws-sdk/util-base64-browser": "3.37.0",