@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
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
_InstanceType,
|
|
4
|
+
AssociationType,
|
|
5
|
+
CancellationStatus,
|
|
6
|
+
CompressionType,
|
|
7
|
+
DeviceStatus,
|
|
8
|
+
DeviceType,
|
|
9
|
+
ExperimentalCapabilitiesEnablementType,
|
|
10
|
+
HybridJobAdditionalAttributeName,
|
|
11
|
+
JobEventType,
|
|
12
|
+
JobPrimaryStatus,
|
|
13
|
+
QuantumTaskAdditionalAttributeName,
|
|
14
|
+
QuantumTaskStatus,
|
|
15
|
+
QueueName,
|
|
16
|
+
QueuePriority,
|
|
17
|
+
SearchJobsFilterOperator,
|
|
18
|
+
SearchQuantumTasksFilterOperator,
|
|
19
|
+
SearchSpendingLimitsFilterOperator,
|
|
20
|
+
} from "./enums";
|
|
2
21
|
export interface ActionMetadata {
|
|
3
22
|
actionType: string | undefined;
|
|
4
23
|
programCount?: number | undefined;
|
|
@@ -7,12 +26,6 @@ export interface ActionMetadata {
|
|
|
7
26
|
export interface ContainerImage {
|
|
8
27
|
uri: string | undefined;
|
|
9
28
|
}
|
|
10
|
-
export declare const CompressionType: {
|
|
11
|
-
readonly GZIP: "GZIP";
|
|
12
|
-
readonly NONE: "NONE";
|
|
13
|
-
};
|
|
14
|
-
export type CompressionType =
|
|
15
|
-
(typeof CompressionType)[keyof typeof CompressionType];
|
|
16
29
|
export interface ScriptModeConfig {
|
|
17
30
|
entryPoint: string | undefined;
|
|
18
31
|
s3Uri: string | undefined;
|
|
@@ -22,11 +35,6 @@ export interface AlgorithmSpecification {
|
|
|
22
35
|
scriptModeConfig?: ScriptModeConfig | undefined;
|
|
23
36
|
containerImage?: ContainerImage | undefined;
|
|
24
37
|
}
|
|
25
|
-
export declare const AssociationType: {
|
|
26
|
-
readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
|
|
27
|
-
};
|
|
28
|
-
export type AssociationType =
|
|
29
|
-
(typeof AssociationType)[keyof typeof AssociationType];
|
|
30
38
|
export interface Association {
|
|
31
39
|
arn: string | undefined;
|
|
32
40
|
type: AssociationType | undefined;
|
|
@@ -34,32 +42,11 @@ export interface Association {
|
|
|
34
42
|
export interface GetDeviceRequest {
|
|
35
43
|
deviceArn: string | undefined;
|
|
36
44
|
}
|
|
37
|
-
export declare const QueueName: {
|
|
38
|
-
readonly JOBS_QUEUE: "JOBS_QUEUE";
|
|
39
|
-
readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
|
|
40
|
-
};
|
|
41
|
-
export type QueueName = (typeof QueueName)[keyof typeof QueueName];
|
|
42
|
-
export declare const QueuePriority: {
|
|
43
|
-
readonly NORMAL: "Normal";
|
|
44
|
-
readonly PRIORITY: "Priority";
|
|
45
|
-
};
|
|
46
|
-
export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
|
|
47
45
|
export interface DeviceQueueInfo {
|
|
48
46
|
queue: QueueName | undefined;
|
|
49
47
|
queueSize: string | undefined;
|
|
50
48
|
queuePriority?: QueuePriority | undefined;
|
|
51
49
|
}
|
|
52
|
-
export declare const DeviceStatus: {
|
|
53
|
-
readonly OFFLINE: "OFFLINE";
|
|
54
|
-
readonly ONLINE: "ONLINE";
|
|
55
|
-
readonly RETIRED: "RETIRED";
|
|
56
|
-
};
|
|
57
|
-
export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
|
|
58
|
-
export declare const DeviceType: {
|
|
59
|
-
readonly QPU: "QPU";
|
|
60
|
-
readonly SIMULATOR: "SIMULATOR";
|
|
61
|
-
};
|
|
62
|
-
export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
|
|
63
50
|
export interface GetDeviceResponse {
|
|
64
51
|
deviceArn: string | undefined;
|
|
65
52
|
deviceName: string | undefined;
|
|
@@ -74,11 +61,6 @@ export interface ProgramSetValidationFailure {
|
|
|
74
61
|
inputsIndex?: number | undefined;
|
|
75
62
|
errors?: string[] | undefined;
|
|
76
63
|
}
|
|
77
|
-
export declare const ValidationExceptionReason: {
|
|
78
|
-
readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
|
|
79
|
-
};
|
|
80
|
-
export type ValidationExceptionReason =
|
|
81
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
82
64
|
export interface SearchDevicesFilter {
|
|
83
65
|
name: string | undefined;
|
|
84
66
|
values: string[] | undefined;
|
|
@@ -102,12 +84,6 @@ export interface SearchDevicesResponse {
|
|
|
102
84
|
export interface CancelJobRequest {
|
|
103
85
|
jobArn: string | undefined;
|
|
104
86
|
}
|
|
105
|
-
export declare const CancellationStatus: {
|
|
106
|
-
readonly CANCELLED: "CANCELLED";
|
|
107
|
-
readonly CANCELLING: "CANCELLING";
|
|
108
|
-
};
|
|
109
|
-
export type CancellationStatus =
|
|
110
|
-
(typeof CancellationStatus)[keyof typeof CancellationStatus];
|
|
111
87
|
export interface CancelJobResponse {
|
|
112
88
|
jobArn: string | undefined;
|
|
113
89
|
cancellationStatus: CancellationStatus | undefined;
|
|
@@ -130,48 +106,6 @@ export interface InputFileConfig {
|
|
|
130
106
|
contentType?: string | undefined;
|
|
131
107
|
dataSource: DataSource | undefined;
|
|
132
108
|
}
|
|
133
|
-
export declare const _InstanceType: {
|
|
134
|
-
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
135
|
-
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
136
|
-
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
137
|
-
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
138
|
-
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
139
|
-
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
140
|
-
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
141
|
-
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
142
|
-
readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
|
|
143
|
-
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
144
|
-
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
145
|
-
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
146
|
-
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
147
|
-
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
148
|
-
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
149
|
-
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
150
|
-
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
151
|
-
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
152
|
-
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
153
|
-
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
154
|
-
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
155
|
-
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
156
|
-
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
157
|
-
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
158
|
-
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
159
|
-
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
160
|
-
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
161
|
-
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
162
|
-
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
163
|
-
readonly ML_M5_LARGE: "ml.m5.large";
|
|
164
|
-
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
165
|
-
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
166
|
-
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
167
|
-
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
168
|
-
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
169
|
-
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
170
|
-
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
171
|
-
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
172
|
-
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
173
|
-
};
|
|
174
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
175
109
|
export interface InstanceConfig {
|
|
176
110
|
instanceType: _InstanceType | undefined;
|
|
177
111
|
volumeSizeInGb: number | undefined;
|
|
@@ -202,29 +136,10 @@ export interface CreateJobRequest {
|
|
|
202
136
|
export interface CreateJobResponse {
|
|
203
137
|
jobArn: string | undefined;
|
|
204
138
|
}
|
|
205
|
-
export declare const HybridJobAdditionalAttributeName: {
|
|
206
|
-
readonly QUEUE_INFO: "QueueInfo";
|
|
207
|
-
};
|
|
208
|
-
export type HybridJobAdditionalAttributeName =
|
|
209
|
-
(typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
|
|
210
139
|
export interface GetJobRequest {
|
|
211
140
|
jobArn: string | undefined;
|
|
212
141
|
additionalAttributeNames?: HybridJobAdditionalAttributeName[] | undefined;
|
|
213
142
|
}
|
|
214
|
-
export declare const JobEventType: {
|
|
215
|
-
readonly CANCELLED: "CANCELLED";
|
|
216
|
-
readonly COMPLETED: "COMPLETED";
|
|
217
|
-
readonly DEPRIORITIZED_DUE_TO_INACTIVITY: "DEPRIORITIZED_DUE_TO_INACTIVITY";
|
|
218
|
-
readonly DOWNLOADING_DATA: "DOWNLOADING_DATA";
|
|
219
|
-
readonly FAILED: "FAILED";
|
|
220
|
-
readonly MAX_RUNTIME_EXCEEDED: "MAX_RUNTIME_EXCEEDED";
|
|
221
|
-
readonly QUEUED_FOR_EXECUTION: "QUEUED_FOR_EXECUTION";
|
|
222
|
-
readonly RUNNING: "RUNNING";
|
|
223
|
-
readonly STARTING_INSTANCE: "STARTING_INSTANCE";
|
|
224
|
-
readonly UPLOADING_RESULTS: "UPLOADING_RESULTS";
|
|
225
|
-
readonly WAITING_FOR_PRIORITY: "WAITING_FOR_PRIORITY";
|
|
226
|
-
};
|
|
227
|
-
export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
|
|
228
143
|
export interface JobEventDetails {
|
|
229
144
|
eventType?: JobEventType | undefined;
|
|
230
145
|
timeOfEvent?: Date | undefined;
|
|
@@ -235,16 +150,6 @@ export interface HybridJobQueueInfo {
|
|
|
235
150
|
position: string | undefined;
|
|
236
151
|
message?: string | undefined;
|
|
237
152
|
}
|
|
238
|
-
export declare const JobPrimaryStatus: {
|
|
239
|
-
readonly CANCELLED: "CANCELLED";
|
|
240
|
-
readonly CANCELLING: "CANCELLING";
|
|
241
|
-
readonly COMPLETED: "COMPLETED";
|
|
242
|
-
readonly FAILED: "FAILED";
|
|
243
|
-
readonly QUEUED: "QUEUED";
|
|
244
|
-
readonly RUNNING: "RUNNING";
|
|
245
|
-
};
|
|
246
|
-
export type JobPrimaryStatus =
|
|
247
|
-
(typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
|
|
248
153
|
export interface GetJobResponse {
|
|
249
154
|
status: JobPrimaryStatus | undefined;
|
|
250
155
|
jobArn: string | undefined;
|
|
@@ -268,17 +173,6 @@ export interface GetJobResponse {
|
|
|
268
173
|
queueInfo?: HybridJobQueueInfo | undefined;
|
|
269
174
|
associations?: Association[] | undefined;
|
|
270
175
|
}
|
|
271
|
-
export declare const SearchJobsFilterOperator: {
|
|
272
|
-
readonly BETWEEN: "BETWEEN";
|
|
273
|
-
readonly CONTAINS: "CONTAINS";
|
|
274
|
-
readonly EQUAL: "EQUAL";
|
|
275
|
-
readonly GT: "GT";
|
|
276
|
-
readonly GTE: "GTE";
|
|
277
|
-
readonly LT: "LT";
|
|
278
|
-
readonly LTE: "LTE";
|
|
279
|
-
};
|
|
280
|
-
export type SearchJobsFilterOperator =
|
|
281
|
-
(typeof SearchJobsFilterOperator)[keyof typeof SearchJobsFilterOperator];
|
|
282
176
|
export interface SearchJobsFilter {
|
|
283
177
|
name: string | undefined;
|
|
284
178
|
values: string[] | undefined;
|
|
@@ -317,12 +211,6 @@ export interface CancelQuantumTaskResponse {
|
|
|
317
211
|
quantumTaskArn: string | undefined;
|
|
318
212
|
cancellationStatus: CancellationStatus | undefined;
|
|
319
213
|
}
|
|
320
|
-
export declare const ExperimentalCapabilitiesEnablementType: {
|
|
321
|
-
readonly ALL: "ALL";
|
|
322
|
-
readonly NONE: "NONE";
|
|
323
|
-
};
|
|
324
|
-
export type ExperimentalCapabilitiesEnablementType =
|
|
325
|
-
(typeof ExperimentalCapabilitiesEnablementType)[keyof typeof ExperimentalCapabilitiesEnablementType];
|
|
326
214
|
export type ExperimentalCapabilities =
|
|
327
215
|
| ExperimentalCapabilities.EnabledMember
|
|
328
216
|
| ExperimentalCapabilities.$UnknownMember;
|
|
@@ -356,11 +244,6 @@ export interface CreateQuantumTaskRequest {
|
|
|
356
244
|
export interface CreateQuantumTaskResponse {
|
|
357
245
|
quantumTaskArn: string | undefined;
|
|
358
246
|
}
|
|
359
|
-
export declare const QuantumTaskAdditionalAttributeName: {
|
|
360
|
-
readonly QUEUE_INFO: "QueueInfo";
|
|
361
|
-
};
|
|
362
|
-
export type QuantumTaskAdditionalAttributeName =
|
|
363
|
-
(typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
|
|
364
247
|
export interface GetQuantumTaskRequest {
|
|
365
248
|
quantumTaskArn: string | undefined;
|
|
366
249
|
additionalAttributeNames?: QuantumTaskAdditionalAttributeName[] | undefined;
|
|
@@ -371,17 +254,6 @@ export interface QuantumTaskQueueInfo {
|
|
|
371
254
|
queuePriority?: QueuePriority | undefined;
|
|
372
255
|
message?: string | undefined;
|
|
373
256
|
}
|
|
374
|
-
export declare const QuantumTaskStatus: {
|
|
375
|
-
readonly CANCELLED: "CANCELLED";
|
|
376
|
-
readonly CANCELLING: "CANCELLING";
|
|
377
|
-
readonly COMPLETED: "COMPLETED";
|
|
378
|
-
readonly CREATED: "CREATED";
|
|
379
|
-
readonly FAILED: "FAILED";
|
|
380
|
-
readonly QUEUED: "QUEUED";
|
|
381
|
-
readonly RUNNING: "RUNNING";
|
|
382
|
-
};
|
|
383
|
-
export type QuantumTaskStatus =
|
|
384
|
-
(typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
|
|
385
257
|
export interface GetQuantumTaskResponse {
|
|
386
258
|
quantumTaskArn: string | undefined;
|
|
387
259
|
status: QuantumTaskStatus | undefined;
|
|
@@ -401,16 +273,6 @@ export interface GetQuantumTaskResponse {
|
|
|
401
273
|
actionMetadata?: ActionMetadata | undefined;
|
|
402
274
|
experimentalCapabilities?: ExperimentalCapabilities | undefined;
|
|
403
275
|
}
|
|
404
|
-
export declare const SearchQuantumTasksFilterOperator: {
|
|
405
|
-
readonly BETWEEN: "BETWEEN";
|
|
406
|
-
readonly EQUAL: "EQUAL";
|
|
407
|
-
readonly GT: "GT";
|
|
408
|
-
readonly GTE: "GTE";
|
|
409
|
-
readonly LT: "LT";
|
|
410
|
-
readonly LTE: "LTE";
|
|
411
|
-
};
|
|
412
|
-
export type SearchQuantumTasksFilterOperator =
|
|
413
|
-
(typeof SearchQuantumTasksFilterOperator)[keyof typeof SearchQuantumTasksFilterOperator];
|
|
414
276
|
export interface SearchQuantumTasksFilter {
|
|
415
277
|
name: string | undefined;
|
|
416
278
|
values: string[] | undefined;
|
|
@@ -436,6 +298,56 @@ export interface SearchQuantumTasksResponse {
|
|
|
436
298
|
quantumTasks: QuantumTaskSummary[] | undefined;
|
|
437
299
|
nextToken?: string | undefined;
|
|
438
300
|
}
|
|
301
|
+
export interface TimePeriod {
|
|
302
|
+
startAt: Date | undefined;
|
|
303
|
+
endAt: Date | undefined;
|
|
304
|
+
}
|
|
305
|
+
export interface CreateSpendingLimitRequest {
|
|
306
|
+
clientToken?: string | undefined;
|
|
307
|
+
deviceArn: string | undefined;
|
|
308
|
+
spendingLimit: string | undefined;
|
|
309
|
+
timePeriod?: TimePeriod | undefined;
|
|
310
|
+
tags?: Record<string, string> | undefined;
|
|
311
|
+
}
|
|
312
|
+
export interface CreateSpendingLimitResponse {
|
|
313
|
+
spendingLimitArn: string | undefined;
|
|
314
|
+
}
|
|
315
|
+
export interface DeleteSpendingLimitRequest {
|
|
316
|
+
spendingLimitArn: string | undefined;
|
|
317
|
+
}
|
|
318
|
+
export interface DeleteSpendingLimitResponse {}
|
|
319
|
+
export interface SearchSpendingLimitsFilter {
|
|
320
|
+
name: string | undefined;
|
|
321
|
+
values: string[] | undefined;
|
|
322
|
+
operator: SearchSpendingLimitsFilterOperator | undefined;
|
|
323
|
+
}
|
|
324
|
+
export interface SearchSpendingLimitsRequest {
|
|
325
|
+
nextToken?: string | undefined;
|
|
326
|
+
maxResults?: number | undefined;
|
|
327
|
+
filters?: SearchSpendingLimitsFilter[] | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface SpendingLimitSummary {
|
|
330
|
+
spendingLimitArn: string | undefined;
|
|
331
|
+
deviceArn: string | undefined;
|
|
332
|
+
timePeriod: TimePeriod | undefined;
|
|
333
|
+
spendingLimit: string | undefined;
|
|
334
|
+
queuedSpend: string | undefined;
|
|
335
|
+
totalSpend: string | undefined;
|
|
336
|
+
createdAt: Date | undefined;
|
|
337
|
+
updatedAt: Date | undefined;
|
|
338
|
+
tags?: Record<string, string> | undefined;
|
|
339
|
+
}
|
|
340
|
+
export interface SearchSpendingLimitsResponse {
|
|
341
|
+
spendingLimits: SpendingLimitSummary[] | undefined;
|
|
342
|
+
nextToken?: string | undefined;
|
|
343
|
+
}
|
|
344
|
+
export interface UpdateSpendingLimitRequest {
|
|
345
|
+
spendingLimitArn: string | undefined;
|
|
346
|
+
clientToken?: string | undefined;
|
|
347
|
+
spendingLimit?: string | undefined;
|
|
348
|
+
timePeriod?: TimePeriod | undefined;
|
|
349
|
+
}
|
|
350
|
+
export interface UpdateSpendingLimitResponse {}
|
|
439
351
|
export interface TagResourceRequest {
|
|
440
352
|
resourceArn: string | undefined;
|
|
441
353
|
tags: Record<string, string> | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchSpendingLimitsCommandInput,
|
|
4
|
+
SearchSpendingLimitsCommandOutput,
|
|
5
|
+
} from "../commands/SearchSpendingLimitsCommand";
|
|
6
|
+
import { BraketPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateSearchSpendingLimits: (
|
|
8
|
+
config: BraketPaginationConfiguration,
|
|
9
|
+
input: SearchSpendingLimitsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<SearchSpendingLimitsCommandOutput>;
|
|
@@ -20,7 +20,11 @@ export declare var CreateJobRequest: StaticStructureSchema;
|
|
|
20
20
|
export declare var CreateJobResponse: StaticStructureSchema;
|
|
21
21
|
export declare var CreateQuantumTaskRequest: StaticStructureSchema;
|
|
22
22
|
export declare var CreateQuantumTaskResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateSpendingLimitRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateSpendingLimitResponse: StaticStructureSchema;
|
|
23
25
|
export declare var DataSource: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteSpendingLimitRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteSpendingLimitResponse: StaticStructureSchema;
|
|
24
28
|
export declare var DeviceConfig: StaticStructureSchema;
|
|
25
29
|
export declare var DeviceOfflineException: StaticErrorSchema;
|
|
26
30
|
export declare var DeviceQueueInfo: StaticStructureSchema;
|
|
@@ -58,12 +62,19 @@ export declare var SearchJobsResponse: StaticStructureSchema;
|
|
|
58
62
|
export declare var SearchQuantumTasksFilter: StaticStructureSchema;
|
|
59
63
|
export declare var SearchQuantumTasksRequest: StaticStructureSchema;
|
|
60
64
|
export declare var SearchQuantumTasksResponse: StaticStructureSchema;
|
|
65
|
+
export declare var SearchSpendingLimitsFilter: StaticStructureSchema;
|
|
66
|
+
export declare var SearchSpendingLimitsRequest: StaticStructureSchema;
|
|
67
|
+
export declare var SearchSpendingLimitsResponse: StaticStructureSchema;
|
|
61
68
|
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
69
|
+
export declare var SpendingLimitSummary: StaticStructureSchema;
|
|
62
70
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
63
71
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
64
72
|
export declare var ThrottlingException: StaticErrorSchema;
|
|
73
|
+
export declare var TimePeriod: StaticStructureSchema;
|
|
65
74
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
66
75
|
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
76
|
+
export declare var UpdateSpendingLimitRequest: StaticStructureSchema;
|
|
77
|
+
export declare var UpdateSpendingLimitResponse: StaticStructureSchema;
|
|
67
78
|
export declare var ValidationException: StaticErrorSchema;
|
|
68
79
|
export declare var BraketServiceException: StaticErrorSchema;
|
|
69
80
|
export declare var Associations: StaticListSchema;
|
|
@@ -80,6 +91,8 @@ export declare var QuantumTaskSummaryList: StaticListSchema;
|
|
|
80
91
|
export declare var SearchDevicesFilterList: StaticListSchema;
|
|
81
92
|
export declare var SearchJobsFilterList: StaticListSchema;
|
|
82
93
|
export declare var SearchQuantumTasksFilterList: StaticListSchema;
|
|
94
|
+
export declare var SearchSpendingLimitsFilterList: StaticListSchema;
|
|
95
|
+
export declare var SpendingLimitSummaryList: StaticListSchema;
|
|
83
96
|
export declare var String256List: number;
|
|
84
97
|
export declare var TagKeys: number;
|
|
85
98
|
export declare var HyperParameters: number;
|
|
@@ -89,6 +102,8 @@ export declare var CancelJob: StaticOperationSchema;
|
|
|
89
102
|
export declare var CancelQuantumTask: StaticOperationSchema;
|
|
90
103
|
export declare var CreateJob: StaticOperationSchema;
|
|
91
104
|
export declare var CreateQuantumTask: StaticOperationSchema;
|
|
105
|
+
export declare var CreateSpendingLimit: StaticOperationSchema;
|
|
106
|
+
export declare var DeleteSpendingLimit: StaticOperationSchema;
|
|
92
107
|
export declare var GetDevice: StaticOperationSchema;
|
|
93
108
|
export declare var GetJob: StaticOperationSchema;
|
|
94
109
|
export declare var GetQuantumTask: StaticOperationSchema;
|
|
@@ -96,5 +111,7 @@ export declare var ListTagsForResource: StaticOperationSchema;
|
|
|
96
111
|
export declare var SearchDevices: StaticOperationSchema;
|
|
97
112
|
export declare var SearchJobs: StaticOperationSchema;
|
|
98
113
|
export declare var SearchQuantumTasks: StaticOperationSchema;
|
|
114
|
+
export declare var SearchSpendingLimits: StaticOperationSchema;
|
|
99
115
|
export declare var TagResource: StaticOperationSchema;
|
|
100
116
|
export declare var UntagResource: StaticOperationSchema;
|
|
117
|
+
export declare var UpdateSpendingLimit: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-braket",
|
|
3
3
|
"description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-braket",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.936.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|