OpenApiTypesense.Keys (OpenApiTypesense v0.6.5)

View Source

Provides API endpoints related to keys

Summary

Functions

Create an API Key

Either one of

Delete an API key given its ID.

Either one of

Retrieve (metadata about) a key

Either one of

Retrieve (metadata about) all keys.

Either one of

Either one of

Functions

create_key(body)

@spec create_key(map()) ::
  {:ok, OpenApiTypesense.ApiKey.t()}
  | {:error, OpenApiTypesense.ApiResponse.t()}

Create an API Key

Create an API Key with fine-grain access control. You can restrict access on both a per-collection and per-action level. The generated key is returned only during creation. You want to store this key carefully in a secure place.

create_key(body, opts)

Either one of:

  • create_key(payload, opts)
  • create_key(%{api_key: xyz, host: ...}, payload)
  • create_key(Connection.new(), payload)

create_key(conn, body, opts)

Either one of:

  • create_key(%{api_key: xyz, host: ...}, payload, opts)
  • create_key(Connection.new(), payload, opts)

delete_key(keyId)

Delete an API key given its ID.

delete_key(keyId, opts)

Either one of:

  • delete_key(keyId, opts)
  • delete_key(%{api_key: xyz, host: ...}, keyId)
  • delete_key(Connection.new(), keyId)

delete_key(conn, keyId, opts)

Either one of:

  • delete_key(%{api_key: xyz, host: ...}, keyId, opts)
  • delete_key(Connection.new(), keyId, opts)

get_key(keyId)

@spec get_key(integer()) ::
  {:ok, OpenApiTypesense.ApiKey.t()}
  | {:error, OpenApiTypesense.ApiResponse.t()}

Retrieve (metadata about) a key

Retrieve (metadata about) a key. Only the key prefix is returned when you retrieve a key. Due to security reasons, only the create endpoint returns the full API key.

get_key(keyId, opts)

Either one of:

  • get_key(keyId, opts)
  • get_key(%{api_key: xyz, host: ...}, keyId)
  • get_key(Connection.new(), keyId)

get_key(conn, keyId, opts)

Either one of:

  • get_key(%{api_key: xyz, host: ...}, keyId, opts)
  • get_key(Connection.new(), keyId, opts)

get_keys()

@spec get_keys() :: {:ok, OpenApiTypesense.ApiKeysResponse.t()} | :error

Retrieve (metadata about) all keys.

get_keys(opts)

@spec get_keys(map() | OpenApiTypesense.Connection.t() | keyword()) ::
  {:ok, OpenApiTypesense.ApiKeysResponse.t()} | :error

Either one of:

  • get_keys(opts)
  • get_keys(%{api_key: xyz, host: ...})
  • get_keys(Connection.new())

get_keys(conn, opts)

@spec get_keys(
  map() | OpenApiTypesense.Connection.t(),
  keyword()
) :: {:ok, OpenApiTypesense.ApiKeysResponse.t()} | :error

Either one of:

  • get_keys(%{api_key: xyz, host: ...}, opts)
  • get_keys(Connection.new(), opts)