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.
42 lines
930 B
42 lines
930 B
package pcidevice
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
"strconv"
|
|
)
|
|
|
|
// DisableRequest struct for disabling PCI device
|
|
type DisableRequest struct {
|
|
// PCI device ID
|
|
// Required: true
|
|
DeviceID uint64 `url:"deviceId" json:"deviceId" validate:"required"`
|
|
|
|
// Force delete
|
|
// Required: false
|
|
Force bool `url:"force,omitempty" json:"force,omitempty"`
|
|
}
|
|
|
|
// Disable disables PCI device
|
|
func (p PCIDevice) Disable(ctx context.Context, req DisableRequest) (bool, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudbroker/pcidevice/disable"
|
|
|
|
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
|
|
}
|