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.
decort-golang-sdk/pkg/cloudapi/flipgroup/compute_add.go

43 lines
1.0 KiB

package flipgroup
import (
"context"
"net/http"
"strconv"
3 years ago
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
)
2 years ago
// ComputeAddRequest struct to add compute instance
type ComputeAddRequest struct {
3 years ago
// ID of the Floating IP group to add compute instance to
// Required: true
3 years ago
FLIPGroupID uint64 `url:"flipgroupId" json:"flipgroupId" validate:"required"`
3 years ago
// ID of the compute instance to add to this group
// Required: true
3 years ago
ComputeID uint64 `url:"computeId" json:"computeId" validate:"required"`
}
3 years ago
// ComputeAdd add compute instance to the Floating IP group
func (f FLIPGroup) ComputeAdd(ctx context.Context, req ComputeAddRequest) (bool, error) {
3 years ago
err := validators.ValidateRequest(req)
3 years ago
if err != nil {
2 years ago
return false, validators.ValidationErrors(validators.GetErrors(err))
}
url := "/cloudapi/flipgroup/computeAdd"
3 years ago
res, err := f.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
}