Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 866ca645a2 | |||
| 37135a57ad | |||
|
|
ae66de8ec2 |
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,4 +1,4 @@
|
||||
## Version 1.13.8
|
||||
## Version 1.13.11
|
||||
|
||||
Методы `Audits` в cloudapi/compute, cloudbroker/compute, cloudapi/account, cloudbroker/account, cloudapi/vins, cloudbroker/vins, cloudapi/rg и cloudbroker/rg стали deprecated и в следующих версиях будут удалены, вместо них необходимо использовать метод `List` в cloudapi/audit и cloudbroker/audit с соответствующими фильтрами
|
||||
Метод `ListNodes` в cloudbroker/image стал deprecated и в следующих версиях будет удалён
|
||||
@@ -8,9 +8,9 @@
|
||||
|
||||
Все методы группы `.SDN()` находятся в альфа-версии.
|
||||
|
||||
### Добавлено
|
||||
### Исправлено
|
||||
|
||||
#### kvmx86
|
||||
| Идентификатор<br>задачи | Описание |
|
||||
#### sep
|
||||
| Идентификатор задачи | Описание |
|
||||
| --- | --- |
|
||||
| BGOS-763 | Опциональное поле `BLKDiscard` в структуре `DataDisk` в структурах запроса `CreateRequest`, `CreateBlankRequest` и `MassCreateRequest` в cloudbroker/kvmx86 |
|
||||
| BGOS-949 | Тип возвращаемого значения в методе `AddConsumerNodes` с `uint64` на `[]uint64` в cloudbroker/sep |
|
||||
|
||||
@@ -66,7 +66,7 @@ type ItemResourceConsumption struct {
|
||||
ResourceLimits ResourceLimits `json:"resourceLimits"`
|
||||
|
||||
// Resource group ID
|
||||
RGID uint64 `json:"rgid"`
|
||||
RGID uint64 `json:"id"`
|
||||
}
|
||||
|
||||
type ListResourceConsumption struct {
|
||||
|
||||
@@ -2,8 +2,8 @@ package sep
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
||||
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
||||
)
|
||||
@@ -20,23 +20,24 @@ type AddConsumerNodesRequest struct {
|
||||
}
|
||||
|
||||
// AddConsumerNodes adds consumer nodes to SEP parameters
|
||||
func (s SEP) AddConsumerNodes(ctx context.Context, req AddConsumerNodesRequest) (uint64, error) {
|
||||
func (s SEP) AddConsumerNodes(ctx context.Context, req AddConsumerNodesRequest) ([]uint64, error) {
|
||||
err := validators.ValidateRequest(req)
|
||||
list := []uint64{}
|
||||
if err != nil {
|
||||
return 0, validators.ValidationErrors(validators.GetErrors(err))
|
||||
return list, validators.ValidationErrors(validators.GetErrors(err))
|
||||
}
|
||||
|
||||
url := "/cloudbroker/sep/addConsumerNodes"
|
||||
|
||||
res, err := s.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
return list, err
|
||||
}
|
||||
|
||||
result, err := strconv.ParseUint(string(res), 10, 64)
|
||||
err = json.Unmarshal(res, &list)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return result, nil
|
||||
return list, nil
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@ type UpdateRequest struct {
|
||||
|
||||
type wrapperUpdateRequest struct {
|
||||
UpdateRequest
|
||||
Config []string `url:"config,omitempty"`
|
||||
Config string `url:"config,omitempty"`
|
||||
}
|
||||
|
||||
// Update updates vfpool device
|
||||
@@ -48,21 +48,15 @@ func (v VFPool) Update(ctx context.Context, req UpdateRequest) (bool, error) {
|
||||
return false, validators.ValidationErrors(validators.GetErrors(err))
|
||||
}
|
||||
|
||||
var config []string
|
||||
var config string
|
||||
|
||||
if len(req.Config) != 0 {
|
||||
config = make([]string, 0, len(req.Config))
|
||||
|
||||
for c := range req.Config {
|
||||
b, err := json.Marshal(req.Config[c])
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
config = append(config, string(b))
|
||||
b, err := json.Marshal(req.Config)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
} else {
|
||||
config = []string{}
|
||||
|
||||
config = string(b)
|
||||
}
|
||||
|
||||
reqWrapped := wrapperUpdateRequest{
|
||||
|
||||
Reference in New Issue
Block a user