@quantum-hub/qhub-api 1.0.4
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 +9 -0
- package/dist/api/platform/BaseClient.d.ts +43 -0
- package/dist/api/platform/BaseClient.js +66 -0
- package/dist/api/platform/Client.d.ts +41 -0
- package/dist/api/platform/Client.js +62 -0
- package/dist/api/platform/api/errors/BadRequestError.d.ts +5 -0
- package/dist/api/platform/api/errors/BadRequestError.js +54 -0
- package/dist/api/platform/api/errors/ForbiddenError.d.ts +5 -0
- package/dist/api/platform/api/errors/ForbiddenError.js +54 -0
- package/dist/api/platform/api/errors/InternalServerError.d.ts +5 -0
- package/dist/api/platform/api/errors/InternalServerError.js +54 -0
- package/dist/api/platform/api/errors/NotFoundError.d.ts +5 -0
- package/dist/api/platform/api/errors/NotFoundError.js +54 -0
- package/dist/api/platform/api/errors/UnauthorizedError.d.ts +5 -0
- package/dist/api/platform/api/errors/UnauthorizedError.js +54 -0
- package/dist/api/platform/api/errors/index.d.ts +5 -0
- package/dist/api/platform/api/errors/index.js +21 -0
- package/dist/api/platform/api/index.d.ts +3 -0
- package/dist/api/platform/api/index.js +19 -0
- package/dist/api/platform/api/resources/applications/client/Client.d.ts +120 -0
- package/dist/api/platform/api/resources/applications/client/Client.js +425 -0
- package/dist/api/platform/api/resources/applications/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/applications/client/index.js +17 -0
- package/dist/api/platform/api/resources/applications/client/requests/CreateApplicationRequest.d.ts +7 -0
- package/dist/api/platform/api/resources/applications/client/requests/CreateApplicationRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/DeleteApplicationRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/DeleteApplicationRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationAccessKeysRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationAccessKeysRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationSubscriptionsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationSubscriptionsRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/index.d.ts +5 -0
- package/dist/api/platform/api/resources/applications/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/applications/index.d.ts +1 -0
- package/dist/api/platform/api/resources/applications/index.js +17 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/Client.d.ts +163 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/Client.js +538 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/index.js +17 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/AddConstraint1Request.d.ts +14 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/AddConstraint1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteConstraint1Request.d.ts +13 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteConstraint1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteShare1Request.d.ts +11 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteShare1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/GetSharesForDataPoolRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/GetSharesForDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/ShareDataPoolRequest.d.ts +12 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/ShareDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateRole1Request.d.ts +14 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateRole1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateTimeBasedConstraint1Request.d.ts +19 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateTimeBasedConstraint1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/index.d.ts +7 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/index.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/index.js +18 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/AddConstraint1Response.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/AddConstraint1Response.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1RequestBody.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1RequestBody.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1Response.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1Response.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/index.d.ts +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/index.js +19 -0
- package/dist/api/platform/api/resources/dataPools/client/Client.d.ts +170 -0
- package/dist/api/platform/api/resources/dataPools/client/Client.js +624 -0
- package/dist/api/platform/api/resources/dataPools/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/dataPools/client/index.js +17 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/AddDataPoolFileRequest.d.ts +13 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/AddDataPoolFileRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/CreateDataPoolRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/CreateDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolFileRequest.d.ts +11 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolFileRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFileRequest.d.ts +11 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFileRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFilesRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFilesRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/UpdateDataPoolRequest.d.ts +17 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/UpdateDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/index.d.ts +8 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/dataPools/index.d.ts +1 -0
- package/dist/api/platform/api/resources/dataPools/index.js +17 -0
- package/dist/api/platform/api/resources/index.d.ts +23 -0
- package/dist/api/platform/api/resources/index.js +62 -0
- package/dist/api/platform/api/resources/organizations/client/Client.d.ts +33 -0
- package/dist/api/platform/api/resources/organizations/client/Client.js +119 -0
- package/dist/api/platform/api/resources/organizations/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/organizations/client/index.js +17 -0
- package/dist/api/platform/api/resources/organizations/client/requests/GetServiceExecutions1Request.d.ts +9 -0
- package/dist/api/platform/api/resources/organizations/client/requests/GetServiceExecutions1Request.js +3 -0
- package/dist/api/platform/api/resources/organizations/client/requests/index.d.ts +1 -0
- package/dist/api/platform/api/resources/organizations/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/organizations/index.d.ts +1 -0
- package/dist/api/platform/api/resources/organizations/index.js +17 -0
- package/dist/api/platform/api/resources/quantumJobs/client/Client.d.ts +31 -0
- package/dist/api/platform/api/resources/quantumJobs/client/Client.js +113 -0
- package/dist/api/platform/api/resources/quantumJobs/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumJobs/client/index.js +17 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/GetQuantumJobCostsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/GetQuantumJobCostsRequest.js +3 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/quantumJobs/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumJobs/index.js +17 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/Client.d.ts +31 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/Client.js +113 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/index.js +17 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/GetQuantumWorkloadCostsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/GetQuantumWorkloadCostsRequest.js +3 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/quantumWorkloads/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumWorkloads/index.js +17 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/Client.d.ts +167 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/Client.js +623 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/index.js +17 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/CancelServiceExecutionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/CancelServiceExecutionRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionCostsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionCostsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionLogsRequest.d.ts +13 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionLogsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionMetricsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionMetricsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultFileRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultFileRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionsRequest.d.ts +24 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/HeadServiceExecutionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/HeadServiceExecutionRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/index.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/serviceExecutions/index.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceExecutions/index.js +18 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/GetServiceExecutionResponse.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/GetServiceExecutionResponse.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/index.js +17 -0
- package/dist/api/platform/api/resources/serviceJobs/client/Client.d.ts +87 -0
- package/dist/api/platform/api/resources/serviceJobs/client/Client.js +322 -0
- package/dist/api/platform/api/resources/serviceJobs/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceJobs/client/index.js +17 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/CreateServiceJobRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/CreateServiceJobRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobsRequest.d.ts +22 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/RerunServiceJobRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/RerunServiceJobRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/index.d.ts +4 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/serviceJobs/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceJobs/index.js +17 -0
- package/dist/api/platform/api/resources/serviceShares/client/Client.d.ts +163 -0
- package/dist/api/platform/api/resources/serviceShares/client/Client.js +538 -0
- package/dist/api/platform/api/resources/serviceShares/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceShares/client/index.js +17 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/AddConstraintRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/AddConstraintRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteConstraintRequest.d.ts +13 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteConstraintRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteShareRequest.d.ts +11 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteShareRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/GetSharesForServiceRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/GetSharesForServiceRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/ShareServiceRequest.d.ts +12 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/ShareServiceRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateRoleRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateRoleRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateTimeBasedConstraintRequest.d.ts +19 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateTimeBasedConstraintRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/index.d.ts +7 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/serviceShares/index.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/index.js +18 -0
- package/dist/api/platform/api/resources/serviceShares/types/AddConstraintResponse.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/types/AddConstraintResponse.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintRequestBody.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintRequestBody.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintResponse.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintResponse.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/index.d.ts +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/index.js +19 -0
- package/dist/api/platform/api/resources/subscriptions/client/Client.d.ts +87 -0
- package/dist/api/platform/api/resources/subscriptions/client/Client.js +305 -0
- package/dist/api/platform/api/resources/subscriptions/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/subscriptions/client/index.js +17 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/CreateSubscriptionRequest.d.ts +8 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/CreateSubscriptionRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/DeleteSubscriptionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/DeleteSubscriptionRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionServiceExecutionsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionServiceExecutionsRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/index.d.ts +4 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/subscriptions/index.d.ts +1 -0
- package/dist/api/platform/api/resources/subscriptions/index.js +17 -0
- package/dist/api/platform/api/types/AccessKey.d.ts +12 -0
- package/dist/api/platform/api/types/AccessKey.js +11 -0
- package/dist/api/platform/api/types/ActivityInstance.d.ts +19 -0
- package/dist/api/platform/api/types/ActivityInstance.js +12 -0
- package/dist/api/platform/api/types/ApplicationDto.d.ts +19 -0
- package/dist/api/platform/api/types/ApplicationDto.js +13 -0
- package/dist/api/platform/api/types/CostEntry.d.ts +20 -0
- package/dist/api/platform/api/types/CostEntry.js +3 -0
- package/dist/api/platform/api/types/CreateShareConstraintDto.d.ts +7 -0
- package/dist/api/platform/api/types/CreateShareConstraintDto.js +3 -0
- package/dist/api/platform/api/types/CreateShareRequestDto.d.ts +13 -0
- package/dist/api/platform/api/types/CreateShareRequestDto.js +12 -0
- package/dist/api/platform/api/types/CreateTimeBasedConstraintDto.d.ts +4 -0
- package/dist/api/platform/api/types/CreateTimeBasedConstraintDto.js +3 -0
- package/dist/api/platform/api/types/DataPoolDto.d.ts +25 -0
- package/dist/api/platform/api/types/DataPoolDto.js +13 -0
- package/dist/api/platform/api/types/DataPoolFileDto.d.ts +16 -0
- package/dist/api/platform/api/types/DataPoolFileDto.js +3 -0
- package/dist/api/platform/api/types/Incident.d.ts +8 -0
- package/dist/api/platform/api/types/Incident.js +3 -0
- package/dist/api/platform/api/types/LogEntry.d.ts +19 -0
- package/dist/api/platform/api/types/LogEntry.js +15 -0
- package/dist/api/platform/api/types/MetricDataPoint.d.ts +9 -0
- package/dist/api/platform/api/types/MetricDataPoint.js +3 -0
- package/dist/api/platform/api/types/OauthScope.d.ts +4 -0
- package/dist/api/platform/api/types/OauthScope.js +7 -0
- package/dist/api/platform/api/types/OrganizationSearchResultDto.d.ts +4 -0
- package/dist/api/platform/api/types/OrganizationSearchResultDto.js +3 -0
- package/dist/api/platform/api/types/OrganizationTenant.d.ts +3 -0
- package/dist/api/platform/api/types/OrganizationTenant.js +3 -0
- package/dist/api/platform/api/types/PageResponseServiceExecutionDto.d.ts +28 -0
- package/dist/api/platform/api/types/PageResponseServiceExecutionDto.js +3 -0
- package/dist/api/platform/api/types/PageResponseServiceJobDto.d.ts +28 -0
- package/dist/api/platform/api/types/PageResponseServiceJobDto.js +3 -0
- package/dist/api/platform/api/types/PricingPlanDto.d.ts +14 -0
- package/dist/api/platform/api/types/PricingPlanDto.js +12 -0
- package/dist/api/platform/api/types/ProductDto.d.ts +36 -0
- package/dist/api/platform/api/types/ProductDto.js +32 -0
- package/dist/api/platform/api/types/QuantumJobCosts.d.ts +2 -0
- package/dist/api/platform/api/types/QuantumJobCosts.js +3 -0
- package/dist/api/platform/api/types/QuantumWorkloadCosts.d.ts +9 -0
- package/dist/api/platform/api/types/QuantumWorkloadCosts.js +3 -0
- package/dist/api/platform/api/types/ServiceConsumerDto.d.ts +24 -0
- package/dist/api/platform/api/types/ServiceConsumerDto.js +17 -0
- package/dist/api/platform/api/types/ServiceExecution.d.ts +4 -0
- package/dist/api/platform/api/types/ServiceExecution.js +3 -0
- package/dist/api/platform/api/types/ServiceExecutionCosts.d.ts +2 -0
- package/dist/api/platform/api/types/ServiceExecutionCosts.js +3 -0
- package/dist/api/platform/api/types/ServiceExecutionDto.d.ts +41 -0
- package/dist/api/platform/api/types/ServiceExecutionDto.js +22 -0
- package/dist/api/platform/api/types/ServiceExecutionLogs.d.ts +2 -0
- package/dist/api/platform/api/types/ServiceExecutionLogs.js +3 -0
- package/dist/api/platform/api/types/ServiceExecutionMetrics.d.ts +20 -0
- package/dist/api/platform/api/types/ServiceExecutionMetrics.js +3 -0
- package/dist/api/platform/api/types/ServiceJobDto.d.ts +42 -0
- package/dist/api/platform/api/types/ServiceJobDto.js +22 -0
- package/dist/api/platform/api/types/ShareConstraintDto.d.ts +13 -0
- package/dist/api/platform/api/types/ShareConstraintDto.js +3 -0
- package/dist/api/platform/api/types/ShareDto.d.ts +22 -0
- package/dist/api/platform/api/types/ShareDto.js +12 -0
- package/dist/api/platform/api/types/SortOrder.d.ts +17 -0
- package/dist/api/platform/api/types/SortOrder.js +12 -0
- package/dist/api/platform/api/types/SubscriptionDto.d.ts +8 -0
- package/dist/api/platform/api/types/SubscriptionDto.js +3 -0
- package/dist/api/platform/api/types/TenantId.d.ts +13 -0
- package/dist/api/platform/api/types/TenantId.js +3 -0
- package/dist/api/platform/api/types/TimeBasedConstraintDto.d.ts +5 -0
- package/dist/api/platform/api/types/TimeBasedConstraintDto.js +3 -0
- package/dist/api/platform/api/types/UpdateResourceShareRoleDto.d.ts +11 -0
- package/dist/api/platform/api/types/UpdateResourceShareRoleDto.js +12 -0
- package/dist/api/platform/api/types/UserTenant.d.ts +3 -0
- package/dist/api/platform/api/types/UserTenant.js +3 -0
- package/dist/api/platform/api/types/VariableInstance.d.ts +9 -0
- package/dist/api/platform/api/types/VariableInstance.js +3 -0
- package/dist/api/platform/api/types/WorkflowInstance.d.ts +21 -0
- package/dist/api/platform/api/types/WorkflowInstance.js +15 -0
- package/dist/api/platform/api/types/WorkflowServiceExecutionDto.d.ts +44 -0
- package/dist/api/platform/api/types/WorkflowServiceExecutionDto.js +22 -0
- package/dist/api/platform/api/types/index.d.ts +39 -0
- package/dist/api/platform/api/types/index.js +55 -0
- package/dist/api/platform/auth/HeaderAuthProvider.d.ts +20 -0
- package/dist/api/platform/auth/HeaderAuthProvider.js +70 -0
- package/dist/api/platform/auth/index.d.ts +1 -0
- package/dist/api/platform/auth/index.js +5 -0
- package/dist/api/platform/core/auth/AuthProvider.d.ts +7 -0
- package/dist/api/platform/core/auth/AuthProvider.js +2 -0
- package/dist/api/platform/core/auth/AuthRequest.d.ts +9 -0
- package/dist/api/platform/core/auth/AuthRequest.js +2 -0
- package/dist/api/platform/core/auth/BasicAuth.d.ts +8 -0
- package/dist/api/platform/core/auth/BasicAuth.js +27 -0
- package/dist/api/platform/core/auth/BearerToken.d.ts +7 -0
- package/dist/api/platform/core/auth/BearerToken.js +16 -0
- package/dist/api/platform/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/api/platform/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/api/platform/core/auth/index.d.ts +5 -0
- package/dist/api/platform/core/auth/index.js +9 -0
- package/dist/api/platform/core/base64.d.ts +2 -0
- package/dist/api/platform/core/base64.js +26 -0
- package/dist/api/platform/core/exports.d.ts +2 -0
- package/dist/api/platform/core/exports.js +18 -0
- package/dist/api/platform/core/fetcher/APIResponse.d.ts +20 -0
- package/dist/api/platform/core/fetcher/APIResponse.js +2 -0
- package/dist/api/platform/core/fetcher/BinaryResponse.d.ts +19 -0
- package/dist/api/platform/core/fetcher/BinaryResponse.js +17 -0
- package/dist/api/platform/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/api/platform/core/fetcher/EndpointMetadata.js +2 -0
- package/dist/api/platform/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/api/platform/core/fetcher/EndpointSupplier.js +13 -0
- package/dist/api/platform/core/fetcher/Fetcher.d.ts +48 -0
- package/dist/api/platform/core/fetcher/Fetcher.js +305 -0
- package/dist/api/platform/core/fetcher/Headers.d.ts +2 -0
- package/dist/api/platform/core/fetcher/Headers.js +85 -0
- package/dist/api/platform/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/api/platform/core/fetcher/HttpResponsePromise.js +94 -0
- package/dist/api/platform/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/api/platform/core/fetcher/RawResponse.js +44 -0
- package/dist/api/platform/core/fetcher/Supplier.d.ts +4 -0
- package/dist/api/platform/core/fetcher/Supplier.js +13 -0
- package/dist/api/platform/core/fetcher/createRequestUrl.d.ts +1 -0
- package/dist/api/platform/core/fetcher/createRequestUrl.js +8 -0
- package/dist/api/platform/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getErrorResponseBody.js +33 -0
- package/dist/api/platform/core/fetcher/getFetchFn.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getFetchFn.js +6 -0
- package/dist/api/platform/core/fetcher/getHeader.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getHeader.js +11 -0
- package/dist/api/platform/core/fetcher/getRequestBody.d.ts +7 -0
- package/dist/api/platform/core/fetcher/getRequestBody.js +16 -0
- package/dist/api/platform/core/fetcher/getResponseBody.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getResponseBody.js +58 -0
- package/dist/api/platform/core/fetcher/index.d.ts +11 -0
- package/dist/api/platform/core/fetcher/index.js +17 -0
- package/dist/api/platform/core/fetcher/makeRequest.d.ts +1 -0
- package/dist/api/platform/core/fetcher/makeRequest.js +31 -0
- package/dist/api/platform/core/fetcher/requestWithRetries.d.ts +1 -0
- package/dist/api/platform/core/fetcher/requestWithRetries.js +56 -0
- package/dist/api/platform/core/fetcher/signals.d.ts +5 -0
- package/dist/api/platform/core/fetcher/signals.js +24 -0
- package/dist/api/platform/core/file/exports.d.ts +1 -0
- package/dist/api/platform/core/file/exports.js +2 -0
- package/dist/api/platform/core/file/file.d.ts +10 -0
- package/dist/api/platform/core/file/file.js +202 -0
- package/dist/api/platform/core/file/index.d.ts +2 -0
- package/dist/api/platform/core/file/index.js +18 -0
- package/dist/api/platform/core/file/types.d.ts +66 -0
- package/dist/api/platform/core/file/types.js +2 -0
- package/dist/api/platform/core/form-data-utils/FormDataWrapper.d.ts +15 -0
- package/dist/api/platform/core/form-data-utils/FormDataWrapper.js +143 -0
- package/dist/api/platform/core/form-data-utils/encodeAsFormParameter.d.ts +1 -0
- package/dist/api/platform/core/form-data-utils/encodeAsFormParameter.js +12 -0
- package/dist/api/platform/core/form-data-utils/index.d.ts +2 -0
- package/dist/api/platform/core/form-data-utils/index.js +20 -0
- package/dist/api/platform/core/headers.d.ts +2 -0
- package/dist/api/platform/core/headers.js +31 -0
- package/dist/api/platform/core/index.d.ts +8 -0
- package/dist/api/platform/core/index.js +47 -0
- package/dist/api/platform/core/json.d.ts +15 -0
- package/dist/api/platform/core/json.js +24 -0
- package/dist/api/platform/core/logging/exports.d.ts +18 -0
- package/dist/api/platform/core/logging/exports.js +45 -0
- package/dist/api/platform/core/logging/index.d.ts +1 -0
- package/dist/api/platform/core/logging/index.js +17 -0
- package/dist/api/platform/core/logging/logger.d.ts +126 -0
- package/dist/api/platform/core/logging/logger.js +146 -0
- package/dist/api/platform/core/runtime/index.d.ts +1 -0
- package/dist/api/platform/core/runtime/index.js +5 -0
- package/dist/api/platform/core/runtime/runtime.d.ts +9 -0
- package/dist/api/platform/core/runtime/runtime.js +102 -0
- package/dist/api/platform/core/url/encodePathParam.d.ts +1 -0
- package/dist/api/platform/core/url/encodePathParam.js +21 -0
- package/dist/api/platform/core/url/index.d.ts +3 -0
- package/dist/api/platform/core/url/index.js +9 -0
- package/dist/api/platform/core/url/join.d.ts +1 -0
- package/dist/api/platform/core/url/join.js +68 -0
- package/dist/api/platform/core/url/qs.d.ts +6 -0
- package/dist/api/platform/core/url/qs.js +67 -0
- package/dist/api/platform/environments.d.ts +4 -0
- package/dist/api/platform/environments.js +7 -0
- package/dist/api/platform/errors/HubPlatformError.d.ts +12 -0
- package/dist/api/platform/errors/HubPlatformError.js +35 -0
- package/dist/api/platform/errors/HubPlatformTimeoutError.d.ts +3 -0
- package/dist/api/platform/errors/HubPlatformTimeoutError.js +15 -0
- package/dist/api/platform/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/api/platform/errors/handleNonStatusCodeError.js +65 -0
- package/dist/api/platform/errors/index.d.ts +2 -0
- package/dist/api/platform/errors/index.js +7 -0
- package/dist/api/platform/exports.d.ts +1 -0
- package/dist/api/platform/exports.js +17 -0
- package/dist/api/platform/index.d.ts +6 -0
- package/dist/api/platform/index.js +48 -0
- package/dist/api/service/BaseClient.d.ts +39 -0
- package/dist/api/service/BaseClient.js +65 -0
- package/dist/api/service/Client.d.ts +14 -0
- package/dist/api/service/Client.js +17 -0
- package/dist/api/service/api/index.d.ts +2 -0
- package/dist/api/service/api/index.js +18 -0
- package/dist/api/service/api/resources/index.d.ts +2 -0
- package/dist/api/service/api/resources/index.js +41 -0
- package/dist/api/service/api/resources/serviceApi/client/Client.d.ts +100 -0
- package/dist/api/service/api/resources/serviceApi/client/Client.js +356 -0
- package/dist/api/service/api/resources/serviceApi/client/index.d.ts +1 -0
- package/dist/api/service/api/resources/serviceApi/client/index.js +17 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/CancelExecutionRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/CancelExecutionRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetLogsRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetLogsRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultFileRequest.d.ts +6 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultFileRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetStatusRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetStatusRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/index.d.ts +5 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/index.js +2 -0
- package/dist/api/service/api/resources/serviceApi/index.d.ts +1 -0
- package/dist/api/service/api/resources/serviceApi/index.js +17 -0
- package/dist/api/service/api/types/HalLink.d.ts +18 -0
- package/dist/api/service/api/types/HalLink.js +3 -0
- package/dist/api/service/api/types/LogEntry.d.ts +19 -0
- package/dist/api/service/api/types/LogEntry.js +15 -0
- package/dist/api/service/api/types/RequestBody.d.ts +1 -0
- package/dist/api/service/api/types/RequestBody.js +3 -0
- package/dist/api/service/api/types/ResultResponse.d.ts +15 -0
- package/dist/api/service/api/types/ResultResponse.js +3 -0
- package/dist/api/service/api/types/ServiceExecution.d.ts +38 -0
- package/dist/api/service/api/types/ServiceExecution.js +21 -0
- package/dist/api/service/api/types/index.d.ts +5 -0
- package/dist/api/service/api/types/index.js +21 -0
- package/dist/api/service/auth/BearerAuthProvider.d.ts +20 -0
- package/dist/api/service/auth/BearerAuthProvider.js +69 -0
- package/dist/api/service/auth/index.d.ts +1 -0
- package/dist/api/service/auth/index.js +5 -0
- package/dist/api/service/core/auth/AuthProvider.d.ts +7 -0
- package/dist/api/service/core/auth/AuthProvider.js +2 -0
- package/dist/api/service/core/auth/AuthRequest.d.ts +9 -0
- package/dist/api/service/core/auth/AuthRequest.js +2 -0
- package/dist/api/service/core/auth/BasicAuth.d.ts +8 -0
- package/dist/api/service/core/auth/BasicAuth.js +27 -0
- package/dist/api/service/core/auth/BearerToken.d.ts +7 -0
- package/dist/api/service/core/auth/BearerToken.js +16 -0
- package/dist/api/service/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/api/service/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/api/service/core/auth/index.d.ts +5 -0
- package/dist/api/service/core/auth/index.js +9 -0
- package/dist/api/service/core/base64.d.ts +2 -0
- package/dist/api/service/core/base64.js +26 -0
- package/dist/api/service/core/exports.d.ts +1 -0
- package/dist/api/service/core/exports.js +17 -0
- package/dist/api/service/core/fetcher/APIResponse.d.ts +20 -0
- package/dist/api/service/core/fetcher/APIResponse.js +2 -0
- package/dist/api/service/core/fetcher/BinaryResponse.d.ts +19 -0
- package/dist/api/service/core/fetcher/BinaryResponse.js +17 -0
- package/dist/api/service/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/api/service/core/fetcher/EndpointMetadata.js +2 -0
- package/dist/api/service/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/api/service/core/fetcher/EndpointSupplier.js +13 -0
- package/dist/api/service/core/fetcher/Fetcher.d.ts +48 -0
- package/dist/api/service/core/fetcher/Fetcher.js +305 -0
- package/dist/api/service/core/fetcher/Headers.d.ts +2 -0
- package/dist/api/service/core/fetcher/Headers.js +85 -0
- package/dist/api/service/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/api/service/core/fetcher/HttpResponsePromise.js +94 -0
- package/dist/api/service/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/api/service/core/fetcher/RawResponse.js +44 -0
- package/dist/api/service/core/fetcher/Supplier.d.ts +4 -0
- package/dist/api/service/core/fetcher/Supplier.js +13 -0
- package/dist/api/service/core/fetcher/createRequestUrl.d.ts +1 -0
- package/dist/api/service/core/fetcher/createRequestUrl.js +8 -0
- package/dist/api/service/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/api/service/core/fetcher/getErrorResponseBody.js +33 -0
- package/dist/api/service/core/fetcher/getFetchFn.d.ts +1 -0
- package/dist/api/service/core/fetcher/getFetchFn.js +6 -0
- package/dist/api/service/core/fetcher/getHeader.d.ts +1 -0
- package/dist/api/service/core/fetcher/getHeader.js +11 -0
- package/dist/api/service/core/fetcher/getRequestBody.d.ts +7 -0
- package/dist/api/service/core/fetcher/getRequestBody.js +16 -0
- package/dist/api/service/core/fetcher/getResponseBody.d.ts +1 -0
- package/dist/api/service/core/fetcher/getResponseBody.js +58 -0
- package/dist/api/service/core/fetcher/index.d.ts +11 -0
- package/dist/api/service/core/fetcher/index.js +17 -0
- package/dist/api/service/core/fetcher/makeRequest.d.ts +1 -0
- package/dist/api/service/core/fetcher/makeRequest.js +31 -0
- package/dist/api/service/core/fetcher/requestWithRetries.d.ts +1 -0
- package/dist/api/service/core/fetcher/requestWithRetries.js +56 -0
- package/dist/api/service/core/fetcher/signals.d.ts +5 -0
- package/dist/api/service/core/fetcher/signals.js +24 -0
- package/dist/api/service/core/headers.d.ts +2 -0
- package/dist/api/service/core/headers.js +31 -0
- package/dist/api/service/core/index.d.ts +6 -0
- package/dist/api/service/core/index.js +45 -0
- package/dist/api/service/core/json.d.ts +15 -0
- package/dist/api/service/core/json.js +24 -0
- package/dist/api/service/core/logging/exports.d.ts +18 -0
- package/dist/api/service/core/logging/exports.js +45 -0
- package/dist/api/service/core/logging/index.d.ts +1 -0
- package/dist/api/service/core/logging/index.js +17 -0
- package/dist/api/service/core/logging/logger.d.ts +126 -0
- package/dist/api/service/core/logging/logger.js +146 -0
- package/dist/api/service/core/runtime/index.d.ts +1 -0
- package/dist/api/service/core/runtime/index.js +5 -0
- package/dist/api/service/core/runtime/runtime.d.ts +9 -0
- package/dist/api/service/core/runtime/runtime.js +102 -0
- package/dist/api/service/core/url/encodePathParam.d.ts +1 -0
- package/dist/api/service/core/url/encodePathParam.js +21 -0
- package/dist/api/service/core/url/index.d.ts +3 -0
- package/dist/api/service/core/url/index.js +9 -0
- package/dist/api/service/core/url/join.d.ts +1 -0
- package/dist/api/service/core/url/join.js +68 -0
- package/dist/api/service/core/url/qs.d.ts +6 -0
- package/dist/api/service/core/url/qs.js +67 -0
- package/dist/api/service/environments.d.ts +4 -0
- package/dist/api/service/environments.js +7 -0
- package/dist/api/service/errors/HubServiceError.d.ts +12 -0
- package/dist/api/service/errors/HubServiceError.js +35 -0
- package/dist/api/service/errors/HubServiceTimeoutError.d.ts +3 -0
- package/dist/api/service/errors/HubServiceTimeoutError.js +15 -0
- package/dist/api/service/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/api/service/errors/handleNonStatusCodeError.js +65 -0
- package/dist/api/service/errors/index.d.ts +2 -0
- package/dist/api/service/errors/index.js +7 -0
- package/dist/api/service/exports.d.ts +1 -0
- package/dist/api/service/exports.js +17 -0
- package/dist/api/service/index.d.ts +6 -0
- package/dist/api/service/index.js +48 -0
- package/eslint.config.mjs +11 -0
- package/package.json +44 -0
- package/src/api/platform/BaseClient.ts +87 -0
- package/src/api/platform/Client.ts +78 -0
- package/src/api/platform/api/errors/BadRequestError.ts +21 -0
- package/src/api/platform/api/errors/ForbiddenError.ts +21 -0
- package/src/api/platform/api/errors/InternalServerError.ts +21 -0
- package/src/api/platform/api/errors/NotFoundError.ts +21 -0
- package/src/api/platform/api/errors/UnauthorizedError.ts +21 -0
- package/src/api/platform/api/errors/index.ts +5 -0
- package/src/api/platform/api/index.ts +3 -0
- package/src/api/platform/api/resources/applications/client/Client.ts +514 -0
- package/src/api/platform/api/resources/applications/client/index.ts +1 -0
- package/src/api/platform/api/resources/applications/client/requests/CreateApplicationRequest.ts +9 -0
- package/src/api/platform/api/resources/applications/client/requests/DeleteApplicationRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/GetApplicationAccessKeysRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/GetApplicationRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/GetApplicationSubscriptionsRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/index.ts +5 -0
- package/src/api/platform/api/resources/applications/index.ts +1 -0
- package/src/api/platform/api/resources/dataPoolShares/client/Client.ts +662 -0
- package/src/api/platform/api/resources/dataPoolShares/client/index.ts +1 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/AddConstraint1Request.ts +17 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/DeleteConstraint1Request.ts +15 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/DeleteShare1Request.ts +13 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/GetSharesForDataPoolRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/ShareDataPoolRequest.ts +15 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/UpdateRole1Request.ts +17 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/UpdateTimeBasedConstraint1Request.ts +22 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/index.ts +7 -0
- package/src/api/platform/api/resources/dataPoolShares/index.ts +2 -0
- package/src/api/platform/api/resources/dataPoolShares/types/AddConstraint1Response.ts +5 -0
- package/src/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1RequestBody.ts +5 -0
- package/src/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1Response.ts +5 -0
- package/src/api/platform/api/resources/dataPoolShares/types/index.ts +3 -0
- package/src/api/platform/api/resources/dataPools/client/Client.ts +767 -0
- package/src/api/platform/api/resources/dataPools/client/index.ts +1 -0
- package/src/api/platform/api/resources/dataPools/client/requests/AddDataPoolFileRequest.ts +16 -0
- package/src/api/platform/api/resources/dataPools/client/requests/CreateDataPoolRequest.ts +16 -0
- package/src/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolFileRequest.ts +13 -0
- package/src/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPools/client/requests/GetDataPoolFileRequest.ts +13 -0
- package/src/api/platform/api/resources/dataPools/client/requests/GetDataPoolFilesRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPools/client/requests/GetDataPoolRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPools/client/requests/UpdateDataPoolRequest.ts +19 -0
- package/src/api/platform/api/resources/dataPools/client/requests/index.ts +8 -0
- package/src/api/platform/api/resources/dataPools/index.ts +1 -0
- package/src/api/platform/api/resources/index.ts +23 -0
- package/src/api/platform/api/resources/organizations/client/Client.ts +110 -0
- package/src/api/platform/api/resources/organizations/client/index.ts +1 -0
- package/src/api/platform/api/resources/organizations/client/requests/GetServiceExecutions1Request.ts +11 -0
- package/src/api/platform/api/resources/organizations/client/requests/index.ts +1 -0
- package/src/api/platform/api/resources/organizations/index.ts +1 -0
- package/src/api/platform/api/resources/quantumJobs/client/Client.ts +104 -0
- package/src/api/platform/api/resources/quantumJobs/client/index.ts +1 -0
- package/src/api/platform/api/resources/quantumJobs/client/requests/GetQuantumJobCostsRequest.ts +11 -0
- package/src/api/platform/api/resources/quantumJobs/client/requests/index.ts +1 -0
- package/src/api/platform/api/resources/quantumJobs/index.ts +1 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/Client.ts +104 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/index.ts +1 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/requests/GetQuantumWorkloadCostsRequest.ts +11 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/requests/index.ts +1 -0
- package/src/api/platform/api/resources/quantumWorkloads/index.ts +1 -0
- package/src/api/platform/api/resources/serviceExecutions/client/Client.ts +788 -0
- package/src/api/platform/api/resources/serviceExecutions/client/index.ts +1 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/CancelServiceExecutionRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionCostsRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionLogsRequest.ts +15 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionMetricsRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultFileRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionsRequest.ts +26 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/HeadServiceExecutionRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/index.ts +9 -0
- package/src/api/platform/api/resources/serviceExecutions/index.ts +2 -0
- package/src/api/platform/api/resources/serviceExecutions/types/GetServiceExecutionResponse.ts +5 -0
- package/src/api/platform/api/resources/serviceExecutions/types/index.ts +1 -0
- package/src/api/platform/api/resources/serviceJobs/client/Client.ts +367 -0
- package/src/api/platform/api/resources/serviceJobs/client/index.ts +1 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/CreateServiceJobRequest.ts +16 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobsRequest.ts +24 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/RerunServiceJobRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/index.ts +4 -0
- package/src/api/platform/api/resources/serviceJobs/index.ts +1 -0
- package/src/api/platform/api/resources/serviceShares/client/Client.ts +662 -0
- package/src/api/platform/api/resources/serviceShares/client/index.ts +1 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/AddConstraintRequest.ts +17 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/DeleteConstraintRequest.ts +15 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/DeleteShareRequest.ts +13 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/GetSharesForServiceRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/ShareServiceRequest.ts +15 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/UpdateRoleRequest.ts +17 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/UpdateTimeBasedConstraintRequest.ts +22 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/index.ts +7 -0
- package/src/api/platform/api/resources/serviceShares/index.ts +2 -0
- package/src/api/platform/api/resources/serviceShares/types/AddConstraintResponse.ts +5 -0
- package/src/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintRequestBody.ts +5 -0
- package/src/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintResponse.ts +5 -0
- package/src/api/platform/api/resources/serviceShares/types/index.ts +3 -0
- package/src/api/platform/api/resources/subscriptions/client/Client.ts +355 -0
- package/src/api/platform/api/resources/subscriptions/client/index.ts +1 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/CreateSubscriptionRequest.ts +10 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/DeleteSubscriptionRequest.ts +11 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionRequest.ts +11 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionServiceExecutionsRequest.ts +11 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/index.ts +4 -0
- package/src/api/platform/api/resources/subscriptions/index.ts +1 -0
- package/src/api/platform/api/types/AccessKey.ts +15 -0
- package/src/api/platform/api/types/ActivityInstance.ts +23 -0
- package/src/api/platform/api/types/ApplicationDto.ts +22 -0
- package/src/api/platform/api/types/CostEntry.ts +22 -0
- package/src/api/platform/api/types/CreateShareConstraintDto.ts +11 -0
- package/src/api/platform/api/types/CreateShareRequestDto.ts +17 -0
- package/src/api/platform/api/types/CreateTimeBasedConstraintDto.ts +6 -0
- package/src/api/platform/api/types/DataPoolDto.ts +28 -0
- package/src/api/platform/api/types/DataPoolFileDto.ts +18 -0
- package/src/api/platform/api/types/Incident.ts +10 -0
- package/src/api/platform/api/types/LogEntry.ts +22 -0
- package/src/api/platform/api/types/MetricDataPoint.ts +11 -0
- package/src/api/platform/api/types/OauthScope.ts +6 -0
- package/src/api/platform/api/types/OrganizationSearchResultDto.ts +6 -0
- package/src/api/platform/api/types/OrganizationTenant.ts +5 -0
- package/src/api/platform/api/types/PageResponseServiceExecutionDto.ts +31 -0
- package/src/api/platform/api/types/PageResponseServiceJobDto.ts +31 -0
- package/src/api/platform/api/types/PricingPlanDto.ts +18 -0
- package/src/api/platform/api/types/ProductDto.ts +39 -0
- package/src/api/platform/api/types/QuantumJobCosts.ts +5 -0
- package/src/api/platform/api/types/QuantumWorkloadCosts.ts +11 -0
- package/src/api/platform/api/types/ServiceConsumerDto.ts +27 -0
- package/src/api/platform/api/types/ServiceExecution.ts +6 -0
- package/src/api/platform/api/types/ServiceExecutionCosts.ts +5 -0
- package/src/api/platform/api/types/ServiceExecutionDto.ts +44 -0
- package/src/api/platform/api/types/ServiceExecutionLogs.ts +5 -0
- package/src/api/platform/api/types/ServiceExecutionMetrics.ts +23 -0
- package/src/api/platform/api/types/ServiceJobDto.ts +45 -0
- package/src/api/platform/api/types/ShareConstraintDto.ts +18 -0
- package/src/api/platform/api/types/ShareDto.ts +27 -0
- package/src/api/platform/api/types/SortOrder.ts +20 -0
- package/src/api/platform/api/types/SubscriptionDto.ts +11 -0
- package/src/api/platform/api/types/TenantId.ts +19 -0
- package/src/api/platform/api/types/TimeBasedConstraintDto.ts +7 -0
- package/src/api/platform/api/types/UpdateResourceShareRoleDto.ts +14 -0
- package/src/api/platform/api/types/UserTenant.ts +5 -0
- package/src/api/platform/api/types/VariableInstance.ts +11 -0
- package/src/api/platform/api/types/WorkflowInstance.ts +25 -0
- package/src/api/platform/api/types/WorkflowServiceExecutionDto.ts +48 -0
- package/src/api/platform/api/types/index.ts +39 -0
- package/src/api/platform/auth/HeaderAuthProvider.ts +48 -0
- package/src/api/platform/auth/index.ts +1 -0
- package/src/api/platform/core/auth/AuthProvider.ts +6 -0
- package/src/api/platform/core/auth/AuthRequest.ts +9 -0
- package/src/api/platform/core/auth/BasicAuth.ts +32 -0
- package/src/api/platform/core/auth/BearerToken.ts +20 -0
- package/src/api/platform/core/auth/NoOpAuthProvider.ts +8 -0
- package/src/api/platform/core/auth/index.ts +5 -0
- package/src/api/platform/core/base64.ts +27 -0
- package/src/api/platform/core/exports.ts +2 -0
- package/src/api/platform/core/fetcher/APIResponse.ts +23 -0
- package/src/api/platform/core/fetcher/BinaryResponse.ts +34 -0
- package/src/api/platform/core/fetcher/EndpointMetadata.ts +13 -0
- package/src/api/platform/core/fetcher/EndpointSupplier.ts +14 -0
- package/src/api/platform/core/fetcher/Fetcher.ts +397 -0
- package/src/api/platform/core/fetcher/Headers.ts +93 -0
- package/src/api/platform/core/fetcher/HttpResponsePromise.ts +116 -0
- package/src/api/platform/core/fetcher/RawResponse.ts +61 -0
- package/src/api/platform/core/fetcher/Supplier.ts +11 -0
- package/src/api/platform/core/fetcher/createRequestUrl.ts +6 -0
- package/src/api/platform/core/fetcher/getErrorResponseBody.ts +33 -0
- package/src/api/platform/core/fetcher/getFetchFn.ts +3 -0
- package/src/api/platform/core/fetcher/getHeader.ts +8 -0
- package/src/api/platform/core/fetcher/getRequestBody.ts +20 -0
- package/src/api/platform/core/fetcher/getResponseBody.ts +58 -0
- package/src/api/platform/core/fetcher/index.ts +11 -0
- package/src/api/platform/core/fetcher/makeRequest.ts +42 -0
- package/src/api/platform/core/fetcher/requestWithRetries.ts +64 -0
- package/src/api/platform/core/fetcher/signals.ts +26 -0
- package/src/api/platform/core/file/exports.ts +1 -0
- package/src/api/platform/core/file/file.ts +217 -0
- package/src/api/platform/core/file/index.ts +2 -0
- package/src/api/platform/core/file/types.ts +81 -0
- package/src/api/platform/core/form-data-utils/FormDataWrapper.ts +140 -0
- package/src/api/platform/core/form-data-utils/encodeAsFormParameter.ts +12 -0
- package/src/api/platform/core/form-data-utils/index.ts +2 -0
- package/src/api/platform/core/headers.ts +33 -0
- package/src/api/platform/core/index.ts +8 -0
- package/src/api/platform/core/json.ts +27 -0
- package/src/api/platform/core/logging/exports.ts +19 -0
- package/src/api/platform/core/logging/index.ts +1 -0
- package/src/api/platform/core/logging/logger.ts +203 -0
- package/src/api/platform/core/runtime/index.ts +1 -0
- package/src/api/platform/core/runtime/runtime.ts +134 -0
- package/src/api/platform/core/url/encodePathParam.ts +18 -0
- package/src/api/platform/core/url/index.ts +3 -0
- package/src/api/platform/core/url/join.ts +79 -0
- package/src/api/platform/core/url/qs.ts +74 -0
- package/src/api/platform/environments.ts +7 -0
- package/src/api/platform/errors/HubPlatformError.ts +58 -0
- package/src/api/platform/errors/HubPlatformTimeoutError.ts +13 -0
- package/src/api/platform/errors/handleNonStatusCodeError.ts +37 -0
- package/src/api/platform/errors/index.ts +2 -0
- package/src/api/platform/exports.ts +1 -0
- package/src/api/platform/index.ts +6 -0
- package/src/api/service/BaseClient.ts +82 -0
- package/src/api/service/Client.ts +24 -0
- package/src/api/service/api/index.ts +2 -0
- package/src/api/service/api/resources/index.ts +2 -0
- package/src/api/service/api/resources/serviceApi/client/Client.ts +443 -0
- package/src/api/service/api/resources/serviceApi/client/index.ts +1 -0
- package/src/api/service/api/resources/serviceApi/client/requests/CancelExecutionRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetLogsRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetResultFileRequest.ts +8 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetResultRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetStatusRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/index.ts +5 -0
- package/src/api/service/api/resources/serviceApi/index.ts +1 -0
- package/src/api/service/api/types/HalLink.ts +20 -0
- package/src/api/service/api/types/LogEntry.ts +22 -0
- package/src/api/service/api/types/RequestBody.ts +3 -0
- package/src/api/service/api/types/ResultResponse.ts +20 -0
- package/src/api/service/api/types/ServiceExecution.ts +41 -0
- package/src/api/service/api/types/index.ts +5 -0
- package/src/api/service/auth/BearerAuthProvider.ts +47 -0
- package/src/api/service/auth/index.ts +1 -0
- package/src/api/service/core/auth/AuthProvider.ts +6 -0
- package/src/api/service/core/auth/AuthRequest.ts +9 -0
- package/src/api/service/core/auth/BasicAuth.ts +32 -0
- package/src/api/service/core/auth/BearerToken.ts +20 -0
- package/src/api/service/core/auth/NoOpAuthProvider.ts +8 -0
- package/src/api/service/core/auth/index.ts +5 -0
- package/src/api/service/core/base64.ts +27 -0
- package/src/api/service/core/exports.ts +1 -0
- package/src/api/service/core/fetcher/APIResponse.ts +23 -0
- package/src/api/service/core/fetcher/BinaryResponse.ts +34 -0
- package/src/api/service/core/fetcher/EndpointMetadata.ts +13 -0
- package/src/api/service/core/fetcher/EndpointSupplier.ts +14 -0
- package/src/api/service/core/fetcher/Fetcher.ts +397 -0
- package/src/api/service/core/fetcher/Headers.ts +93 -0
- package/src/api/service/core/fetcher/HttpResponsePromise.ts +116 -0
- package/src/api/service/core/fetcher/RawResponse.ts +61 -0
- package/src/api/service/core/fetcher/Supplier.ts +11 -0
- package/src/api/service/core/fetcher/createRequestUrl.ts +6 -0
- package/src/api/service/core/fetcher/getErrorResponseBody.ts +33 -0
- package/src/api/service/core/fetcher/getFetchFn.ts +3 -0
- package/src/api/service/core/fetcher/getHeader.ts +8 -0
- package/src/api/service/core/fetcher/getRequestBody.ts +20 -0
- package/src/api/service/core/fetcher/getResponseBody.ts +58 -0
- package/src/api/service/core/fetcher/index.ts +11 -0
- package/src/api/service/core/fetcher/makeRequest.ts +42 -0
- package/src/api/service/core/fetcher/requestWithRetries.ts +64 -0
- package/src/api/service/core/fetcher/signals.ts +26 -0
- package/src/api/service/core/headers.ts +33 -0
- package/src/api/service/core/index.ts +6 -0
- package/src/api/service/core/json.ts +27 -0
- package/src/api/service/core/logging/exports.ts +19 -0
- package/src/api/service/core/logging/index.ts +1 -0
- package/src/api/service/core/logging/logger.ts +203 -0
- package/src/api/service/core/runtime/index.ts +1 -0
- package/src/api/service/core/runtime/runtime.ts +134 -0
- package/src/api/service/core/url/encodePathParam.ts +18 -0
- package/src/api/service/core/url/index.ts +3 -0
- package/src/api/service/core/url/join.ts +79 -0
- package/src/api/service/core/url/qs.ts +74 -0
- package/src/api/service/environments.ts +7 -0
- package/src/api/service/errors/HubServiceError.ts +58 -0
- package/src/api/service/errors/HubServiceTimeoutError.ts +13 -0
- package/src/api/service/errors/handleNonStatusCodeError.ts +37 -0
- package/src/api/service/errors/index.ts +2 -0
- package/src/api/service/exports.ts +1 -0
- package/src/api/service/index.ts +6 -0
- package/src/client.test.ts +29 -0
- package/tsconfig.json +18 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js";
|
|
4
|
+
import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../BaseClient.js";
|
|
5
|
+
import { mergeHeaders } from "../../../../core/headers.js";
|
|
6
|
+
import * as core from "../../../../core/index.js";
|
|
7
|
+
import * as environments from "../../../../environments.js";
|
|
8
|
+
import { handleNonStatusCodeError } from "../../../../errors/handleNonStatusCodeError.js";
|
|
9
|
+
import * as errors from "../../../../errors/index.js";
|
|
10
|
+
import type * as HubService from "../../../index.js";
|
|
11
|
+
|
|
12
|
+
export declare namespace ServiceApiClient {
|
|
13
|
+
export type Options = BaseClientOptions;
|
|
14
|
+
|
|
15
|
+
export interface RequestOptions extends BaseRequestOptions {}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export class ServiceApiClient {
|
|
19
|
+
protected readonly _options: NormalizedClientOptionsWithAuth<ServiceApiClient.Options>;
|
|
20
|
+
|
|
21
|
+
constructor(options: ServiceApiClient.Options) {
|
|
22
|
+
this._options = normalizeClientOptionsWithAuth(options);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Retrieves a list of all service executions.
|
|
27
|
+
* The response includes links to each service execution, allowing for further queries on their status and results.
|
|
28
|
+
*
|
|
29
|
+
* @param {ServiceApiClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* await client.serviceApi.getServiceExecutions()
|
|
33
|
+
*/
|
|
34
|
+
public getServiceExecutions(
|
|
35
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
36
|
+
): core.HttpResponsePromise<HubService.ServiceExecution[]> {
|
|
37
|
+
return core.HttpResponsePromise.fromPromise(this.__getServiceExecutions(requestOptions));
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
private async __getServiceExecutions(
|
|
41
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
42
|
+
): Promise<core.WithRawResponse<HubService.ServiceExecution[]>> {
|
|
43
|
+
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
|
|
44
|
+
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
|
|
45
|
+
_authRequest.headers,
|
|
46
|
+
this._options?.headers,
|
|
47
|
+
requestOptions?.headers,
|
|
48
|
+
);
|
|
49
|
+
const _response = await core.fetcher({
|
|
50
|
+
url:
|
|
51
|
+
(await core.Supplier.get(this._options.baseUrl)) ??
|
|
52
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
53
|
+
environments.HubServiceEnvironment.Default,
|
|
54
|
+
method: "GET",
|
|
55
|
+
headers: _headers,
|
|
56
|
+
queryParameters: requestOptions?.queryParams,
|
|
57
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
58
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
59
|
+
withCredentials: true,
|
|
60
|
+
abortSignal: requestOptions?.abortSignal,
|
|
61
|
+
fetchFn: this._options?.fetch,
|
|
62
|
+
logging: this._options.logging,
|
|
63
|
+
});
|
|
64
|
+
if (_response.ok) {
|
|
65
|
+
return { data: _response.body as HubService.ServiceExecution[], rawResponse: _response.rawResponse };
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if (_response.error.reason === "status-code") {
|
|
69
|
+
throw new errors.HubServiceError({
|
|
70
|
+
statusCode: _response.error.statusCode,
|
|
71
|
+
body: _response.error.body,
|
|
72
|
+
rawResponse: _response.rawResponse,
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/");
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Starts a service execution, which in turn is processed asynchronously.
|
|
81
|
+
* The location header of the response contains the URL which can be used to query the status and the result of the service execution.
|
|
82
|
+
*
|
|
83
|
+
* @param {HubService.RequestBody} request
|
|
84
|
+
* @param {ServiceApiClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
85
|
+
*
|
|
86
|
+
* @example
|
|
87
|
+
* await client.serviceApi.startExecution({
|
|
88
|
+
* "key": "value"
|
|
89
|
+
* })
|
|
90
|
+
*/
|
|
91
|
+
public startExecution(
|
|
92
|
+
request: HubService.RequestBody,
|
|
93
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
94
|
+
): core.HttpResponsePromise<HubService.ServiceExecution> {
|
|
95
|
+
return core.HttpResponsePromise.fromPromise(this.__startExecution(request, requestOptions));
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
private async __startExecution(
|
|
99
|
+
request: HubService.RequestBody,
|
|
100
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
101
|
+
): Promise<core.WithRawResponse<HubService.ServiceExecution>> {
|
|
102
|
+
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
|
|
103
|
+
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
|
|
104
|
+
_authRequest.headers,
|
|
105
|
+
this._options?.headers,
|
|
106
|
+
requestOptions?.headers,
|
|
107
|
+
);
|
|
108
|
+
const _response = await core.fetcher({
|
|
109
|
+
url:
|
|
110
|
+
(await core.Supplier.get(this._options.baseUrl)) ??
|
|
111
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
112
|
+
environments.HubServiceEnvironment.Default,
|
|
113
|
+
method: "POST",
|
|
114
|
+
headers: _headers,
|
|
115
|
+
contentType: "application/json",
|
|
116
|
+
queryParameters: requestOptions?.queryParams,
|
|
117
|
+
requestType: "json",
|
|
118
|
+
body: request,
|
|
119
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
120
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
121
|
+
withCredentials: true,
|
|
122
|
+
abortSignal: requestOptions?.abortSignal,
|
|
123
|
+
fetchFn: this._options?.fetch,
|
|
124
|
+
logging: this._options.logging,
|
|
125
|
+
});
|
|
126
|
+
if (_response.ok) {
|
|
127
|
+
return { data: _response.body as HubService.ServiceExecution, rawResponse: _response.rawResponse };
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
if (_response.error.reason === "status-code") {
|
|
131
|
+
throw new errors.HubServiceError({
|
|
132
|
+
statusCode: _response.error.statusCode,
|
|
133
|
+
body: _response.error.body,
|
|
134
|
+
rawResponse: _response.rawResponse,
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/");
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Retrieves the status of a service execution.
|
|
143
|
+
* The status can be one of the following: UNKNOWN, PENDING, RUNNING, SUCCEEDED, CANCELLED, FAILED.
|
|
144
|
+
*
|
|
145
|
+
* @param {HubService.GetStatusRequest} request
|
|
146
|
+
* @param {ServiceApiClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
147
|
+
*
|
|
148
|
+
* @example
|
|
149
|
+
* await client.serviceApi.getStatus({
|
|
150
|
+
* id: "id"
|
|
151
|
+
* })
|
|
152
|
+
*/
|
|
153
|
+
public getStatus(
|
|
154
|
+
request: HubService.GetStatusRequest,
|
|
155
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
156
|
+
): core.HttpResponsePromise<HubService.ServiceExecution> {
|
|
157
|
+
return core.HttpResponsePromise.fromPromise(this.__getStatus(request, requestOptions));
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
private async __getStatus(
|
|
161
|
+
request: HubService.GetStatusRequest,
|
|
162
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
163
|
+
): Promise<core.WithRawResponse<HubService.ServiceExecution>> {
|
|
164
|
+
const { id } = request;
|
|
165
|
+
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
|
|
166
|
+
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
|
|
167
|
+
_authRequest.headers,
|
|
168
|
+
this._options?.headers,
|
|
169
|
+
requestOptions?.headers,
|
|
170
|
+
);
|
|
171
|
+
const _response = await core.fetcher({
|
|
172
|
+
url: core.url.join(
|
|
173
|
+
(await core.Supplier.get(this._options.baseUrl)) ??
|
|
174
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
175
|
+
environments.HubServiceEnvironment.Default,
|
|
176
|
+
`${core.url.encodePathParam(id)}`,
|
|
177
|
+
),
|
|
178
|
+
method: "GET",
|
|
179
|
+
headers: _headers,
|
|
180
|
+
queryParameters: requestOptions?.queryParams,
|
|
181
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
182
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
183
|
+
withCredentials: true,
|
|
184
|
+
abortSignal: requestOptions?.abortSignal,
|
|
185
|
+
fetchFn: this._options?.fetch,
|
|
186
|
+
logging: this._options.logging,
|
|
187
|
+
});
|
|
188
|
+
if (_response.ok) {
|
|
189
|
+
return { data: _response.body as HubService.ServiceExecution, rawResponse: _response.rawResponse };
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
if (_response.error.reason === "status-code") {
|
|
193
|
+
throw new errors.HubServiceError({
|
|
194
|
+
statusCode: _response.error.statusCode,
|
|
195
|
+
body: _response.error.body,
|
|
196
|
+
rawResponse: _response.rawResponse,
|
|
197
|
+
});
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/{id}");
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Retrieves the result of a service execution.
|
|
205
|
+
* The result is returned as a JSON object containing the status and any additional data.
|
|
206
|
+
* The result may include links to download specific result files.
|
|
207
|
+
*
|
|
208
|
+
* @param {HubService.GetResultRequest} request
|
|
209
|
+
* @param {ServiceApiClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
210
|
+
*
|
|
211
|
+
* @example
|
|
212
|
+
* await client.serviceApi.getResult({
|
|
213
|
+
* id: "id"
|
|
214
|
+
* })
|
|
215
|
+
*/
|
|
216
|
+
public getResult(
|
|
217
|
+
request: HubService.GetResultRequest,
|
|
218
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
219
|
+
): core.HttpResponsePromise<HubService.ResultResponse> {
|
|
220
|
+
return core.HttpResponsePromise.fromPromise(this.__getResult(request, requestOptions));
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
private async __getResult(
|
|
224
|
+
request: HubService.GetResultRequest,
|
|
225
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
226
|
+
): Promise<core.WithRawResponse<HubService.ResultResponse>> {
|
|
227
|
+
const { id } = request;
|
|
228
|
+
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
|
|
229
|
+
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
|
|
230
|
+
_authRequest.headers,
|
|
231
|
+
this._options?.headers,
|
|
232
|
+
requestOptions?.headers,
|
|
233
|
+
);
|
|
234
|
+
const _response = await core.fetcher({
|
|
235
|
+
url: core.url.join(
|
|
236
|
+
(await core.Supplier.get(this._options.baseUrl)) ??
|
|
237
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
238
|
+
environments.HubServiceEnvironment.Default,
|
|
239
|
+
`${core.url.encodePathParam(id)}/result`,
|
|
240
|
+
),
|
|
241
|
+
method: "GET",
|
|
242
|
+
headers: _headers,
|
|
243
|
+
queryParameters: requestOptions?.queryParams,
|
|
244
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
245
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
246
|
+
withCredentials: true,
|
|
247
|
+
abortSignal: requestOptions?.abortSignal,
|
|
248
|
+
fetchFn: this._options?.fetch,
|
|
249
|
+
logging: this._options.logging,
|
|
250
|
+
});
|
|
251
|
+
if (_response.ok) {
|
|
252
|
+
return { data: _response.body as HubService.ResultResponse, rawResponse: _response.rawResponse };
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
if (_response.error.reason === "status-code") {
|
|
256
|
+
throw new errors.HubServiceError({
|
|
257
|
+
statusCode: _response.error.statusCode,
|
|
258
|
+
body: _response.error.body,
|
|
259
|
+
rawResponse: _response.rawResponse,
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/{id}/result");
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Retrieves a specific result file of a service execution.
|
|
268
|
+
* The file name is provided in the path parameter.
|
|
269
|
+
* The result file is returned as a binary stream.
|
|
270
|
+
*/
|
|
271
|
+
public getResultFile(
|
|
272
|
+
request: HubService.GetResultFileRequest,
|
|
273
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
274
|
+
): core.HttpResponsePromise<core.BinaryResponse> {
|
|
275
|
+
return core.HttpResponsePromise.fromPromise(this.__getResultFile(request, requestOptions));
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
private async __getResultFile(
|
|
279
|
+
request: HubService.GetResultFileRequest,
|
|
280
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
281
|
+
): Promise<core.WithRawResponse<core.BinaryResponse>> {
|
|
282
|
+
const { id, file } = request;
|
|
283
|
+
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
|
|
284
|
+
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
|
|
285
|
+
_authRequest.headers,
|
|
286
|
+
this._options?.headers,
|
|
287
|
+
requestOptions?.headers,
|
|
288
|
+
);
|
|
289
|
+
const _response = await core.fetcher<core.BinaryResponse>({
|
|
290
|
+
url: core.url.join(
|
|
291
|
+
(await core.Supplier.get(this._options.baseUrl)) ??
|
|
292
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
293
|
+
environments.HubServiceEnvironment.Default,
|
|
294
|
+
`${core.url.encodePathParam(id)}/result/${core.url.encodePathParam(file)}`,
|
|
295
|
+
),
|
|
296
|
+
method: "GET",
|
|
297
|
+
headers: _headers,
|
|
298
|
+
queryParameters: requestOptions?.queryParams,
|
|
299
|
+
responseType: "binary-response",
|
|
300
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
301
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
302
|
+
withCredentials: true,
|
|
303
|
+
abortSignal: requestOptions?.abortSignal,
|
|
304
|
+
fetchFn: this._options?.fetch,
|
|
305
|
+
logging: this._options.logging,
|
|
306
|
+
});
|
|
307
|
+
if (_response.ok) {
|
|
308
|
+
return { data: _response.body, rawResponse: _response.rawResponse };
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
if (_response.error.reason === "status-code") {
|
|
312
|
+
throw new errors.HubServiceError({
|
|
313
|
+
statusCode: _response.error.statusCode,
|
|
314
|
+
body: _response.error.body,
|
|
315
|
+
rawResponse: _response.rawResponse,
|
|
316
|
+
});
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/{id}/result/{file}");
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Returns a list of log entries for a service execution in chronological order, where the first entry is the oldest.
|
|
324
|
+
*
|
|
325
|
+
* @param {HubService.GetLogsRequest} request
|
|
326
|
+
* @param {ServiceApiClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
327
|
+
*
|
|
328
|
+
* @example
|
|
329
|
+
* await client.serviceApi.getLogs({
|
|
330
|
+
* id: "id"
|
|
331
|
+
* })
|
|
332
|
+
*/
|
|
333
|
+
public getLogs(
|
|
334
|
+
request: HubService.GetLogsRequest,
|
|
335
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
336
|
+
): core.HttpResponsePromise<HubService.LogEntry[]> {
|
|
337
|
+
return core.HttpResponsePromise.fromPromise(this.__getLogs(request, requestOptions));
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
private async __getLogs(
|
|
341
|
+
request: HubService.GetLogsRequest,
|
|
342
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
343
|
+
): Promise<core.WithRawResponse<HubService.LogEntry[]>> {
|
|
344
|
+
const { id } = request;
|
|
345
|
+
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
|
|
346
|
+
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
|
|
347
|
+
_authRequest.headers,
|
|
348
|
+
this._options?.headers,
|
|
349
|
+
requestOptions?.headers,
|
|
350
|
+
);
|
|
351
|
+
const _response = await core.fetcher({
|
|
352
|
+
url: core.url.join(
|
|
353
|
+
(await core.Supplier.get(this._options.baseUrl)) ??
|
|
354
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
355
|
+
environments.HubServiceEnvironment.Default,
|
|
356
|
+
`${core.url.encodePathParam(id)}/log`,
|
|
357
|
+
),
|
|
358
|
+
method: "GET",
|
|
359
|
+
headers: _headers,
|
|
360
|
+
queryParameters: requestOptions?.queryParams,
|
|
361
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
362
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
363
|
+
withCredentials: true,
|
|
364
|
+
abortSignal: requestOptions?.abortSignal,
|
|
365
|
+
fetchFn: this._options?.fetch,
|
|
366
|
+
logging: this._options.logging,
|
|
367
|
+
});
|
|
368
|
+
if (_response.ok) {
|
|
369
|
+
return { data: _response.body as HubService.LogEntry[], rawResponse: _response.rawResponse };
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
if (_response.error.reason === "status-code") {
|
|
373
|
+
throw new errors.HubServiceError({
|
|
374
|
+
statusCode: _response.error.statusCode,
|
|
375
|
+
body: _response.error.body,
|
|
376
|
+
rawResponse: _response.rawResponse,
|
|
377
|
+
});
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/{id}/log");
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
/**
|
|
384
|
+
* Cancel a pending or running service execution.
|
|
385
|
+
*
|
|
386
|
+
* @param {HubService.CancelExecutionRequest} request
|
|
387
|
+
* @param {ServiceApiClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
388
|
+
*
|
|
389
|
+
* @example
|
|
390
|
+
* await client.serviceApi.cancelExecution({
|
|
391
|
+
* id: "id"
|
|
392
|
+
* })
|
|
393
|
+
*/
|
|
394
|
+
public cancelExecution(
|
|
395
|
+
request: HubService.CancelExecutionRequest,
|
|
396
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
397
|
+
): core.HttpResponsePromise<HubService.ServiceExecution> {
|
|
398
|
+
return core.HttpResponsePromise.fromPromise(this.__cancelExecution(request, requestOptions));
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
private async __cancelExecution(
|
|
402
|
+
request: HubService.CancelExecutionRequest,
|
|
403
|
+
requestOptions?: ServiceApiClient.RequestOptions,
|
|
404
|
+
): Promise<core.WithRawResponse<HubService.ServiceExecution>> {
|
|
405
|
+
const { id } = request;
|
|
406
|
+
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
|
|
407
|
+
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
|
|
408
|
+
_authRequest.headers,
|
|
409
|
+
this._options?.headers,
|
|
410
|
+
requestOptions?.headers,
|
|
411
|
+
);
|
|
412
|
+
const _response = await core.fetcher({
|
|
413
|
+
url: core.url.join(
|
|
414
|
+
(await core.Supplier.get(this._options.baseUrl)) ??
|
|
415
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
416
|
+
environments.HubServiceEnvironment.Default,
|
|
417
|
+
`${core.url.encodePathParam(id)}/cancel`,
|
|
418
|
+
),
|
|
419
|
+
method: "PUT",
|
|
420
|
+
headers: _headers,
|
|
421
|
+
queryParameters: requestOptions?.queryParams,
|
|
422
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
423
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
424
|
+
withCredentials: true,
|
|
425
|
+
abortSignal: requestOptions?.abortSignal,
|
|
426
|
+
fetchFn: this._options?.fetch,
|
|
427
|
+
logging: this._options.logging,
|
|
428
|
+
});
|
|
429
|
+
if (_response.ok) {
|
|
430
|
+
return { data: _response.body as HubService.ServiceExecution, rawResponse: _response.rawResponse };
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
if (_response.error.reason === "status-code") {
|
|
434
|
+
throw new errors.HubServiceError({
|
|
435
|
+
statusCode: _response.error.statusCode,
|
|
436
|
+
body: _response.error.body,
|
|
437
|
+
rawResponse: _response.rawResponse,
|
|
438
|
+
});
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
return handleNonStatusCodeError(_response.error, _response.rawResponse, "PUT", "/{id}/cancel");
|
|
442
|
+
}
|
|
443
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./requests/index.js";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export type { CancelExecutionRequest } from "./CancelExecutionRequest.js";
|
|
2
|
+
export type { GetLogsRequest } from "./GetLogsRequest.js";
|
|
3
|
+
export type { GetResultFileRequest } from "./GetResultFileRequest.js";
|
|
4
|
+
export type { GetResultRequest } from "./GetResultRequest.js";
|
|
5
|
+
export type { GetStatusRequest } from "./GetStatusRequest.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./client/index.js";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
export interface HalLink {
|
|
4
|
+
/** The URL of the link */
|
|
5
|
+
href?: string | undefined;
|
|
6
|
+
/** Whether the link is templated (optional) */
|
|
7
|
+
templated?: boolean | undefined;
|
|
8
|
+
/** The media type of the link (optional) */
|
|
9
|
+
type?: string | undefined;
|
|
10
|
+
/** A URL that provides further information about the deprecation of the link (optional) */
|
|
11
|
+
deprecation?: string | undefined;
|
|
12
|
+
/** The name of the link (optional) */
|
|
13
|
+
name?: string | undefined;
|
|
14
|
+
/** A URL that provides further information about the profile of the link (optional) */
|
|
15
|
+
profile?: string | undefined;
|
|
16
|
+
/** The title of the link (optional) */
|
|
17
|
+
title?: string | undefined;
|
|
18
|
+
/** The language of the link's target resource (optional) */
|
|
19
|
+
hreflang?: string | undefined;
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
export interface LogEntry {
|
|
4
|
+
/** Log message content. */
|
|
5
|
+
message?: string | undefined;
|
|
6
|
+
/** Severity of the log entry. */
|
|
7
|
+
severity?: LogEntry.Severity | undefined;
|
|
8
|
+
/** Timestamp when the entry was logged. */
|
|
9
|
+
timestamp?: string | undefined;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export namespace LogEntry {
|
|
13
|
+
/** Severity of the log entry. */
|
|
14
|
+
export const Severity = {
|
|
15
|
+
Debug: "DEBUG",
|
|
16
|
+
Notice: "NOTICE",
|
|
17
|
+
Info: "INFO",
|
|
18
|
+
Warning: "WARNING",
|
|
19
|
+
Error: "ERROR",
|
|
20
|
+
} as const;
|
|
21
|
+
export type Severity = (typeof Severity)[keyof typeof Severity];
|
|
22
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import type * as HubService from "../index.js";
|
|
4
|
+
|
|
5
|
+
export interface ResultResponse {
|
|
6
|
+
_links?: ResultResponse.Links | undefined;
|
|
7
|
+
_embedded?: ResultResponse.Embedded | undefined;
|
|
8
|
+
/** Accepts any additional properties */
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export namespace ResultResponse {
|
|
13
|
+
export interface Links {
|
|
14
|
+
status?: HubService.HalLink | undefined;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface Embedded {
|
|
18
|
+
status?: HubService.ServiceExecution | undefined;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
export interface ServiceExecution {
|
|
4
|
+
/** Unique identifier of the service execution. */
|
|
5
|
+
id?: string | undefined;
|
|
6
|
+
/** Timestamp when the service execution was created. */
|
|
7
|
+
createdAt?: string | undefined;
|
|
8
|
+
/** Timestamp when the service execution started. */
|
|
9
|
+
startedAt?: string | undefined;
|
|
10
|
+
/** Timestamp when the service execution ended. */
|
|
11
|
+
endedAt?: string | undefined;
|
|
12
|
+
/** Status of the service execution. */
|
|
13
|
+
status?: ServiceExecution.Status | undefined;
|
|
14
|
+
/** Type identifier indicating whether the underlying service is a 'managed' or 'workflow' service. */
|
|
15
|
+
type?: ServiceExecution.Type | undefined;
|
|
16
|
+
/** The ID of the service for which this service execution was created. */
|
|
17
|
+
serviceId?: string | undefined;
|
|
18
|
+
/** The ID of the service definition for which this service execution was created. */
|
|
19
|
+
serviceDefinitionId?: string | undefined;
|
|
20
|
+
/** The ID of the application for which this service execution was created. */
|
|
21
|
+
applicationId?: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export namespace ServiceExecution {
|
|
25
|
+
/** Status of the service execution. */
|
|
26
|
+
export const Status = {
|
|
27
|
+
Unknown: "UNKNOWN",
|
|
28
|
+
Pending: "PENDING",
|
|
29
|
+
Running: "RUNNING",
|
|
30
|
+
Succeeded: "SUCCEEDED",
|
|
31
|
+
Cancelled: "CANCELLED",
|
|
32
|
+
Failed: "FAILED",
|
|
33
|
+
} as const;
|
|
34
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
35
|
+
/** Type identifier indicating whether the underlying service is a 'managed' or 'workflow' service. */
|
|
36
|
+
export const Type = {
|
|
37
|
+
Managed: "MANAGED",
|
|
38
|
+
Workflow: "WORKFLOW",
|
|
39
|
+
} as const;
|
|
40
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
41
|
+
}
|