forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
register.go
69 lines (60 loc) · 2.15 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
58
59
60
61
62
63
64
65
66
67
68
69
package v1
import (
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/unversioned"
"k8s.io/kubernetes/pkg/runtime"
)
// SchemeGroupVersion is group version used to register these objects
var SchemeGroupVersion = unversioned.GroupVersion{Group: "", Version: "v1"}
// Codec encodes internal objects to the v1 scheme
var Codec = runtime.CodecFor(api.Scheme, SchemeGroupVersion.String())
func init() {
api.Scheme.AddKnownTypes(SchemeGroupVersion,
&Role{},
&RoleBinding{},
&Policy{},
&PolicyBinding{},
&PolicyList{},
&PolicyBindingList{},
&RoleBindingList{},
&RoleList{},
&ResourceAccessReview{},
&SubjectAccessReview{},
&LocalResourceAccessReview{},
&LocalSubjectAccessReview{},
&ResourceAccessReviewResponse{},
&SubjectAccessReviewResponse{},
&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 (*PolicyList) IsAnAPIObject() {}
func (*PolicyBindingList) IsAnAPIObject() {}
func (*RoleBindingList) IsAnAPIObject() {}
func (*RoleList) IsAnAPIObject() {}
func (*ResourceAccessReview) IsAnAPIObject() {}
func (*SubjectAccessReview) IsAnAPIObject() {}
func (*LocalResourceAccessReview) IsAnAPIObject() {}
func (*LocalSubjectAccessReview) IsAnAPIObject() {}
func (*ResourceAccessReviewResponse) IsAnAPIObject() {}
func (*SubjectAccessReviewResponse) IsAnAPIObject() {}
func (*IsPersonalSubjectAccessReview) IsAnAPIObject() {}