Files
decort-golang-sdk/pkg/cloudapi/extnet/list.go

93 lines
2.3 KiB
Go
Raw Normal View History

2022-10-03 16:56:47 +03:00
package extnet
import (
"context"
"encoding/json"
"net/http"
2024-04-16 14:26:06 +03:00
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
2022-10-03 16:56:47 +03:00
)
2023-10-23 12:40:54 +03:00
// ListRequest struct to get list of external network
2022-10-03 16:56:47 +03:00
type ListRequest struct {
2023-06-30 11:21:47 +03:00
// Find by account ID
2022-12-22 17:56:47 +03:00
// Required: false
2023-03-01 19:05:53 +03:00
AccountID uint64 `url:"accountId,omitempty" json:"accountId,omitempty"`
2022-12-22 17:56:47 +03:00
2023-06-30 11:21:47 +03:00
// Find by ID
// Required: false
ByID uint64 `url:"by_id,omitempty" json:"by_id,omitempty"`
// Find by name
// Required: false
Name string `url:"name,omitempty" json:"name,omitempty"`
// Find by network ip address
// Required: false
Network string `url:"network,omitempty" json:"network,omitempty"`
// Find by vlan ID
// Required: false
VLANID uint64 `url:"vlanId,omitempty" json:"vlanId,omitempty"`
// Find by vnfDevices ID
// Required: false
VNFDevID uint64 `url:"vnfDevId,omitempty" json:"vnfDevId,omitempty"`
// Find by status
// Required: false
Status string `url:"status,omitempty" json:"status,omitempty"`
2024-04-16 14:26:06 +03:00
// Sort by one of supported fields, format +|-(field)
// Required: false
SortBy string `url:"sortBy,omitempty" json:"sortBy,omitempty" validate:"omitempty,sortBy"`
2025-08-29 12:51:25 +03:00
// Sort by zone id
// Default value: 0
// Required: false
ZoneID uint64 `url:"zone_id,omitempty" json:"zone_id,omitempty"`
2022-12-22 17:56:47 +03:00
// Page number
// Required: false
2023-03-01 19:05:53 +03:00
Page uint64 `url:"page,omitempty" json:"page,omitempty"`
2022-12-22 17:56:47 +03:00
// Page size
// Required: false
2023-03-01 19:05:53 +03:00
Size uint64 `url:"size,omitempty" json:"size,omitempty"`
2025-04-09 11:21:07 +03:00
//openVswitch bridge name
//Required: false
OVSBridge string `url:"ovsBridge,omitempty" json:"ovsBridge,omitempty"`
2022-10-03 16:56:47 +03:00
}
2023-10-23 12:40:54 +03:00
// List gets list of all available external networks as a ListExtNets struct
2023-06-30 11:21:47 +03:00
func (e ExtNet) List(ctx context.Context, req ListRequest) (*ListExtNets, error) {
2024-04-16 14:26:06 +03:00
2023-10-23 12:40:54 +03:00
res, err := e.ListRaw(ctx, req)
2022-10-03 16:56:47 +03:00
if err != nil {
return nil, err
}
2022-12-22 17:56:47 +03:00
list := ListExtNets{}
err = json.Unmarshal(res, &list)
2022-10-03 16:56:47 +03:00
if err != nil {
return nil, err
}
2023-06-30 11:21:47 +03:00
return &list, nil
2022-10-03 16:56:47 +03:00
}
2023-10-23 12:40:54 +03:00
// ListRaw gets list of all available external networks as an array of bytes
func (e ExtNet) ListRaw(ctx context.Context, req ListRequest) ([]byte, error) {
2024-04-16 14:26:06 +03:00
if err := validators.ValidateRequest(req); err != nil {
return nil, validators.ValidationErrors(validators.GetErrors(err))
}
2023-10-23 12:40:54 +03:00
url := "/cloudapi/extnet/list"
res, err := e.client.DecortApiCall(ctx, http.MethodPost, url, req)
return res, err
}