Files
dynamix-golang-sdk/pkg/cloudapi/compute/pfw_list.go
2025-12-08 16:30:08 +03:00

41 lines
870 B
Go

package compute
import (
"context"
"encoding/json"
"net/http"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/internal/validators"
)
// PFWListRequest struct to get list of port forwards
type PFWListRequest struct {
// ID of compute instance
// Required: true
ComputeID uint64 `url:"computeId" json:"computeId" validate:"required"`
}
// PFWList gets compute port forwards list
func (c Compute) PFWList(ctx context.Context, req PFWListRequest) (*ListPFWs, error) {
err := validators.ValidateRequest(req)
if err != nil {
return nil, validators.ValidationErrors(validators.GetErrors(err))
}
url := "/cloudapi/compute/pfwList"
res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, req)
if err != nil {
return nil, err
}
list := ListPFWs{}
err = json.Unmarshal(res, &list)
if err != nil {
return nil, err
}
return &list, nil
}