package sep import ( "context" "net/http" "strconv" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/internal/validators" ) // AccessRevokeToPoolRequest struct to revoke access to pool SEP type AccessRevokeToPoolRequest struct { // Storage endpoint provider ID // Required: true SEPID uint64 `url:"sep_id" json:"sep_id" validate:"required"` // Pool name // Required: true PoolName string `url:"pool_name" json:"pool_name" validate:"required"` // Account ID to grant access to the specified pool SEP // Required: false AccountID uint64 `url:"account_id,omitempty" json:"account_id,omitempty"` // Resource group ID to grant access to the specified pool SEP // Required: false RGID uint64 `url:"resgroup_id,omitempty" json:"resgroup_id,omitempty"` } // AccessRevokeToPool revokes access to pool SEP func (s SEP) AccessRevokeToPool(ctx context.Context, req AccessRevokeToPoolRequest) (bool, error) { err := validators.ValidateRequest(req) if err != nil { return false, validators.ValidationErrors(validators.GetErrors(err)) } url := "/cloudbroker/sep/accessRevokeToPool" res, err := s.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 }