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

93 lines
2.3 KiB
Go
Raw Normal View History

2022-10-03 16:56:47 +03:00
package vins
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 VINSes
2022-10-03 16:56:47 +03:00
type ListRequest struct {
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"`
2025-04-09 11:21:07 +03:00
// Find by status
// Required: false
Status string `url:"status,omitempty" json:"status,omitempty"`
2023-06-30 11:21:47 +03:00
// Find by account ID
// Required: false
AccountID uint64 `url:"accountId,omitempty" json:"accountId,omitempty"`
// Find by resource group id
// Required: false
RGID uint64 `url:"rgId,omitempty" json:"rgId,omitempty"`
// Find by external network IP
// Required: false
ExtIP string `url:"extIp,omitempty" json:"extIp,omitempty"`
2024-11-12 12:51:21 +03:00
// Find by VNF Device id
// Required: false
VNFDevId uint64 `url:"vnfdevId,omitempty" json:"vnfdevId,omitempty"`
2022-12-22 17:56:47 +03:00
// Include deleted
// Required: false
2023-03-01 19:05:53 +03:00
IncludeDeleted bool `url:"includeDeleted,omitempty" json:"includeDeleted,omitempty"`
2022-12-22 17:56:47 +03:00
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"`
2022-10-03 16:56:47 +03:00
}
2023-10-23 12:40:54 +03:00
// List gets list of VINSes available for current user as a ListVINS struct
2023-06-30 11:21:47 +03:00
func (v VINS) List(ctx context.Context, req ListRequest) (*ListVINS, error) {
2024-04-16 14:26:06 +03:00
2023-10-23 12:40:54 +03:00
res, err := v.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 := ListVINS{}
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 VINSes available for current user as an array of bytes
func (v VINS) 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/vins/list"
res, err := v.client.DecortApiCall(ctx, http.MethodPost, url, req)
return res, err
}