You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
decort-golang-sdk/pkg/cloudbroker/node/set_vfs_params.go

63 lines
1.5 KiB

9 months ago
package node
import (
"context"
"net/http"
"strconv"
14 hours ago
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/constants"
9 months ago
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
)
type VFParam struct {
14 hours ago
// ID of the FN
9 months ago
// Required: true
14 hours ago
FNID uint64 `url:"fnId" json:"fnId" validate:"required"`
9 months ago
// Trust
// Required: true
Trust bool `url:"trust" json:"trust" validate:"required"`
// Enable spoof checking
// Required: true
SpoofChk bool `url:"spoofchk" json:"spoofchk" validate:"required"`
}
// SetVFsParamsRequest struct to set params of VFs for individual NIC on node
type SetVFsParamsRequest struct {
// Node ID
// Required: true
NID uint64 `url:"nid" json:"nid" validate:"required"`
// PCI address or NIC name
// Required: true
NICID string `url:"nicId" json:"nicId" validate:"required"`
// Number of VF to assign
// Required: true
VFParams []VFParam `url:"vfParams" json:"vfParams" validate:"required"`
}
// SetVFsParams sets params of VFs for individual NIC on node
func (n Node) SetVFsParams(ctx context.Context, req SetVFsParamsRequest) (bool, error) {
err := validators.ValidateRequest(req)
if err != nil {
return false, validators.ValidationErrors(validators.GetErrors(err))
}
url := "/cloudbroker/node/setVFsParams"
14 hours ago
res, err := n.client.DecortApiCallCtype(ctx, http.MethodPost, url, constants.MIMEJSON, req)
9 months ago
if err != nil {
return false, err
}
result, err := strconv.ParseBool(string(res))
if err != nil {
return false, err
}
return result, nil
}