Documentation ¶
Index ¶
- Constants
- func AccessUsage(scheme AccessTypeScheme, cli bool) string
- func DefaultBlobHandlers() internal.BlobHandlerRegistry
- func DefaultContext() internal.Context
- func IsIntermediate(spec RepositorySpec) bool
- func ResourceData(s AccessMethodSource) ([]byte, error)
- func ResourceReader(s AccessMethodSource) (io.ReadCloser, error)
- func WithAccessypeScheme(scheme AccessTypeScheme) internal.Builder
- func WithBlobDigesters(reg BlobDigesterRegistry) internal.Builder
- func WithBlobHandlers(reg BlobHandlerRegistry) internal.Builder
- func WithContext(ctx context.Context) internal.Builder
- func WithCredentials(ctx credentials.Context) internal.Builder
- func WithOCIRepositories(ctx oci.Context) internal.Builder
- func WithRepositorySpecHandlers(reg RepositorySpecHandlers) internal.Builder
- func WithRepositoyTypeScheme(scheme RepositoryTypeScheme) internal.Builder
- type AccessMethod
- type AccessMethodSource
- type AccessSpec
- type AccessSpecRef
- type AccessType
- type AccessTypeScheme
- type BlobAccess
- type BlobDigester
- type BlobDigesterRegistry
- type BlobHandler
- type BlobHandlerRegistry
- type CompSpec
- type ComponentAccess
- type ComponentContainer
- type ComponentLister
- type ComponentReference
- type ComponentVersionAccess
- type ComponentVersionContainer
- type ComponentVersionResolver
- type CompoundResolver
- type Context
- type ContextProvider
- type DataAccess
- type DigestDescriptor
- type DigesterType
- type EvaluationResult
- type Finalizer
- type HintProvider
- type IntermediateRepositorySpecAspect
- type RefSpec
- type Repository
- type RepositorySpec
- type RepositorySpecHandler
- type RepositorySpecHandlers
- type RepositoryType
- type RepositoryTypeScheme
- type ResourceAccess
- type ResourceMeta
- type Session
- type SourceAccess
- type SourceMeta
- type UniformRepositorySpec
Constants ¶
const ( KIND_COMPONENTVERSION = internal.KIND_COMPONENTVERSION KIND_COMPONENTREFERENCE = "component reference" KIND_RESOURCE = internal.KIND_RESOURCE KIND_SOURCE = internal.KIND_SOURCE KIND_REFERENCE = internal.KIND_REFERENCE )
const CONTEXT_TYPE = internal.CONTEXT_TYPE
const CommonTransportFormat = internal.CommonTransportFormat
const (
KIND_OCM_REFERENCE = "ocm reference"
)
Variables ¶
This section is empty.
Functions ¶
func AccessUsage ¶
func AccessUsage(scheme AccessTypeScheme, cli bool) string
func DefaultBlobHandlers ¶
func DefaultBlobHandlers() internal.BlobHandlerRegistry
func DefaultContext ¶
DefaultContext is the default context initialized by init functions.
func IsIntermediate ¶
func IsIntermediate(spec RepositorySpec) bool
func ResourceData ¶
func ResourceData(s AccessMethodSource) ([]byte, error)
ResourceData extracts the data for a given resource/source access. It handles the Close contract for the access method for a singular use.
func ResourceReader ¶
func ResourceReader(s AccessMethodSource) (io.ReadCloser, error)
ResourceReader gets a Reader for a given resource/source access. It provides a Reader handling the Close contract for the access method by connecting the access method's Close method to the Readers Close method .
func WithAccessypeScheme ¶
func WithAccessypeScheme(scheme AccessTypeScheme) internal.Builder
func WithBlobDigesters ¶
func WithBlobDigesters(reg BlobDigesterRegistry) internal.Builder
func WithBlobHandlers ¶
func WithBlobHandlers(reg BlobHandlerRegistry) internal.Builder
func WithCredentials ¶
func WithCredentials(ctx credentials.Context) internal.Builder
func WithRepositorySpecHandlers ¶
func WithRepositorySpecHandlers(reg RepositorySpecHandlers) internal.Builder
func WithRepositoyTypeScheme ¶
func WithRepositoyTypeScheme(scheme RepositoryTypeScheme) internal.Builder
Types ¶
type AccessMethod ¶
type AccessMethod = internal.AccessMethod
type AccessMethodSource ¶
type AccessMethodSource = cpi.AccessMethodSource
type AccessSpec ¶
type AccessSpec = internal.AccessSpec
func NewGenericAccessSpec ¶
func NewGenericAccessSpec(spec string) (AccessSpec, error)
type AccessSpecRef ¶
type AccessSpecRef = internal.AccessSpecRef
func NewAccessSpecRef ¶
func NewAccessSpecRef(spec cpi.AccessSpec) *AccessSpecRef
func NewRawAccessSpecRef ¶
func NewRawAccessSpecRef(data []byte, unmarshaler runtime.Unmarshaler) (*AccessSpecRef, error)
type AccessType ¶
type AccessType = internal.AccessType
type AccessTypeScheme ¶
type AccessTypeScheme = internal.AccessTypeScheme
type BlobAccess ¶
type BlobAccess = internal.BlobAccess
type BlobDigester ¶
type BlobDigester = internal.BlobDigester
type BlobDigesterRegistry ¶
type BlobDigesterRegistry = internal.BlobDigesterRegistry
type BlobHandler ¶
type BlobHandler = internal.BlobHandler
type BlobHandlerRegistry ¶
type BlobHandlerRegistry = internal.BlobHandlerRegistry
type CompSpec ¶
type CompSpec struct { // Component is the component name part of a component version Component string // +optional Version *string }
CompSpec is a go internal representation of a ocm component version name.
func (*CompSpec) NameVersion ¶
func (r *CompSpec) NameVersion() common.NameVersion
type ComponentAccess ¶
type ComponentAccess = internal.ComponentAccess
type ComponentContainer ¶
type ComponentContainer interface {
LookupComponent(name string) (ComponentAccess, error)
}
type ComponentLister ¶
type ComponentLister = internal.ComponentLister
type ComponentReference ¶
type ComponentReference = internal.ComponentReference
type ComponentVersionAccess ¶
type ComponentVersionAccess = internal.ComponentVersionAccess
type ComponentVersionContainer ¶
type ComponentVersionContainer interface {
LookupVersion(version string) (ComponentVersionAccess, error)
}
type ComponentVersionResolver ¶
type ComponentVersionResolver = internal.ComponentVersionResolver
func NewCompoundResolver ¶
func NewCompoundResolver(res ...ComponentVersionResolver) ComponentVersionResolver
func NewSessionBasedResolver ¶
func NewSessionBasedResolver(session Session, repo Repository) ComponentVersionResolver
type CompoundResolver ¶
type CompoundResolver struct {
// contains filtered or unexported fields
}
func (*CompoundResolver) AddResolver ¶
func (c *CompoundResolver) AddResolver(r ComponentVersionResolver)
func (*CompoundResolver) LookupComponentVersion ¶
func (c *CompoundResolver) LookupComponentVersion(name string, version string) (internal.ComponentVersionAccess, error)
type Context ¶
func ForContext ¶
ForContext returns the Context to use for context.Context. This is either an explicit context or the default context.
func New ¶
func New(mode ...datacontext.BuilderMode) Context
type ContextProvider ¶
type ContextProvider = internal.ContextProvider
type DataAccess ¶
type DataAccess = internal.DataAccess
type DigestDescriptor ¶
type DigestDescriptor = internal.DigestDescriptor
func NewDigestDescriptor ¶
func NewDigestDescriptor(digest, hashAlgo, normAlgo string) *DigestDescriptor
type DigesterType ¶
type DigesterType = internal.DigesterType
type EvaluationResult ¶
type EvaluationResult struct { Ref RefSpec Repository Repository Component ComponentAccess Version ComponentVersionAccess }
type HintProvider ¶
type HintProvider = internal.HintProvider
type IntermediateRepositorySpecAspect ¶
type IntermediateRepositorySpecAspect = internal.IntermediateRepositorySpecAspect
type RefSpec ¶
type RefSpec struct { UniformRepositorySpec CompSpec }
RefSpec is a go internal representation of a oci reference.
type Repository ¶
type Repository = internal.Repository
func AssureTargetRepository ¶
func AssureTargetRepository(session Session, ctx Context, targetref string, opts ...interface{}) (Repository, error)
type RepositorySpec ¶
type RepositorySpec = internal.RepositorySpec
type RepositorySpecHandler ¶
type RepositorySpecHandler = internal.RepositorySpecHandler
type RepositorySpecHandlers ¶
type RepositorySpecHandlers = internal.RepositorySpecHandlers
type RepositoryType ¶
type RepositoryType = internal.RepositoryType
type RepositoryTypeScheme ¶
type RepositoryTypeScheme = internal.RepositoryTypeScheme
type ResourceAccess ¶
type ResourceAccess = internal.ResourceAccess
type ResourceMeta ¶
type ResourceMeta = internal.ResourceMeta
type Session ¶
type Session interface { datacontext.Session Finalize(Finalizer) LookupRepository(Context, RepositorySpec) (Repository, error) LookupComponent(ComponentContainer, string) (ComponentAccess, error) LookupComponentVersion(r Repository, comp, vers string) (ComponentVersionAccess, error) GetComponentVersion(ComponentVersionContainer, string) (ComponentVersionAccess, error) EvaluateRef(ctx Context, ref string) (*EvaluationResult, error) EvaluateComponentRef(ctx Context, ref string) (*EvaluationResult, error) EvaluateVersionRef(ctx Context, ref string) (*EvaluationResult, error) DetermineRepository(ctx Context, ref string) (Repository, UniformRepositorySpec, error) DetermineRepositoryBySpec(ctx Context, spec *UniformRepositorySpec) (Repository, error) }
func NewSession ¶
func NewSession(s datacontext.Session) Session
type SourceAccess ¶
type SourceAccess = internal.SourceAccess
type SourceMeta ¶
type SourceMeta = internal.SourceMeta
type UniformRepositorySpec ¶
type UniformRepositorySpec = internal.UniformRepositorySpec
func ParseRepo ¶
func ParseRepo(ref string) (UniformRepositorySpec, error)
ParseRepo parses a standard ocm repository reference into a internal representation.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package blobhandler contains blobhandlers for handling local blobs for dedicated repository types.
|
Package blobhandler contains blobhandlers for handling local blobs for dedicated repository types. |
oci
Package oci contains sub packages for blob handler implementations for dedicated implementations of the oci go binding interface.
|
Package oci contains sub packages for blob handler implementations for dedicated implementations of the oci go binding interface. |
ocm
Package ocm contains sub packages for blob handler implementations for dedicated implementations of the default ocm go binding interface.
|
Package ocm contains sub packages for blob handler implementations for dedicated implementations of the default ocm go binding interface. |
normalizations/jsonv1
Package jsonv1 provides a normalization which uses schema specific normalizations.
|
Package jsonv1 provides a normalization which uses schema specific normalizations. |
normalizations/jsonv2
Package jsonv2 provides a normalization which is completely based on the abstract (internal) version of the component descriptor and is therefore agnostic of the final serialization format.
|
Package jsonv2 provides a normalization which is completely based on the abstract (internal) version of the component descriptor and is therefore agnostic of the final serialization format. |
versions/ocm.gardener.cloud/v3alpha1/jsonscheme
Package jsonscheme generated by go-bindata.
|
Package jsonscheme generated by go-bindata. |
versions/ocm.software/v3alpha1/jsonscheme
Package jsonscheme generated by go-bindata.
|
Package jsonscheme generated by go-bindata. |
versions/v2/jsonscheme
Package jsonscheme generated by go-bindata.
|
Package jsonscheme generated by go-bindata. |
support
Package support provides a standard implementation for the object type set required to implement the OCM repository interface.
|
Package support provides a standard implementation for the object type set required to implement the OCM repository interface. |
digester
|
|
Package download provides an API for resource download handlers.
|
Package download provides an API for resource download handlers. |
ppi
ppi provides the plugin programming interface.
|
ppi provides the plugin programming interface. |