images

package
v4.9.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 25, 2024 License: Apache-2.0 Imports: 36 Imported by: 18

Documentation

Overview

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Build

func Build(ctx context.Context, containerFiles []string, options entities.BuildOptions) (*entities.BuildReport, error)

Build creates an image using a containerfile reference

func Diff

func Diff(ctx context.Context, nameOrID string, options *DiffOptions) ([]archive.Change, error)

Diff provides the changes between two container layers

func Exists

func Exists(ctx context.Context, nameOrID string, options *ExistsOptions) (bool, error)

Exists a lightweight way to determine if an image exists in local storage. It returns a boolean response.

func Export

func Export(ctx context.Context, nameOrIDs []string, w io.Writer, options *ExportOptions) error

Export saves images from local storage as a tarball or image archive. The optional format parameter is used to change the format of the output.

func GetImage

func GetImage(ctx context.Context, nameOrID string, options *GetOptions) (*entities.ImageInspectReport, error)

Get performs an image inspect. To have the on-disk size of the image calculated, you can use the optional size parameter.

func History

func History(ctx context.Context, nameOrID string, options *HistoryOptions) ([]*types.HistoryResponse, error)

History returns the parent layers of an image.

func Import

Import adds the given image to the local image store. This can be done by file and the given reader or via the url parameter. Additional metadata can be associated with the image by using the changes and message parameters. The image can also be tagged given a reference. One of url OR r must be provided.

func List

func List(ctx context.Context, options *ListOptions) ([]*entities.ImageSummary, error)

List returns a list of images in local storage. The all boolean and filters parameters are optional ways to alter the image query.

func Prune

func Prune(ctx context.Context, options *PruneOptions) ([]*reports.PruneReport, error)

Prune removes unused images from local storage. The optional filters can be used to further define which images should be pruned.

func Pull

func Pull(ctx context.Context, rawImage string, options *PullOptions) ([]string, error)

Pull is the binding for libpod's v2 endpoints for pulling images. Note that `rawImage` must be a reference to a registry (i.e., of docker transport or be normalized to one). Other transports are rejected as they do not make sense in a remote context. Progress reported on stderr

func Push

func Push(ctx context.Context, source string, destination string, options *PushOptions) error

Push is the binding for libpod's endpoints for push images. Note that `source` must be a referring to an image in the remote's container storage. The destination must be a reference to a registry (i.e., of docker transport or be normalized to one). Other transports are rejected as they do not make sense in a remote context.

func Remove

func Remove(ctx context.Context, images []string, options *RemoveOptions) (*entities.ImageRemoveReport, []error)

Remove removes one or more images from the local storage. Use optional force option to remove an image, even if it's used by containers.

func Scp added in v4.2.0

func Scp(ctx context.Context, source, destination *string, options ScpOptions) (reports.ScpReport, error)
func Search(ctx context.Context, term string, options *SearchOptions) ([]entities.ImageSearchReport, error)

Search is the binding for libpod's v2 endpoints for Search images.

func Tag

func Tag(ctx context.Context, nameOrID, tag, repo string, options *TagOptions) error

Tag adds an additional name to locally-stored image. Both the tag and repo parameters are required.

func Tree

func Tree(ctx context.Context, nameOrID string, options *TreeOptions) (*entities.ImageTreeReport, error)

Tree retrieves a "tree" based representation of the given image

func Untag

func Untag(ctx context.Context, nameOrID, tag, repo string, options *UntagOptions) error

Untag removes a name from locally-stored image. Both the tag and repo parameters are required.

Types

type BuildOptions

type BuildOptions struct {
	buildahDefine.BuildOptions
}

BuildOptions are optional options for building images

type BuildResponse added in v4.8.0

type BuildResponse struct {
	Stream string                 `json:"stream,omitempty"`
	Error  *jsonmessage.JSONError `json:"errorDetail,omitempty"`
	// NOTE: `error` is being deprecated check https://github.com/moby/moby/blob/master/pkg/jsonmessage/jsonmessage.go#L148
	ErrorMessage string          `json:"error,omitempty"` // deprecate this slowly
	Aux          json.RawMessage `json:"aux,omitempty"`
}

type DiffOptions

type DiffOptions struct {
	// By the default diff will compare against the parent layer. Change the Parent if you want to compare against something else.
	Parent *string
	// Change the type the backend should match. This can be set to "all", "container" or "image".
	DiffType *string
}

DiffOptions are optional options image diffs

func (*DiffOptions) Changed

func (o *DiffOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*DiffOptions) GetDiffType

func (o *DiffOptions) GetDiffType() string

GetDiffType returns value of field DiffType

func (*DiffOptions) GetParent

func (o *DiffOptions) GetParent() string

GetParent returns value of field Parent

func (*DiffOptions) ToParams

func (o *DiffOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*DiffOptions) WithDiffType

func (o *DiffOptions) WithDiffType(value string) *DiffOptions

WithDiffType set field DiffType to given value

func (*DiffOptions) WithParent

func (o *DiffOptions) WithParent(value string) *DiffOptions

WithParent set field Parent to given value

type ExistsOptions

type ExistsOptions struct {
}

ExistsOptions are optional options for checking if an image exists

func (*ExistsOptions) Changed

func (o *ExistsOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*ExistsOptions) ToParams

func (o *ExistsOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

type ExportOptions

type ExportOptions struct {
	// Compress the image
	Compress *bool
	// Format of the output
	Format *string
	// Accept uncompressed layers when copying OCI images.
	OciAcceptUncompressedLayers *bool
}

ExportOptions are optional options for exporting images

func (*ExportOptions) Changed

func (o *ExportOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*ExportOptions) GetCompress

func (o *ExportOptions) GetCompress() bool

GetCompress returns value of field Compress

func (*ExportOptions) GetFormat

func (o *ExportOptions) GetFormat() string

GetFormat returns value of field Format

func (*ExportOptions) GetOciAcceptUncompressedLayers

func (o *ExportOptions) GetOciAcceptUncompressedLayers() bool

GetOciAcceptUncompressedLayers returns value of field OciAcceptUncompressedLayers

func (*ExportOptions) ToParams

func (o *ExportOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*ExportOptions) WithCompress

func (o *ExportOptions) WithCompress(value bool) *ExportOptions

WithCompress set field Compress to given value

func (*ExportOptions) WithFormat

func (o *ExportOptions) WithFormat(value string) *ExportOptions

WithFormat set field Format to given value

func (*ExportOptions) WithOciAcceptUncompressedLayers

func (o *ExportOptions) WithOciAcceptUncompressedLayers(value bool) *ExportOptions

WithOciAcceptUncompressedLayers set field OciAcceptUncompressedLayers to given value

type GetOptions

type GetOptions struct {
	// Size computes the amount of storage the image consumes
	Size *bool
}

GetOptions are optional options for inspecting an image

func (*GetOptions) Changed

func (o *GetOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*GetOptions) GetSize

func (o *GetOptions) GetSize() bool

GetSize returns value of field Size

func (*GetOptions) ToParams

func (o *GetOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*GetOptions) WithSize

func (o *GetOptions) WithSize(value bool) *GetOptions

WithSize set field Size to given value

type HistoryOptions

type HistoryOptions struct {
}

HistoryOptions are optional options image history

func (*HistoryOptions) Changed

func (o *HistoryOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*HistoryOptions) ToParams

func (o *HistoryOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

type ImportOptions

type ImportOptions struct {
	// Changes to be applied to the image
	Changes *[]string
	// Message to be applied to the image
	Message *string
	// Reference is a tag to be applied to the image
	Reference *string
	// Url to option image to import. Cannot be used with the reader
	URL *string
	// OS for the imported image
	OS *string
	// Architecture for the imported image
	Architecture *string
	// Variant for the imported image
	Variant *string
}

ImportOptions are optional options for importing images

func (*ImportOptions) Changed

func (o *ImportOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*ImportOptions) GetArchitecture added in v4.1.0

func (o *ImportOptions) GetArchitecture() string

GetArchitecture returns value of field Architecture

func (*ImportOptions) GetChanges

func (o *ImportOptions) GetChanges() []string

GetChanges returns value of field Changes

func (*ImportOptions) GetMessage

func (o *ImportOptions) GetMessage() string

GetMessage returns value of field Message

func (*ImportOptions) GetOS added in v4.1.0

func (o *ImportOptions) GetOS() string

GetOS returns value of field OS

func (*ImportOptions) GetReference

func (o *ImportOptions) GetReference() string

GetReference returns value of field Reference

func (*ImportOptions) GetURL

func (o *ImportOptions) GetURL() string

GetURL returns value of field URL

func (*ImportOptions) GetVariant added in v4.1.0

func (o *ImportOptions) GetVariant() string

GetVariant returns value of field Variant

func (*ImportOptions) ToParams

func (o *ImportOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*ImportOptions) WithArchitecture added in v4.1.0

func (o *ImportOptions) WithArchitecture(value string) *ImportOptions

WithArchitecture set field Architecture to given value

func (*ImportOptions) WithChanges

func (o *ImportOptions) WithChanges(value []string) *ImportOptions

WithChanges set field Changes to given value

func (*ImportOptions) WithMessage

func (o *ImportOptions) WithMessage(value string) *ImportOptions

WithMessage set field Message to given value

func (*ImportOptions) WithOS added in v4.1.0

func (o *ImportOptions) WithOS(value string) *ImportOptions

WithOS set field OS to given value

func (*ImportOptions) WithReference

func (o *ImportOptions) WithReference(value string) *ImportOptions

WithReference set field Reference to given value

func (*ImportOptions) WithURL

func (o *ImportOptions) WithURL(value string) *ImportOptions

WithURL set field URL to given value

func (*ImportOptions) WithVariant added in v4.1.0

func (o *ImportOptions) WithVariant(value string) *ImportOptions

WithVariant set field Variant to given value

type ListOptions

type ListOptions struct {
	// All lists all image in the image store including dangling images
	All *bool
	// filters that can be used to get a more specific list of images
	Filters map[string][]string
}

ListOptions are optional options for listing images

func (*ListOptions) Changed

func (o *ListOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*ListOptions) GetAll

func (o *ListOptions) GetAll() bool

GetAll returns value of field All

func (*ListOptions) GetFilters

func (o *ListOptions) GetFilters() map[string][]string

GetFilters returns value of field Filters

func (*ListOptions) ToParams

func (o *ListOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*ListOptions) WithAll

func (o *ListOptions) WithAll(value bool) *ListOptions

WithAll set field All to given value

func (*ListOptions) WithFilters

func (o *ListOptions) WithFilters(value map[string][]string) *ListOptions

WithFilters set field Filters to given value

type LoadOptions

type LoadOptions struct {
	// Reference is the name of the loaded image
	Reference *string
}

LoadOptions are optional options for loading an image

func (*LoadOptions) Changed

func (o *LoadOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*LoadOptions) GetReference

func (o *LoadOptions) GetReference() string

GetReference returns value of field Reference

func (*LoadOptions) ToParams

func (o *LoadOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*LoadOptions) WithReference

func (o *LoadOptions) WithReference(value string) *LoadOptions

WithReference set field Reference to given value

type PruneOptions

type PruneOptions struct {
	// Prune all images
	All *bool
	// Prune images even when they're used by external containers
	External *bool
	// Filters to apply when pruning images
	Filters map[string][]string
}

PruneOptions are optional options for pruning images

func (*PruneOptions) Changed

func (o *PruneOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*PruneOptions) GetAll

func (o *PruneOptions) GetAll() bool

GetAll returns value of field All

func (*PruneOptions) GetExternal

func (o *PruneOptions) GetExternal() bool

GetExternal returns value of field External

func (*PruneOptions) GetFilters

func (o *PruneOptions) GetFilters() map[string][]string

GetFilters returns value of field Filters

func (*PruneOptions) ToParams

func (o *PruneOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*PruneOptions) WithAll

func (o *PruneOptions) WithAll(value bool) *PruneOptions

WithAll set field All to given value

func (*PruneOptions) WithExternal

func (o *PruneOptions) WithExternal(value bool) *PruneOptions

WithExternal set field External to given value

func (*PruneOptions) WithFilters

func (o *PruneOptions) WithFilters(value map[string][]string) *PruneOptions

WithFilters set field Filters to given value

type PullOptions

type PullOptions struct {
	// AllTags can be specified to pull all tags of an image. Note
	// that this only works if the image does not include a tag.
	AllTags *bool
	// Arch will overwrite the local architecture for image pulls.
	Arch *string
	// Authfile is the path to the authentication file. Ignored for remote
	// calls.
	Authfile *string
	// OS will overwrite the local operating system (OS) for image
	// pulls.
	OS *string
	// Policy is the pull policy. Supported values are "missing", "never",
	// "newer", "always". An empty string defaults to "always".
	Policy *string
	// Password for authenticating against the registry.
	Password *string `schema:"-"`
	// ProgressWriter is a writer where pull progress are sent.
	ProgressWriter *io.Writer `schema:"-"`
	// Quiet can be specified to suppress pull progress when pulling.  Ignored
	// for remote calls.
	Quiet *bool
	// SkipTLSVerify to skip HTTPS and certificate verification.
	SkipTLSVerify *bool `schema:"-"`
	// Username for authenticating against the registry.
	Username *string `schema:"-"`
	// Variant will overwrite the local variant for image pulls.
	Variant *string
}

PullOptions are optional options for pulling images

func (*PullOptions) Changed

func (o *PullOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*PullOptions) GetAllTags

func (o *PullOptions) GetAllTags() bool

GetAllTags returns value of field AllTags

func (*PullOptions) GetArch

func (o *PullOptions) GetArch() string

GetArch returns value of field Arch

func (*PullOptions) GetAuthfile

func (o *PullOptions) GetAuthfile() string

GetAuthfile returns value of field Authfile

func (*PullOptions) GetOS

func (o *PullOptions) GetOS() string

GetOS returns value of field OS

func (*PullOptions) GetPassword

func (o *PullOptions) GetPassword() string

GetPassword returns value of field Password

func (*PullOptions) GetPolicy

func (o *PullOptions) GetPolicy() string

GetPolicy returns value of field Policy

func (*PullOptions) GetProgressWriter added in v4.3.0

func (o *PullOptions) GetProgressWriter() io.Writer

GetProgressWriter returns value of field ProgressWriter

func (*PullOptions) GetQuiet

func (o *PullOptions) GetQuiet() bool

GetQuiet returns value of field Quiet

func (*PullOptions) GetSkipTLSVerify

func (o *PullOptions) GetSkipTLSVerify() bool

GetSkipTLSVerify returns value of field SkipTLSVerify

func (*PullOptions) GetUsername

func (o *PullOptions) GetUsername() string

GetUsername returns value of field Username

func (*PullOptions) GetVariant

func (o *PullOptions) GetVariant() string

GetVariant returns value of field Variant

func (*PullOptions) ToParams

func (o *PullOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*PullOptions) WithAllTags

func (o *PullOptions) WithAllTags(value bool) *PullOptions

WithAllTags set field AllTags to given value

func (*PullOptions) WithArch

func (o *PullOptions) WithArch(value string) *PullOptions

WithArch set field Arch to given value

func (*PullOptions) WithAuthfile

func (o *PullOptions) WithAuthfile(value string) *PullOptions

WithAuthfile set field Authfile to given value

func (*PullOptions) WithOS

func (o *PullOptions) WithOS(value string) *PullOptions

WithOS set field OS to given value

func (*PullOptions) WithPassword

func (o *PullOptions) WithPassword(value string) *PullOptions

WithPassword set field Password to given value

func (*PullOptions) WithPolicy

func (o *PullOptions) WithPolicy(value string) *PullOptions

WithPolicy set field Policy to given value

func (*PullOptions) WithProgressWriter added in v4.3.0

func (o *PullOptions) WithProgressWriter(value io.Writer) *PullOptions

WithProgressWriter set field ProgressWriter to given value

func (*PullOptions) WithQuiet

func (o *PullOptions) WithQuiet(value bool) *PullOptions

WithQuiet set field Quiet to given value

func (*PullOptions) WithSkipTLSVerify

func (o *PullOptions) WithSkipTLSVerify(value bool) *PullOptions

WithSkipTLSVerify set field SkipTLSVerify to given value

func (*PullOptions) WithUsername

func (o *PullOptions) WithUsername(value string) *PullOptions

WithUsername set field Username to given value

func (*PullOptions) WithVariant

func (o *PullOptions) WithVariant(value string) *PullOptions

WithVariant set field Variant to given value

type PushOptions

type PushOptions struct {
	// All indicates whether to push all images related to the image list
	All *bool
	// Authfile is the path to the authentication file. Ignored for remote
	// calls.
	Authfile *string
	// Compress tarball image layers when pushing to a directory using the 'dir' transport.
	Compress *bool
	// CompressionFormat is the format to use for the compression of the blobs
	CompressionFormat *string
	// CompressionLevel is the level to use for the compression of the blobs
	CompressionLevel *int
	// ForceCompressionFormat ensures that the compression algorithm set in
	// CompressionFormat is used exclusively, and blobs of other compression
	// algorithms are not reused.
	ForceCompressionFormat *bool
	// Add existing instances with requested compression algorithms to manifest list
	AddCompression []string
	// Manifest type of the pushed image
	Format *string
	// Password for authenticating against the registry.
	Password *string `schema:"-"`
	// ProgressWriter is a writer where push progress are sent.
	// Since API handler for image push is quiet by default, WithQuiet(false) is necessary for
	// the writer to receive progress messages.
	ProgressWriter *io.Writer `schema:"-"`
	// SkipTLSVerify to skip HTTPS and certificate verification.
	SkipTLSVerify *bool `schema:"-"`
	// RemoveSignatures Discard any pre-existing signatures in the image.
	RemoveSignatures *bool
	// Username for authenticating against the registry.
	Username *string `schema:"-"`
	// Quiet can be specified to suppress progress when pushing.
	Quiet *bool

	// Manifest of the pushed image.  Set by images.Push.
	ManifestDigest *string
}

PushOptions are optional options for importing images

func (*PushOptions) Changed

func (o *PushOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*PushOptions) GetAddCompression added in v4.7.0

func (o *PushOptions) GetAddCompression() []string

GetAddCompression returns value of field AddCompression

func (*PushOptions) GetAll

func (o *PushOptions) GetAll() bool

GetAll returns value of field All

func (*PushOptions) GetAuthfile

func (o *PushOptions) GetAuthfile() string

GetAuthfile returns value of field Authfile

func (*PushOptions) GetCompress

func (o *PushOptions) GetCompress() bool

GetCompress returns value of field Compress

func (*PushOptions) GetCompressionFormat added in v4.3.0

func (o *PushOptions) GetCompressionFormat() string

GetCompressionFormat returns value of field CompressionFormat

func (*PushOptions) GetCompressionLevel added in v4.6.0

func (o *PushOptions) GetCompressionLevel() int

GetCompressionLevel returns value of field CompressionLevel

func (*PushOptions) GetForceCompressionFormat added in v4.7.0

func (o *PushOptions) GetForceCompressionFormat() bool

GetForceCompressionFormat returns value of field ForceCompressionFormat

func (*PushOptions) GetFormat

func (o *PushOptions) GetFormat() string

GetFormat returns value of field Format

func (*PushOptions) GetManifestDigest added in v4.6.0

func (o *PushOptions) GetManifestDigest() string

GetManifestDigest returns value of field ManifestDigest

func (*PushOptions) GetPassword

func (o *PushOptions) GetPassword() string

GetPassword returns value of field Password

func (*PushOptions) GetProgressWriter added in v4.3.0

func (o *PushOptions) GetProgressWriter() io.Writer

GetProgressWriter returns value of field ProgressWriter

func (*PushOptions) GetQuiet added in v4.2.0

func (o *PushOptions) GetQuiet() bool

GetQuiet returns value of field Quiet

func (*PushOptions) GetRemoveSignatures added in v4.2.0

func (o *PushOptions) GetRemoveSignatures() bool

GetRemoveSignatures returns value of field RemoveSignatures

func (*PushOptions) GetSkipTLSVerify

func (o *PushOptions) GetSkipTLSVerify() bool

GetSkipTLSVerify returns value of field SkipTLSVerify

func (*PushOptions) GetUsername

func (o *PushOptions) GetUsername() string

GetUsername returns value of field Username

func (*PushOptions) ToParams

func (o *PushOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*PushOptions) WithAddCompression added in v4.7.0

func (o *PushOptions) WithAddCompression(value []string) *PushOptions

WithAddCompression set field AddCompression to given value

func (*PushOptions) WithAll

func (o *PushOptions) WithAll(value bool) *PushOptions

WithAll set field All to given value

func (*PushOptions) WithAuthfile

func (o *PushOptions) WithAuthfile(value string) *PushOptions

WithAuthfile set field Authfile to given value

func (*PushOptions) WithCompress

func (o *PushOptions) WithCompress(value bool) *PushOptions

WithCompress set field Compress to given value

func (*PushOptions) WithCompressionFormat added in v4.3.0

func (o *PushOptions) WithCompressionFormat(value string) *PushOptions

WithCompressionFormat set field CompressionFormat to given value

func (*PushOptions) WithCompressionLevel added in v4.6.0

func (o *PushOptions) WithCompressionLevel(value int) *PushOptions

WithCompressionLevel set field CompressionLevel to given value

func (*PushOptions) WithForceCompressionFormat added in v4.7.0

func (o *PushOptions) WithForceCompressionFormat(value bool) *PushOptions

WithForceCompressionFormat set field ForceCompressionFormat to given value

func (*PushOptions) WithFormat

func (o *PushOptions) WithFormat(value string) *PushOptions

WithFormat set field Format to given value

func (*PushOptions) WithManifestDigest added in v4.6.0

func (o *PushOptions) WithManifestDigest(value string) *PushOptions

WithManifestDigest set field ManifestDigest to given value

func (*PushOptions) WithPassword

func (o *PushOptions) WithPassword(value string) *PushOptions

WithPassword set field Password to given value

func (*PushOptions) WithProgressWriter added in v4.3.0

func (o *PushOptions) WithProgressWriter(value io.Writer) *PushOptions

WithProgressWriter set field ProgressWriter to given value

func (*PushOptions) WithQuiet added in v4.2.0

func (o *PushOptions) WithQuiet(value bool) *PushOptions

WithQuiet set field Quiet to given value

func (*PushOptions) WithRemoveSignatures added in v4.2.0

func (o *PushOptions) WithRemoveSignatures(value bool) *PushOptions

WithRemoveSignatures set field RemoveSignatures to given value

func (*PushOptions) WithSkipTLSVerify

func (o *PushOptions) WithSkipTLSVerify(value bool) *PushOptions

WithSkipTLSVerify set field SkipTLSVerify to given value

func (*PushOptions) WithUsername

func (o *PushOptions) WithUsername(value string) *PushOptions

WithUsername set field Username to given value

type RemoveOptions

type RemoveOptions struct {
	// All removes all images
	All *bool
	// Forces removes all containers based on the image
	Force *bool
	// Ignore if a specified image does not exist and do not throw an error.
	Ignore *bool
	// Confirms if given name is a manifest list and removes it, otherwise returns error.
	LookupManifest *bool
	// Does not remove dangling parent images
	NoPrune *bool
}

RemoveOptions are optional options for image removal

func (*RemoveOptions) Changed

func (o *RemoveOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*RemoveOptions) GetAll

func (o *RemoveOptions) GetAll() bool

GetAll returns value of field All

func (*RemoveOptions) GetForce

func (o *RemoveOptions) GetForce() bool

GetForce returns value of field Force

func (*RemoveOptions) GetIgnore added in v4.1.0

func (o *RemoveOptions) GetIgnore() bool

GetIgnore returns value of field Ignore

func (*RemoveOptions) GetLookupManifest added in v4.2.0

func (o *RemoveOptions) GetLookupManifest() bool

GetLookupManifest returns value of field LookupManifest

func (*RemoveOptions) GetNoPrune added in v4.3.0

func (o *RemoveOptions) GetNoPrune() bool

GetNoPrune returns value of field NoPrune

func (*RemoveOptions) ToParams

func (o *RemoveOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*RemoveOptions) WithAll

func (o *RemoveOptions) WithAll(value bool) *RemoveOptions

WithAll set field All to given value

func (*RemoveOptions) WithForce

func (o *RemoveOptions) WithForce(value bool) *RemoveOptions

WithForce set field Force to given value

func (*RemoveOptions) WithIgnore added in v4.1.0

func (o *RemoveOptions) WithIgnore(value bool) *RemoveOptions

WithIgnore set field Ignore to given value

func (*RemoveOptions) WithLookupManifest added in v4.2.0

func (o *RemoveOptions) WithLookupManifest(value bool) *RemoveOptions

WithLookupManifest set field LookupManifest to given value

func (*RemoveOptions) WithNoPrune added in v4.3.0

func (o *RemoveOptions) WithNoPrune(value bool) *RemoveOptions

WithNoPrune set field NoPrune to given value

type ScpOptions added in v4.2.0

type ScpOptions struct {
	Quiet       *bool
	Destination *string
}

func (*ScpOptions) ToParams added in v4.2.0

func (o *ScpOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

type SearchOptions

type SearchOptions struct {
	// Authfile is the path to the authentication file. Ignored for remote
	// calls.
	Authfile *string
	// Filters for the search results.
	Filters map[string][]string
	// Limit the number of results.
	Limit *int
	// SkipTLSVerify to skip  HTTPS and certificate verification.
	SkipTLSVerify *bool `schema:"-"`
	// ListTags search the available tags of the repository
	ListTags *bool
	// Username for authenticating against the registry.
	Username *string `schema:"-"`
	// Password for authenticating against the registry.
	Password *string `schema:"-"`
}

SearchOptions are optional options for searching images on registries

func (*SearchOptions) Changed

func (o *SearchOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*SearchOptions) GetAuthfile

func (o *SearchOptions) GetAuthfile() string

GetAuthfile returns value of field Authfile

func (*SearchOptions) GetFilters

func (o *SearchOptions) GetFilters() map[string][]string

GetFilters returns value of field Filters

func (*SearchOptions) GetLimit

func (o *SearchOptions) GetLimit() int

GetLimit returns value of field Limit

func (*SearchOptions) GetListTags

func (o *SearchOptions) GetListTags() bool

GetListTags returns value of field ListTags

func (*SearchOptions) GetPassword added in v4.5.0

func (o *SearchOptions) GetPassword() string

GetPassword returns value of field Password

func (*SearchOptions) GetSkipTLSVerify

func (o *SearchOptions) GetSkipTLSVerify() bool

GetSkipTLSVerify returns value of field SkipTLSVerify

func (*SearchOptions) GetUsername added in v4.5.0

func (o *SearchOptions) GetUsername() string

GetUsername returns value of field Username

func (*SearchOptions) ToParams

func (o *SearchOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*SearchOptions) WithAuthfile

func (o *SearchOptions) WithAuthfile(value string) *SearchOptions

WithAuthfile set field Authfile to given value

func (*SearchOptions) WithFilters

func (o *SearchOptions) WithFilters(value map[string][]string) *SearchOptions

WithFilters set field Filters to given value

func (*SearchOptions) WithLimit

func (o *SearchOptions) WithLimit(value int) *SearchOptions

WithLimit set field Limit to given value

func (*SearchOptions) WithListTags

func (o *SearchOptions) WithListTags(value bool) *SearchOptions

WithListTags set field ListTags to given value

func (*SearchOptions) WithPassword added in v4.5.0

func (o *SearchOptions) WithPassword(value string) *SearchOptions

WithPassword set field Password to given value

func (*SearchOptions) WithSkipTLSVerify

func (o *SearchOptions) WithSkipTLSVerify(value bool) *SearchOptions

WithSkipTLSVerify set field SkipTLSVerify to given value

func (*SearchOptions) WithUsername added in v4.5.0

func (o *SearchOptions) WithUsername(value string) *SearchOptions

WithUsername set field Username to given value

type TagOptions

type TagOptions struct {
}

TagOptions are optional options for tagging images

func (*TagOptions) Changed

func (o *TagOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*TagOptions) ToParams

func (o *TagOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

type TreeOptions

type TreeOptions struct {
	// WhatRequires ...
	WhatRequires *bool
}

TreeOptions are optional options for a tree-based representation of the image

func (*TreeOptions) Changed

func (o *TreeOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*TreeOptions) GetWhatRequires

func (o *TreeOptions) GetWhatRequires() bool

GetWhatRequires returns value of field WhatRequires

func (*TreeOptions) ToParams

func (o *TreeOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

func (*TreeOptions) WithWhatRequires

func (o *TreeOptions) WithWhatRequires(value bool) *TreeOptions

WithWhatRequires set field WhatRequires to given value

type UntagOptions

type UntagOptions struct {
}

UntagOptions are optional options for untagging images

func (*UntagOptions) Changed

func (o *UntagOptions) Changed(fieldName string) bool

Changed returns true if named field has been set

func (*UntagOptions) ToParams

func (o *UntagOptions) ToParams() (url.Values, error)

ToParams formats struct fields to be passed to API service

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL