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

118 lines
3.0 KiB
Go
Raw Normal View History

2022-12-22 17:56:47 +03:00
package compute
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 available computes
2022-12-22 17:56:47 +03:00
type ListRequest struct {
2023-07-07 12:40:03 +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 account ID
// Required: false
AccountID uint64 `url:"accountId,omitempty" json:"accountId,omitempty"`
// Find by resource group name
// Required: false
RGName string `url:"rgName,omitempty" json:"rgName,omitempty"`
// Find by resource group ID
// Required: false
RGID uint64 `url:"rgId,omitempty" json:"rgId,omitempty"`
// Find by tech status
// Required: false
TechStatus string `url:"techStatus,omitempty" json:"techStatus,omitempty"`
// Find by status
// Required: false
Status string `url:"status,omitempty" json:"status,omitempty"`
// Find by IP address
// Required: false
IPAddress string `url:"ipAddress,omitempty" json:"ipAddress,omitempty"`
2025-12-08 16:16:35 +03:00
// Find by node ID
2024-11-12 12:51:21 +03:00
// Required: false
2025-12-08 16:16:35 +03:00
NodeID uint64 `url:"node_id,omitempty" json:"node_id,omitempty"`
2024-11-12 12:51:21 +03:00
2024-12-27 11:35:22 +03:00
// Find by CD image ID
// Required: false
CDImageID uint64 `url:"cdImageId,omitempty" json:"cdImageId,omitempty"`
2025-12-08 16:16:35 +03:00
// Find by node name
2025-04-09 11:21:07 +03:00
// Required: false
2025-12-08 16:16:35 +03:00
NodeName string `url:"nodeName,omitempty" json:"nodeName,omitempty"`
2025-04-09 11:21:07 +03:00
2023-07-07 12:40:03 +03:00
// Find by external network name
// Required: false
ExtNetName string `url:"extNetName,omitempty" json:"extNetName,omitempty"`
// Find by external network ID
// Required: false
ExtNetID uint64 `url:"extNetId,omitempty" json:"extNetId,omitempty"`
2022-12-22 17:56:47 +03:00
// Include deleted computes
// 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-12-22 17:56:47 +03:00
}
2023-10-23 12:40:54 +03:00
// List gets list of the available computes as a ListComputes struct.
2022-12-22 17:56:47 +03:00
// Filtering based on status is possible
2023-07-07 12:40:03 +03:00
func (c Compute) List(ctx context.Context, req ListRequest) (*ListComputes, error) {
2024-04-16 14:26:06 +03:00
2023-10-23 12:40:54 +03:00
res, err := c.ListRaw(ctx, req)
2022-12-22 17:56:47 +03:00
if err != nil {
return nil, err
}
list := ListComputes{}
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 the available computes as an array of bytes
func (c Compute) 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/compute/list"
res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, req)
return res, err
}