forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.go
57 lines (50 loc) · 1.73 KB
/
register.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package api
import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
)
func init() {
api.Scheme.AddKnownTypes("",
&Role{},
&RoleBinding{},
&Policy{},
&PolicyBinding{},
&ResourceAccessReview{},
&SubjectAccessReview{},
&ResourceAccessReviewResponse{},
&SubjectAccessReviewResponse{},
&PolicyList{},
&PolicyBindingList{},
&RoleBindingList{},
&RoleList{},
&IsPersonalSubjectAccessReview{},
&ClusterRole{},
&ClusterRoleBinding{},
&ClusterPolicy{},
&ClusterPolicyBinding{},
&ClusterPolicyList{},
&ClusterPolicyBindingList{},
&ClusterRoleBindingList{},
&ClusterRoleList{},
)
}
func (*ClusterRole) IsAnAPIObject() {}
func (*ClusterPolicy) IsAnAPIObject() {}
func (*ClusterPolicyBinding) IsAnAPIObject() {}
func (*ClusterRoleBinding) IsAnAPIObject() {}
func (*ClusterPolicyList) IsAnAPIObject() {}
func (*ClusterPolicyBindingList) IsAnAPIObject() {}
func (*ClusterRoleBindingList) IsAnAPIObject() {}
func (*ClusterRoleList) IsAnAPIObject() {}
func (*Role) IsAnAPIObject() {}
func (*Policy) IsAnAPIObject() {}
func (*PolicyBinding) IsAnAPIObject() {}
func (*RoleBinding) IsAnAPIObject() {}
func (*ResourceAccessReview) IsAnAPIObject() {}
func (*SubjectAccessReview) IsAnAPIObject() {}
func (*ResourceAccessReviewResponse) IsAnAPIObject() {}
func (*SubjectAccessReviewResponse) IsAnAPIObject() {}
func (*PolicyList) IsAnAPIObject() {}
func (*PolicyBindingList) IsAnAPIObject() {}
func (*RoleBindingList) IsAnAPIObject() {}
func (*RoleList) IsAnAPIObject() {}
func (*IsPersonalSubjectAccessReview) IsAnAPIObject() {}