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.
37 lines
930 B
37 lines
930 B
package node
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
)
|
|
|
|
// SetSRIOVStatusRequest struct to set Single-root input/output virtualization kernel config on node
|
|
type SetSRIOVStatusRequest struct {
|
|
// Node ID
|
|
// Required: true
|
|
NID uint64 `url:"nid" json:"nid" validate:"required"`
|
|
|
|
// Enabled
|
|
// Required: true
|
|
Enabled bool `url:"enabled" json:"enabled" validate:"required"`
|
|
}
|
|
|
|
// SetSRIOVStatus sets Single-root input/output virtualization kernel config on node
|
|
func (n Node) SetSRIOVStatus(ctx context.Context, req SetSRIOVStatusRequest) (string, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudbroker/node/setsriovstatus"
|
|
|
|
res, err := n.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return string(res), nil
|
|
}
|