lib/types/cluster.go

25 lines
539 B
Go
Raw Permalink Normal View History

2021-01-10 18:40:46 +00:00
package types
import "database/sql"
// Cluster is a first class object type
type Cluster struct {
ID string
CreatedByID string
CreatedDate sql.NullTime
Description string
Environment string
Gateway string
IPAddress string
LastModifiedByID string
LastModifiedDate sql.NullTime
Name string
OwnerID string
Ref string
Status string
Subnet string
TenantID string
Type string
Zone string
}