mirror of https://github.com/containers/podman.git
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
package entities
|
|
|
|
import "github.com/containers/image/v5/types"
|
|
|
|
// TODO: add comments to *all* types and fields.
|
|
|
|
type ManifestCreateOptions struct {
|
|
All bool `schema:"all"`
|
|
}
|
|
|
|
type ManifestAddOptions struct {
|
|
All bool `json:"all" schema:"all"`
|
|
Annotation []string `json:"annotation" schema:"annotation"`
|
|
Arch string `json:"arch" schema:"arch"`
|
|
Features []string `json:"features" schema:"features"`
|
|
Images []string `json:"images" schema:"images"`
|
|
OS string `json:"os" schema:"os"`
|
|
OSVersion string `json:"os_version" schema:"os_version"`
|
|
Variant string `json:"variant" schema:"variant"`
|
|
}
|
|
|
|
type ManifestAnnotateOptions struct {
|
|
Annotation []string `json:"annotation"`
|
|
Arch string `json:"arch" schema:"arch"`
|
|
Features []string `json:"features" schema:"features"`
|
|
OS string `json:"os" schema:"os"`
|
|
OSFeatures []string `json:"os_features" schema:"os_features"`
|
|
OSVersion string `json:"os_version" schema:"os_version"`
|
|
Variant string `json:"variant" schema:"variant"`
|
|
}
|
|
|
|
type ManifestPushOptions struct {
|
|
Purge, Quiet, All, RemoveSignatures bool
|
|
|
|
Authfile, CertDir, Username, Password, DigestFile, Format, SignBy string
|
|
|
|
SkipTLSVerify types.OptionalBool
|
|
}
|