package hypervisors import ( "context" "encoding/json" "net/http" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/constants" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators" ) // DeleteRequest to delete a hypervisor type DeleteRequest struct { // Name of a hypervisor // Required: true Name string `url:"name" json:"name" validate:"required"` } // Delete a hypervisor func (hv Hypervisors) Delete(ctx context.Context, req DeleteRequest) (*RecordVersion, error) { err := validators.ValidateRequest(req) if err != nil { return nil, validators.ValidationErrors(validators.GetErrors(err)) } url := "/sdn/hypervisor/delete" res, err := hv.client.DecortApiCallCtype(ctx, http.MethodDelete, url, constants.MIMEJSON, req) info := RecordVersion{} err = json.Unmarshal(res, &info) if err != nil { return nil, err } return &info, nil }