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/rg/update.go

82 lines
1.7 KiB

3 years ago
package rg
import (
"context"
"errors"
"net/http"
3 years ago
"strconv"
)
3 years ago
// Request struct for update resource group
3 years ago
type UpdateRequest struct {
3 years ago
// Resource group ID
// Required: true
RGID uint64 `url:"rgId"`
// New name
// Required: false
Name string `url:"name,omitempty"`
// New description
// Required: false
Description string `url:"desc,omitempty"`
// Max size of memory in MB
// Required: false
MaxMemoryCapacity uint64 `url:"maxMemoryCapacity,omitempty"`
// Max size of aggregated virtual disks in GB
// Required: false
MaxVDiskCapacity uint64 `url:"maxVDiskCapacity,omitempty"`
// Max number of CPU cores
// Required: false
MaxCPUCapacity uint64 `url:"maxCPUCapacity,omitempty"`
// Max sent/received network transfer peering
// Required: false
3 years ago
MaxNetworkPeerTransfer uint64 `url:"maxNetworkPeerTransfer,omitempty"`
3 years ago
// Max number of assigned public IPs
// Required: false
MaxNumPublicIP uint64 `url:"maxNumPublicIP,omitempty"`
// Register computes in registration system
// Required: false
RegisterComputes bool `url:"registerComputes,omitempty"`
// Reason for action
// Required: false
Reason string `url:"reason,omitempty"`
3 years ago
}
3 years ago
func (rgrq UpdateRequest) validate() error {
3 years ago
if rgrq.RGID == 0 {
return errors.New("field RGID can not be empty or equal to 0")
}
return nil
}
3 years ago
// Update updates resource group
func (r RG) Update(ctx context.Context, req UpdateRequest) (bool, error) {
3 years ago
err := req.validate()
if err != nil {
3 years ago
return false, err
}
url := "/cloudapi/rg/update"
3 years ago
res, err := r.client.DecortApiCall(ctx, http.MethodPost, url, req)
3 years ago
if err != nil {
return false, err
}
3 years ago
result, err := strconv.ParseBool(string(res))
if err != nil {
return false, err
}
return result, nil
3 years ago
}