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.
99 lines
2.4 KiB
99 lines
2.4 KiB
package vins
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
)
|
|
|
|
// CreateInRGRequest struct to create VINS in resource group
|
|
type CreateInRGRequest struct {
|
|
// VINS name
|
|
// Required: true
|
|
Name string `url:"name" json:"name" validate:"required"`
|
|
|
|
// Resource group ID
|
|
// Required: true
|
|
RGID uint64 `url:"rgId" json:"rgId" validate:"required"`
|
|
|
|
// Private network IP CIDR
|
|
// Required: false
|
|
IPCIDR string `url:"ipcidr,omitempty" json:"ipcidr,omitempty"`
|
|
|
|
// External network ID
|
|
// Required: false
|
|
// -1 - not connect to extnet, 0 - auto select, 1+ - extnet ID
|
|
ExtNetID int64 `url:"extNetId" json:"extNetId"`
|
|
|
|
// External IP, related only for extNetId >= 0
|
|
// Required: false
|
|
ExtIP string `url:"extIp,omitempty" json:"extIp,omitempty"`
|
|
|
|
// Description
|
|
// Required: false
|
|
Description string `url:"desc,omitempty" json:"desc,omitempty"`
|
|
|
|
// Number of pre created reservations
|
|
// Required: false
|
|
PreReservationsNum uint64 `url:"preReservationsNum,omitempty" json:"preReservationsNum,omitempty"`
|
|
|
|
// List of static routes, each item must have destination, netmask, and gateway fields
|
|
// Required: false
|
|
Routes []Route `url:"-" json:"routes,omitempty" validate:"omitempty,dive"`
|
|
|
|
// Reason for action
|
|
// Required: false
|
|
Reason string `url:"reason,omitempty" json:"reason,omitempty"`
|
|
}
|
|
|
|
type wrapperCreateRequestInRG struct {
|
|
CreateInRGRequest
|
|
Routes []string `url:"routes,omitempty"`
|
|
}
|
|
|
|
// CreateInRG creates VINS in resource group level
|
|
func (v VINS) CreateInRG(ctx context.Context, req CreateInRGRequest) (uint64, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return 0, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
var routes []string
|
|
|
|
if len(req.Routes) != 0 {
|
|
routes = make([]string, 0, len(req.Routes))
|
|
|
|
for r := range req.Routes {
|
|
b, err := json.Marshal(req.Routes[r])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
routes = append(routes, string(b))
|
|
}
|
|
} else {
|
|
routes = []string{"[]"}
|
|
}
|
|
|
|
reqWrapped := wrapperCreateRequestInRG{
|
|
CreateInRGRequest: req,
|
|
Routes: routes,
|
|
}
|
|
|
|
url := "/cloudbroker/vins/createInRG"
|
|
|
|
res, err := v.client.DecortApiCall(ctx, http.MethodPost, url, reqWrapped)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
result, err := strconv.ParseUint(string(res), 10, 64)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|