qcs_api_client.api.endpoints.create_endpoint#

Module Contents#

Functions#

sync(...)

Create Endpoint

sync_from_dict(...)

asyncio(...)

Create Endpoint

asyncio_from_dict(...)

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

Create Endpoint

Create an endpoint associated with your user account.

Parameters

json_body (CreateEndpointParameters) – A publicly available set of parameters for defining an endpoint.

Returns

Response[Endpoint]

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

Create Endpoint

Create an endpoint associated with your user account.

Parameters

json_body (CreateEndpointParameters) – A publicly available set of parameters for defining an endpoint.

Returns

Response[Endpoint]

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