@aws-sdk/client-braket 3.296.0 → 3.298.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 (51) hide show
  1. package/dist-cjs/commands/CancelJobCommand.js +2 -3
  2. package/dist-cjs/commands/CancelQuantumTaskCommand.js +2 -3
  3. package/dist-cjs/commands/CreateJobCommand.js +2 -3
  4. package/dist-cjs/commands/CreateQuantumTaskCommand.js +2 -3
  5. package/dist-cjs/commands/GetDeviceCommand.js +2 -3
  6. package/dist-cjs/commands/GetJobCommand.js +2 -3
  7. package/dist-cjs/commands/GetQuantumTaskCommand.js +2 -3
  8. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  9. package/dist-cjs/commands/SearchDevicesCommand.js +2 -3
  10. package/dist-cjs/commands/SearchJobsCommand.js +2 -3
  11. package/dist-cjs/commands/SearchQuantumTasksCommand.js +2 -3
  12. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  13. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  14. package/dist-cjs/models/models_0.js +1 -178
  15. package/dist-es/commands/CancelJobCommand.js +2 -3
  16. package/dist-es/commands/CancelQuantumTaskCommand.js +2 -3
  17. package/dist-es/commands/CreateJobCommand.js +2 -3
  18. package/dist-es/commands/CreateQuantumTaskCommand.js +2 -3
  19. package/dist-es/commands/GetDeviceCommand.js +2 -3
  20. package/dist-es/commands/GetJobCommand.js +2 -3
  21. package/dist-es/commands/GetQuantumTaskCommand.js +2 -3
  22. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  23. package/dist-es/commands/SearchDevicesCommand.js +2 -3
  24. package/dist-es/commands/SearchJobsCommand.js +2 -3
  25. package/dist-es/commands/SearchQuantumTasksCommand.js +2 -3
  26. package/dist-es/commands/TagResourceCommand.js +2 -3
  27. package/dist-es/commands/UntagResourceCommand.js +2 -3
  28. package/dist-es/models/models_0.js +0 -132
  29. package/dist-types/Braket.d.ts +14 -0
  30. package/dist-types/BraketClient.d.ts +24 -4
  31. package/dist-types/commands/CancelJobCommand.d.ts +16 -0
  32. package/dist-types/commands/CancelQuantumTaskCommand.d.ts +16 -0
  33. package/dist-types/commands/CreateJobCommand.d.ts +16 -0
  34. package/dist-types/commands/CreateQuantumTaskCommand.d.ts +16 -0
  35. package/dist-types/commands/GetDeviceCommand.d.ts +16 -0
  36. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  37. package/dist-types/commands/GetQuantumTaskCommand.d.ts +16 -0
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/SearchDevicesCommand.d.ts +16 -0
  40. package/dist-types/commands/SearchJobsCommand.d.ts +16 -0
  41. package/dist-types/commands/SearchQuantumTasksCommand.d.ts +16 -0
  42. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  44. package/dist-types/models/BraketServiceException.d.ts +2 -0
  45. package/dist-types/models/models_0.d.ts +135 -176
  46. package/dist-types/pagination/Interfaces.d.ts +3 -0
  47. package/dist-types/pagination/SearchDevicesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/SearchJobsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/SearchQuantumTasksPaginator.d.ts +3 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +0 -124
  51. package/package.json +4 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
2
  import { BraketServiceException as __BaseException } from "./BraketServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You do not have sufficient access to perform this action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
12
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
13
14
  }
14
15
  /**
16
+ * @public
15
17
  * <p>The container image used to create an Amazon Braket job.</p>
16
18
  */
17
19
  export interface ContainerImage {
@@ -20,11 +22,15 @@ export interface ContainerImage {
20
22
  */
21
23
  uri: string | undefined;
22
24
  }
25
+ /**
26
+ * @public
27
+ */
23
28
  export declare enum CompressionType {
24
29
  GZIP = "GZIP",
25
30
  NONE = "NONE"
26
31
  }
27
32
  /**
33
+ * @public
28
34
  * <p>Contains information about the Python scripts used for entry and by an Amazon Braket
29
35
  * job.</p>
30
36
  */
@@ -45,6 +51,7 @@ export interface ScriptModeConfig {
45
51
  compressionType?: CompressionType | string;
46
52
  }
47
53
  /**
54
+ * @public
48
55
  * <p>Defines the Amazon Braket job to be created. Specifies the container image the job uses
49
56
  * and the paths to the Python scripts used for entry and training.</p>
50
57
  */
@@ -58,21 +65,33 @@ export interface AlgorithmSpecification {
58
65
  */
59
66
  containerImage?: ContainerImage;
60
67
  }
68
+ /**
69
+ * @public
70
+ */
61
71
  export interface GetDeviceRequest {
62
72
  /**
63
73
  * <p>The ARN of the device to retrieve.</p>
64
74
  */
65
75
  deviceArn: string | undefined;
66
76
  }
77
+ /**
78
+ * @public
79
+ */
67
80
  export declare enum DeviceStatus {
68
81
  OFFLINE = "OFFLINE",
69
82
  ONLINE = "ONLINE",
70
83
  RETIRED = "RETIRED"
71
84
  }
85
+ /**
86
+ * @public
87
+ */
72
88
  export declare enum DeviceType {
73
89
  QPU = "QPU",
74
90
  SIMULATOR = "SIMULATOR"
75
91
  }
92
+ /**
93
+ * @public
94
+ */
76
95
  export interface GetDeviceResponse {
77
96
  /**
78
97
  * <p>The ARN of the device.</p>
@@ -100,6 +119,7 @@ export interface GetDeviceResponse {
100
119
  deviceCapabilities: __LazyJsonString | string | undefined;
101
120
  }
102
121
  /**
122
+ * @public
103
123
  * <p>The request processing has failed because of an unknown error, exception, or
104
124
  * failure.</p>
105
125
  */
@@ -112,6 +132,7 @@ export declare class InternalServiceException extends __BaseException {
112
132
  constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
113
133
  }
114
134
  /**
135
+ * @public
115
136
  * <p>The specified resource was not found.</p>
116
137
  */
117
138
  export declare class ResourceNotFoundException extends __BaseException {
@@ -123,6 +144,7 @@ export declare class ResourceNotFoundException extends __BaseException {
123
144
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
124
145
  }
125
146
  /**
147
+ * @public
126
148
  * <p>The throttling rate limit is met.</p>
127
149
  */
128
150
  export declare class ThrottlingException extends __BaseException {
@@ -134,6 +156,7 @@ export declare class ThrottlingException extends __BaseException {
134
156
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
135
157
  }
136
158
  /**
159
+ * @public
137
160
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
138
161
  */
139
162
  export declare class ValidationException extends __BaseException {
@@ -145,6 +168,7 @@ export declare class ValidationException extends __BaseException {
145
168
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
146
169
  }
147
170
  /**
171
+ * @public
148
172
  * <p>The filter to use for searching devices.</p>
149
173
  */
150
174
  export interface SearchDevicesFilter {
@@ -157,6 +181,9 @@ export interface SearchDevicesFilter {
157
181
  */
158
182
  values: string[] | undefined;
159
183
  }
184
+ /**
185
+ * @public
186
+ */
160
187
  export interface SearchDevicesRequest {
161
188
  /**
162
189
  * <p>A token used for pagination of results returned in the response. Use the token returned
@@ -173,6 +200,7 @@ export interface SearchDevicesRequest {
173
200
  filters: SearchDevicesFilter[] | undefined;
174
201
  }
175
202
  /**
203
+ * @public
176
204
  * <p>Includes information about the device.</p>
177
205
  */
178
206
  export interface DeviceSummary {
@@ -197,6 +225,9 @@ export interface DeviceSummary {
197
225
  */
198
226
  deviceStatus: DeviceStatus | string | undefined;
199
227
  }
228
+ /**
229
+ * @public
230
+ */
200
231
  export interface SearchDevicesResponse {
201
232
  /**
202
233
  * <p>An array of <code>DeviceSummary</code> objects for devices that match the specified
@@ -210,16 +241,25 @@ export interface SearchDevicesResponse {
210
241
  */
211
242
  nextToken?: string;
212
243
  }
244
+ /**
245
+ * @public
246
+ */
213
247
  export interface CancelJobRequest {
214
248
  /**
215
249
  * <p>The ARN of the Amazon Braket job to cancel.</p>
216
250
  */
217
251
  jobArn: string | undefined;
218
252
  }
253
+ /**
254
+ * @public
255
+ */
219
256
  export declare enum CancellationStatus {
220
257
  CANCELLED = "CANCELLED",
221
258
  CANCELLING = "CANCELLING"
222
259
  }
260
+ /**
261
+ * @public
262
+ */
223
263
  export interface CancelJobResponse {
224
264
  /**
225
265
  * <p>The ARN of the Amazon Braket job.</p>
@@ -231,6 +271,7 @@ export interface CancelJobResponse {
231
271
  cancellationStatus: CancellationStatus | string | undefined;
232
272
  }
233
273
  /**
274
+ * @public
234
275
  * <p>An error occurred due to a conflict.</p>
235
276
  */
236
277
  export declare class ConflictException extends __BaseException {
@@ -242,6 +283,7 @@ export declare class ConflictException extends __BaseException {
242
283
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
243
284
  }
244
285
  /**
286
+ * @public
245
287
  * <p>Contains information about the output locations for job checkpoint data.</p>
246
288
  */
247
289
  export interface JobCheckpointConfig {
@@ -257,6 +299,7 @@ export interface JobCheckpointConfig {
257
299
  s3Uri: string | undefined;
258
300
  }
259
301
  /**
302
+ * @public
260
303
  * <p>Configures the quantum processing units (QPUs) or simulator used to create and run an
261
304
  * Amazon Braket job.</p>
262
305
  */
@@ -268,6 +311,7 @@ export interface DeviceConfig {
268
311
  device: string | undefined;
269
312
  }
270
313
  /**
314
+ * @public
271
315
  * <p>Information about the data stored in Amazon S3 used by the Amazon Braket job.</p>
272
316
  */
273
317
  export interface S3DataSource {
@@ -278,6 +322,7 @@ export interface S3DataSource {
278
322
  s3Uri: string | undefined;
279
323
  }
280
324
  /**
325
+ * @public
281
326
  * <p>Information about the source of the data used by the Amazon Braket job.</p>
282
327
  */
283
328
  export interface DataSource {
@@ -287,6 +332,7 @@ export interface DataSource {
287
332
  s3DataSource: S3DataSource | undefined;
288
333
  }
289
334
  /**
335
+ * @public
290
336
  * <p>A list of parameters that specify the input channels, type of input data, and where it
291
337
  * is located.</p>
292
338
  */
@@ -304,6 +350,9 @@ export interface InputFileConfig {
304
350
  */
305
351
  dataSource: DataSource | undefined;
306
352
  }
353
+ /**
354
+ * @public
355
+ */
307
356
  export declare enum _InstanceType {
308
357
  ML_C4_2XLARGE = "ml.c4.2xlarge",
309
358
  ML_C4_4XLARGE = "ml.c4.4xlarge",
@@ -346,6 +395,7 @@ export declare enum _InstanceType {
346
395
  ML_P4D_24XLARGE = "ml.p4d.24xlarge"
347
396
  }
348
397
  /**
398
+ * @public
349
399
  * <p>Configures the resource instances to use while running the Amazon Braket hybrid job on
350
400
  * Amazon Braket.</p>
351
401
  */
@@ -366,6 +416,7 @@ export interface InstanceConfig {
366
416
  instanceCount?: number;
367
417
  }
368
418
  /**
419
+ * @public
369
420
  * <p>Specifies the path to the S3 location where you want to store job artifacts and the
370
421
  * encryption key used to store them.</p>
371
422
  */
@@ -382,6 +433,7 @@ export interface JobOutputDataConfig {
382
433
  s3Path: string | undefined;
383
434
  }
384
435
  /**
436
+ * @public
385
437
  * <p>Specifies limits for how long an Amazon Braket job can run. </p>
386
438
  */
387
439
  export interface JobStoppingCondition {
@@ -390,6 +442,9 @@ export interface JobStoppingCondition {
390
442
  */
391
443
  maxRuntimeInSeconds?: number;
392
444
  }
445
+ /**
446
+ * @public
447
+ */
393
448
  export interface CreateJobRequest {
394
449
  /**
395
450
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
@@ -450,6 +505,9 @@ export interface CreateJobRequest {
450
505
  */
451
506
  tags?: Record<string, string>;
452
507
  }
508
+ /**
509
+ * @public
510
+ */
453
511
  export interface CreateJobResponse {
454
512
  /**
455
513
  * <p>The ARN of the Amazon Braket job created.</p>
@@ -457,6 +515,7 @@ export interface CreateJobResponse {
457
515
  jobArn: string | undefined;
458
516
  }
459
517
  /**
518
+ * @public
460
519
  * <p>The specified device has been retired.</p>
461
520
  */
462
521
  export declare class DeviceRetiredException extends __BaseException {
@@ -468,6 +527,7 @@ export declare class DeviceRetiredException extends __BaseException {
468
527
  constructor(opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>);
469
528
  }
470
529
  /**
530
+ * @public
471
531
  * <p>The request failed because a service quota is exceeded.</p>
472
532
  */
473
533
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -478,12 +538,18 @@ export declare class ServiceQuotaExceededException extends __BaseException {
478
538
  */
479
539
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
480
540
  }
541
+ /**
542
+ * @public
543
+ */
481
544
  export interface GetJobRequest {
482
545
  /**
483
546
  * <p>The ARN of the job to retrieve.</p>
484
547
  */
485
548
  jobArn: string | undefined;
486
549
  }
550
+ /**
551
+ * @public
552
+ */
487
553
  export declare enum JobEventType {
488
554
  CANCELLED = "CANCELLED",
489
555
  COMPLETED = "COMPLETED",
@@ -498,6 +564,7 @@ export declare enum JobEventType {
498
564
  WAITING_FOR_PRIORITY = "WAITING_FOR_PRIORITY"
499
565
  }
500
566
  /**
567
+ * @public
501
568
  * <p>Details about the type and time events occurred related to the Amazon Braket job.</p>
502
569
  */
503
570
  export interface JobEventDetails {
@@ -514,6 +581,9 @@ export interface JobEventDetails {
514
581
  */
515
582
  message?: string;
516
583
  }
584
+ /**
585
+ * @public
586
+ */
517
587
  export declare enum JobPrimaryStatus {
518
588
  CANCELLED = "CANCELLED",
519
589
  CANCELLING = "CANCELLING",
@@ -522,6 +592,9 @@ export declare enum JobPrimaryStatus {
522
592
  QUEUED = "QUEUED",
523
593
  RUNNING = "RUNNING"
524
594
  }
595
+ /**
596
+ * @public
597
+ */
525
598
  export interface GetJobResponse {
526
599
  /**
527
600
  * <p>The status of the Amazon Braket job.</p>
@@ -609,6 +682,9 @@ export interface GetJobResponse {
609
682
  */
610
683
  tags?: Record<string, string>;
611
684
  }
685
+ /**
686
+ * @public
687
+ */
612
688
  export declare enum SearchJobsFilterOperator {
613
689
  BETWEEN = "BETWEEN",
614
690
  CONTAINS = "CONTAINS",
@@ -619,6 +695,7 @@ export declare enum SearchJobsFilterOperator {
619
695
  LTE = "LTE"
620
696
  }
621
697
  /**
698
+ * @public
622
699
  * <p>A filter used to search for Amazon Braket jobs.</p>
623
700
  */
624
701
  export interface SearchJobsFilter {
@@ -635,6 +712,9 @@ export interface SearchJobsFilter {
635
712
  */
636
713
  operator: SearchJobsFilterOperator | string | undefined;
637
714
  }
715
+ /**
716
+ * @public
717
+ */
638
718
  export interface SearchJobsRequest {
639
719
  /**
640
720
  * <p>A token used for pagination of results returned in the response. Use the token returned
@@ -651,6 +731,7 @@ export interface SearchJobsRequest {
651
731
  filters: SearchJobsFilter[] | undefined;
652
732
  }
653
733
  /**
734
+ * @public
654
735
  * <p>Provides summary information about an Amazon Braket job.</p>
655
736
  */
656
737
  export interface JobSummary {
@@ -689,6 +770,9 @@ export interface JobSummary {
689
770
  */
690
771
  tags?: Record<string, string>;
691
772
  }
773
+ /**
774
+ * @public
775
+ */
692
776
  export interface SearchJobsResponse {
693
777
  /**
694
778
  * <p>An array of <code>JobSummary</code> objects for devices that match the specified filter
@@ -702,18 +786,27 @@ export interface SearchJobsResponse {
702
786
  */
703
787
  nextToken?: string;
704
788
  }
789
+ /**
790
+ * @public
791
+ */
705
792
  export interface ListTagsForResourceRequest {
706
793
  /**
707
794
  * <p>Specify the <code>resourceArn</code> for the resource whose tags to display.</p>
708
795
  */
709
796
  resourceArn: string | undefined;
710
797
  }
798
+ /**
799
+ * @public
800
+ */
711
801
  export interface ListTagsForResourceResponse {
712
802
  /**
713
803
  * <p>Displays the key, value pairs of tags associated with this resource.</p>
714
804
  */
715
805
  tags?: Record<string, string>;
716
806
  }
807
+ /**
808
+ * @public
809
+ */
717
810
  export interface CancelQuantumTaskRequest {
718
811
  /**
719
812
  * <p>The ARN of the task to cancel.</p>
@@ -724,6 +817,9 @@ export interface CancelQuantumTaskRequest {
724
817
  */
725
818
  clientToken?: string;
726
819
  }
820
+ /**
821
+ * @public
822
+ */
727
823
  export interface CancelQuantumTaskResponse {
728
824
  /**
729
825
  * <p>The ARN of the task.</p>
@@ -734,6 +830,9 @@ export interface CancelQuantumTaskResponse {
734
830
  */
735
831
  cancellationStatus: CancellationStatus | string | undefined;
736
832
  }
833
+ /**
834
+ * @public
835
+ */
737
836
  export interface CreateQuantumTaskRequest {
738
837
  /**
739
838
  * <p>The client token associated with the request.</p>
@@ -772,6 +871,9 @@ export interface CreateQuantumTaskRequest {
772
871
  */
773
872
  jobToken?: string;
774
873
  }
874
+ /**
875
+ * @public
876
+ */
775
877
  export interface CreateQuantumTaskResponse {
776
878
  /**
777
879
  * <p>The ARN of the task created by the request.</p>
@@ -779,6 +881,7 @@ export interface CreateQuantumTaskResponse {
779
881
  quantumTaskArn: string | undefined;
780
882
  }
781
883
  /**
884
+ * @public
782
885
  * <p>The specified device is currently offline.</p>
783
886
  */
784
887
  export declare class DeviceOfflineException extends __BaseException {
@@ -789,12 +892,18 @@ export declare class DeviceOfflineException extends __BaseException {
789
892
  */
790
893
  constructor(opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>);
791
894
  }
895
+ /**
896
+ * @public
897
+ */
792
898
  export interface GetQuantumTaskRequest {
793
899
  /**
794
900
  * <p>the ARN of the task to retrieve.</p>
795
901
  */
796
902
  quantumTaskArn: string | undefined;
797
903
  }
904
+ /**
905
+ * @public
906
+ */
798
907
  export declare enum QuantumTaskStatus {
799
908
  CANCELLED = "CANCELLED",
800
909
  CANCELLING = "CANCELLING",
@@ -804,6 +913,9 @@ export declare enum QuantumTaskStatus {
804
913
  QUEUED = "QUEUED",
805
914
  RUNNING = "RUNNING"
806
915
  }
916
+ /**
917
+ * @public
918
+ */
807
919
  export interface GetQuantumTaskResponse {
808
920
  /**
809
921
  * <p>The ARN of the task.</p>
@@ -854,6 +966,9 @@ export interface GetQuantumTaskResponse {
854
966
  */
855
967
  jobArn?: string;
856
968
  }
969
+ /**
970
+ * @public
971
+ */
857
972
  export declare enum SearchQuantumTasksFilterOperator {
858
973
  BETWEEN = "BETWEEN",
859
974
  EQUAL = "EQUAL",
@@ -863,6 +978,7 @@ export declare enum SearchQuantumTasksFilterOperator {
863
978
  LTE = "LTE"
864
979
  }
865
980
  /**
981
+ * @public
866
982
  * <p>A filter to use to search for tasks.</p>
867
983
  */
868
984
  export interface SearchQuantumTasksFilter {
@@ -879,6 +995,9 @@ export interface SearchQuantumTasksFilter {
879
995
  */
880
996
  operator: SearchQuantumTasksFilterOperator | string | undefined;
881
997
  }
998
+ /**
999
+ * @public
1000
+ */
882
1001
  export interface SearchQuantumTasksRequest {
883
1002
  /**
884
1003
  * <p>A token used for pagination of results returned in the response. Use the token returned
@@ -895,6 +1014,7 @@ export interface SearchQuantumTasksRequest {
895
1014
  filters: SearchQuantumTasksFilter[] | undefined;
896
1015
  }
897
1016
  /**
1017
+ * @public
898
1018
  * <p>Includes information about a quantum task.</p>
899
1019
  */
900
1020
  export interface QuantumTaskSummary {
@@ -935,6 +1055,9 @@ export interface QuantumTaskSummary {
935
1055
  */
936
1056
  tags?: Record<string, string>;
937
1057
  }
1058
+ /**
1059
+ * @public
1060
+ */
938
1061
  export interface SearchQuantumTasksResponse {
939
1062
  /**
940
1063
  * <p>An array of <code>QuantumTaskSummary</code> objects for tasks that match the specified
@@ -948,6 +1071,9 @@ export interface SearchQuantumTasksResponse {
948
1071
  */
949
1072
  nextToken?: string;
950
1073
  }
1074
+ /**
1075
+ * @public
1076
+ */
951
1077
  export interface TagResourceRequest {
952
1078
  /**
953
1079
  * <p>Specify the <code>resourceArn</code> of the resource to which a tag will be
@@ -959,8 +1085,14 @@ export interface TagResourceRequest {
959
1085
  */
960
1086
  tags: Record<string, string> | undefined;
961
1087
  }
1088
+ /**
1089
+ * @public
1090
+ */
962
1091
  export interface TagResourceResponse {
963
1092
  }
1093
+ /**
1094
+ * @public
1095
+ */
964
1096
  export interface UntagResourceRequest {
965
1097
  /**
966
1098
  * <p>Specify the <code>resourceArn</code> for the resource from which to remove the
@@ -972,181 +1104,8 @@ export interface UntagResourceRequest {
972
1104
  */
973
1105
  tagKeys: string[] | undefined;
974
1106
  }
975
- export interface UntagResourceResponse {
976
- }
977
- /**
978
- * @internal
979
- */
980
- export declare const ContainerImageFilterSensitiveLog: (obj: ContainerImage) => any;
981
- /**
982
- * @internal
983
- */
984
- export declare const ScriptModeConfigFilterSensitiveLog: (obj: ScriptModeConfig) => any;
985
- /**
986
- * @internal
987
- */
988
- export declare const AlgorithmSpecificationFilterSensitiveLog: (obj: AlgorithmSpecification) => any;
989
- /**
990
- * @internal
991
- */
992
- export declare const GetDeviceRequestFilterSensitiveLog: (obj: GetDeviceRequest) => any;
993
1107
  /**
994
- * @internal
1108
+ * @public
995
1109
  */
996
- export declare const GetDeviceResponseFilterSensitiveLog: (obj: GetDeviceResponse) => any;
997
- /**
998
- * @internal
999
- */
1000
- export declare const SearchDevicesFilterFilterSensitiveLog: (obj: SearchDevicesFilter) => any;
1001
- /**
1002
- * @internal
1003
- */
1004
- export declare const SearchDevicesRequestFilterSensitiveLog: (obj: SearchDevicesRequest) => any;
1005
- /**
1006
- * @internal
1007
- */
1008
- export declare const DeviceSummaryFilterSensitiveLog: (obj: DeviceSummary) => any;
1009
- /**
1010
- * @internal
1011
- */
1012
- export declare const SearchDevicesResponseFilterSensitiveLog: (obj: SearchDevicesResponse) => any;
1013
- /**
1014
- * @internal
1015
- */
1016
- export declare const CancelJobRequestFilterSensitiveLog: (obj: CancelJobRequest) => any;
1017
- /**
1018
- * @internal
1019
- */
1020
- export declare const CancelJobResponseFilterSensitiveLog: (obj: CancelJobResponse) => any;
1021
- /**
1022
- * @internal
1023
- */
1024
- export declare const JobCheckpointConfigFilterSensitiveLog: (obj: JobCheckpointConfig) => any;
1025
- /**
1026
- * @internal
1027
- */
1028
- export declare const DeviceConfigFilterSensitiveLog: (obj: DeviceConfig) => any;
1029
- /**
1030
- * @internal
1031
- */
1032
- export declare const S3DataSourceFilterSensitiveLog: (obj: S3DataSource) => any;
1033
- /**
1034
- * @internal
1035
- */
1036
- export declare const DataSourceFilterSensitiveLog: (obj: DataSource) => any;
1037
- /**
1038
- * @internal
1039
- */
1040
- export declare const InputFileConfigFilterSensitiveLog: (obj: InputFileConfig) => any;
1041
- /**
1042
- * @internal
1043
- */
1044
- export declare const InstanceConfigFilterSensitiveLog: (obj: InstanceConfig) => any;
1045
- /**
1046
- * @internal
1047
- */
1048
- export declare const JobOutputDataConfigFilterSensitiveLog: (obj: JobOutputDataConfig) => any;
1049
- /**
1050
- * @internal
1051
- */
1052
- export declare const JobStoppingConditionFilterSensitiveLog: (obj: JobStoppingCondition) => any;
1053
- /**
1054
- * @internal
1055
- */
1056
- export declare const CreateJobRequestFilterSensitiveLog: (obj: CreateJobRequest) => any;
1057
- /**
1058
- * @internal
1059
- */
1060
- export declare const CreateJobResponseFilterSensitiveLog: (obj: CreateJobResponse) => any;
1061
- /**
1062
- * @internal
1063
- */
1064
- export declare const GetJobRequestFilterSensitiveLog: (obj: GetJobRequest) => any;
1065
- /**
1066
- * @internal
1067
- */
1068
- export declare const JobEventDetailsFilterSensitiveLog: (obj: JobEventDetails) => any;
1069
- /**
1070
- * @internal
1071
- */
1072
- export declare const GetJobResponseFilterSensitiveLog: (obj: GetJobResponse) => any;
1073
- /**
1074
- * @internal
1075
- */
1076
- export declare const SearchJobsFilterFilterSensitiveLog: (obj: SearchJobsFilter) => any;
1077
- /**
1078
- * @internal
1079
- */
1080
- export declare const SearchJobsRequestFilterSensitiveLog: (obj: SearchJobsRequest) => any;
1081
- /**
1082
- * @internal
1083
- */
1084
- export declare const JobSummaryFilterSensitiveLog: (obj: JobSummary) => any;
1085
- /**
1086
- * @internal
1087
- */
1088
- export declare const SearchJobsResponseFilterSensitiveLog: (obj: SearchJobsResponse) => any;
1089
- /**
1090
- * @internal
1091
- */
1092
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1093
- /**
1094
- * @internal
1095
- */
1096
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1097
- /**
1098
- * @internal
1099
- */
1100
- export declare const CancelQuantumTaskRequestFilterSensitiveLog: (obj: CancelQuantumTaskRequest) => any;
1101
- /**
1102
- * @internal
1103
- */
1104
- export declare const CancelQuantumTaskResponseFilterSensitiveLog: (obj: CancelQuantumTaskResponse) => any;
1105
- /**
1106
- * @internal
1107
- */
1108
- export declare const CreateQuantumTaskRequestFilterSensitiveLog: (obj: CreateQuantumTaskRequest) => any;
1109
- /**
1110
- * @internal
1111
- */
1112
- export declare const CreateQuantumTaskResponseFilterSensitiveLog: (obj: CreateQuantumTaskResponse) => any;
1113
- /**
1114
- * @internal
1115
- */
1116
- export declare const GetQuantumTaskRequestFilterSensitiveLog: (obj: GetQuantumTaskRequest) => any;
1117
- /**
1118
- * @internal
1119
- */
1120
- export declare const GetQuantumTaskResponseFilterSensitiveLog: (obj: GetQuantumTaskResponse) => any;
1121
- /**
1122
- * @internal
1123
- */
1124
- export declare const SearchQuantumTasksFilterFilterSensitiveLog: (obj: SearchQuantumTasksFilter) => any;
1125
- /**
1126
- * @internal
1127
- */
1128
- export declare const SearchQuantumTasksRequestFilterSensitiveLog: (obj: SearchQuantumTasksRequest) => any;
1129
- /**
1130
- * @internal
1131
- */
1132
- export declare const QuantumTaskSummaryFilterSensitiveLog: (obj: QuantumTaskSummary) => any;
1133
- /**
1134
- * @internal
1135
- */
1136
- export declare const SearchQuantumTasksResponseFilterSensitiveLog: (obj: SearchQuantumTasksResponse) => any;
1137
- /**
1138
- * @internal
1139
- */
1140
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1141
- /**
1142
- * @internal
1143
- */
1144
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1145
- /**
1146
- * @internal
1147
- */
1148
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1149
- /**
1150
- * @internal
1151
- */
1152
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1110
+ export interface UntagResourceResponse {
1111
+ }
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { BraketClient } from "../BraketClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface BraketPaginationConfiguration extends PaginationConfiguration {
4
7
  client: BraketClient;
5
8
  }