Noizu.Weaviate.Api.Auth (Noizu Weaviate v0.1.1)
Functions for authentication in the Weaviate API.
Summary
Functions
Check if the Weaviate application is alive.
Check if the Weaviate application is ready to receive traffic.
Get the OpenID configuration in Weaviate.
Functions
check_liveness(options \\ nil)
Check if the Weaviate application is alive.
Returns
A tuple {:ok, response}
on successful API call, where response
is the API response.
Returns {:error, term}
on failure, where term
contains error details.
Examples
{:ok, response} = Noizu.Weaviate.Api.Auth.check_liveness()
check_readiness(options \\ nil)
Check if the Weaviate application is ready to receive traffic.
Returns
A tuple {:ok, response}
on successful API call, where response
is the API response.
Returns {:error, term}
on failure, where term
contains error details.
Examples
{:ok, response} = Noizu.Weaviate.Api.Auth.check_readiness()
get_openid_configuration(options \\ nil)
Get the OpenID configuration in Weaviate.
Returns
A tuple {:ok, response}
on successful API call, where response
is the API response.
Returns {:error, term}
on failure, where term
contains error details.
Examples
{:ok, response} = Noizu.Weaviate.Api.Auth.get_openid_configuration()