Documentation ¶
Index ¶
- type CertificateRepository
- type ClusterRepository
- type ReadOnlyCertificateRepository
- type ReadOnlyClusterAccessRepository
- type ReadOnlyClusterRepository
- type ReadOnlyTenantClusterBindingRepository
- type ReadOnlyTenantRepository
- type ReadOnlyTenantUserRepository
- type ReadOnlyUserRepository
- type ReadOnlyUserRoleBindingRepository
- type TenantClusterBindingRepository
- type TenantRepository
- type UserRepository
- type UserRoleBindingRepository
- type WriteOnlyCertificateRepository
- type WriteOnlyClusterRepository
- type WriteOnlyTenantClusterBindingRepository
- type WriteOnlyTenantRepository
- type WriteOnlyUserRepository
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CertificateRepository ¶
type CertificateRepository interface { es.Repository ReadOnlyCertificateRepository WriteOnlyCertificateRepository }
CertificateRepository is a repository for reading and writing certificate projections.
func NewCertificateRepository ¶
func NewCertificateRepository(repository es.Repository) CertificateRepository
NewCertificateRepository creates a repository for reading and writing certificate projections.
type ClusterRepository ¶
type ClusterRepository interface { es.Repository ReadOnlyClusterRepository WriteOnlyClusterRepository }
ClusterRepository is a repository for reading and writing cluster projections.
func NewClusterRepository ¶
func NewClusterRepository(repository es.Repository) ClusterRepository
NewClusterRepository creates a repository for reading and writing cluster projections.
type ReadOnlyCertificateRepository ¶
type ReadOnlyCertificateRepository interface { // GetCertificate retrieves certificates by aggregate type and id GetCertificate(context.Context, *domApi.GetCertificateRequest) (*projections.Certificate, error) }
ReadOnlyCertificateRepository is a repository for reading certificate projections.
type ReadOnlyClusterAccessRepository ¶ added in v0.3.0
type ReadOnlyClusterAccessRepository interface { // GetClustersAccessibleByUserId returns all clusters accessible by a user identified by user id GetClustersAccessibleByUserId(ctx context.Context, id uuid.UUID) ([]*projections.Cluster, error) // GetClustersAccessibleByTenantId returns all clusters accessible by a tenant identified by tenant id GetClustersAccessibleByTenantId(ctx context.Context, id uuid.UUID) ([]*projections.Cluster, error) }
ReadOnlyClusterAccessRepository is a repository for reading accesses to a cluster.
func NewClusterAccessRepository ¶ added in v0.3.0
func NewClusterAccessRepository(tenantClusterBindingRepo ReadOnlyTenantClusterBindingRepository, clusterRepo ReadOnlyClusterRepository, userRoleBindingRepo ReadOnlyUserRoleBindingRepository) ReadOnlyClusterAccessRepository
NewClusterAccessRepository creates a repository for reading cluster access projections.
type ReadOnlyClusterRepository ¶
type ReadOnlyClusterRepository interface { // ById searches for the a tenant projection by it's id. ByClusterId(context.Context, string) (*projections.Cluster, error) // ByName searches for the a tenant projection by it's name ByClusterName(context.Context, string) (*projections.Cluster, error) // GetAll searches for all known clusters. GetAll(context.Context, bool) ([]*projections.Cluster, error) // GetBootstrapToken returns the bootstrap token for a cluster with the given UUID GetBootstrapToken(context.Context, string) (string, error) }
ReadOnlyClusterRepository is a repository for reading cluster projections.
func NewRemoteClusterRepository ¶
func NewRemoteClusterRepository(clusterClient api.ClusterClient) ReadOnlyClusterRepository
NewRemoteClusterRepository creates a repository for reading user projections.
type ReadOnlyTenantClusterBindingRepository ¶ added in v0.3.0
type ReadOnlyTenantClusterBindingRepository interface { // GetAll searches for the TenantClusterBinding projections. GetAll(ctx context.Context, showDeleted bool) ([]*projections.TenantClusterBinding, error) GetByTenantClusterBindingId(ctx context.Context, id string) (*projections.TenantClusterBinding, error) GetByTenantId(ctx context.Context, tenantId uuid.UUID) ([]*projections.TenantClusterBinding, error) GetByClusterId(ctx context.Context, tenantId uuid.UUID) ([]*projections.TenantClusterBinding, error) GetByTenantAndClusterId(ctx context.Context, tenantId, clusterId uuid.UUID) (*projections.TenantClusterBinding, error) }
ReadOnlyTenantClusterBindingRepository is a repository for reading tenantclusterbinding projections.
type ReadOnlyTenantRepository ¶
type ReadOnlyTenantRepository interface { // ById searches for the a tenant projection by it's id. ByTenantId(context.Context, string) (*projections.Tenant, error) // ByName searches for the a tenant projection by it's name ByName(context.Context, string) (*projections.Tenant, error) // GetAll searches for all tenant projections. GetAll(context.Context, bool) ([]*projections.Tenant, error) }
ReadOnlyTenantRepository is a repository for reading tenant projections.
type ReadOnlyTenantUserRepository ¶
type ReadOnlyTenantUserRepository interface { // GetTenantUsersById searches for users belonging to a tenant. GetTenantUsersById(context.Context, uuid.UUID) ([]*projections.TenantUser, error) }
ReadOnlyTenantUserRepository is a repository for reading users of a tenant.
func NewTenantUserRepository ¶
func NewTenantUserRepository(userRepo ReadOnlyUserRepository, userRoleBindingRepo ReadOnlyUserRoleBindingRepository) ReadOnlyTenantUserRepository
NewTenantUserRepository creates a repository for reading and writing tenantuser projections.
type ReadOnlyUserRepository ¶
type ReadOnlyUserRepository interface { // ById searches for the a user projection by it's id. ByUserId(context.Context, uuid.UUID) (*projections.User, error) // ByEmail searches for the a user projection by it's email address. ByEmail(context.Context, string) (*projections.User, error) // GetAll searches for all user projection. GetAll(context.Context, bool) ([]*projections.User, error) // GetCount returns the user count GetCount(context.Context, bool) (int, error) }
ReadOnlyUserRepository is a repository for reading user projections.
func NewRemoteUserRepository ¶
func NewRemoteUserRepository(userService api.UserClient) ReadOnlyUserRepository
NewRemoteUserRepository creates a repository for reading user projections.
type ReadOnlyUserRoleBindingRepository ¶
type ReadOnlyUserRoleBindingRepository interface { // GetByUserRoleBindingId searches for the UserRoleBinding projections by its id. GetByUserRoleBindingId(ctx context.Context, id string) (*projections.UserRoleBinding, error) // ByUserId searches for all UserRoleBinding projection's by the user id. ByUserId(context.Context, uuid.UUID) ([]*projections.UserRoleBinding, error) // ByUserIdAndScope searches for all UserRoleBinding projection's by the user id and the scope. ByUserIdAndScope(context.Context, uuid.UUID, es.Scope) ([]*projections.UserRoleBinding, error) // ByScopeAndResource returns all UserRoleBinding projections matching the given scope and resource. ByScopeAndResource(context.Context, es.Scope, uuid.UUID) ([]*projections.UserRoleBinding, error) }
ReadOnlyUserRepository is a repository for reading UserRoleBinding projections.
type TenantClusterBindingRepository ¶ added in v0.3.0
type TenantClusterBindingRepository interface { es.Repository ReadOnlyTenantClusterBindingRepository WriteOnlyTenantClusterBindingRepository }
TenantClusterBindingRepository is a repository for reading and writing tenantclusterbinding projections.
func NewTenantClusterBindingRepository ¶ added in v0.3.0
func NewTenantClusterBindingRepository(repository es.Repository) TenantClusterBindingRepository
NewTenantClusterBindingRepository creates a repository for reading and writing tenantclusterbinding projections.
type TenantRepository ¶
type TenantRepository interface { es.Repository ReadOnlyTenantRepository WriteOnlyTenantRepository }
TenantRepository is a repository for reading and writing tenant projections.
func NewTenantRepository ¶
func NewTenantRepository(repository es.Repository) TenantRepository
NewTenantRepository creates a repository for reading and writing tenant projections.
type UserRepository ¶
type UserRepository interface { es.Repository ReadOnlyUserRepository WriteOnlyUserRepository }
Repository is a repository for reading and writing user projections.
func NewUserRepository ¶
func NewUserRepository(repository es.Repository, roleBindingRepo UserRoleBindingRepository) UserRepository
NewUserRepository creates a repository for reading and writing user projections.
type UserRoleBindingRepository ¶
type UserRoleBindingRepository interface { es.Repository ReadOnlyUserRoleBindingRepository }
Repository is a repository for reading and writing UserRoleBinding projections.
func NewUserRoleBindingRepository ¶
func NewUserRoleBindingRepository(repository es.Repository) UserRoleBindingRepository
NewUserRepository creates a repository for reading and writing UserRoleBinding projections.
type WriteOnlyCertificateRepository ¶
type WriteOnlyCertificateRepository interface { }
WriteOnlyCertificateRepository is a repository for writing certificate projections.
type WriteOnlyClusterRepository ¶
type WriteOnlyClusterRepository interface { }
WriteOnlyClusterRepository is a repository for writing cluster projections.
type WriteOnlyTenantClusterBindingRepository ¶ added in v0.3.0
type WriteOnlyTenantClusterBindingRepository interface { }
WriteOnlyTenantClusterBindingRepository is a repository for writing tenantclusterbinding projections.
type WriteOnlyTenantRepository ¶
type WriteOnlyTenantRepository interface { }
WriteOnlyTenantRepository is a repository for writing tenant projections.
type WriteOnlyUserRepository ¶
type WriteOnlyUserRepository interface { }
WriteOnlyUserRepository is a repository for writing user projections.