@aws-sdk/client-braket 3.936.0 → 3.939.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 (43) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +324 -0
  3. package/dist-es/Braket.js +8 -0
  4. package/dist-es/commands/CreateSpendingLimitCommand.js +16 -0
  5. package/dist-es/commands/DeleteSpendingLimitCommand.js +16 -0
  6. package/dist-es/commands/SearchSpendingLimitsCommand.js +16 -0
  7. package/dist-es/commands/UpdateSpendingLimitCommand.js +16 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/index.js +1 -0
  10. package/dist-es/models/enums.js +132 -0
  11. package/dist-es/models/models_0.js +1 -129
  12. package/dist-es/pagination/SearchSpendingLimitsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +114 -0
  15. package/dist-types/Braket.d.ts +29 -0
  16. package/dist-types/BraketClient.d.ts +6 -2
  17. package/dist-types/commands/CreateSpendingLimitCommand.d.ts +98 -0
  18. package/dist-types/commands/DeleteSpendingLimitCommand.d.ts +87 -0
  19. package/dist-types/commands/SearchSpendingLimitsCommand.d.ts +114 -0
  20. package/dist-types/commands/UpdateSpendingLimitCommand.d.ts +93 -0
  21. package/dist-types/commands/index.d.ts +4 -0
  22. package/dist-types/index.d.ts +1 -0
  23. package/dist-types/models/enums.d.ts +276 -0
  24. package/dist-types/models/errors.d.ts +2 -1
  25. package/dist-types/models/models_0.d.ts +209 -265
  26. package/dist-types/pagination/SearchSpendingLimitsPaginator.d.ts +7 -0
  27. package/dist-types/pagination/index.d.ts +1 -0
  28. package/dist-types/schemas/schemas_0.d.ts +17 -0
  29. package/dist-types/ts3.4/Braket.d.ts +69 -0
  30. package/dist-types/ts3.4/BraketClient.d.ts +26 -2
  31. package/dist-types/ts3.4/commands/CreateSpendingLimitCommand.d.ts +51 -0
  32. package/dist-types/ts3.4/commands/DeleteSpendingLimitCommand.d.ts +51 -0
  33. package/dist-types/ts3.4/commands/SearchSpendingLimitsCommand.d.ts +51 -0
  34. package/dist-types/ts3.4/commands/UpdateSpendingLimitCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  36. package/dist-types/ts3.4/index.d.ts +1 -0
  37. package/dist-types/ts3.4/models/enums.d.ts +162 -0
  38. package/dist-types/ts3.4/models/errors.d.ts +2 -4
  39. package/dist-types/ts3.4/models/models_0.d.ts +69 -157
  40. package/dist-types/ts3.4/pagination/SearchSpendingLimitsPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
  43. package/package.json +2 -2
@@ -16,6 +16,14 @@ import {
16
16
  CreateQuantumTaskCommandInput,
17
17
  CreateQuantumTaskCommandOutput,
18
18
  } from "./commands/CreateQuantumTaskCommand";
19
+ import {
20
+ CreateSpendingLimitCommandInput,
21
+ CreateSpendingLimitCommandOutput,
22
+ } from "./commands/CreateSpendingLimitCommand";
23
+ import {
24
+ DeleteSpendingLimitCommandInput,
25
+ DeleteSpendingLimitCommandOutput,
26
+ } from "./commands/DeleteSpendingLimitCommand";
19
27
  import {
20
28
  GetDeviceCommandInput,
21
29
  GetDeviceCommandOutput,
@@ -44,6 +52,10 @@ import {
44
52
  SearchQuantumTasksCommandInput,
45
53
  SearchQuantumTasksCommandOutput,
46
54
  } from "./commands/SearchQuantumTasksCommand";
55
+ import {
56
+ SearchSpendingLimitsCommandInput,
57
+ SearchSpendingLimitsCommandOutput,
58
+ } from "./commands/SearchSpendingLimitsCommand";
47
59
  import {
48
60
  TagResourceCommandInput,
49
61
  TagResourceCommandOutput,
@@ -52,6 +64,10 @@ import {
52
64
  UntagResourceCommandInput,
53
65
  UntagResourceCommandOutput,
54
66
  } from "./commands/UntagResourceCommand";
67
+ import {
68
+ UpdateSpendingLimitCommandInput,
69
+ UpdateSpendingLimitCommandOutput,
70
+ } from "./commands/UpdateSpendingLimitCommand";
55
71
  export interface Braket {
56
72
  cancelJob(
57
73
  args: CancelJobCommandInput,
@@ -105,6 +121,32 @@ export interface Braket {
105
121
  options: __HttpHandlerOptions,
106
122
  cb: (err: any, data?: CreateQuantumTaskCommandOutput) => void
107
123
  ): void;
124
+ createSpendingLimit(
125
+ args: CreateSpendingLimitCommandInput,
126
+ options?: __HttpHandlerOptions
127
+ ): Promise<CreateSpendingLimitCommandOutput>;
128
+ createSpendingLimit(
129
+ args: CreateSpendingLimitCommandInput,
130
+ cb: (err: any, data?: CreateSpendingLimitCommandOutput) => void
131
+ ): void;
132
+ createSpendingLimit(
133
+ args: CreateSpendingLimitCommandInput,
134
+ options: __HttpHandlerOptions,
135
+ cb: (err: any, data?: CreateSpendingLimitCommandOutput) => void
136
+ ): void;
137
+ deleteSpendingLimit(
138
+ args: DeleteSpendingLimitCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<DeleteSpendingLimitCommandOutput>;
141
+ deleteSpendingLimit(
142
+ args: DeleteSpendingLimitCommandInput,
143
+ cb: (err: any, data?: DeleteSpendingLimitCommandOutput) => void
144
+ ): void;
145
+ deleteSpendingLimit(
146
+ args: DeleteSpendingLimitCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: DeleteSpendingLimitCommandOutput) => void
149
+ ): void;
108
150
  getDevice(
109
151
  args: GetDeviceCommandInput,
110
152
  options?: __HttpHandlerOptions
@@ -196,6 +238,20 @@ export interface Braket {
196
238
  options: __HttpHandlerOptions,
197
239
  cb: (err: any, data?: SearchQuantumTasksCommandOutput) => void
198
240
  ): void;
241
+ searchSpendingLimits(): Promise<SearchSpendingLimitsCommandOutput>;
242
+ searchSpendingLimits(
243
+ args: SearchSpendingLimitsCommandInput,
244
+ options?: __HttpHandlerOptions
245
+ ): Promise<SearchSpendingLimitsCommandOutput>;
246
+ searchSpendingLimits(
247
+ args: SearchSpendingLimitsCommandInput,
248
+ cb: (err: any, data?: SearchSpendingLimitsCommandOutput) => void
249
+ ): void;
250
+ searchSpendingLimits(
251
+ args: SearchSpendingLimitsCommandInput,
252
+ options: __HttpHandlerOptions,
253
+ cb: (err: any, data?: SearchSpendingLimitsCommandOutput) => void
254
+ ): void;
199
255
  tagResource(
200
256
  args: TagResourceCommandInput,
201
257
  options?: __HttpHandlerOptions
@@ -222,5 +278,18 @@ export interface Braket {
222
278
  options: __HttpHandlerOptions,
223
279
  cb: (err: any, data?: UntagResourceCommandOutput) => void
224
280
  ): void;
281
+ updateSpendingLimit(
282
+ args: UpdateSpendingLimitCommandInput,
283
+ options?: __HttpHandlerOptions
284
+ ): Promise<UpdateSpendingLimitCommandOutput>;
285
+ updateSpendingLimit(
286
+ args: UpdateSpendingLimitCommandInput,
287
+ cb: (err: any, data?: UpdateSpendingLimitCommandOutput) => void
288
+ ): void;
289
+ updateSpendingLimit(
290
+ args: UpdateSpendingLimitCommandInput,
291
+ options: __HttpHandlerOptions,
292
+ cb: (err: any, data?: UpdateSpendingLimitCommandOutput) => void
293
+ ): void;
225
294
  }
226
295
  export declare class Braket extends BraketClient implements Braket {}
@@ -64,6 +64,14 @@ import {
64
64
  CreateQuantumTaskCommandInput,
65
65
  CreateQuantumTaskCommandOutput,
66
66
  } from "./commands/CreateQuantumTaskCommand";
67
+ import {
68
+ CreateSpendingLimitCommandInput,
69
+ CreateSpendingLimitCommandOutput,
70
+ } from "./commands/CreateSpendingLimitCommand";
71
+ import {
72
+ DeleteSpendingLimitCommandInput,
73
+ DeleteSpendingLimitCommandOutput,
74
+ } from "./commands/DeleteSpendingLimitCommand";
67
75
  import {
68
76
  GetDeviceCommandInput,
69
77
  GetDeviceCommandOutput,
@@ -92,6 +100,10 @@ import {
92
100
  SearchQuantumTasksCommandInput,
93
101
  SearchQuantumTasksCommandOutput,
94
102
  } from "./commands/SearchQuantumTasksCommand";
103
+ import {
104
+ SearchSpendingLimitsCommandInput,
105
+ SearchSpendingLimitsCommandOutput,
106
+ } from "./commands/SearchSpendingLimitsCommand";
95
107
  import {
96
108
  TagResourceCommandInput,
97
109
  TagResourceCommandOutput,
@@ -100,6 +112,10 @@ import {
100
112
  UntagResourceCommandInput,
101
113
  UntagResourceCommandOutput,
102
114
  } from "./commands/UntagResourceCommand";
115
+ import {
116
+ UpdateSpendingLimitCommandInput,
117
+ UpdateSpendingLimitCommandOutput,
118
+ } from "./commands/UpdateSpendingLimitCommand";
103
119
  import {
104
120
  ClientInputEndpointParameters,
105
121
  ClientResolvedEndpointParameters,
@@ -112,6 +128,8 @@ export type ServiceInputTypes =
112
128
  | CancelQuantumTaskCommandInput
113
129
  | CreateJobCommandInput
114
130
  | CreateQuantumTaskCommandInput
131
+ | CreateSpendingLimitCommandInput
132
+ | DeleteSpendingLimitCommandInput
115
133
  | GetDeviceCommandInput
116
134
  | GetJobCommandInput
117
135
  | GetQuantumTaskCommandInput
@@ -119,13 +137,17 @@ export type ServiceInputTypes =
119
137
  | SearchDevicesCommandInput
120
138
  | SearchJobsCommandInput
121
139
  | SearchQuantumTasksCommandInput
140
+ | SearchSpendingLimitsCommandInput
122
141
  | TagResourceCommandInput
123
- | UntagResourceCommandInput;
142
+ | UntagResourceCommandInput
143
+ | UpdateSpendingLimitCommandInput;
124
144
  export type ServiceOutputTypes =
125
145
  | CancelJobCommandOutput
126
146
  | CancelQuantumTaskCommandOutput
127
147
  | CreateJobCommandOutput
128
148
  | CreateQuantumTaskCommandOutput
149
+ | CreateSpendingLimitCommandOutput
150
+ | DeleteSpendingLimitCommandOutput
129
151
  | GetDeviceCommandOutput
130
152
  | GetJobCommandOutput
131
153
  | GetQuantumTaskCommandOutput
@@ -133,8 +155,10 @@ export type ServiceOutputTypes =
133
155
  | SearchDevicesCommandOutput
134
156
  | SearchJobsCommandOutput
135
157
  | SearchQuantumTasksCommandOutput
158
+ | SearchSpendingLimitsCommandOutput
136
159
  | TagResourceCommandOutput
137
- | UntagResourceCommandOutput;
160
+ | UntagResourceCommandOutput
161
+ | UpdateSpendingLimitCommandOutput;
138
162
  export interface ClientDefaults
139
163
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
140
164
  requestHandler?: __HttpHandlerUserInput;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BraketClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BraketClient";
8
+ import {
9
+ CreateSpendingLimitRequest,
10
+ CreateSpendingLimitResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateSpendingLimitCommandInput
15
+ extends CreateSpendingLimitRequest {}
16
+ export interface CreateSpendingLimitCommandOutput
17
+ extends CreateSpendingLimitResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateSpendingLimitCommand_base: {
20
+ new (
21
+ input: CreateSpendingLimitCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateSpendingLimitCommandInput,
24
+ CreateSpendingLimitCommandOutput,
25
+ BraketClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateSpendingLimitCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateSpendingLimitCommandInput,
33
+ CreateSpendingLimitCommandOutput,
34
+ BraketClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateSpendingLimitCommand extends CreateSpendingLimitCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateSpendingLimitRequest;
44
+ output: CreateSpendingLimitResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateSpendingLimitCommandInput;
48
+ output: CreateSpendingLimitCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BraketClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BraketClient";
8
+ import {
9
+ DeleteSpendingLimitRequest,
10
+ DeleteSpendingLimitResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteSpendingLimitCommandInput
15
+ extends DeleteSpendingLimitRequest {}
16
+ export interface DeleteSpendingLimitCommandOutput
17
+ extends DeleteSpendingLimitResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteSpendingLimitCommand_base: {
20
+ new (
21
+ input: DeleteSpendingLimitCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteSpendingLimitCommandInput,
24
+ DeleteSpendingLimitCommandOutput,
25
+ BraketClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteSpendingLimitCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteSpendingLimitCommandInput,
33
+ DeleteSpendingLimitCommandOutput,
34
+ BraketClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteSpendingLimitCommand extends DeleteSpendingLimitCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteSpendingLimitRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteSpendingLimitCommandInput;
48
+ output: DeleteSpendingLimitCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BraketClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BraketClient";
8
+ import {
9
+ SearchSpendingLimitsRequest,
10
+ SearchSpendingLimitsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface SearchSpendingLimitsCommandInput
15
+ extends SearchSpendingLimitsRequest {}
16
+ export interface SearchSpendingLimitsCommandOutput
17
+ extends SearchSpendingLimitsResponse,
18
+ __MetadataBearer {}
19
+ declare const SearchSpendingLimitsCommand_base: {
20
+ new (
21
+ input: SearchSpendingLimitsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ SearchSpendingLimitsCommandInput,
24
+ SearchSpendingLimitsCommandOutput,
25
+ BraketClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [SearchSpendingLimitsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ SearchSpendingLimitsCommandInput,
33
+ SearchSpendingLimitsCommandOutput,
34
+ BraketClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class SearchSpendingLimitsCommand extends SearchSpendingLimitsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: SearchSpendingLimitsRequest;
44
+ output: SearchSpendingLimitsResponse;
45
+ };
46
+ sdk: {
47
+ input: SearchSpendingLimitsCommandInput;
48
+ output: SearchSpendingLimitsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BraketClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BraketClient";
8
+ import {
9
+ UpdateSpendingLimitRequest,
10
+ UpdateSpendingLimitResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateSpendingLimitCommandInput
15
+ extends UpdateSpendingLimitRequest {}
16
+ export interface UpdateSpendingLimitCommandOutput
17
+ extends UpdateSpendingLimitResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateSpendingLimitCommand_base: {
20
+ new (
21
+ input: UpdateSpendingLimitCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateSpendingLimitCommandInput,
24
+ UpdateSpendingLimitCommandOutput,
25
+ BraketClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateSpendingLimitCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateSpendingLimitCommandInput,
33
+ UpdateSpendingLimitCommandOutput,
34
+ BraketClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateSpendingLimitCommand extends UpdateSpendingLimitCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateSpendingLimitRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: UpdateSpendingLimitCommandInput;
48
+ output: UpdateSpendingLimitCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -2,6 +2,8 @@ export * from "./CancelJobCommand";
2
2
  export * from "./CancelQuantumTaskCommand";
3
3
  export * from "./CreateJobCommand";
4
4
  export * from "./CreateQuantumTaskCommand";
5
+ export * from "./CreateSpendingLimitCommand";
6
+ export * from "./DeleteSpendingLimitCommand";
5
7
  export * from "./GetDeviceCommand";
6
8
  export * from "./GetJobCommand";
7
9
  export * from "./GetQuantumTaskCommand";
@@ -9,5 +11,7 @@ export * from "./ListTagsForResourceCommand";
9
11
  export * from "./SearchDevicesCommand";
10
12
  export * from "./SearchJobsCommand";
11
13
  export * from "./SearchQuantumTasksCommand";
14
+ export * from "./SearchSpendingLimitsCommand";
12
15
  export * from "./TagResourceCommand";
13
16
  export * from "./UntagResourceCommand";
17
+ export * from "./UpdateSpendingLimitCommand";
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { BraketExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { BraketServiceException } from "./models/BraketServiceException";
@@ -0,0 +1,162 @@
1
+ export declare const CompressionType: {
2
+ readonly GZIP: "GZIP";
3
+ readonly NONE: "NONE";
4
+ };
5
+ export type CompressionType =
6
+ (typeof CompressionType)[keyof typeof CompressionType];
7
+ export declare const AssociationType: {
8
+ readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
9
+ };
10
+ export type AssociationType =
11
+ (typeof AssociationType)[keyof typeof AssociationType];
12
+ export declare const QueueName: {
13
+ readonly JOBS_QUEUE: "JOBS_QUEUE";
14
+ readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
15
+ };
16
+ export type QueueName = (typeof QueueName)[keyof typeof QueueName];
17
+ export declare const QueuePriority: {
18
+ readonly NORMAL: "Normal";
19
+ readonly PRIORITY: "Priority";
20
+ };
21
+ export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
22
+ export declare const DeviceStatus: {
23
+ readonly OFFLINE: "OFFLINE";
24
+ readonly ONLINE: "ONLINE";
25
+ readonly RETIRED: "RETIRED";
26
+ };
27
+ export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
28
+ export declare const DeviceType: {
29
+ readonly QPU: "QPU";
30
+ readonly SIMULATOR: "SIMULATOR";
31
+ };
32
+ export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
33
+ export declare const ValidationExceptionReason: {
34
+ readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
35
+ };
36
+ export type ValidationExceptionReason =
37
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
38
+ export declare const CancellationStatus: {
39
+ readonly CANCELLED: "CANCELLED";
40
+ readonly CANCELLING: "CANCELLING";
41
+ };
42
+ export type CancellationStatus =
43
+ (typeof CancellationStatus)[keyof typeof CancellationStatus];
44
+ export declare const _InstanceType: {
45
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
46
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
47
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
48
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
49
+ readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
50
+ readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
51
+ readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
52
+ readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
53
+ readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
54
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
55
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
56
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
57
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
58
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
59
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
60
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
61
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
62
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
63
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
64
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
65
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
66
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
67
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
68
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
69
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
70
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
71
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
72
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
73
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
74
+ readonly ML_M5_LARGE: "ml.m5.large";
75
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
76
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
77
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
78
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
79
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
80
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
81
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
82
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
83
+ readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
84
+ };
85
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
86
+ export declare const HybridJobAdditionalAttributeName: {
87
+ readonly QUEUE_INFO: "QueueInfo";
88
+ };
89
+ export type HybridJobAdditionalAttributeName =
90
+ (typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
91
+ export declare const JobEventType: {
92
+ readonly CANCELLED: "CANCELLED";
93
+ readonly COMPLETED: "COMPLETED";
94
+ readonly DEPRIORITIZED_DUE_TO_INACTIVITY: "DEPRIORITIZED_DUE_TO_INACTIVITY";
95
+ readonly DOWNLOADING_DATA: "DOWNLOADING_DATA";
96
+ readonly FAILED: "FAILED";
97
+ readonly MAX_RUNTIME_EXCEEDED: "MAX_RUNTIME_EXCEEDED";
98
+ readonly QUEUED_FOR_EXECUTION: "QUEUED_FOR_EXECUTION";
99
+ readonly RUNNING: "RUNNING";
100
+ readonly STARTING_INSTANCE: "STARTING_INSTANCE";
101
+ readonly UPLOADING_RESULTS: "UPLOADING_RESULTS";
102
+ readonly WAITING_FOR_PRIORITY: "WAITING_FOR_PRIORITY";
103
+ };
104
+ export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
105
+ export declare const JobPrimaryStatus: {
106
+ readonly CANCELLED: "CANCELLED";
107
+ readonly CANCELLING: "CANCELLING";
108
+ readonly COMPLETED: "COMPLETED";
109
+ readonly FAILED: "FAILED";
110
+ readonly QUEUED: "QUEUED";
111
+ readonly RUNNING: "RUNNING";
112
+ };
113
+ export type JobPrimaryStatus =
114
+ (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
115
+ export declare const SearchJobsFilterOperator: {
116
+ readonly BETWEEN: "BETWEEN";
117
+ readonly CONTAINS: "CONTAINS";
118
+ readonly EQUAL: "EQUAL";
119
+ readonly GT: "GT";
120
+ readonly GTE: "GTE";
121
+ readonly LT: "LT";
122
+ readonly LTE: "LTE";
123
+ };
124
+ export type SearchJobsFilterOperator =
125
+ (typeof SearchJobsFilterOperator)[keyof typeof SearchJobsFilterOperator];
126
+ export declare const ExperimentalCapabilitiesEnablementType: {
127
+ readonly ALL: "ALL";
128
+ readonly NONE: "NONE";
129
+ };
130
+ export type ExperimentalCapabilitiesEnablementType =
131
+ (typeof ExperimentalCapabilitiesEnablementType)[keyof typeof ExperimentalCapabilitiesEnablementType];
132
+ export declare const QuantumTaskAdditionalAttributeName: {
133
+ readonly QUEUE_INFO: "QueueInfo";
134
+ };
135
+ export type QuantumTaskAdditionalAttributeName =
136
+ (typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
137
+ export declare const QuantumTaskStatus: {
138
+ readonly CANCELLED: "CANCELLED";
139
+ readonly CANCELLING: "CANCELLING";
140
+ readonly COMPLETED: "COMPLETED";
141
+ readonly CREATED: "CREATED";
142
+ readonly FAILED: "FAILED";
143
+ readonly QUEUED: "QUEUED";
144
+ readonly RUNNING: "RUNNING";
145
+ };
146
+ export type QuantumTaskStatus =
147
+ (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
148
+ export declare const SearchQuantumTasksFilterOperator: {
149
+ readonly BETWEEN: "BETWEEN";
150
+ readonly EQUAL: "EQUAL";
151
+ readonly GT: "GT";
152
+ readonly GTE: "GTE";
153
+ readonly LT: "LT";
154
+ readonly LTE: "LTE";
155
+ };
156
+ export type SearchQuantumTasksFilterOperator =
157
+ (typeof SearchQuantumTasksFilterOperator)[keyof typeof SearchQuantumTasksFilterOperator];
158
+ export declare const SearchSpendingLimitsFilterOperator: {
159
+ readonly EQUAL: "EQUAL";
160
+ };
161
+ export type SearchSpendingLimitsFilterOperator =
162
+ (typeof SearchSpendingLimitsFilterOperator)[keyof typeof SearchSpendingLimitsFilterOperator];
@@ -1,9 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { BraketServiceException as __BaseException } from "./BraketServiceException";
3
- import {
4
- ProgramSetValidationFailure,
5
- ValidationExceptionReason,
6
- } from "./models_0";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ProgramSetValidationFailure } from "./models_0";
7
5
  export declare class AccessDeniedException extends __BaseException {
8
6
  readonly name: "AccessDeniedException";
9
7
  readonly $fault: "client";