package entities import ( "io" "github.com/containers/image/v5/types" encconfig "github.com/containers/ocicrypt/config" "github.com/containers/podman/v5/pkg/libartifact" "github.com/opencontainers/go-digest" ) type ArtifactAddOptions struct { Annotations map[string]string ArtifactType string Append bool } type ArtifactExtractOptions struct { // Title annotation value to extract only a single blob matching that name. // Conflicts with Digest. Optional. Title string // Digest of the blob to extract. // Conflicts with Title. Optional. Digest string } type ArtifactInspectOptions struct { Remote bool } type ArtifactListOptions struct { ImagePushOptions } type ArtifactPullOptions struct { Architecture string AuthFilePath string CertDirPath string InsecureSkipTLSVerify types.OptionalBool MaxRetries *uint OciDecryptConfig *encconfig.DecryptConfig Password string Quiet bool RetryDelay string SignaturePolicyPath string Username string Writer io.Writer } type ArtifactPushOptions struct { ImagePushOptions CredentialsCLI string DigestFile string EncryptLayers []int EncryptionKeys []string SignBySigstoreParamFileCLI string SignPassphraseFileCLI string TLSVerifyCLI bool // CLI only } type ArtifactRemoveOptions struct { // Remove all artifacts All bool } type ArtifactPullReport struct{} type ArtifactPushReport struct{} type ArtifactInspectReport struct { *libartifact.Artifact Digest string } type ArtifactListReport struct { *libartifact.Artifact } type ArtifactAddReport struct { ArtifactDigest *digest.Digest } type ArtifactRemoveReport struct { ArtifactDigests []*digest.Digest }