forked from JointCloud/pcm-coordinator
updated StopDeployInstance rpcs
This commit is contained in:
parent
c7632227ea
commit
739d039f21
|
@ -88,7 +88,8 @@ type (
|
|||
StartDeployInstanceReq {
|
||||
AdapterId string `form:"adapterId"`
|
||||
ClusterId string `form:"clusterId"`
|
||||
InstanceId string `form:"id"`
|
||||
Id string `form:"id"`
|
||||
InstanceId string `form:"instanceId"`
|
||||
}
|
||||
|
||||
StartDeployInstanceResp {
|
||||
|
@ -97,7 +98,8 @@ type (
|
|||
StopDeployInstanceReq {
|
||||
AdapterId string `form:"adapterId"`
|
||||
ClusterId string `form:"clusterId"`
|
||||
InstanceId string `form:"id"`
|
||||
Id string `form:"id"`
|
||||
InstanceId string `form:"instanceId"`
|
||||
}
|
||||
|
||||
StopDeployInstanceResp {
|
||||
|
|
|
@ -5980,7 +5980,8 @@ type DeployInstanceListResp struct {
|
|||
type StartDeployInstanceReq struct {
|
||||
AdapterId string `form:"adapterId"`
|
||||
ClusterId string `form:"clusterId"`
|
||||
InstanceId string `form:"id"`
|
||||
Id string `form:"id"`
|
||||
InstanceId string `form:"instanceId"`
|
||||
}
|
||||
|
||||
type StartDeployInstanceResp struct {
|
||||
|
@ -5989,7 +5990,8 @@ type StartDeployInstanceResp struct {
|
|||
type StopDeployInstanceReq struct {
|
||||
AdapterId string `form:"adapterId"`
|
||||
ClusterId string `form:"clusterId"`
|
||||
InstanceId string `form:"id"`
|
||||
Id string `form:"id"`
|
||||
InstanceId string `form:"instanceId"`
|
||||
}
|
||||
|
||||
type StopDeployInstanceResp struct {
|
||||
|
|
Loading…
Reference in New Issue