You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
package base_info
|
|
|
|
import "mime/multipart"
|
|
|
|
type MinioStorageCredentialReq struct {
|
|
OperationID string `json:"operationID"`
|
|
}
|
|
|
|
type MiniostorageCredentialResp struct {
|
|
SecretAccessKey string `json:"secretAccessKey"`
|
|
AccessKeyID string `json:"accessKeyID"`
|
|
SessionToken string `json:"sessionToken"`
|
|
BucketName string `json:"bucketName"`
|
|
StsEndpointURL string `json:"stsEndpointURL"`
|
|
}
|
|
|
|
type MinioUploadFileReq struct {
|
|
OperationID string `form:"operationID" binding:"required"`
|
|
FileType int `form:"fileType" binding:"required"`
|
|
}
|
|
|
|
type MinioUploadFileResp struct {
|
|
URL string `json:"URL"`
|
|
NewName string `json:"newName"`
|
|
SnapshotURL string `json:"snapshotURL,omitempty"`
|
|
SnapshotNewName string `json:"snapshotName,omitempty"`
|
|
}
|
|
|
|
type UploadUpdateAppReq struct {
|
|
OperationID string `form:"operationID" binding:"required"`
|
|
Type int `form:"type" binding:"required"`
|
|
Version string `form:"version" binding:"required"`
|
|
File *multipart.FileHeader `form:"file" binding:"required"`
|
|
Yaml *multipart.FileHeader `form:"yaml" binding:"required"`
|
|
ForceUpdate bool `form:"forceUpdate" binding:"required"`
|
|
}
|
|
|
|
type UploadUpdateAppResp struct {
|
|
CommResp
|
|
}
|
|
|
|
type GetDownloadURLReq struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
Type int `json:"type" binding:"required"`
|
|
Version string `json:"version" binding:"required"`
|
|
}
|
|
|
|
type GetDownloadURLResp struct {
|
|
CommResp
|
|
Data struct {
|
|
HasNewVersion bool `json:"hasNewVersion"`
|
|
ForceUpdate bool `json:"forceUpdate"`
|
|
FileURL string `json:"fileURL"`
|
|
YamlURL string `json:"yamlURL"`
|
|
} `json:"data"`
|
|
}
|