namespace

package
v0.12.0 Latest Latest
Warning

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

Go to latest
Published: May 13, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidID     = errors.New("namespace id is invalid")
	ErrNotExist      = errors.New("namespace doesn't exist")
	ErrConflict      = errors.New("namespace name already exist")
	ErrInvalidDetail = errors.New("invalid namespace detail")
)

Functions

func CreateID

func CreateID(backend, resourceType string) string

Types

type Namespace

type Namespace struct {
	ID        string
	Name      string
	Metadata  metadata.Metadata
	CreatedAt time.Time
	UpdatedAt time.Time
}

type Repository

type Repository interface {
	Get(ctx context.Context, id string) (Namespace, error)
	Upsert(ctx context.Context, ns Namespace) (Namespace, error)
	List(ctx context.Context) ([]Namespace, error)
	Update(ctx context.Context, ns Namespace) (Namespace, error)
}

type Service

type Service struct {
	// contains filtered or unexported fields
}

func NewService

func NewService(repository Repository) *Service

func (Service) Get

func (s Service) Get(ctx context.Context, id string) (Namespace, error)

func (Service) List

func (s Service) List(ctx context.Context) ([]Namespace, error)

func (Service) Update

func (s Service) Update(ctx context.Context, ns Namespace) (Namespace, error)

func (Service) Upsert

func (s Service) Upsert(ctx context.Context, ns Namespace) (Namespace, error)

Jump to

Keyboard shortcuts

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