github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/steampipeconfig/cloud_metadata.go (about)

     1  package steampipeconfig
     2  
     3  type CloudMetadata struct {
     4  	Actor             *ActorMetadata     `json:"actor,omitempty"`
     5  	Identity          *IdentityMetadata  `json:"identity,omitempty"`
     6  	WorkspaceDatabase *WorkspaceMetadata `json:"workspace,omitempty"`
     7  	ConnectionString  string             `json:"-"`
     8  }
     9  
    10  type ActorMetadata struct {
    11  	Id     string `json:"id,omitempty"`
    12  	Handle string `json:"handle,omitempty"`
    13  }
    14  
    15  type IdentityMetadata struct {
    16  	Id     string `json:"id,omitempty"`
    17  	Handle string `json:"handle,omitempty"`
    18  	Type   string `json:"type,omitempty"`
    19  }
    20  
    21  type WorkspaceMetadata struct {
    22  	Id     string `json:"id,omitempty"`
    23  	Handle string `json:"handle,omitempty"`
    24  }