1.5.8-k8s-extnet-branch v1.1.1
stSolo 2 years ago
parent 84bcd2eb53
commit 46af79b664

@ -1,48 +1,15 @@
## Version 1.1.0 ## Version 1.1.1
### Features ### Bug fixes
#### CloudAPI #### CloudAPI
- Account
- Delete "ResTypes" field in Create/Update request structs
- Add fields "DiskSizeMax", "Shareable", "SEPs" in Get/List response structs
- BService
- Add fields "SEPID", "SEPPool" in GroupAdd request structs
- Add field "PoolName" in List/ListDeleted response structs
- Compute
- Add fields "PresentTo", "Shareable" in Get/List/ListDeleted response structs
- Disks - Disks
- Add fields "PresentTo", "Shareable", "Computes" in Get/List/ListDeleted/ListUnattached/Search response structs - Change the SizeUsed field type to float64
- Delete fields "ComputeID", "ComputeName" in List/ListDeleted/ListUnattached/Search response structs - Compute
- Add Share/Unshare methods - Chnage the SizeUsed field type to float64
- FLIPgroup
- Add field "ClientNames" in Get response struct
- Image
- Add field "PresentTo" in Get response struct
- RG
- Delete "ResTypes" field in Create/Update request structs
- Add fields "DiskSizeMax", "Shareable", "SEPs" in Get/List response structs
#### Cloudbroker #### Cloudbroker
- Account
- Add fields "SEPs", "ResourceTypes", "PresentTo", "DiskSizeMax", "UniqPools", "Shareable" in Get/List/ListDeleted/ListDisks/ListRG response structs
- Compute
- Add fields "VINSConnected", "TotalDiskSize", "Shareable", "PresentTo" in Get/List/ListDeleted response structs
- Disks - Disks
- Add fields "ReferenceID", "Shareable", "PresentTo", "Computes" in List/ListDeleted/ListUnattached/Search response structs - Change the SizeUsed field type to float64
- Delete fields "ComputeID", "ComputeName" in List/ListDeleted/ListUnattached/Search response structs
- Add Share/Unshare methods
- Grid
- Add fields "SEPs", "DiskSizeMax" in Get/List response structs
- Image
- Add field "PresentTo" in Get response struct
- KVMX86
- Add field "Userdata" in MassCreate request struct
- Delete field "IPAddr" in MassCreate request struct
- KVMPPC
- Add field "Userdata" in MassCreate request struct
- Delete field "IPAddr" in MassCreate request struct
- RG
- Add fields "DiskSizeMax", "Shareable", "SEPs" in Get/List response structs

@ -622,7 +622,7 @@ type ItemComputeDisk struct {
SizeMax uint64 `json:"sizeMax"` SizeMax uint64 `json:"sizeMax"`
//Size used //Size used
SizeUsed uint64 `json:"sizeUsed"` SizeUsed float64 `json:"sizeUsed"`
// List extend snapshots // List extend snapshots
Snapshots SnapshotExtendList `json:"snapshots"` Snapshots SnapshotExtendList `json:"snapshots"`

@ -96,7 +96,7 @@ type ItemDisk struct {
SizeMax uint64 `json:"sizeMax"` SizeMax uint64 `json:"sizeMax"`
// Size used // Size used
SizeUsed uint64 `json:"sizeUsed"` SizeUsed float64 `json:"sizeUsed"`
// List of snapshots // List of snapshots
Snapshots ListSnapshots `json:"snapshots"` Snapshots ListSnapshots `json:"snapshots"`
@ -273,7 +273,7 @@ type RecordDisk struct {
SizeMax uint64 `json:"sizeMax"` SizeMax uint64 `json:"sizeMax"`
// Size used // Size used
SizeUsed uint64 `json:"sizeUsed"` SizeUsed float64 `json:"sizeUsed"`
// List of snapshots // List of snapshots
Snapshots ListSnapshots `json:"snapshots"` Snapshots ListSnapshots `json:"snapshots"`

@ -435,7 +435,7 @@ type ItemDisk struct {
SizeMax uint64 `json:"sizeMax"` SizeMax uint64 `json:"sizeMax"`
// Size used // Size used
SizeUsed uint64 `json:"sizeUsed"` SizeUsed float64 `json:"sizeUsed"`
// List detailed snapshots // List detailed snapshots
Snapshots ListDetailedSnapshots `json:"snapshots"` Snapshots ListDetailedSnapshots `json:"snapshots"`

Loading…
Cancel
Save