View Source Ash.Resource.Actions.Create (ash v2.9.11)

Represents a create action on a resource.

Link to this section Summary

Link to this section Types

@type t() :: %Ash.Resource.Actions.Create{
  accept: [atom()],
  allow_nil_input: [atom()],
  arguments: [Ash.Resource.Actions.Argument.t()],
  changes: term(),
  delay_global_validations?: boolean(),
  description: String.t() | nil,
  error_handler: term(),
  manual: module() | nil,
  manual?: term(),
  metadata: term(),
  name: atom(),
  primary?: boolean(),
  reject: term(),
  require_attributes: term(),
  skip_global_validations?: boolean(),
  touches_resources: [atom()],
  transaction?: term(),
  type: :create,
  upsert?: boolean(),
  upsert_fields: nil | [atom()],
  upsert_identity: atom() | nil
}