This commit is contained in:
stSolo
2022-12-22 17:56:47 +03:00
parent 8712561853
commit d4b1ab7133
672 changed files with 28509 additions and 4419 deletions

View File

@@ -6,13 +6,26 @@ import (
"net/http"
)
// Request struct for get list available images
type ListRequest struct {
SepID uint64 `url:"sepId,omitempty"`
// Filter images by storage endpoint provider ID
// Required: false
SepID uint64 `url:"sepId,omitempty"`
// Filter images by account ID availability
// Required: false
SharedWith uint64 `url:"sharedWith,omitempty"`
Page uint64 `url:"page,omitempty"`
Size uint64 `url:"size,omitempty"`
// Page number
// Required: false
Page uint64 `url:"page,omitempty"`
// Page size
// Required: false
Size uint64 `url:"size,omitempty"`
}
// List gets list of information about images
func (i Image) List(ctx context.Context, req ListRequest) (ListImages, error) {
url := "/cloudbroker/image/list"