-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetadata.go
35 lines (30 loc) · 1.13 KB
/
metadata.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package tileinspect
//go:generate counterfeiter MetadataCmd
type MetadataCmd interface {
LoadMetadata(target interface{}) error
}
type TileProperty struct {
Name string `json:"name"`
Type string `json:"type"`
Configurable bool `json:"configurable"`
Default interface{} `json:"default"`
Optional bool `json:"optional"`
Options []Option
ChildProperties []TileProperties `json:"option_templates"`
PropertyBlueprints []TileProperty `json:"property_blueprints"`
}
type JobType struct {
Name string `json:"name"`
PropertyBlueprints []TileProperty `json:"property_blueprints"`
}
type TileProperties struct {
Name string `json:"name"`
PropertyBlueprints []TileProperty `json:"property_blueprints"`
SelectValue string `json:"select_value"`
StemcellCriteria map[string]interface{} `json:"stemcell_criteria"`
JobTypes []JobType `json:"job_types"`
}
type Option struct {
Name interface{} `json:"name"`
Label interface{} `json:"label"`
}