Compare commits

1 Commits

Author SHA1 Message Date
dayterr
538f5cf026 v15.2.0
v15.2.0
2026-06-19 16:49:23 +03:00
26 changed files with 65 additions and 72 deletions

View File

@@ -1,4 +1,4 @@
## Version 15.1.0 ## Version 15.2.0
Методы `Audits` в cloudapi/compute, cloudbroker/compute, cloudapi/account, cloudbroker/account, cloudapi/vins, cloudbroker/vins, cloudapi/rg и cloudbroker/rg стали deprecated и в следующих версиях будут удалены, вместо них необходимо использовать метод `List` в cloudapi/audit и cloudbroker/audit с соответствующими фильтрами Методы `Audits` в cloudapi/compute, cloudbroker/compute, cloudapi/account, cloudbroker/account, cloudapi/vins, cloudbroker/vins, cloudapi/rg и cloudbroker/rg стали deprecated и в следующих версиях будут удалены, вместо них необходимо использовать метод `List` в cloudapi/audit и cloudbroker/audit с соответствующими фильтрами
Методы `AccessGrant`, `AccessGrantToPool`, `AccessRevoke`, `AccessRevokeToPool` в cloudbroker/sep стали deprecated и в следующих версиях будут удалены Методы `AccessGrant`, `AccessGrantToPool`, `AccessRevoke`, `AccessRevokeToPool` в cloudbroker/sep стали deprecated и в следующих версиях будут удалены
@@ -7,52 +7,35 @@
Все методы группы `.SDN()` находятся в альфа-версии. Все методы группы `.SDN()` находятся в альфа-версии.
### Добавлено ### Добавлено
#### Общее #### image
| Идентификатор задачи | Описание | | Идентификатор задачи | Описание |
| --- | --- | | --- | --- |
| BGOS-899 | Добавлена валидация полей `ssoUrl` и `decortUrl` в конфигах `Config`, `BVSConfig` и `LegacyConfig`, а также поля `domain` в конфиге `BVSConfig` при вызове конструкторов `New`, `NewBVS`, `NewLegacy` | | BGOS-916 | Вычисляемые поля `Compute` и `MemoryDumpImage` в структуру ответа `ItemSnapSet` в cloudapi/image |
#### kvmx86
| Идентификатор задачи | Описание |
| --- | --- |
| BGOS-903 | Структура ответа `MassCreateError` в cloudbroker/kvmx86 |
#### node #### node
| Идентификатор задачи | Описание | | Идентификатор задачи | Описание |
| --- | --- | | --- | --- |
| BGOS-906 | Метод `Install` и структура запроса `InstallRequest` в cloudbroker/node | | BGOS-919 | Вычисляемое поле `MaxSupportedGeneration` в структуру ответа `CpuInfo` в cloudbroker/node |
#### zone #### zone
| Идентификатор задачи | Описание | | Идентификатор задачи | Описание |
| --- | --- | | --- | --- |
| BGOS-902 | Вычисляемое поле `SupportedCpuModels` в структуру ответа `TestCPUAlignmentProfileResult` в cloudbroker/zone | | BGOS-914 | Вычисляемые поля `ID`, `Name` и `ConsumedBy` в структуру ответа `RecordConsumption` в cloudbroker/sep |
| BGOS-902 | Структура ответа `SupportedCpuModel` в cloudbroker/zone | | BGOS-914 | Структура ответа `ListConsumption` в cloudbroker/sep |
### Изменено ### Изменено
#### compute #### account
| Идентификатор задачи | Описание | | Идентификатор задачи | Описание |
| --- | --- | | --- | --- |
| BGOS-905 | Тип полей `Login` и `Password` с опциональных на обязательные в структуре `OSUser` в cloudbroker/compute | | BGOS-918 | Тип обязательного поля `Ratio` с `float64` на `uint64` в структуре запроса `SetCPUAllocationRatioRequest` в cloudbroker/account |
#### zone #### SEP
| Идентификатор<br>задачи | Описание |
| --- | --- |
| BGOS-902 | Тип поля `Percentage` с `uint64` на `float64` в структуре ответа `CpuAlignmentProfileCandidate` в cloudbroker/zone |
#### SDN logicalports
| Идентификатор задачи | Описание | | Идентификатор задачи | Описание |
| --- | --- | | --- | --- |
| BGOS-907 | Тип поля `MAC` с опционального на обязательное в структуре `AddAddress` в sdn/logicalports | | BGOS-914 | Тип поля `SEPID` с обязательного на опциональный в структуре запроса `ConsumptionRequest` в cloudbroker/sep |
| BGOS-914 | Тип ответа метода `Consumption` с `RecordConsumption` на `ListConsumption` в cloudbroker/sep |
### Удалено
#### compute
| Идентификатор задачи | Описание |
| --- | --- |
| BGOS-904 | Опциональное поле `Force` из структуры запроса `MigrateRequest` в cloudbroker/compute |

View File

@@ -4,7 +4,6 @@ import (
"context" "context"
"encoding/json" "encoding/json"
"net/http" "net/http"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
) )

View File

@@ -4,7 +4,6 @@ import (
"context" "context"
"encoding/json" "encoding/json"
"net/http" "net/http"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
) )

View File

@@ -86,7 +86,7 @@ type ItemSnapshot struct {
// Compute info // Compute info
Compute RecordCompute `json:"compute"` Compute RecordCompute `json:"compute"`
// List disk ID // List of disk IDs
Disks []uint64 `json:"disks"` Disks []uint64 `json:"disks"`
// GUID // GUID
@@ -690,7 +690,10 @@ type ListOSUser []ItemOSUser
// Main information about snapsets // Main information about snapsets
type ItemSnapSet struct { type ItemSnapSet struct {
// List disk IDs // Compute info
Compute RecordCompute `json:"compute"`
// List disk ID
Disks []uint64 `json:"disks"` Disks []uint64 `json:"disks"`
// GUID // GUID
@@ -699,6 +702,9 @@ type ItemSnapSet struct {
// Label // Label
Label string `json:"label"` Label string `json:"label"`
// Memory dump image ID
MemoryDumpImage uint64 `json:"memory_dump_image"`
// Timestamp // Timestamp
Timestamp uint64 `json:"timestamp"` Timestamp uint64 `json:"timestamp"`
} }

View File

@@ -5,6 +5,7 @@ import (
"encoding/json" "encoding/json"
"net/http" "net/http"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/constants"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
) )
@@ -102,6 +103,6 @@ func (i Image) ListRaw(ctx context.Context, req ListRequest) ([]byte, error) {
url := "/cloudapi/image/list" url := "/cloudapi/image/list"
res, err := i.client.DecortApiCall(ctx, http.MethodPost, url, req) res, err := i.client.DecortApiCallCtype(ctx, http.MethodPost, url, constants.MIMEJSON, req)
return res, err return res, err
} }

View File

@@ -2,7 +2,6 @@ package pcidevice
import ( import (
"encoding/json" "encoding/json"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/serialization" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/serialization"
) )

View File

@@ -3,9 +3,8 @@ package account
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// SetCPUAllocationParameterRequest struct for setting CPU allocation parameter // SetCPUAllocationParameterRequest struct for setting CPU allocation parameter

View File

@@ -16,7 +16,7 @@ type SetCPUAllocationRatioRequest struct {
// CPU allocation ratio, i.e. one pCPU = ratio*vCPU // CPU allocation ratio, i.e. one pCPU = ratio*vCPU
// Required: true // Required: true
Ratio float64 `url:"ratio" json:"ratio" validate:"required"` Ratio uint64 `url:"ratio" json:"ratio" validate:"required"`
} }
// SetCPUAllocationRatio sets CPU allocation ratio // SetCPUAllocationRatio sets CPU allocation ratio

View File

@@ -3,9 +3,8 @@ package disks
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// DepresentRequest struct to depresent disk from node // DepresentRequest struct to depresent disk from node

View File

@@ -3,9 +3,8 @@ package disks
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// PresentRequest struct to present disk to node // PresentRequest struct to present disk to node

View File

@@ -3,9 +3,8 @@ package grid
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// SetCPUAllocationParameterRequest for setting CPU allocation parameter // SetCPUAllocationParameterRequest for setting CPU allocation parameter

View File

@@ -3,9 +3,8 @@ package grid
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// SetCPUAllocationRatioForVMRequest for setting CPU allocation ratio for computes // SetCPUAllocationRatioForVMRequest for setting CPU allocation ratio for computes

View File

@@ -5,6 +5,7 @@ import (
"encoding/json" "encoding/json"
"net/http" "net/http"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/constants"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
) )
@@ -102,6 +103,6 @@ func (i Image) ListRaw(ctx context.Context, req ListRequest) ([]byte, error) {
url := "/cloudbroker/image/list" url := "/cloudbroker/image/list"
res, err := i.client.DecortApiCall(ctx, http.MethodPost, url, req) res, err := i.client.DecortApiCallCtype(ctx, http.MethodPost, url, constants.MIMEJSON, req)
return res, err return res, err
} }

View File

@@ -161,8 +161,11 @@ type CpuInfo struct {
// Flags // Flags
Flags []string `json:"flags"` Flags []string `json:"flags"`
// Mddel name // Model name
ModelName string `json:"model_name"` ModelName string `json:"model_name"`
// Max supported generation
MaxSupportedGeneration string `json:"max_supported_generation"`
} }
// Main information about node // Main information about node

View File

@@ -3,9 +3,8 @@ package pcidevice
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// DeleteRequest struct to deleting PCI device // DeleteRequest struct to deleting PCI device

View File

@@ -3,9 +3,8 @@ package pcidevice
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// DisableRequest struct for disabling PCI device // DisableRequest struct for disabling PCI device

View File

@@ -3,9 +3,8 @@ package pcidevice
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// EnableRequest struct for enabling PCI device // EnableRequest struct for enabling PCI device

View File

@@ -2,7 +2,6 @@ package pcidevice
import ( import (
"encoding/json" "encoding/json"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/serialization" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/serialization"
) )

View File

@@ -3,9 +3,8 @@ package rg
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// SetCPUAllocationParameterRequest struct for setting CPU allocation parameter // SetCPUAllocationParameterRequest struct for setting CPU allocation parameter

View File

@@ -3,9 +3,8 @@ package rg
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// SetCPUAllocationRatioRequest struct for setting CPU allocation ratio // SetCPUAllocationRatioRequest struct for setting CPU allocation ratio

View File

@@ -11,12 +11,12 @@ import (
// ConsumptionRequest struct to get consumption info // ConsumptionRequest struct to get consumption info
type ConsumptionRequest struct { type ConsumptionRequest struct {
// Storage endpoint provider ID // Storage endpoint provider ID
// Required: true // Required: false
SEPID uint64 `url:"sep_id" json:"sep_id" validate:"required"` SEPID uint64 `url:"sep_id,omitempty" json:"sep_id,omitempty"`
} }
// Consumption gets SEP consumption info // Consumption gets SEP consumption info
func (s SEP) Consumption(ctx context.Context, req ConsumptionRequest) (*RecordConsumption, error) { func (s SEP) Consumption(ctx context.Context, req ConsumptionRequest) (*ListConsumption, error) {
err := validators.ValidateRequest(req) err := validators.ValidateRequest(req)
if err != nil { if err != nil {
return nil, validators.ValidationErrors(validators.GetErrors(err)) return nil, validators.ValidationErrors(validators.GetErrors(err))
@@ -29,7 +29,7 @@ func (s SEP) Consumption(ctx context.Context, req ConsumptionRequest) (*RecordCo
return nil, err return nil, err
} }
info := RecordConsumption{} info := ListConsumption{}
err = json.Unmarshal(res, &info) err = json.Unmarshal(res, &info)
if err != nil { if err != nil {

View File

@@ -47,8 +47,22 @@ type ByPool struct {
UsageLimit uint64 `json:"usage_limit"` UsageLimit uint64 `json:"usage_limit"`
} }
// List of Resource groups
type ListConsumption struct {
// Data
Data []RecordConsumption `json:"data"`
// Enrtry count
EntryCount uint64 `json:"entryCount"`
}
// Main information about consumption // Main information about consumption
type RecordConsumption struct { type RecordConsumption struct {
// ID
ID uint64 `json:"id"`
// Name
Name string `json:"name"`
// By pool // By pool
ByPool map[string]ByPool `json:"byPool"` ByPool map[string]ByPool `json:"byPool"`
@@ -57,6 +71,9 @@ type RecordConsumption struct {
// Type // Type
Type string `json:"type"` Type string `json:"type"`
// Consumed by
ConsumedBy []uint64 `json:"consumedBy"`
} }
// Main information about URI // Main information about URI

View File

@@ -3,9 +3,8 @@ package vgpu
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// AllocateRequest struct for allocating VGPU // AllocateRequest struct for allocating VGPU

View File

@@ -3,9 +3,8 @@ package vgpu
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// CreateRequest struct for creating VGPU // CreateRequest struct for creating VGPU

View File

@@ -3,9 +3,8 @@ package vgpu
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// DeallocateRequest struct for deallocating VGPU // DeallocateRequest struct for deallocating VGPU

View File

@@ -3,9 +3,8 @@ package vgpu
import ( import (
"context" "context"
"net/http" "net/http"
"strconv"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"strconv"
) )
// DestroyRequest struct for destroying VGPU // DestroyRequest struct for destroying VGPU