Msdata.SystInstanceTypeApplications (mscmp_syst_instance v0.1.0)
Associates SystApplications to SystInstanceTypes.
The idea expressed here is that an Instance Type may support only a subset of the Applications known to the system.
Defined in MscmpSystInstance.
Summary
Functions
Creates a changeset for inserting a new Instance Type Application record.
Types
@type t() :: %Msdata.SystInstanceTypeApplications{ __meta__: Ecto.Schema.Metadata.t(), application: Msdata.SystApplications.t() | Ecto.Association.NotLoaded.t() | nil, application_id: Ecto.UUID.t() | nil, diag_role_created: String.t() | nil, diag_role_modified: String.t() | nil, diag_row_version: integer() | nil, diag_timestamp_created: DateTime.t() | nil, diag_timestamp_modified: DateTime.t() | nil, diag_update_count: integer() | nil, diag_wallclock_modified: DateTime.t() | nil, id: Ecto.UUID.t() | nil, instance_type: Msdata.SystEnumItems.t() | Ecto.Association.NotLoaded.t() | nil, instance_type_contexts: Msdata.SystInstanceTypeContexts.t() | Ecto.Association.NotLoaded.t() | nil, instance_type_id: Ecto.UUID.t() | nil }
Functions
@spec insert_changeset(MscmpSystInstance.Types.instance_type_application_params()) :: Ecto.Changeset.t()
Creates a changeset for inserting a new Instance Type Application record.
This function validates the provided parameters and prepares them for insertion into the database.
Parameters
insert_params: A map containing the parameters for creating a new Instance Type Application.
Returns
Returns an Ecto.Changeset.t/0 struct representing the changeset for the
new Instance Type Application.