type GroupManager …
type GroupLister …
type rootAPIsHandler …
func NewRootAPIsHandler(addresses Addresses, serializer runtime.NegotiatedSerializer) *rootAPIsHandler { … }
func (s *rootAPIsHandler) AddGroup(apiGroup metav1.APIGroup) { … }
func (s *rootAPIsHandler) RemoveGroup(groupName string) { … }
func (s *rootAPIsHandler) Groups(ctx context.Context, req *http.Request) ([]metav1.APIGroup, error) { … }
func (s *rootAPIsHandler) groupsLocked(ctx context.Context, req *http.Request) []metav1.APIGroup { … }
func (s *rootAPIsHandler) ServeHTTP(resp http.ResponseWriter, req *http.Request) { … }
func (s *rootAPIsHandler) restfulHandle(req *restful.Request, resp *restful.Response) { … }
func (s *rootAPIsHandler) WebService() *restful.WebService { … }