2025-09-11 15:56:44 +03:00
|
|
|
package secgroup
|
2025-08-29 12:51:25 +03:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"net/http"
|
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type DeleteRequest struct {
|
|
|
|
|
// Security group ID
|
|
|
|
|
// Required: true
|
|
|
|
|
SecurityGroupID uint64 `url:"security_group_id" json:"security_group_id" validate:"required"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (sg SecurityGroup) Delete(ctx context.Context, req DeleteRequest) (bool, error) {
|
|
|
|
|
err := validators.ValidateRequest(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url := "/cloudapi/security_group/delete"
|
|
|
|
|
|
|
|
|
|
res, err := sg.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
|
|
|
|
|
}
|