2023-04-21 04:47:07 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
// package osimage is used to handle osimages in the CI (uploading and maintenance).
|
|
|
|
package osimage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
|
2023-06-07 10:16:32 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/api/versionsapi"
|
2023-04-21 04:47:07 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UploadRequest is a request to upload an os image.
|
|
|
|
type UploadRequest struct {
|
2023-05-23 03:17:27 -04:00
|
|
|
Provider cloudprovider.Provider
|
|
|
|
Version versionsapi.Version
|
|
|
|
AttestationVariant string
|
|
|
|
Timestamp time.Time
|
2024-01-04 10:59:31 -05:00
|
|
|
ImageReader func() (io.ReadSeekCloser, error)
|
|
|
|
ImagePath string
|
2023-04-21 04:47:07 -04:00
|
|
|
}
|