File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
qiskit_aqt_provider/api_client Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ * Add unavailable as possible resource state (#244 )
6+
57## qiskit-aqt-provider v1.13.0
68
79* Configure resources transpilation targets with the actual number of available qubits (#237 )
Original file line number Diff line number Diff line change @@ -547,6 +547,7 @@ components:
547547 - online
548548 - maintenance
549549 - offline
550+ - unavailable
550551 title : ResourceStates
551552 type : string
552553 ResultResponse :
Original file line number Diff line number Diff line change @@ -271,6 +271,7 @@ class ResourceStates(Enum):
271271 online = "online"
272272 maintenance = "maintenance"
273273 offline = "offline"
274+ unavailable = "unavailable"
274275
275276
276277class SubmitJobResponse (BaseModel ):
You can’t perform that action at this time.
0 commit comments