infos.go 441 B

1234567891011121314151617
  1. package client
  2. type NamespaceInfo struct {
  3. ID string `json:"id"`
  4. Name string `json:"name"`
  5. Creator string `json:"creator"`
  6. CreatedTime string `json:"createdTime"`
  7. }
  8. type DataSourceInfo struct {
  9. Namespace string `json:"namespace"`
  10. Name string `json:"name"`
  11. Type string `json:"type"`
  12. Spec string `json:"spec"`
  13. Creator string `json:"creator"`
  14. CreatedTime string `json:"createdTime"`
  15. }