models更新

Signed-off-by: devad <cossjie@foxmail.com>

Former-commit-id: 5fa964122f55b8bf80ca4f794e12bac9266cfd5d
This commit is contained in:
devad 2023-11-23 19:45:24 +08:00
parent 94a73f6517
commit 3a999dc5d8
4 changed files with 38 additions and 14 deletions

View File

@ -27,10 +27,10 @@ type (
MetricsUrl string `json:"metricsUrl"` //监控url
}
ListCloudResp{
ListParticipantResp {
Code string `json:"code"`
Msg string `json:"msg"`
Data []CloudResp `json:"data"`
Data []ParticipantResp `json:"data"`
}
ParticipantResp {
@ -49,9 +49,21 @@ type (
Data string `json:"data"`
}
TenantInfo {
Id int64 `json:"id"` // id
TenantName string `json:"tenantName"` // 租户名称
TenantDesc string `json:"tenantDesc"` // 描述信息
Clusters string `json:"clusters"` // 集群名称,用","分割
Type int64 `json:"type"` // 租户所属(0数算1超算2智算
DeletedFlag int64 `json:"deletedFlag"` // 是否删除
CreatedBy int64 `json:"createdBy"` // 创建人
CreatedTime string `json:"createdTime"` // 创建时间
UpdatedBy int64 `json:"updatedBy"` // 更新人
UpdatedTime string `json:"updated_time"` // 更新时间
}
UpdateTenantReq{
TenantName string `json:"nsID"`
clusters []string `json:"clusters"`
Tenants [] TenantInfo `json:"tenants"`
}
)

View File

@ -154,15 +154,15 @@ service pcm {
@handler deleteClusterHandler
post /cloud/deleteCluster (RegisterClusterReq) returns (CloudResp)
@doc "数算集群查询"
@doc "数算集群信息查询"
@handler listCloudClusterHandler
get /cloud/listCluster returns (ListCloudResp)
get /cloud/listCluster returns (ListParticipantResp)
@doc "触发租户更新"
@handler noticeTenantHandler
get /cloud/noticeTenant returns (CloudResp)
@doc "触发租户更新"
@doc "租户更新"
@handler updateTenantHandler
post /cloud/updateTenant (UpdateTenantReq) returns (CloudResp)
}

View File

@ -23,7 +23,7 @@ func NewNoticeTenantLogic(ctx context.Context, svcCtx *svc.ServiceContext) *Noti
}
}
// NoticeTenant 通知租户更新数据
// NoticeTenant 通知更新租户数据
func (l *NoticeTenantLogic) NoticeTenant() (resp *types.CloudResp, err error) {
// todo: add your logic here and delete this line

View File

@ -3345,10 +3345,10 @@ type RegisterClusterReq struct {
MetricsUrl string `json:"metricsUrl"` //监控url
}
type ListCloudResp struct {
Code string `json:"code"`
Msg string `json:"msg"`
Data []CloudResp `json:"data"`
type ListParticipantResp struct {
Code string `json:"code"`
Msg string `json:"msg"`
Data []ParticipantResp `json:"data"`
}
type ParticipantResp struct {
@ -3367,9 +3367,21 @@ type CloudResp struct {
Data string `json:"data"`
}
type TenantInfo struct {
Id int64 `json:"id"` // id
TenantName string `json:"tenantName"` // 租户名称
TenantDesc string `json:"tenantDesc"` // 描述信息
Clusters string `json:"clusters"` // 集群名称,用","分割
Type int64 `json:"type"` // 租户所属(0数算1超算2智算
DeletedFlag int64 `json:"deletedFlag"` // 是否删除
CreatedBy int64 `json:"createdBy"` // 创建人
CreatedTime string `json:"createdTime"` // 创建时间
UpdatedBy int64 `json:"updatedBy"` // 更新人
UpdatedTime string `json:"updated_time"` // 更新时间
}
type UpdateTenantReq struct {
TenantName string `json:"nsID"`
Clusters []string `json:"clusters"`
Tenants []TenantInfo `json:"tenants"`
}
type ControllerMetricsResp struct {