-
Notifications
You must be signed in to change notification settings - Fork 1
/
role_binding.pb.access.go
148 lines (127 loc) · 5.44 KB
/
role_binding.pb.access.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// Code generated by protoc-gen-goten-resource
// Resource: RoleBinding
// DO NOT EDIT!!!
package role_binding
import (
"context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
gotenobject "github.com/cloudwan/goten-sdk/runtime/object"
gotenresource "github.com/cloudwan/goten-sdk/runtime/resource"
"github.com/cloudwan/goten-sdk/types/watch_type"
)
// proto imports
import (
condition "github.com/cloudwan/edgelq-sdk/iam/resources/v1/condition"
organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1/organization"
project "github.com/cloudwan/edgelq-sdk/iam/resources/v1/project"
role "github.com/cloudwan/edgelq-sdk/iam/resources/v1/role"
meta_service "github.com/cloudwan/goten-sdk/meta-service/resources/v1/service"
meta "github.com/cloudwan/goten-sdk/types/meta"
)
// ensure the imports are used
var (
_ = new(context.Context)
_ = codes.Internal
_ = status.Status{}
_ = watch_type.WatchType_STATEFUL
_ = new(gotenobject.FieldPath)
_ = new(gotenresource.ListQuery)
)
// make sure we're using proto imports
var (
_ = &condition.Condition{}
_ = &organization.Organization{}
_ = &project.Project{}
_ = &role.Role{}
_ = &meta_service.Service{}
_ = &meta.Meta{}
)
type RoleBindingAccess interface {
GetRoleBinding(context.Context, *GetQuery) (*RoleBinding, error)
BatchGetRoleBindings(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
QueryRoleBindings(context.Context, *ListQuery) (*QueryResultSnapshot, error)
WatchRoleBinding(context.Context, *GetQuery, func(*RoleBindingChange) error) error
WatchRoleBindings(context.Context, *WatchQuery, func(*QueryResultChange) error) error
SaveRoleBinding(context.Context, *RoleBinding, ...gotenresource.SaveOption) error
DeleteRoleBinding(context.Context, *Reference, ...gotenresource.DeleteOption) error
}
type anyCastAccess struct {
RoleBindingAccess
}
func AsAnyCastAccess(access RoleBindingAccess) gotenresource.Access {
return &anyCastAccess{RoleBindingAccess: access}
}
func (a *anyCastAccess) Get(ctx context.Context, q gotenresource.GetQuery) (gotenresource.Resource, error) {
if asRoleBindingQuery, ok := q.(*GetQuery); ok {
return a.GetRoleBinding(ctx, asRoleBindingQuery)
}
return nil, status.Errorf(codes.Internal,
"Unrecognized descriptor, expected RoleBinding, got: %s",
q.GetResourceDescriptor().GetResourceTypeName().FullyQualifiedTypeName())
}
func (a *anyCastAccess) Query(ctx context.Context, q gotenresource.ListQuery) (gotenresource.QueryResultSnapshot, error) {
if asRoleBindingQuery, ok := q.(*ListQuery); ok {
return a.QueryRoleBindings(ctx, asRoleBindingQuery)
}
return nil, status.Errorf(codes.Internal,
"Unrecognized descriptor, expected RoleBinding, got: %s",
q.GetResourceDescriptor().GetResourceTypeName().FullyQualifiedTypeName())
}
func (a *anyCastAccess) Search(ctx context.Context, q gotenresource.SearchQuery) (gotenresource.QueryResultSnapshot, error) {
return nil, status.Errorf(codes.Internal, "Search is not available for RoleBinding")
}
func (a *anyCastAccess) Watch(ctx context.Context, q gotenresource.GetQuery, cb func(ch gotenresource.ResourceChange) error) error {
if asRoleBindingQuery, ok := q.(*GetQuery); ok {
return a.WatchRoleBinding(ctx, asRoleBindingQuery, func(change *RoleBindingChange) error {
return cb(change)
})
}
return status.Errorf(codes.Internal,
"Unrecognized descriptor, expected RoleBinding, got: %s",
q.GetResourceDescriptor().GetResourceTypeName().FullyQualifiedTypeName())
}
func (a *anyCastAccess) WatchQuery(ctx context.Context, q gotenresource.WatchQuery, cb func(ch gotenresource.QueryResultChange) error) error {
if asRoleBindingQuery, ok := q.(*WatchQuery); ok {
return a.WatchRoleBindings(ctx, asRoleBindingQuery, func(change *QueryResultChange) error {
return cb(change)
})
}
return status.Errorf(codes.Internal,
"Unrecognized descriptor, expected RoleBinding, got: %s",
q.GetResourceDescriptor().GetResourceTypeName().FullyQualifiedTypeName())
}
func (a *anyCastAccess) Save(ctx context.Context, res gotenresource.Resource, opts ...gotenresource.SaveOption) error {
if asRoleBindingRes, ok := res.(*RoleBinding); ok {
return a.SaveRoleBinding(ctx, asRoleBindingRes, opts...)
}
return status.Errorf(codes.Internal,
"Unrecognized descriptor, expected RoleBinding, got: %s",
res.GetResourceDescriptor().GetResourceTypeName().FullyQualifiedTypeName())
}
func (a *anyCastAccess) Delete(ctx context.Context, ref gotenresource.Reference, opts ...gotenresource.DeleteOption) error {
if asRoleBindingRef, ok := ref.(*Reference); ok {
return a.DeleteRoleBinding(ctx, asRoleBindingRef, opts...)
}
return status.Errorf(codes.Internal,
"Unrecognized descriptor, expected RoleBinding, got: %s",
ref.GetResourceDescriptor().GetResourceTypeName().FullyQualifiedTypeName())
}
func (a *anyCastAccess) BatchGet(ctx context.Context, toGet []gotenresource.Reference, opts ...gotenresource.BatchGetOption) error {
roleBindingRefs := make([]*Reference, 0, len(toGet))
for _, ref := range toGet {
if asRoleBindingRef, ok := ref.(*Reference); !ok {
return status.Errorf(codes.Internal,
"Unrecognized descriptor, expected RoleBinding, got: %s",
ref.GetResourceDescriptor().GetResourceTypeName().FullyQualifiedTypeName())
} else {
roleBindingRefs = append(roleBindingRefs, asRoleBindingRef)
}
}
return a.BatchGetRoleBindings(ctx, roleBindingRefs, opts...)
}
func (a *anyCastAccess) GetResourceDescriptors() []gotenresource.Descriptor {
return []gotenresource.Descriptor{
GetDescriptor(),
}
}