25 lines
539 B
Go
25 lines
539 B
Go
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
|
|
}
|