mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-13 16:00:12 -04:00
10 lines
317 B
Go
10 lines
317 B
Go
package controlexecute
|
|
|
|
// Dimension is a struct representing an attribute returned by a control run.
|
|
// An attribute is stored as a dimension if it's not a standard attribute (reason, resource, status).
|
|
type Dimension struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
SqlType string `json:"-"`
|
|
}
|