@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.
- package/README.md +32 -0
- package/dist-cjs/index.js +324 -0
- package/dist-es/Braket.js +8 -0
- package/dist-es/commands/CreateSpendingLimitCommand.js +16 -0
- package/dist-es/commands/DeleteSpendingLimitCommand.js +16 -0
- package/dist-es/commands/SearchSpendingLimitsCommand.js +16 -0
- package/dist-es/commands/UpdateSpendingLimitCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +132 -0
- package/dist-es/models/models_0.js +1 -129
- package/dist-es/pagination/SearchSpendingLimitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +114 -0
- package/dist-types/Braket.d.ts +29 -0
- package/dist-types/BraketClient.d.ts +6 -2
- package/dist-types/commands/CreateSpendingLimitCommand.d.ts +98 -0
- package/dist-types/commands/DeleteSpendingLimitCommand.d.ts +87 -0
- package/dist-types/commands/SearchSpendingLimitsCommand.d.ts +114 -0
- package/dist-types/commands/UpdateSpendingLimitCommand.d.ts +93 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +276 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +209 -265
- package/dist-types/pagination/SearchSpendingLimitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/Braket.d.ts +69 -0
- package/dist-types/ts3.4/BraketClient.d.ts +26 -2
- package/dist-types/ts3.4/commands/CreateSpendingLimitCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteSpendingLimitCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchSpendingLimitsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSpendingLimitCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +162 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +69 -157
- package/dist-types/ts3.4/pagination/SearchSpendingLimitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +2 -2
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const CompressionType: {
|
|
6
|
+
readonly GZIP: "GZIP";
|
|
7
|
+
readonly NONE: "NONE";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type CompressionType = (typeof CompressionType)[keyof typeof CompressionType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const AssociationType: {
|
|
18
|
+
readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType];
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* @enum
|
|
27
|
+
*/
|
|
28
|
+
export declare const QueueName: {
|
|
29
|
+
readonly JOBS_QUEUE: "JOBS_QUEUE";
|
|
30
|
+
readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type QueueName = (typeof QueueName)[keyof typeof QueueName];
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* @enum
|
|
39
|
+
*/
|
|
40
|
+
export declare const QueuePriority: {
|
|
41
|
+
readonly NORMAL: "Normal";
|
|
42
|
+
readonly PRIORITY: "Priority";
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* @enum
|
|
51
|
+
*/
|
|
52
|
+
export declare const DeviceStatus: {
|
|
53
|
+
readonly OFFLINE: "OFFLINE";
|
|
54
|
+
readonly ONLINE: "ONLINE";
|
|
55
|
+
readonly RETIRED: "RETIRED";
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* @enum
|
|
64
|
+
*/
|
|
65
|
+
export declare const DeviceType: {
|
|
66
|
+
readonly QPU: "QPU";
|
|
67
|
+
readonly SIMULATOR: "SIMULATOR";
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* @enum
|
|
76
|
+
*/
|
|
77
|
+
export declare const ValidationExceptionReason: {
|
|
78
|
+
readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
* @enum
|
|
87
|
+
*/
|
|
88
|
+
export declare const CancellationStatus: {
|
|
89
|
+
readonly CANCELLED: "CANCELLED";
|
|
90
|
+
readonly CANCELLING: "CANCELLING";
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export type CancellationStatus = (typeof CancellationStatus)[keyof typeof CancellationStatus];
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
* @enum
|
|
99
|
+
*/
|
|
100
|
+
export declare const _InstanceType: {
|
|
101
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
102
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
103
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
104
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
105
|
+
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
106
|
+
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
107
|
+
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
108
|
+
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
109
|
+
readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
|
|
110
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
111
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
112
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
113
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
114
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
115
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
116
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
117
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
118
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
119
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
120
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
121
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
122
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
123
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
124
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
125
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
126
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
127
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
128
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
129
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
130
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
131
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
132
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
133
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
134
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
135
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
136
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
137
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
138
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
139
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* @enum
|
|
148
|
+
*/
|
|
149
|
+
export declare const HybridJobAdditionalAttributeName: {
|
|
150
|
+
readonly QUEUE_INFO: "QueueInfo";
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
export type HybridJobAdditionalAttributeName = (typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
* @enum
|
|
159
|
+
*/
|
|
160
|
+
export declare const JobEventType: {
|
|
161
|
+
readonly CANCELLED: "CANCELLED";
|
|
162
|
+
readonly COMPLETED: "COMPLETED";
|
|
163
|
+
readonly DEPRIORITIZED_DUE_TO_INACTIVITY: "DEPRIORITIZED_DUE_TO_INACTIVITY";
|
|
164
|
+
readonly DOWNLOADING_DATA: "DOWNLOADING_DATA";
|
|
165
|
+
readonly FAILED: "FAILED";
|
|
166
|
+
readonly MAX_RUNTIME_EXCEEDED: "MAX_RUNTIME_EXCEEDED";
|
|
167
|
+
readonly QUEUED_FOR_EXECUTION: "QUEUED_FOR_EXECUTION";
|
|
168
|
+
readonly RUNNING: "RUNNING";
|
|
169
|
+
readonly STARTING_INSTANCE: "STARTING_INSTANCE";
|
|
170
|
+
readonly UPLOADING_RESULTS: "UPLOADING_RESULTS";
|
|
171
|
+
readonly WAITING_FOR_PRIORITY: "WAITING_FOR_PRIORITY";
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
* @enum
|
|
180
|
+
*/
|
|
181
|
+
export declare const JobPrimaryStatus: {
|
|
182
|
+
readonly CANCELLED: "CANCELLED";
|
|
183
|
+
readonly CANCELLING: "CANCELLING";
|
|
184
|
+
readonly COMPLETED: "COMPLETED";
|
|
185
|
+
readonly FAILED: "FAILED";
|
|
186
|
+
readonly QUEUED: "QUEUED";
|
|
187
|
+
readonly RUNNING: "RUNNING";
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
export type JobPrimaryStatus = (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
* @enum
|
|
196
|
+
*/
|
|
197
|
+
export declare const SearchJobsFilterOperator: {
|
|
198
|
+
readonly BETWEEN: "BETWEEN";
|
|
199
|
+
readonly CONTAINS: "CONTAINS";
|
|
200
|
+
readonly EQUAL: "EQUAL";
|
|
201
|
+
readonly GT: "GT";
|
|
202
|
+
readonly GTE: "GTE";
|
|
203
|
+
readonly LT: "LT";
|
|
204
|
+
readonly LTE: "LTE";
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
export type SearchJobsFilterOperator = (typeof SearchJobsFilterOperator)[keyof typeof SearchJobsFilterOperator];
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
* @enum
|
|
213
|
+
*/
|
|
214
|
+
export declare const ExperimentalCapabilitiesEnablementType: {
|
|
215
|
+
readonly ALL: "ALL";
|
|
216
|
+
readonly NONE: "NONE";
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
export type ExperimentalCapabilitiesEnablementType = (typeof ExperimentalCapabilitiesEnablementType)[keyof typeof ExperimentalCapabilitiesEnablementType];
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
* @enum
|
|
225
|
+
*/
|
|
226
|
+
export declare const QuantumTaskAdditionalAttributeName: {
|
|
227
|
+
readonly QUEUE_INFO: "QueueInfo";
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
export type QuantumTaskAdditionalAttributeName = (typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
|
|
233
|
+
/**
|
|
234
|
+
* @public
|
|
235
|
+
* @enum
|
|
236
|
+
*/
|
|
237
|
+
export declare const QuantumTaskStatus: {
|
|
238
|
+
readonly CANCELLED: "CANCELLED";
|
|
239
|
+
readonly CANCELLING: "CANCELLING";
|
|
240
|
+
readonly COMPLETED: "COMPLETED";
|
|
241
|
+
readonly CREATED: "CREATED";
|
|
242
|
+
readonly FAILED: "FAILED";
|
|
243
|
+
readonly QUEUED: "QUEUED";
|
|
244
|
+
readonly RUNNING: "RUNNING";
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* @public
|
|
248
|
+
*/
|
|
249
|
+
export type QuantumTaskStatus = (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
* @enum
|
|
253
|
+
*/
|
|
254
|
+
export declare const SearchQuantumTasksFilterOperator: {
|
|
255
|
+
readonly BETWEEN: "BETWEEN";
|
|
256
|
+
readonly EQUAL: "EQUAL";
|
|
257
|
+
readonly GT: "GT";
|
|
258
|
+
readonly GTE: "GTE";
|
|
259
|
+
readonly LT: "LT";
|
|
260
|
+
readonly LTE: "LTE";
|
|
261
|
+
};
|
|
262
|
+
/**
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
265
|
+
export type SearchQuantumTasksFilterOperator = (typeof SearchQuantumTasksFilterOperator)[keyof typeof SearchQuantumTasksFilterOperator];
|
|
266
|
+
/**
|
|
267
|
+
* @public
|
|
268
|
+
* @enum
|
|
269
|
+
*/
|
|
270
|
+
export declare const SearchSpendingLimitsFilterOperator: {
|
|
271
|
+
readonly EQUAL: "EQUAL";
|
|
272
|
+
};
|
|
273
|
+
/**
|
|
274
|
+
* @public
|
|
275
|
+
*/
|
|
276
|
+
export type SearchSpendingLimitsFilterOperator = (typeof SearchSpendingLimitsFilterOperator)[keyof typeof SearchSpendingLimitsFilterOperator];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { BraketServiceException as __BaseException } from "./BraketServiceException";
|
|
3
|
-
import {
|
|
3
|
+
import { ValidationExceptionReason } from "./enums";
|
|
4
|
+
import { ProgramSetValidationFailure } from "./models_0";
|
|
4
5
|
/**
|
|
5
6
|
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
6
7
|
* @public
|