Versions in this module Expand all Collapse all v1 v1.0.1 Jan 21, 2026 v1.0.0 Jan 21, 2026 Changes in this version + type DBTX interface + ExecContext func(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext func(context.Context, string) (*sql.Stmt, error) + QueryContext func(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext func(context.Context, string, ...interface{}) *sql.Row + type DeleteIngestedFilesByEnvironmentParams struct + EnvironmentName string + EnvironmentType string + type Docker struct + ApiPort int64 + ApiUrl string + BackofficePort int64 + BackofficeUrl string + Directory string + GuiPort int64 + GuiUrl string + Name string + type GetIngestedFilesByEnvironmentParams struct + EnvironmentName string + EnvironmentType string + type GetIngestedFilesByEnvironmentRow struct + FilePath string + IngestedAt *time.Time + type IngestedFile struct + EnvironmentName string + EnvironmentType string + FilePath string + IngestedAt *time.Time + type InsertDockerParams struct + ApiPort int64 + ApiUrl string + BackofficePort int64 + BackofficeUrl string + Directory string + GuiPort int64 + GuiUrl string + Name string + type InsertIngestedFileParams struct + EnvironmentName string + EnvironmentType string + FilePath string + type InsertK8sParams struct + ApiUrl string + BackofficeUrl string + Context string + Directory string + GuiUrl string + Name string + Protocol string + TlsEnabled bool + type K8s struct + ApiUrl string + BackofficeUrl string + Context string + Directory string + GuiUrl string + Name string + Protocol string + TlsEnabled bool + type LatestReleaseCache struct + FetchedAt *time.Time + ID int64 + TagName string + type Queries struct + func New(db DBTX) *Queries + func (q *Queries) DeleteDocker(ctx context.Context, name string) error + func (q *Queries) DeleteIngestedFilesByEnvironment(ctx context.Context, arg DeleteIngestedFilesByEnvironmentParams) error + func (q *Queries) DeleteK8s(ctx context.Context, name string) error + func (q *Queries) GetAllDocker(ctx context.Context) ([]Docker, error) + func (q *Queries) GetAllK8s(ctx context.Context) ([]K8s, error) + func (q *Queries) GetDockerByName(ctx context.Context, name string) (Docker, error) + func (q *Queries) GetIngestedFilesByEnvironment(ctx context.Context, arg GetIngestedFilesByEnvironmentParams) ([]GetIngestedFilesByEnvironmentRow, error) + func (q *Queries) GetK8sByName(ctx context.Context, name string) (K8s, error) + func (q *Queries) GetLatestReleaseCache(ctx context.Context) (LatestReleaseCache, error) + func (q *Queries) InsertDocker(ctx context.Context, arg InsertDockerParams) (Docker, error) + func (q *Queries) InsertIngestedFile(ctx context.Context, arg InsertIngestedFileParams) error + func (q *Queries) InsertK8s(ctx context.Context, arg InsertK8sParams) (K8s, error) + func (q *Queries) UpsertLatestReleaseCache(ctx context.Context, arg UpsertLatestReleaseCacheParams) error + func (q *Queries) WithTx(tx *sql.Tx) *Queries + type UpsertLatestReleaseCacheParams struct + FetchedAt *time.Time + TagName string