Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e7b30fb686 | |||
| cf11855fa3 | |||
| f111787976 |
@@ -1,4 +1,7 @@
|
||||
## Version 1.6.13
|
||||
## Version 1.6.12
|
||||
|
||||
### Bugfix
|
||||
- Fix url for Disable method in cloudapi/bservice
|
||||
- Fix allowed network plugin value from "weawenet" to "weavenet" in validators for cloudapi/k8s, cloudbroker/k8s and cloudbroker/k8ci
|
||||
- Delete omitempty from json, url tags in field Permanently in model DeleteRequest in cloudbroker/k8ci and cloudbroker/k8s
|
||||
- Fix panic in SnapshotList method in cloudapi/bservice
|
||||
- Fix panic in AffinityGroupsList method in cloudapi/rg
|
||||
@@ -24,7 +24,7 @@ func (b BService) Disable(ctx context.Context, req DisableRequest) (bool, error)
|
||||
return false, validators.ValidationErrors(validators.GetErrors(err))
|
||||
}
|
||||
|
||||
url := "/cloudapi/bservice/disable"
|
||||
url := "/cloudapi/bservice/delete"
|
||||
|
||||
res, err := b.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
||||
if err != nil {
|
||||
|
||||
@@ -43,4 +43,4 @@ func (lpd ListPCIDevices) IDs() []uint64 {
|
||||
res = append(res, pd.ID)
|
||||
}
|
||||
return res
|
||||
}
|
||||
}
|
||||
@@ -721,7 +721,7 @@ type RecordCompute struct {
|
||||
}
|
||||
|
||||
// Information about of disk IDs
|
||||
type ListInfoDisks []InfoDisk
|
||||
type ListInfoDisks []InfoDisk
|
||||
|
||||
// Main information about compute for list
|
||||
type ItemCompute struct {
|
||||
|
||||
Reference in New Issue
Block a user