123456789101112131415161718192021222324252627282930313233343536373839 |
- package client
- type TokenInfo struct {
- Name string `json:"name"`
- }
- type NamespaceInfo struct {
- ID string `json:"id"`
- Name string `json:"name"`
- Creator string `json:"creator"`
- CreatedTime string `json:"createdTime"`
- }
- type DataSourceInfo struct {
- Namespace string `json:"namespace"`
- Name string `json:"name"`
- Type string `json:"type"`
- Spec string `json:"spec"`
- Creator string `json:"creator"`
- CreatedTime string `json:"createdTime"`
- }
- type DataContainerInfo struct {
- Namespace string `json:"namespace"`
- DataSource string `json:"dataSource"`
- Name string `json:"name"`
- Spec string `json:"spec"`
- Creator string `json:"creator"`
- CreatedTime string `json:"createdTime"`
- }
- type SqlInfo struct {
- Namespace string `json:"namespace"`
- DataSource string `json:"dataSource"`
- Name string `json:"name"`
- Spec string `json:"spec"`
- Creator string `json:"creator"`
- CreatedTime string `json:"createdTime"`
- }
|