models

package
v0.0.0-...-d620259 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 28, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Application

type Application struct {
	gorm.Model
	Name         string
	DisplayName  string
	Version      string
	Source       string
	Status       string
	DeploymentID uint
	PackageName  string
	Deployment   Deployment `gorm:"foreignKey:DeploymentID"`
}

type Audit

type Audit struct {
	gorm.Model
	Operation string `gorm:"index"`
	Owner     string
}

type CoreConfig

type CoreConfig struct {
	gorm.Model
	ID    uint   `gorm:"primarykey" json:"id"`
	Key   string `gorm:"index;unique" json:"key"`
	Value string `json:"value"`
	Owner string `json:"owner"`
}

type Deployment

type Deployment struct {
	gorm.Model
	Name         string
	Applications []Application `gorm:"foreignKey:DeploymentID;references:ID"`
	Creator      string
	CreationDate time.Time
}

type SSMParameters

type SSMParameters struct {
	gorm.Model
	Key   string `gorm:"index;unique"`
	Value string
	Type  string
	Owner string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL