Files
decort-golang-sdk/pkg/cloudbroker/pcidevice/enable.go

38 lines
825 B
Go
Raw Normal View History

2023-04-20 11:17:35 +03:00
package pcidevice
import (
"context"
"net/http"
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
"strconv"
)
2023-10-25 17:37:18 +03:00
// EnableRequest struct for enabling PCI device
2023-04-20 11:17:35 +03:00
type EnableRequest struct {
// PCI device ID
// Required: true
DeviceID uint64 `url:"deviceId" json:"deviceId" validate:"required"`
}
2023-10-25 17:37:18 +03:00
// Enable enables PCI device
2023-04-20 11:17:35 +03:00
func (p PCIDevice) Enable(ctx context.Context, req EnableRequest) (bool, error) {
err := validators.ValidateRequest(req)
if err != nil {
2023-10-25 17:37:18 +03:00
return false, validators.ValidationErrors(validators.GetErrors(err))
2023-04-20 11:17:35 +03:00
}
url := "/cloudbroker/pcidevice/enable"
res, err := p.client.DecortApiCall(ctx, http.MethodPost, url, req)
if err != nil {
return false, err
}
result, err := strconv.ParseBool(string(res))
if err != nil {
return false, err
}
return result, nil
}