You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
530 B
32 lines
530 B
package computeci
|
|
|
|
// Main information about computeci
|
|
type ItemComputeCI struct {
|
|
// Custom fields
|
|
CustomFields map[string]interface{} `json:"customFields"`
|
|
|
|
// Description
|
|
Description string `json:"desc"`
|
|
|
|
// List drivers
|
|
Drivers []string `json:"drivers"`
|
|
|
|
// GUID
|
|
GUID uint64 `json:"guid"`
|
|
|
|
// ID
|
|
ID uint64 `json:"id"`
|
|
|
|
// Name
|
|
Name string `json:"name"`
|
|
|
|
// Status
|
|
Status string `json:"status"`
|
|
|
|
// Template
|
|
Template string `json:"template"`
|
|
}
|
|
|
|
// List of computeci instances
|
|
type ListComputeCI []ItemComputeCI
|