qcs_api_client.api.endpoints.get_default_endpoint#

Module Contents#

Functions#

sync(...)

Get Default Endpoint

sync_from_dict(...)

asyncio(...)

Get Default Endpoint

asyncio_from_dict(...)

qcs_api_client.api.endpoints.get_default_endpoint.sync(quantum_processor_id: str, *, client: httpx.Client, httpx_request_kwargs: Dict[str, Any] = {}) qcs_api_client.types.Response[qcs_api_client.models.endpoint.Endpoint]#

Get Default Endpoint

Retrieve the endpoint set as “default” for the given Quantum Processor.

If no endpoint is set as the default, return “not found.”

Parameters

quantum_processor_id (str) – Public identifier for a quantum processor [example: Aspen-1]

Returns

Response[Endpoint]

qcs_api_client.api.endpoints.get_default_endpoint.sync_from_dict(quantum_processor_id: str, *, client: httpx.Client, httpx_request_kwargs: Dict[str, Any] = {}) qcs_api_client.types.Response[qcs_api_client.models.endpoint.Endpoint]#
async qcs_api_client.api.endpoints.get_default_endpoint.asyncio(quantum_processor_id: str, *, client: httpx.AsyncClient, httpx_request_kwargs: Dict[str, Any] = {}) qcs_api_client.types.Response[qcs_api_client.models.endpoint.Endpoint]#

Get Default Endpoint

Retrieve the endpoint set as “default” for the given Quantum Processor.

If no endpoint is set as the default, return “not found.”

Parameters

quantum_processor_id (str) – Public identifier for a quantum processor [example: Aspen-1]

Returns

Response[Endpoint]

async qcs_api_client.api.endpoints.get_default_endpoint.asyncio_from_dict(quantum_processor_id: str, *, client: httpx.AsyncClient, httpx_request_kwargs: Dict[str, Any] = {}) qcs_api_client.types.Response[qcs_api_client.models.endpoint.Endpoint]#