@aws-sdk/client-braket 3.948.0 → 3.953.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 (37) hide show
  1. package/dist-cjs/index.js +303 -214
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelJobCommand.js +2 -2
  4. package/dist-es/commands/CancelQuantumTaskCommand.js +2 -2
  5. package/dist-es/commands/CreateJobCommand.js +2 -2
  6. package/dist-es/commands/CreateQuantumTaskCommand.js +2 -2
  7. package/dist-es/commands/CreateSpendingLimitCommand.js +2 -2
  8. package/dist-es/commands/DeleteSpendingLimitCommand.js +2 -2
  9. package/dist-es/commands/GetDeviceCommand.js +2 -2
  10. package/dist-es/commands/GetJobCommand.js +2 -2
  11. package/dist-es/commands/GetQuantumTaskCommand.js +2 -2
  12. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  13. package/dist-es/commands/SearchDevicesCommand.js +2 -2
  14. package/dist-es/commands/SearchJobsCommand.js +2 -2
  15. package/dist-es/commands/SearchQuantumTasksCommand.js +2 -2
  16. package/dist-es/commands/SearchSpendingLimitsCommand.js +2 -2
  17. package/dist-es/commands/TagResourceCommand.js +2 -2
  18. package/dist-es/commands/UntagResourceCommand.js +2 -2
  19. package/dist-es/commands/UpdateSpendingLimitCommand.js +2 -2
  20. package/dist-es/index.js +1 -0
  21. package/dist-es/runtimeConfig.shared.js +6 -1
  22. package/dist-es/schemas/schemas_0.js +179 -179
  23. package/dist-types/BraketClient.d.ts +1 -10
  24. package/dist-types/index.d.ts +1 -0
  25. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  26. package/dist-types/runtimeConfig.d.ts +6 -2
  27. package/dist-types/runtimeConfig.native.d.ts +6 -2
  28. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  29. package/dist-types/schemas/schemas_0.d.ts +90 -111
  30. package/dist-types/ts3.4/BraketClient.d.ts +0 -4
  31. package/dist-types/ts3.4/index.d.ts +1 -0
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +89 -112
  37. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class BraketClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let BraketServiceException$1 = class BraketServiceException extends smithyClient.ServiceException {
113
+ class BraketServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, BraketServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends BraketServiceException$1 {
120
+ class AccessDeniedException extends BraketServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BraketServiceE
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let InternalServiceException$1 = class InternalServiceException extends BraketServiceException$1 {
131
+ }
132
+ class InternalServiceException extends BraketServiceException {
133
133
  name = "InternalServiceException";
134
134
  $fault = "server";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let InternalServiceException$1 = class InternalServiceException extends BraketSe
140
140
  });
141
141
  Object.setPrototypeOf(this, InternalServiceException.prototype);
142
142
  }
143
- };
144
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends BraketServiceException$1 {
143
+ }
144
+ class ResourceNotFoundException extends BraketServiceException {
145
145
  name = "ResourceNotFoundException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Braket
152
152
  });
153
153
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
154
154
  }
155
- };
156
- let ThrottlingException$1 = class ThrottlingException extends BraketServiceException$1 {
155
+ }
156
+ class ThrottlingException extends BraketServiceException {
157
157
  name = "ThrottlingException";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let ThrottlingException$1 = class ThrottlingException extends BraketServiceExcep
164
164
  });
165
165
  Object.setPrototypeOf(this, ThrottlingException.prototype);
166
166
  }
167
- };
168
- let ValidationException$1 = class ValidationException extends BraketServiceException$1 {
167
+ }
168
+ class ValidationException extends BraketServiceException {
169
169
  name = "ValidationException";
170
170
  $fault = "client";
171
171
  reason;
@@ -180,8 +180,8 @@ let ValidationException$1 = class ValidationException extends BraketServiceExcep
180
180
  this.reason = opts.reason;
181
181
  this.programSetValidationFailures = opts.programSetValidationFailures;
182
182
  }
183
- };
184
- let ConflictException$1 = class ConflictException extends BraketServiceException$1 {
183
+ }
184
+ class ConflictException extends BraketServiceException {
185
185
  name = "ConflictException";
186
186
  $fault = "client";
187
187
  constructor(opts) {
@@ -192,8 +192,8 @@ let ConflictException$1 = class ConflictException extends BraketServiceException
192
192
  });
193
193
  Object.setPrototypeOf(this, ConflictException.prototype);
194
194
  }
195
- };
196
- let DeviceOfflineException$1 = class DeviceOfflineException extends BraketServiceException$1 {
195
+ }
196
+ class DeviceOfflineException extends BraketServiceException {
197
197
  name = "DeviceOfflineException";
198
198
  $fault = "client";
199
199
  constructor(opts) {
@@ -204,8 +204,8 @@ let DeviceOfflineException$1 = class DeviceOfflineException extends BraketServic
204
204
  });
205
205
  Object.setPrototypeOf(this, DeviceOfflineException.prototype);
206
206
  }
207
- };
208
- let DeviceRetiredException$1 = class DeviceRetiredException extends BraketServiceException$1 {
207
+ }
208
+ class DeviceRetiredException extends BraketServiceException {
209
209
  name = "DeviceRetiredException";
210
210
  $fault = "client";
211
211
  constructor(opts) {
@@ -216,8 +216,8 @@ let DeviceRetiredException$1 = class DeviceRetiredException extends BraketServic
216
216
  });
217
217
  Object.setPrototypeOf(this, DeviceRetiredException.prototype);
218
218
  }
219
- };
220
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BraketServiceException$1 {
219
+ }
220
+ class ServiceQuotaExceededException extends BraketServiceException {
221
221
  name = "ServiceQuotaExceededException";
222
222
  $fault = "client";
223
223
  constructor(opts) {
@@ -228,7 +228,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
228
228
  });
229
229
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
230
230
  }
231
- };
231
+ }
232
232
 
233
233
  const _A = "Association";
234
234
  const _ADE = "AccessDeniedException";
@@ -441,21 +441,21 @@ const _v = "values";
441
441
  const _vSIG = "volumeSizeInGb";
442
442
  const n0 = "com.amazonaws.braket";
443
443
  var JsonValue = [0, n0, _JV, { [_mT]: _a }, 0];
444
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
445
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
446
- var ActionMetadata = [3, n0, _AM, 0, [_aT, _pC, _eC], [0, 1, 1]];
447
- var AlgorithmSpecification = [
444
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
445
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
446
+ var ActionMetadata$ = [3, n0, _AM, 0, [_aT, _pC, _eC], [0, 1, 1]];
447
+ var AlgorithmSpecification$ = [
448
448
  3,
449
449
  n0,
450
450
  _AS,
451
451
  0,
452
452
  [_sMC, _cI],
453
- [() => ScriptModeConfig, () => ContainerImage],
453
+ [() => ScriptModeConfig$, () => ContainerImage$],
454
454
  ];
455
- var Association = [3, n0, _A, 0, [_ar, _t], [0, 0]];
456
- var CancelJobRequest = [3, n0, _CJR, 0, [_jA], [[0, 1]]];
457
- var CancelJobResponse = [3, n0, _CJRa, 0, [_jA, _cS], [0, 0]];
458
- var CancelQuantumTaskRequest = [
455
+ var Association$ = [3, n0, _A, 0, [_ar, _t], [0, 0]];
456
+ var CancelJobRequest$ = [3, n0, _CJR, 0, [_jA], [[0, 1]]];
457
+ var CancelJobResponse$ = [3, n0, _CJRa, 0, [_jA, _cS], [0, 0]];
458
+ var CancelQuantumTaskRequest$ = [
459
459
  3,
460
460
  n0,
461
461
  _CQTR,
@@ -466,11 +466,11 @@ var CancelQuantumTaskRequest = [
466
466
  [0, 4],
467
467
  ],
468
468
  ];
469
- var CancelQuantumTaskResponse = [3, n0, _CQTRa, 0, [_qTA, _cS], [0, 0]];
470
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
471
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
472
- var ContainerImage = [3, n0, _CI, 0, [_u], [0]];
473
- var CreateJobRequest = [
469
+ var CancelQuantumTaskResponse$ = [3, n0, _CQTRa, 0, [_qTA, _cS], [0, 0]];
470
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
471
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
472
+ var ContainerImage$ = [3, n0, _CI, 0, [_u], [0]];
473
+ var CreateJobRequest$ = [
474
474
  3,
475
475
  n0,
476
476
  _CJRr,
@@ -478,22 +478,22 @@ var CreateJobRequest = [
478
478
  [_cT, _aS, _iDC, _oDC, _cC, _jN, _rA, _sC, _iC, _hP, _dC, _ta, _as],
479
479
  [
480
480
  [0, 4],
481
- () => AlgorithmSpecification,
481
+ () => AlgorithmSpecification$,
482
482
  () => InputConfigList,
483
- () => JobOutputDataConfig,
484
- () => JobCheckpointConfig,
483
+ () => JobOutputDataConfig$,
484
+ () => JobCheckpointConfig$,
485
485
  0,
486
486
  0,
487
- () => JobStoppingCondition,
488
- () => InstanceConfig,
487
+ () => JobStoppingCondition$,
488
+ () => InstanceConfig$,
489
489
  128 | 0,
490
- () => DeviceConfig,
490
+ () => DeviceConfig$,
491
491
  128 | 0,
492
492
  () => Associations,
493
493
  ],
494
494
  ];
495
- var CreateJobResponse = [3, n0, _CJRre, 0, [_jA], [0]];
496
- var CreateQuantumTaskRequest = [
495
+ var CreateJobResponse$ = [3, n0, _CJRre, 0, [_jA], [0]];
496
+ var CreateQuantumTaskRequest$ = [
497
497
  3,
498
498
  n0,
499
499
  _CQTRr,
@@ -510,31 +510,31 @@ var CreateQuantumTaskRequest = [
510
510
  128 | 0,
511
511
  0,
512
512
  () => Associations,
513
- () => ExperimentalCapabilities,
513
+ () => ExperimentalCapabilities$,
514
514
  ],
515
515
  ];
516
- var CreateQuantumTaskResponse = [3, n0, _CQTRre, 0, [_qTA], [0]];
517
- var CreateSpendingLimitRequest = [
516
+ var CreateQuantumTaskResponse$ = [3, n0, _CQTRre, 0, [_qTA], [0]];
517
+ var CreateSpendingLimitRequest$ = [
518
518
  3,
519
519
  n0,
520
520
  _CSLR,
521
521
  0,
522
522
  [_cT, _dA, _sL, _tP, _ta],
523
- [[0, 4], 0, 0, () => TimePeriod, 128 | 0],
523
+ [[0, 4], 0, 0, () => TimePeriod$, 128 | 0],
524
524
  ];
525
- var CreateSpendingLimitResponse = [3, n0, _CSLRr, 0, [_sLA], [0]];
526
- var DataSource = [3, n0, _DS, 0, [_sDS], [() => S3DataSource]];
527
- var DeleteSpendingLimitRequest = [3, n0, _DSLR, 0, [_sLA], [[0, 1]]];
528
- var DeleteSpendingLimitResponse = [3, n0, _DSLRe, 0, [], []];
529
- var DeviceConfig = [3, n0, _DC, 0, [_d], [0]];
530
- var DeviceOfflineException = [-3, n0, _DOE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
531
- schema.TypeRegistry.for(n0).registerError(DeviceOfflineException, DeviceOfflineException$1);
532
- var DeviceQueueInfo = [3, n0, _DQI, 0, [_q, _qS, _qP], [0, 0, 0]];
533
- var DeviceRetiredException = [-3, n0, _DRE, { [_e]: _c, [_hE]: 410 }, [_m], [0]];
534
- schema.TypeRegistry.for(n0).registerError(DeviceRetiredException, DeviceRetiredException$1);
535
- var DeviceSummary = [3, n0, _DSe, 0, [_dA, _dN, _pN, _dT, _dS], [0, 0, 0, 0, 0]];
536
- var GetDeviceRequest = [3, n0, _GDR, 0, [_dA], [[0, 1]]];
537
- var GetDeviceResponse = [
525
+ var CreateSpendingLimitResponse$ = [3, n0, _CSLRr, 0, [_sLA], [0]];
526
+ var DataSource$ = [3, n0, _DS, 0, [_sDS], [() => S3DataSource$]];
527
+ var DeleteSpendingLimitRequest$ = [3, n0, _DSLR, 0, [_sLA], [[0, 1]]];
528
+ var DeleteSpendingLimitResponse$ = [3, n0, _DSLRe, 0, [], []];
529
+ var DeviceConfig$ = [3, n0, _DC, 0, [_d], [0]];
530
+ var DeviceOfflineException$ = [-3, n0, _DOE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
531
+ schema.TypeRegistry.for(n0).registerError(DeviceOfflineException$, DeviceOfflineException);
532
+ var DeviceQueueInfo$ = [3, n0, _DQI, 0, [_q, _qS, _qP], [0, 0, 0]];
533
+ var DeviceRetiredException$ = [-3, n0, _DRE, { [_e]: _c, [_hE]: 410 }, [_m], [0]];
534
+ schema.TypeRegistry.for(n0).registerError(DeviceRetiredException$, DeviceRetiredException);
535
+ var DeviceSummary$ = [3, n0, _DSe, 0, [_dA, _dN, _pN, _dT, _dS], [0, 0, 0, 0, 0]];
536
+ var GetDeviceRequest$ = [3, n0, _GDR, 0, [_dA], [[0, 1]]];
537
+ var GetDeviceResponse$ = [
538
538
  3,
539
539
  n0,
540
540
  _GDRe,
@@ -542,7 +542,7 @@ var GetDeviceResponse = [
542
542
  [_dA, _dN, _pN, _dT, _dS, _dCe, _dQI],
543
543
  [0, 0, 0, 0, 0, [() => JsonValue, 0], () => DeviceQueueInfoList],
544
544
  ];
545
- var GetJobRequest = [
545
+ var GetJobRequest$ = [
546
546
  3,
547
547
  n0,
548
548
  _GJR,
@@ -553,7 +553,7 @@ var GetJobRequest = [
553
553
  [64 | 0, { [_hQ]: _aAN }],
554
554
  ],
555
555
  ];
556
- var GetJobResponse = [
556
+ var GetJobResponse$ = [
557
557
  3,
558
558
  n0,
559
559
  _GJRe,
@@ -567,23 +567,23 @@ var GetJobResponse = [
567
567
  0,
568
568
  128 | 0,
569
569
  () => InputConfigList,
570
- () => JobOutputDataConfig,
571
- () => JobStoppingCondition,
572
- () => JobCheckpointConfig,
573
- () => AlgorithmSpecification,
574
- () => InstanceConfig,
570
+ () => JobOutputDataConfig$,
571
+ () => JobStoppingCondition$,
572
+ () => JobCheckpointConfig$,
573
+ () => AlgorithmSpecification$,
574
+ () => InstanceConfig$,
575
575
  5,
576
576
  5,
577
577
  5,
578
578
  1,
579
- () => DeviceConfig,
579
+ () => DeviceConfig$,
580
580
  () => JobEvents,
581
581
  128 | 0,
582
- () => HybridJobQueueInfo,
582
+ () => HybridJobQueueInfo$,
583
583
  () => Associations,
584
584
  ],
585
585
  ];
586
- var GetQuantumTaskRequest = [
586
+ var GetQuantumTaskRequest$ = [
587
587
  3,
588
588
  n0,
589
589
  _GQTR,
@@ -594,7 +594,7 @@ var GetQuantumTaskRequest = [
594
594
  [64 | 0, { [_hQ]: _aAN }],
595
595
  ],
596
596
  ];
597
- var GetQuantumTaskResponse = [
597
+ var GetQuantumTaskResponse$ = [
598
598
  3,
599
599
  n0,
600
600
  _GQTRe,
@@ -613,23 +613,23 @@ var GetQuantumTaskResponse = [
613
613
  5,
614
614
  128 | 0,
615
615
  0,
616
- () => QuantumTaskQueueInfo,
616
+ () => QuantumTaskQueueInfo$,
617
617
  () => Associations,
618
618
  1,
619
- () => ActionMetadata,
620
- () => ExperimentalCapabilities,
619
+ () => ActionMetadata$,
620
+ () => ExperimentalCapabilities$,
621
621
  ],
622
622
  ];
623
- var HybridJobQueueInfo = [3, n0, _HJQI, 0, [_q, _p, _m], [0, 0, 0]];
624
- var InputFileConfig = [3, n0, _IFC, 0, [_cN, _cTo, _dSa], [0, 0, () => DataSource]];
625
- var InstanceConfig = [3, n0, _IC, 0, [_iT, _vSIG, _iCn], [0, 1, 1]];
626
- var InternalServiceException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
627
- schema.TypeRegistry.for(n0).registerError(InternalServiceException, InternalServiceException$1);
628
- var JobCheckpointConfig = [3, n0, _JCC, 0, [_lP, _sU], [0, 0]];
629
- var JobEventDetails = [3, n0, _JED, 0, [_eT, _tOE, _m], [0, 5, 0]];
630
- var JobOutputDataConfig = [3, n0, _JODC, 0, [_kKI, _sP], [0, 0]];
631
- var JobStoppingCondition = [3, n0, _JSC, 0, [_mRIS], [1]];
632
- var JobSummary = [
623
+ var HybridJobQueueInfo$ = [3, n0, _HJQI, 0, [_q, _p, _m], [0, 0, 0]];
624
+ var InputFileConfig$ = [3, n0, _IFC, 0, [_cN, _cTo, _dSa], [0, 0, () => DataSource$]];
625
+ var InstanceConfig$ = [3, n0, _IC, 0, [_iT, _vSIG, _iCn], [0, 1, 1]];
626
+ var InternalServiceException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
627
+ schema.TypeRegistry.for(n0).registerError(InternalServiceException$, InternalServiceException);
628
+ var JobCheckpointConfig$ = [3, n0, _JCC, 0, [_lP, _sU], [0, 0]];
629
+ var JobEventDetails$ = [3, n0, _JED, 0, [_eT, _tOE, _m], [0, 5, 0]];
630
+ var JobOutputDataConfig$ = [3, n0, _JODC, 0, [_kKI, _sP], [0, 0]];
631
+ var JobStoppingCondition$ = [3, n0, _JSC, 0, [_mRIS], [1]];
632
+ var JobSummary$ = [
633
633
  3,
634
634
  n0,
635
635
  _JS,
@@ -637,11 +637,11 @@ var JobSummary = [
637
637
  [_st, _jA, _jN, _d, _cA, _sA, _eA, _ta],
638
638
  [0, 0, 0, 0, 5, 5, 5, 128 | 0],
639
639
  ];
640
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
641
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
642
- var ProgramSetValidationFailure = [3, n0, _PSVF, 0, [_pI, _iI, _er], [1, 1, 64 | 0]];
643
- var QuantumTaskQueueInfo = [3, n0, _QTQI, 0, [_q, _p, _qP, _m], [0, 0, 0, 0]];
644
- var QuantumTaskSummary = [
640
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
641
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
642
+ var ProgramSetValidationFailure$ = [3, n0, _PSVF, 0, [_pI, _iI, _er], [1, 1, 64 | 0]];
643
+ var QuantumTaskQueueInfo$ = [3, n0, _QTQI, 0, [_q, _p, _qP, _m], [0, 0, 0, 0]];
644
+ var QuantumTaskSummary$ = [
645
645
  3,
646
646
  n0,
647
647
  _QTS,
@@ -649,12 +649,12 @@ var QuantumTaskSummary = [
649
649
  [_qTA, _st, _dA, _s, _oSB, _oSD, _cA, _eA, _ta],
650
650
  [0, 0, 0, 1, 0, 0, 5, 5, 128 | 0],
651
651
  ];
652
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
653
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
654
- var S3DataSource = [3, n0, _SDS, 0, [_sU], [0]];
655
- var ScriptModeConfig = [3, n0, _SMC, 0, [_eP, _sU, _cTom], [0, 0, 0]];
656
- var SearchDevicesFilter = [3, n0, _SDF, 0, [_n, _v], [0, 64 | 0]];
657
- var SearchDevicesRequest = [
652
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
653
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
654
+ var S3DataSource$ = [3, n0, _SDS, 0, [_sU], [0]];
655
+ var ScriptModeConfig$ = [3, n0, _SMC, 0, [_eP, _sU, _cTom], [0, 0, 0]];
656
+ var SearchDevicesFilter$ = [3, n0, _SDF, 0, [_n, _v], [0, 64 | 0]];
657
+ var SearchDevicesRequest$ = [
658
658
  3,
659
659
  n0,
660
660
  _SDR,
@@ -662,9 +662,9 @@ var SearchDevicesRequest = [
662
662
  [_nT, _mR, _f],
663
663
  [0, 1, () => SearchDevicesFilterList],
664
664
  ];
665
- var SearchDevicesResponse = [3, n0, _SDRe, 0, [_de, _nT], [() => DeviceSummaryList, 0]];
666
- var SearchJobsFilter = [3, n0, _SJF, 0, [_n, _v, _o], [0, 64 | 0, 0]];
667
- var SearchJobsRequest = [
665
+ var SearchDevicesResponse$ = [3, n0, _SDRe, 0, [_de, _nT], [() => DeviceSummaryList, 0]];
666
+ var SearchJobsFilter$ = [3, n0, _SJF, 0, [_n, _v, _o], [0, 64 | 0, 0]];
667
+ var SearchJobsRequest$ = [
668
668
  3,
669
669
  n0,
670
670
  _SJR,
@@ -672,9 +672,9 @@ var SearchJobsRequest = [
672
672
  [_nT, _mR, _f],
673
673
  [0, 1, () => SearchJobsFilterList],
674
674
  ];
675
- var SearchJobsResponse = [3, n0, _SJRe, 0, [_j, _nT], [() => JobSummaryList, 0]];
676
- var SearchQuantumTasksFilter = [3, n0, _SQTF, 0, [_n, _v, _o], [0, 64 | 0, 0]];
677
- var SearchQuantumTasksRequest = [
675
+ var SearchJobsResponse$ = [3, n0, _SJRe, 0, [_j, _nT], [() => JobSummaryList, 0]];
676
+ var SearchQuantumTasksFilter$ = [3, n0, _SQTF, 0, [_n, _v, _o], [0, 64 | 0, 0]];
677
+ var SearchQuantumTasksRequest$ = [
678
678
  3,
679
679
  n0,
680
680
  _SQTR,
@@ -682,7 +682,7 @@ var SearchQuantumTasksRequest = [
682
682
  [_nT, _mR, _f],
683
683
  [0, 1, () => SearchQuantumTasksFilterList],
684
684
  ];
685
- var SearchQuantumTasksResponse = [
685
+ var SearchQuantumTasksResponse$ = [
686
686
  3,
687
687
  n0,
688
688
  _SQTRe,
@@ -690,8 +690,8 @@ var SearchQuantumTasksResponse = [
690
690
  [_qT, _nT],
691
691
  [() => QuantumTaskSummaryList, 0],
692
692
  ];
693
- var SearchSpendingLimitsFilter = [3, n0, _SSLF, 0, [_n, _v, _o], [0, 64 | 0, 0]];
694
- var SearchSpendingLimitsRequest = [
693
+ var SearchSpendingLimitsFilter$ = [3, n0, _SSLF, 0, [_n, _v, _o], [0, 64 | 0, 0]];
694
+ var SearchSpendingLimitsRequest$ = [
695
695
  3,
696
696
  n0,
697
697
  _SSLR,
@@ -699,7 +699,7 @@ var SearchSpendingLimitsRequest = [
699
699
  [_nT, _mR, _f],
700
700
  [0, 1, () => SearchSpendingLimitsFilterList],
701
701
  ];
702
- var SearchSpendingLimitsResponse = [
702
+ var SearchSpendingLimitsResponse$ = [
703
703
  3,
704
704
  n0,
705
705
  _SSLRe,
@@ -707,22 +707,22 @@ var SearchSpendingLimitsResponse = [
707
707
  [_sLp, _nT],
708
708
  [() => SpendingLimitSummaryList, 0],
709
709
  ];
710
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
711
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
712
- var SpendingLimitSummary = [
710
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
711
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
712
+ var SpendingLimitSummary$ = [
713
713
  3,
714
714
  n0,
715
715
  _SLS,
716
716
  0,
717
717
  [_sLA, _dA, _tP, _sL, _qSu, _tS, _cA, _uA, _ta],
718
- [0, 0, () => TimePeriod, 0, 0, 0, 5, 5, 128 | 0],
718
+ [0, 0, () => TimePeriod$, 0, 0, 0, 5, 5, 128 | 0],
719
719
  ];
720
- var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
721
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
722
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
723
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
724
- var TimePeriod = [3, n0, _TP, 0, [_sAt, _eAn], [7, 7]];
725
- var UntagResourceRequest = [
720
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
721
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
722
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
723
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
724
+ var TimePeriod$ = [3, n0, _TP, 0, [_sAt, _eAn], [7, 7]];
725
+ var UntagResourceRequest$ = [
726
726
  3,
727
727
  n0,
728
728
  _URR,
@@ -733,17 +733,17 @@ var UntagResourceRequest = [
733
733
  [64 | 0, { [_hQ]: _tK }],
734
734
  ],
735
735
  ];
736
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
737
- var UpdateSpendingLimitRequest = [
736
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
737
+ var UpdateSpendingLimitRequest$ = [
738
738
  3,
739
739
  n0,
740
740
  _USLR,
741
741
  0,
742
742
  [_sLA, _cT, _sL, _tP],
743
- [[0, 1], [0, 4], 0, () => TimePeriod],
743
+ [[0, 1], [0, 4], 0, () => TimePeriod$],
744
744
  ];
745
- var UpdateSpendingLimitResponse = [3, n0, _USLRp, 0, [], []];
746
- var ValidationException = [
745
+ var UpdateSpendingLimitResponse$ = [3, n0, _USLRp, 0, [], []];
746
+ var ValidationException$ = [
747
747
  -3,
748
748
  n0,
749
749
  _VE,
@@ -751,158 +751,158 @@ var ValidationException = [
751
751
  [_m, _r, _pSVF],
752
752
  [0, 0, () => ProgramSetValidationFailuresList],
753
753
  ];
754
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
755
- var BraketServiceException = [-3, _sm, "BraketServiceException", 0, [], []];
756
- schema.TypeRegistry.for(_sm).registerError(BraketServiceException, BraketServiceException$1);
757
- var Associations = [1, n0, _As, 0, () => Association];
758
- var DeviceQueueInfoList = [1, n0, _DQIL, 0, () => DeviceQueueInfo];
759
- var DeviceSummaryList = [1, n0, _DSL, 0, () => DeviceSummary];
760
- var InputConfigList = [1, n0, _ICL, 0, () => InputFileConfig];
761
- var JobEvents = [1, n0, _JE, 0, () => JobEventDetails];
762
- var JobSummaryList = [1, n0, _JSL, 0, () => JobSummary];
763
- var ProgramSetValidationFailuresList = [1, n0, _PSVFL, 0, () => ProgramSetValidationFailure];
764
- var QuantumTaskSummaryList = [1, n0, _QTSL, 0, () => QuantumTaskSummary];
765
- var SearchDevicesFilterList = [1, n0, _SDFL, 0, () => SearchDevicesFilter];
766
- var SearchJobsFilterList = [1, n0, _SJFL, 0, () => SearchJobsFilter];
767
- var SearchQuantumTasksFilterList = [1, n0, _SQTFL, 0, () => SearchQuantumTasksFilter];
768
- var SearchSpendingLimitsFilterList = [1, n0, _SSLFL, 0, () => SearchSpendingLimitsFilter];
769
- var SpendingLimitSummaryList = [1, n0, _SLSL, 0, () => SpendingLimitSummary];
770
- var ExperimentalCapabilities = [3, n0, _EC, 0, [_en], [0]];
771
- var CancelJob = [
754
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
755
+ var BraketServiceException$ = [-3, _sm, "BraketServiceException", 0, [], []];
756
+ schema.TypeRegistry.for(_sm).registerError(BraketServiceException$, BraketServiceException);
757
+ var Associations = [1, n0, _As, 0, () => Association$];
758
+ var DeviceQueueInfoList = [1, n0, _DQIL, 0, () => DeviceQueueInfo$];
759
+ var DeviceSummaryList = [1, n0, _DSL, 0, () => DeviceSummary$];
760
+ var InputConfigList = [1, n0, _ICL, 0, () => InputFileConfig$];
761
+ var JobEvents = [1, n0, _JE, 0, () => JobEventDetails$];
762
+ var JobSummaryList = [1, n0, _JSL, 0, () => JobSummary$];
763
+ var ProgramSetValidationFailuresList = [1, n0, _PSVFL, 0, () => ProgramSetValidationFailure$];
764
+ var QuantumTaskSummaryList = [1, n0, _QTSL, 0, () => QuantumTaskSummary$];
765
+ var SearchDevicesFilterList = [1, n0, _SDFL, 0, () => SearchDevicesFilter$];
766
+ var SearchJobsFilterList = [1, n0, _SJFL, 0, () => SearchJobsFilter$];
767
+ var SearchQuantumTasksFilterList = [1, n0, _SQTFL, 0, () => SearchQuantumTasksFilter$];
768
+ var SearchSpendingLimitsFilterList = [1, n0, _SSLFL, 0, () => SearchSpendingLimitsFilter$];
769
+ var SpendingLimitSummaryList = [1, n0, _SLSL, 0, () => SpendingLimitSummary$];
770
+ var ExperimentalCapabilities$ = [3, n0, _EC, 0, [_en], [0]];
771
+ var CancelJob$ = [
772
772
  9,
773
773
  n0,
774
774
  _CJ,
775
775
  { [_h]: ["PUT", "/job/{jobArn}/cancel", 200] },
776
- () => CancelJobRequest,
777
- () => CancelJobResponse,
776
+ () => CancelJobRequest$,
777
+ () => CancelJobResponse$,
778
778
  ];
779
- var CancelQuantumTask = [
779
+ var CancelQuantumTask$ = [
780
780
  9,
781
781
  n0,
782
782
  _CQT,
783
783
  { [_h]: ["PUT", "/quantum-task/{quantumTaskArn}/cancel", 200] },
784
- () => CancelQuantumTaskRequest,
785
- () => CancelQuantumTaskResponse,
784
+ () => CancelQuantumTaskRequest$,
785
+ () => CancelQuantumTaskResponse$,
786
786
  ];
787
- var CreateJob = [
787
+ var CreateJob$ = [
788
788
  9,
789
789
  n0,
790
790
  _CJr,
791
791
  { [_h]: ["POST", "/job", 201] },
792
- () => CreateJobRequest,
793
- () => CreateJobResponse,
792
+ () => CreateJobRequest$,
793
+ () => CreateJobResponse$,
794
794
  ];
795
- var CreateQuantumTask = [
795
+ var CreateQuantumTask$ = [
796
796
  9,
797
797
  n0,
798
798
  _CQTr,
799
799
  { [_h]: ["POST", "/quantum-task", 201] },
800
- () => CreateQuantumTaskRequest,
801
- () => CreateQuantumTaskResponse,
800
+ () => CreateQuantumTaskRequest$,
801
+ () => CreateQuantumTaskResponse$,
802
802
  ];
803
- var CreateSpendingLimit = [
803
+ var CreateSpendingLimit$ = [
804
804
  9,
805
805
  n0,
806
806
  _CSL,
807
807
  { [_h]: ["POST", "/spending-limit", 201] },
808
- () => CreateSpendingLimitRequest,
809
- () => CreateSpendingLimitResponse,
808
+ () => CreateSpendingLimitRequest$,
809
+ () => CreateSpendingLimitResponse$,
810
810
  ];
811
- var DeleteSpendingLimit = [
811
+ var DeleteSpendingLimit$ = [
812
812
  9,
813
813
  n0,
814
814
  _DSLe,
815
815
  { [_h]: ["DELETE", "/spending-limit/{spendingLimitArn}/delete", 200] },
816
- () => DeleteSpendingLimitRequest,
817
- () => DeleteSpendingLimitResponse,
816
+ () => DeleteSpendingLimitRequest$,
817
+ () => DeleteSpendingLimitResponse$,
818
818
  ];
819
- var GetDevice = [
819
+ var GetDevice$ = [
820
820
  9,
821
821
  n0,
822
822
  _GD,
823
823
  { [_h]: ["GET", "/device/{deviceArn}", 200] },
824
- () => GetDeviceRequest,
825
- () => GetDeviceResponse,
824
+ () => GetDeviceRequest$,
825
+ () => GetDeviceResponse$,
826
826
  ];
827
- var GetJob = [
827
+ var GetJob$ = [
828
828
  9,
829
829
  n0,
830
830
  _GJ,
831
831
  { [_h]: ["GET", "/job/{jobArn}", 200] },
832
- () => GetJobRequest,
833
- () => GetJobResponse,
832
+ () => GetJobRequest$,
833
+ () => GetJobResponse$,
834
834
  ];
835
- var GetQuantumTask = [
835
+ var GetQuantumTask$ = [
836
836
  9,
837
837
  n0,
838
838
  _GQT,
839
839
  { [_h]: ["GET", "/quantum-task/{quantumTaskArn}", 200] },
840
- () => GetQuantumTaskRequest,
841
- () => GetQuantumTaskResponse,
840
+ () => GetQuantumTaskRequest$,
841
+ () => GetQuantumTaskResponse$,
842
842
  ];
843
- var ListTagsForResource = [
843
+ var ListTagsForResource$ = [
844
844
  9,
845
845
  n0,
846
846
  _LTFR,
847
847
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
848
- () => ListTagsForResourceRequest,
849
- () => ListTagsForResourceResponse,
848
+ () => ListTagsForResourceRequest$,
849
+ () => ListTagsForResourceResponse$,
850
850
  ];
851
- var SearchDevices = [
851
+ var SearchDevices$ = [
852
852
  9,
853
853
  n0,
854
854
  _SD,
855
855
  { [_h]: ["POST", "/devices", 200] },
856
- () => SearchDevicesRequest,
857
- () => SearchDevicesResponse,
856
+ () => SearchDevicesRequest$,
857
+ () => SearchDevicesResponse$,
858
858
  ];
859
- var SearchJobs = [
859
+ var SearchJobs$ = [
860
860
  9,
861
861
  n0,
862
862
  _SJ,
863
863
  { [_h]: ["POST", "/jobs", 200] },
864
- () => SearchJobsRequest,
865
- () => SearchJobsResponse,
864
+ () => SearchJobsRequest$,
865
+ () => SearchJobsResponse$,
866
866
  ];
867
- var SearchQuantumTasks = [
867
+ var SearchQuantumTasks$ = [
868
868
  9,
869
869
  n0,
870
870
  _SQT,
871
871
  { [_h]: ["POST", "/quantum-tasks", 200] },
872
- () => SearchQuantumTasksRequest,
873
- () => SearchQuantumTasksResponse,
872
+ () => SearchQuantumTasksRequest$,
873
+ () => SearchQuantumTasksResponse$,
874
874
  ];
875
- var SearchSpendingLimits = [
875
+ var SearchSpendingLimits$ = [
876
876
  9,
877
877
  n0,
878
878
  _SSL,
879
879
  { [_h]: ["POST", "/spending-limits", 200] },
880
- () => SearchSpendingLimitsRequest,
881
- () => SearchSpendingLimitsResponse,
880
+ () => SearchSpendingLimitsRequest$,
881
+ () => SearchSpendingLimitsResponse$,
882
882
  ];
883
- var TagResource = [
883
+ var TagResource$ = [
884
884
  9,
885
885
  n0,
886
886
  _TR,
887
887
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
888
- () => TagResourceRequest,
889
- () => TagResourceResponse,
888
+ () => TagResourceRequest$,
889
+ () => TagResourceResponse$,
890
890
  ];
891
- var UntagResource = [
891
+ var UntagResource$ = [
892
892
  9,
893
893
  n0,
894
894
  _UR,
895
895
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
896
- () => UntagResourceRequest,
897
- () => UntagResourceResponse,
896
+ () => UntagResourceRequest$,
897
+ () => UntagResourceResponse$,
898
898
  ];
899
- var UpdateSpendingLimit = [
899
+ var UpdateSpendingLimit$ = [
900
900
  9,
901
901
  n0,
902
902
  _USL,
903
903
  { [_h]: ["PATCH", "/spending-limit/{spendingLimitArn}/update", 200] },
904
- () => UpdateSpendingLimitRequest,
905
- () => UpdateSpendingLimitResponse,
904
+ () => UpdateSpendingLimitRequest$,
905
+ () => UpdateSpendingLimitResponse$,
906
906
  ];
907
907
 
908
908
  class CancelJobCommand extends smithyClient.Command
@@ -913,7 +913,7 @@ class CancelJobCommand extends smithyClient.Command
913
913
  })
914
914
  .s("Braket", "CancelJob", {})
915
915
  .n("BraketClient", "CancelJobCommand")
916
- .sc(CancelJob)
916
+ .sc(CancelJob$)
917
917
  .build() {
918
918
  }
919
919
 
@@ -925,7 +925,7 @@ class CancelQuantumTaskCommand extends smithyClient.Command
925
925
  })
926
926
  .s("Braket", "CancelQuantumTask", {})
927
927
  .n("BraketClient", "CancelQuantumTaskCommand")
928
- .sc(CancelQuantumTask)
928
+ .sc(CancelQuantumTask$)
929
929
  .build() {
930
930
  }
931
931
 
@@ -937,7 +937,7 @@ class CreateJobCommand extends smithyClient.Command
937
937
  })
938
938
  .s("Braket", "CreateJob", {})
939
939
  .n("BraketClient", "CreateJobCommand")
940
- .sc(CreateJob)
940
+ .sc(CreateJob$)
941
941
  .build() {
942
942
  }
943
943
 
@@ -949,7 +949,7 @@ class CreateQuantumTaskCommand extends smithyClient.Command
949
949
  })
950
950
  .s("Braket", "CreateQuantumTask", {})
951
951
  .n("BraketClient", "CreateQuantumTaskCommand")
952
- .sc(CreateQuantumTask)
952
+ .sc(CreateQuantumTask$)
953
953
  .build() {
954
954
  }
955
955
 
@@ -961,7 +961,7 @@ class CreateSpendingLimitCommand extends smithyClient.Command
961
961
  })
962
962
  .s("Braket", "CreateSpendingLimit", {})
963
963
  .n("BraketClient", "CreateSpendingLimitCommand")
964
- .sc(CreateSpendingLimit)
964
+ .sc(CreateSpendingLimit$)
965
965
  .build() {
966
966
  }
967
967
 
@@ -973,7 +973,7 @@ class DeleteSpendingLimitCommand extends smithyClient.Command
973
973
  })
974
974
  .s("Braket", "DeleteSpendingLimit", {})
975
975
  .n("BraketClient", "DeleteSpendingLimitCommand")
976
- .sc(DeleteSpendingLimit)
976
+ .sc(DeleteSpendingLimit$)
977
977
  .build() {
978
978
  }
979
979
 
@@ -985,7 +985,7 @@ class GetDeviceCommand extends smithyClient.Command
985
985
  })
986
986
  .s("Braket", "GetDevice", {})
987
987
  .n("BraketClient", "GetDeviceCommand")
988
- .sc(GetDevice)
988
+ .sc(GetDevice$)
989
989
  .build() {
990
990
  }
991
991
 
@@ -997,7 +997,7 @@ class GetJobCommand extends smithyClient.Command
997
997
  })
998
998
  .s("Braket", "GetJob", {})
999
999
  .n("BraketClient", "GetJobCommand")
1000
- .sc(GetJob)
1000
+ .sc(GetJob$)
1001
1001
  .build() {
1002
1002
  }
1003
1003
 
@@ -1009,7 +1009,7 @@ class GetQuantumTaskCommand extends smithyClient.Command
1009
1009
  })
1010
1010
  .s("Braket", "GetQuantumTask", {})
1011
1011
  .n("BraketClient", "GetQuantumTaskCommand")
1012
- .sc(GetQuantumTask)
1012
+ .sc(GetQuantumTask$)
1013
1013
  .build() {
1014
1014
  }
1015
1015
 
@@ -1021,7 +1021,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1021
1021
  })
1022
1022
  .s("Braket", "ListTagsForResource", {})
1023
1023
  .n("BraketClient", "ListTagsForResourceCommand")
1024
- .sc(ListTagsForResource)
1024
+ .sc(ListTagsForResource$)
1025
1025
  .build() {
1026
1026
  }
1027
1027
 
@@ -1033,7 +1033,7 @@ class SearchDevicesCommand extends smithyClient.Command
1033
1033
  })
1034
1034
  .s("Braket", "SearchDevices", {})
1035
1035
  .n("BraketClient", "SearchDevicesCommand")
1036
- .sc(SearchDevices)
1036
+ .sc(SearchDevices$)
1037
1037
  .build() {
1038
1038
  }
1039
1039
 
@@ -1045,7 +1045,7 @@ class SearchJobsCommand extends smithyClient.Command
1045
1045
  })
1046
1046
  .s("Braket", "SearchJobs", {})
1047
1047
  .n("BraketClient", "SearchJobsCommand")
1048
- .sc(SearchJobs)
1048
+ .sc(SearchJobs$)
1049
1049
  .build() {
1050
1050
  }
1051
1051
 
@@ -1057,7 +1057,7 @@ class SearchQuantumTasksCommand extends smithyClient.Command
1057
1057
  })
1058
1058
  .s("Braket", "SearchQuantumTasks", {})
1059
1059
  .n("BraketClient", "SearchQuantumTasksCommand")
1060
- .sc(SearchQuantumTasks)
1060
+ .sc(SearchQuantumTasks$)
1061
1061
  .build() {
1062
1062
  }
1063
1063
 
@@ -1069,7 +1069,7 @@ class SearchSpendingLimitsCommand extends smithyClient.Command
1069
1069
  })
1070
1070
  .s("Braket", "SearchSpendingLimits", {})
1071
1071
  .n("BraketClient", "SearchSpendingLimitsCommand")
1072
- .sc(SearchSpendingLimits)
1072
+ .sc(SearchSpendingLimits$)
1073
1073
  .build() {
1074
1074
  }
1075
1075
 
@@ -1081,7 +1081,7 @@ class TagResourceCommand extends smithyClient.Command
1081
1081
  })
1082
1082
  .s("Braket", "TagResource", {})
1083
1083
  .n("BraketClient", "TagResourceCommand")
1084
- .sc(TagResource)
1084
+ .sc(TagResource$)
1085
1085
  .build() {
1086
1086
  }
1087
1087
 
@@ -1093,7 +1093,7 @@ class UntagResourceCommand extends smithyClient.Command
1093
1093
  })
1094
1094
  .s("Braket", "UntagResource", {})
1095
1095
  .n("BraketClient", "UntagResourceCommand")
1096
- .sc(UntagResource)
1096
+ .sc(UntagResource$)
1097
1097
  .build() {
1098
1098
  }
1099
1099
 
@@ -1105,7 +1105,7 @@ class UpdateSpendingLimitCommand extends smithyClient.Command
1105
1105
  })
1106
1106
  .s("Braket", "UpdateSpendingLimit", {})
1107
1107
  .n("BraketClient", "UpdateSpendingLimitCommand")
1108
- .sc(UpdateSpendingLimit)
1108
+ .sc(UpdateSpendingLimit$)
1109
1109
  .build() {
1110
1110
  }
1111
1111
 
@@ -1281,51 +1281,140 @@ Object.defineProperty(exports, "__Client", {
1281
1281
  enumerable: true,
1282
1282
  get: function () { return smithyClient.Client; }
1283
1283
  });
1284
- exports.AccessDeniedException = AccessDeniedException$1;
1284
+ exports.AccessDeniedException = AccessDeniedException;
1285
+ exports.AccessDeniedException$ = AccessDeniedException$;
1286
+ exports.ActionMetadata$ = ActionMetadata$;
1287
+ exports.AlgorithmSpecification$ = AlgorithmSpecification$;
1288
+ exports.Association$ = Association$;
1285
1289
  exports.AssociationType = AssociationType;
1286
1290
  exports.Braket = Braket;
1287
1291
  exports.BraketClient = BraketClient;
1288
- exports.BraketServiceException = BraketServiceException$1;
1292
+ exports.BraketServiceException = BraketServiceException;
1293
+ exports.BraketServiceException$ = BraketServiceException$;
1294
+ exports.CancelJob$ = CancelJob$;
1289
1295
  exports.CancelJobCommand = CancelJobCommand;
1296
+ exports.CancelJobRequest$ = CancelJobRequest$;
1297
+ exports.CancelJobResponse$ = CancelJobResponse$;
1298
+ exports.CancelQuantumTask$ = CancelQuantumTask$;
1290
1299
  exports.CancelQuantumTaskCommand = CancelQuantumTaskCommand;
1300
+ exports.CancelQuantumTaskRequest$ = CancelQuantumTaskRequest$;
1301
+ exports.CancelQuantumTaskResponse$ = CancelQuantumTaskResponse$;
1291
1302
  exports.CancellationStatus = CancellationStatus;
1292
1303
  exports.CompressionType = CompressionType;
1293
- exports.ConflictException = ConflictException$1;
1304
+ exports.ConflictException = ConflictException;
1305
+ exports.ConflictException$ = ConflictException$;
1306
+ exports.ContainerImage$ = ContainerImage$;
1307
+ exports.CreateJob$ = CreateJob$;
1294
1308
  exports.CreateJobCommand = CreateJobCommand;
1309
+ exports.CreateJobRequest$ = CreateJobRequest$;
1310
+ exports.CreateJobResponse$ = CreateJobResponse$;
1311
+ exports.CreateQuantumTask$ = CreateQuantumTask$;
1295
1312
  exports.CreateQuantumTaskCommand = CreateQuantumTaskCommand;
1313
+ exports.CreateQuantumTaskRequest$ = CreateQuantumTaskRequest$;
1314
+ exports.CreateQuantumTaskResponse$ = CreateQuantumTaskResponse$;
1315
+ exports.CreateSpendingLimit$ = CreateSpendingLimit$;
1296
1316
  exports.CreateSpendingLimitCommand = CreateSpendingLimitCommand;
1317
+ exports.CreateSpendingLimitRequest$ = CreateSpendingLimitRequest$;
1318
+ exports.CreateSpendingLimitResponse$ = CreateSpendingLimitResponse$;
1319
+ exports.DataSource$ = DataSource$;
1320
+ exports.DeleteSpendingLimit$ = DeleteSpendingLimit$;
1297
1321
  exports.DeleteSpendingLimitCommand = DeleteSpendingLimitCommand;
1298
- exports.DeviceOfflineException = DeviceOfflineException$1;
1299
- exports.DeviceRetiredException = DeviceRetiredException$1;
1322
+ exports.DeleteSpendingLimitRequest$ = DeleteSpendingLimitRequest$;
1323
+ exports.DeleteSpendingLimitResponse$ = DeleteSpendingLimitResponse$;
1324
+ exports.DeviceConfig$ = DeviceConfig$;
1325
+ exports.DeviceOfflineException = DeviceOfflineException;
1326
+ exports.DeviceOfflineException$ = DeviceOfflineException$;
1327
+ exports.DeviceQueueInfo$ = DeviceQueueInfo$;
1328
+ exports.DeviceRetiredException = DeviceRetiredException;
1329
+ exports.DeviceRetiredException$ = DeviceRetiredException$;
1300
1330
  exports.DeviceStatus = DeviceStatus;
1331
+ exports.DeviceSummary$ = DeviceSummary$;
1301
1332
  exports.DeviceType = DeviceType;
1333
+ exports.ExperimentalCapabilities$ = ExperimentalCapabilities$;
1302
1334
  exports.ExperimentalCapabilitiesEnablementType = ExperimentalCapabilitiesEnablementType;
1335
+ exports.GetDevice$ = GetDevice$;
1303
1336
  exports.GetDeviceCommand = GetDeviceCommand;
1337
+ exports.GetDeviceRequest$ = GetDeviceRequest$;
1338
+ exports.GetDeviceResponse$ = GetDeviceResponse$;
1339
+ exports.GetJob$ = GetJob$;
1304
1340
  exports.GetJobCommand = GetJobCommand;
1341
+ exports.GetJobRequest$ = GetJobRequest$;
1342
+ exports.GetJobResponse$ = GetJobResponse$;
1343
+ exports.GetQuantumTask$ = GetQuantumTask$;
1305
1344
  exports.GetQuantumTaskCommand = GetQuantumTaskCommand;
1345
+ exports.GetQuantumTaskRequest$ = GetQuantumTaskRequest$;
1346
+ exports.GetQuantumTaskResponse$ = GetQuantumTaskResponse$;
1306
1347
  exports.HybridJobAdditionalAttributeName = HybridJobAdditionalAttributeName;
1307
- exports.InternalServiceException = InternalServiceException$1;
1348
+ exports.HybridJobQueueInfo$ = HybridJobQueueInfo$;
1349
+ exports.InputFileConfig$ = InputFileConfig$;
1350
+ exports.InstanceConfig$ = InstanceConfig$;
1351
+ exports.InternalServiceException = InternalServiceException;
1352
+ exports.InternalServiceException$ = InternalServiceException$;
1353
+ exports.JobCheckpointConfig$ = JobCheckpointConfig$;
1354
+ exports.JobEventDetails$ = JobEventDetails$;
1308
1355
  exports.JobEventType = JobEventType;
1356
+ exports.JobOutputDataConfig$ = JobOutputDataConfig$;
1309
1357
  exports.JobPrimaryStatus = JobPrimaryStatus;
1358
+ exports.JobStoppingCondition$ = JobStoppingCondition$;
1359
+ exports.JobSummary$ = JobSummary$;
1360
+ exports.ListTagsForResource$ = ListTagsForResource$;
1310
1361
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1362
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1363
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1364
+ exports.ProgramSetValidationFailure$ = ProgramSetValidationFailure$;
1311
1365
  exports.QuantumTaskAdditionalAttributeName = QuantumTaskAdditionalAttributeName;
1366
+ exports.QuantumTaskQueueInfo$ = QuantumTaskQueueInfo$;
1312
1367
  exports.QuantumTaskStatus = QuantumTaskStatus;
1368
+ exports.QuantumTaskSummary$ = QuantumTaskSummary$;
1313
1369
  exports.QueueName = QueueName;
1314
1370
  exports.QueuePriority = QueuePriority;
1315
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1371
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1372
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1373
+ exports.S3DataSource$ = S3DataSource$;
1374
+ exports.ScriptModeConfig$ = ScriptModeConfig$;
1375
+ exports.SearchDevices$ = SearchDevices$;
1316
1376
  exports.SearchDevicesCommand = SearchDevicesCommand;
1377
+ exports.SearchDevicesFilter$ = SearchDevicesFilter$;
1378
+ exports.SearchDevicesRequest$ = SearchDevicesRequest$;
1379
+ exports.SearchDevicesResponse$ = SearchDevicesResponse$;
1380
+ exports.SearchJobs$ = SearchJobs$;
1317
1381
  exports.SearchJobsCommand = SearchJobsCommand;
1382
+ exports.SearchJobsFilter$ = SearchJobsFilter$;
1318
1383
  exports.SearchJobsFilterOperator = SearchJobsFilterOperator;
1384
+ exports.SearchJobsRequest$ = SearchJobsRequest$;
1385
+ exports.SearchJobsResponse$ = SearchJobsResponse$;
1386
+ exports.SearchQuantumTasks$ = SearchQuantumTasks$;
1319
1387
  exports.SearchQuantumTasksCommand = SearchQuantumTasksCommand;
1388
+ exports.SearchQuantumTasksFilter$ = SearchQuantumTasksFilter$;
1320
1389
  exports.SearchQuantumTasksFilterOperator = SearchQuantumTasksFilterOperator;
1390
+ exports.SearchQuantumTasksRequest$ = SearchQuantumTasksRequest$;
1391
+ exports.SearchQuantumTasksResponse$ = SearchQuantumTasksResponse$;
1392
+ exports.SearchSpendingLimits$ = SearchSpendingLimits$;
1321
1393
  exports.SearchSpendingLimitsCommand = SearchSpendingLimitsCommand;
1394
+ exports.SearchSpendingLimitsFilter$ = SearchSpendingLimitsFilter$;
1322
1395
  exports.SearchSpendingLimitsFilterOperator = SearchSpendingLimitsFilterOperator;
1323
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1396
+ exports.SearchSpendingLimitsRequest$ = SearchSpendingLimitsRequest$;
1397
+ exports.SearchSpendingLimitsResponse$ = SearchSpendingLimitsResponse$;
1398
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1399
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1400
+ exports.SpendingLimitSummary$ = SpendingLimitSummary$;
1401
+ exports.TagResource$ = TagResource$;
1324
1402
  exports.TagResourceCommand = TagResourceCommand;
1325
- exports.ThrottlingException = ThrottlingException$1;
1403
+ exports.TagResourceRequest$ = TagResourceRequest$;
1404
+ exports.TagResourceResponse$ = TagResourceResponse$;
1405
+ exports.ThrottlingException = ThrottlingException;
1406
+ exports.ThrottlingException$ = ThrottlingException$;
1407
+ exports.TimePeriod$ = TimePeriod$;
1408
+ exports.UntagResource$ = UntagResource$;
1326
1409
  exports.UntagResourceCommand = UntagResourceCommand;
1410
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1411
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1412
+ exports.UpdateSpendingLimit$ = UpdateSpendingLimit$;
1327
1413
  exports.UpdateSpendingLimitCommand = UpdateSpendingLimitCommand;
1328
- exports.ValidationException = ValidationException$1;
1414
+ exports.UpdateSpendingLimitRequest$ = UpdateSpendingLimitRequest$;
1415
+ exports.UpdateSpendingLimitResponse$ = UpdateSpendingLimitResponse$;
1416
+ exports.ValidationException = ValidationException;
1417
+ exports.ValidationException$ = ValidationException$;
1329
1418
  exports.ValidationExceptionReason = ValidationExceptionReason;
1330
1419
  exports._InstanceType = _InstanceType;
1331
1420
  exports.paginateSearchDevices = paginateSearchDevices;