|
| 1 | +# Copyright 2025 Scaleway |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | +from .client import QaaSClient |
| 15 | +from .job_payload.models import ( |
| 16 | + QaaSCircuitData, |
| 17 | + QaaSCircuitSerializationFormat, |
| 18 | + QaaSJobBackendData, |
| 19 | + QaaSJobClientData, |
| 20 | + QaaSJobData, |
| 21 | + QaaSJobRunData, |
| 22 | +) |
| 23 | +from .quantum_as_a_service_api_client.models import ( |
| 24 | + ScalewayQaasV1Alpha1Application as QaaSApplication, |
| 25 | +) |
| 26 | +from .quantum_as_a_service_api_client.models import ScalewayQaasV1Alpha1Job as QaaSJob |
| 27 | +from .quantum_as_a_service_api_client.models import ( |
| 28 | + ScalewayQaasV1Alpha1JobResult as QaaSJobResult, |
| 29 | +) |
| 30 | +from .quantum_as_a_service_api_client.models import ( |
| 31 | + ScalewayQaasV1Alpha1JobResult as QaaSJobResut, |
| 32 | +) |
| 33 | +from .quantum_as_a_service_api_client.models import ( |
| 34 | + ScalewayQaasV1Alpha1JobStatus as QaaSJobStatus, |
| 35 | +) |
| 36 | +from .quantum_as_a_service_api_client.models import ( |
| 37 | + ScalewayQaasV1Alpha1Platform as QaaSPlatform, |
| 38 | +) |
| 39 | +from .quantum_as_a_service_api_client.models import ( |
| 40 | + ScalewayQaasV1Alpha1PlatformAvailability as QaaSPlatformAvailability, |
| 41 | +) |
| 42 | +from .quantum_as_a_service_api_client.models import ( |
| 43 | + ScalewayQaasV1Alpha1PlatformTechnology as QaaSPlatformTechnology, |
| 44 | +) |
| 45 | +from .quantum_as_a_service_api_client.models import ( |
| 46 | + ScalewayQaasV1Alpha1Process as QaaSProcess, |
| 47 | +) |
| 48 | +from .quantum_as_a_service_api_client.models import ( |
| 49 | + ScalewayQaasV1Alpha1ProcessResult as QaaSProcessResult, |
| 50 | +) |
| 51 | +from .quantum_as_a_service_api_client.models import ( |
| 52 | + ScalewayQaasV1Alpha1ProcessStatus as QaaSProcessStatus, |
| 53 | +) |
| 54 | +from .quantum_as_a_service_api_client.models import ( |
| 55 | + ScalewayQaasV1Alpha1Session as QaaSSession, |
| 56 | +) |
| 57 | +from .quantum_as_a_service_api_client.models import ( |
| 58 | + ScalewayQaasV1Alpha1SessionStatus as QaaSSessionStatus, |
| 59 | +) |
| 60 | +from .quantum_as_a_service_api_client.models import ( |
| 61 | + ScalewayQaasV1Alpha1SessionAccess as QaaSSessionAccess, |
| 62 | +) |
0 commit comments