Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BaseModel ¶
type BaseModel struct { ID int64 `json:"id" gorm:"primary_key"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` }
BaseModel common info for all models
type Cluster ¶
type Cluster struct { BaseModel OrgID int64 Name string DisplayName string CloudVendor string Description string Type string Logo string WildcardDomain string SchedulerConfig string `gorm:"column:scheduler;type:text"` OpsConfig string `gorm:"column:opsconfig;type:text"` ManageConfig string `gorm:"column:manage_config;type:text"` SysConfig string `gorm:"column:sys;type:text"` // Deprecated URLs string `gorm:"type:text"` }
Cluster cluster model
Click to show internal directories.
Click to hide internal directories.