github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/dws/v2/flavors/results.go (about) 1 package flavors 2 3 type NodeTypes struct { 4 NodeTypes []NodeType `json:"node_types"` 5 } 6 7 type NodeType struct { 8 Detail []TypeDetail `json:"detail"` 9 Id string `json:"id"` 10 SpecName string `json:"spec_name"` 11 } 12 13 type TypeDetail struct { 14 Unit string `json:"unit"` 15 Type string `json:"type"` 16 Value string `json:"value"` 17 }