Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Strategy is the default logic that applies when creating and updating Role objects.
Functions ¶
Types ¶
type Registry ¶
type Registry interface {
// ListRoles obtains list of policyRoles that match a selector.
ListRoles(ctx kapi.Context, options *kapi.ListOptions) (*authorizationapi.RoleList, error)
// GetRole retrieves a specific policyRole.
GetRole(ctx kapi.Context, id string) (*authorizationapi.Role, error)
// CreateRole creates a new policyRole.
CreateRole(ctx kapi.Context, policyRole *authorizationapi.Role) (*authorizationapi.Role, error)
// UpdateRole updates a policyRole.
UpdateRole(ctx kapi.Context, policyRole *authorizationapi.Role) (*authorizationapi.Role, bool, error)
// DeleteRole deletes a policyRole.
DeleteRole(ctx kapi.Context, id string) error
}
Registry is an interface for things that know how to store Roles.
type Storage ¶
type Storage interface {
rest.Getter
rest.Lister
rest.CreaterUpdater
rest.GracefulDeleter
// CreateRoleWithEscalation creates a new policyRole. Skipping the escalation check should only be done during bootstrapping procedures where no users are currently bound.
CreateRoleWithEscalation(ctx kapi.Context, policyRole *authorizationapi.Role) (*authorizationapi.Role, error)
// UpdateRoleWithEscalation updates a policyRole. Skipping the escalation check should only be done during bootstrapping procedures where no users are currently bound.
UpdateRoleWithEscalation(ctx kapi.Context, policyRole *authorizationapi.Role) (*authorizationapi.Role, bool, error)
}
Storage is an interface for a standard REST Storage backend
Source Files
¶
- registry.go
- strategy.go
Click to show internal directories.
Click to hide internal directories.