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

42 lines
921 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
// DeleteRequest struct to deleting PCI device
2023-04-20 11:17:35 +03:00
type DeleteRequest 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"`
}
2023-10-25 17:37:18 +03:00
// Delete deletes PCI device
2023-04-20 11:17:35 +03:00
func (p PCIDevice) Delete(ctx context.Context, req DeleteRequest) (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/delete"
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
}