v1.11.0
This commit is contained in:
@@ -3,6 +3,7 @@ package node
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
||||
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
||||
)
|
||||
@@ -15,34 +16,36 @@ type SetVFsNumberRequest struct {
|
||||
|
||||
// PCI address or NIC name
|
||||
// Required: true
|
||||
NicID string `url:"nicId" json:"nicId" validate:"required"`
|
||||
NICID string `url:"nicId" json:"nicId" validate:"required"`
|
||||
|
||||
// Number of VF to assign
|
||||
// Required: true
|
||||
VFNum uint64 `url:"vfNum" json:"vfNum" validate:"required"`
|
||||
|
||||
// Trust
|
||||
// Number of VF to assign
|
||||
// Required: true
|
||||
Trust bool `url:"trust" json:"trust" validate:"required"`
|
||||
|
||||
// Enable spoof checking
|
||||
// Required: true
|
||||
Spoofchk bool `url:"spoofchk" json:"spoofchk" validate:"required"`
|
||||
VFParams []VFParam `url:"vfParams" json:"vfParams" validate:"required"`
|
||||
}
|
||||
|
||||
// SetVFsNumber sets number of VFs for individual NIC on node
|
||||
func (n Node) SetVFsNumber(ctx context.Context, req SetVFsNumberRequest) (string, error) {
|
||||
func (n Node) SetVFsNumber(ctx context.Context, req SetVFsNumberRequest) (bool, error) {
|
||||
err := validators.ValidateRequest(req)
|
||||
if err != nil {
|
||||
return "", validators.ValidationErrors(validators.GetErrors(err))
|
||||
return false, validators.ValidationErrors(validators.GetErrors(err))
|
||||
}
|
||||
|
||||
url := "/cloudbroker/node/setVFsNumber"
|
||||
|
||||
res, err := n.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
||||
|
||||
if err != nil {
|
||||
return "", err
|
||||
return false, err
|
||||
}
|
||||
|
||||
return string(res), nil
|
||||
result, err := strconv.ParseBool(string(res))
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
return result, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user