mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-05 11:00:35 -05:00
25 lines
673 B
Go
25 lines
673 B
Go
package steampipeconfig
|
|
|
|
type CloudMetadata struct {
|
|
Actor *ActorMetadata `json:"actor,omitempty"`
|
|
Identity *IdentityMetadata `json:"identity,omitempty"`
|
|
WorkspaceDatabase *WorkspaceMetadata `json:"workspace,omitempty"`
|
|
ConnectionString string `json:"-"`
|
|
}
|
|
|
|
type ActorMetadata struct {
|
|
Id string `json:"id,omitempty"`
|
|
Handle string `json:"handle,omitempty"`
|
|
}
|
|
|
|
type IdentityMetadata struct {
|
|
Id string `json:"id,omitempty"`
|
|
Handle string `json:"handle,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
}
|
|
|
|
type WorkspaceMetadata struct {
|
|
Id string `json:"id,omitempty"`
|
|
Handle string `json:"handle,omitempty"`
|
|
}
|