Lightning.Credentials.KeychainCredential (Lightning v2.14.5-pre1)

View Source

Keychain credentials allow jobs to automatically select different credentials based on data from the run's input dataclip using JSONPath expressions.

Summary

Types

t()

@type t() :: %Lightning.Credentials.KeychainCredential{
  __meta__: Ecto.Schema.Metadata.t(),
  created_by:
    Lightning.Accounts.User.t() | Ecto.Association.NotLoaded.t() | nil,
  created_by_id: term(),
  default_credential:
    Lightning.Credentials.Credential.t() | Ecto.Association.NotLoaded.t() | nil,
  default_credential_id: term(),
  id: Ecto.UUID.t() | nil,
  inserted_at: DateTime.t() | nil,
  name: String.t() | nil,
  path: String.t() | nil,
  project:
    Lightning.Projects.Project.t() | Ecto.Association.NotLoaded.t() | nil,
  project_id: term(),
  updated_at: DateTime.t() | nil
}