package bservice import ( "context" "encoding/json" "net/http" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/internal/validators" ) // SnapshotListRequest struct to get list of existing snapshots type SnapshotListRequest struct { // ID of the Basic Service // Required: true ServiceID uint64 `url:"serviceId" json:"serviceId" validate:"required"` } // SnapshotList gets list existing snapshots of the Basic Service func (b BService) SnapshotList(ctx context.Context, req SnapshotListRequest) (*ListInfoSnapshots, error) { err := validators.ValidateRequest(req) if err != nil { return nil, validators.ValidationErrors(validators.GetErrors(err)) } url := "/cloudapi/bservice/snapshotList" res, err := b.client.DecortApiCall(ctx, http.MethodPost, url, req) if err != nil { return nil, err } list := ListInfoSnapshots{} err = json.Unmarshal(res, &list) if err != nil { return nil, err } return &list, nil }