infos.go 696 B

12345678910111213141516171819202122232425262728293031
  1. package client
  2. type TokenInfo struct {
  3. Name string `json:"name"`
  4. }
  5. type NamespaceInfo struct {
  6. Name string `json:"name"`
  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. }
  14. type DataContainerInfo struct {
  15. Namespace string `json:"namespace"`
  16. DataSource string `json:"dataSource"`
  17. Name string `json:"name"`
  18. Spec string `json:"spec"`
  19. }
  20. type ExecuteSqlLogInfo struct {
  21. Namespace string `json:"namespace"`
  22. DataSource string `json:"dataSource"`
  23. SQL string `json:"sql"`
  24. Executor string `json:"executor"`
  25. ExecuteTime string `json:"executeTime"`
  26. }