mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
27 lines
656 B
Go
27 lines
656 B
Go
/*
|
|
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"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/api/versionsapi"
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
|
)
|
|
|
|
// UploadRequest is a request to upload an os image.
|
|
type UploadRequest struct {
|
|
Provider cloudprovider.Provider
|
|
Version versionsapi.Version
|
|
AttestationVariant string
|
|
Timestamp time.Time
|
|
ImageReader func() (io.ReadSeekCloser, error)
|
|
ImagePath string
|
|
}
|