OpenStax.Keystone v1.0.0 OpenStax.Keystone.Endpoint.Config View Source

This module is responsible for storing configuration of a single Keystone endpoint.

Link to this section Summary

Link to this section Types

Link to this type auth_token_t() View Source
auth_token_t() :: String.t()
Link to this type endpoint_url_t() View Source
endpoint_url_t() :: String.t()
Link to this type expires_t() View Source
expires_t() :: DateTime.t() | nil
Link to this type password_t() View Source
password_t() :: String.t()
Link to this type t() View Source
t() :: %OpenStax.Keystone.Endpoint.Config{
  auth_token: auth_token_t() | nil,
  endpoint_url: endpoint_url_t(),
  expires: expires_t(),
  password: password_t() | nil,
  tenant_id: tenant_id_t() | nil,
  tenant_name: tenant_name_t() | nil,
  token: token_t() | nil,
  username: username_t() | nil
}
Link to this type tenant_id_t() View Source
tenant_id_t() :: String.t()
Link to this type tenant_name_t() View Source
tenant_name_t() :: String.t()
Link to this type username_t() View Source
username_t() :: String.t()