cyphermed.api.well_known.get_jwks

def sync_detailed( *, client: Union[cyphermed.client.AuthenticatedClient, cyphermed.client.Client]) -> cyphermed.types.Response[cyphermed.models.jwks.Jwks]:

Get Jwks

Get the public keys for verifying JWT signatures, per RFC 5785

Raises: errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns: Response[Jwks]

def sync( *, client: Union[cyphermed.client.AuthenticatedClient, cyphermed.client.Client]) -> Optional[cyphermed.models.jwks.Jwks]:

Get Jwks

Get the public keys for verifying JWT signatures, per RFC 5785

Raises: errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns: Jwks

async def asyncio_detailed( *, client: Union[cyphermed.client.AuthenticatedClient, cyphermed.client.Client]) -> cyphermed.types.Response[cyphermed.models.jwks.Jwks]:

Get Jwks

Get the public keys for verifying JWT signatures, per RFC 5785

Raises: errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns: Response[Jwks]

async def asyncio( *, client: Union[cyphermed.client.AuthenticatedClient, cyphermed.client.Client]) -> Optional[cyphermed.models.jwks.Jwks]:

Get Jwks

Get the public keys for verifying JWT signatures, per RFC 5785

Raises: errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns: Jwks