Files
decort-golang-sdk/pkg/cloudbroker/grid/list.go

64 lines
1.5 KiB
Go
Raw Normal View History

2022-12-22 17:56:47 +03:00
package grid
import (
"context"
"encoding/json"
"net/http"
2024-04-16 14:26:06 +03:00
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
2022-12-22 17:56:47 +03:00
)
2023-10-23 12:40:54 +03:00
// ListRequest struct to get list of locations
2022-12-22 17:56:47 +03:00
type ListRequest struct {
2023-07-07 12:40:03 +03:00
// Find by id grid
// Required: false
ByID uint64 `url:"by_id,omitempty" json:"by_id,omitempty"`
// Find by name grid
// Required: false
Name string `url:"name,omitempty" json:"name,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"`
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-12-22 17:56:47 +03:00
}
2023-10-23 12:40:54 +03:00
// List gets list of all locations as a ListGrids struct
2023-07-07 12:40:03 +03:00
func (g Grid) List(ctx context.Context, req ListRequest) (*ListGrids, error) {
2024-04-16 14:26:06 +03:00
2023-10-23 12:40:54 +03:00
res, err := g.ListRaw(ctx, req)
2022-12-22 17:56:47 +03:00
if err != nil {
return nil, err
}
list := ListGrids{}
err = json.Unmarshal(res, &list)
if err != nil {
return nil, err
}
2023-07-07 12:40:03 +03:00
return &list, nil
2022-12-22 17:56:47 +03:00
}
2023-10-23 12:40:54 +03:00
// ListRaw gets list of all locations as an array of bytes
func (g Grid) 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 := "/cloudbroker/grid/list"
res, err := g.client.DecortApiCall(ctx, http.MethodPost, url, req)
return res, err
}