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.
47 lines
1.2 KiB
47 lines
1.2 KiB
package vins
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
)
|
|
|
|
// StaticRouteAccessRevokeRequest struct to revoke access to static route to Compute/ViNS
|
|
type StaticRouteAccessRevokeRequest struct {
|
|
// ViNS ID to revoke access
|
|
// Required: true
|
|
VINSID uint64 `url:"vinsId" json:"vinsId" validate:"required"`
|
|
|
|
// Route ID to revoke access, can be found in staticRouteList
|
|
// Required: true
|
|
RouteId uint64 `url:"routeId" json:"routeId" validate:"required"`
|
|
|
|
// List of Compute IDs to revoke access to this route
|
|
// Required: false
|
|
ComputeIds []uint64 `url:"computeIds,omitempty" json:"computeIds,omitempty"`
|
|
}
|
|
|
|
// StaticRouteAccessRevoke revokes access to static route to Compute/ViNS
|
|
func (v VINS) StaticRouteAccessRevoke(ctx context.Context, req StaticRouteAccessRevokeRequest) (bool, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudbroker/vins/staticRouteAccessRevoke"
|
|
|
|
res, err := v.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
|
|
}
|