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.
51 lines
1.3 KiB
51 lines
1.3 KiB
package sep
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/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
|
|
}
|