-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource.pb.view.go
52 lines (43 loc) · 1.14 KB
/
resource.pb.view.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
// Code generated by protoc-gen-goten-resource
// Resource: Resource
// DO NOT EDIT!!!
package resource
import (
googlefieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
"github.com/cloudwan/goten-sdk/types/view"
)
// proto imports
import (
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 (
_ = googlefieldmaskpb.FieldMask{}
_ = view.View_UNSPECIFIED
)
// make sure we're using proto imports
var (
_ = &service.Service{}
_ = &meta.Meta{}
)
func ResourceViewFieldMask(viewName view.View, extraMask *Resource_FieldMask) *Resource_FieldMask {
protoFieldMask := &googlefieldmaskpb.FieldMask{}
switch viewName {
case view.View_UNSPECIFIED:
return extraMask
case view.View_FULL:
return nil
case view.View_NAME:
protoFieldMask.Paths = append(protoFieldMask.Paths, "name")
break
default:
return extraMask
}
if extraMask != nil {
protoFieldMask.Paths = append(protoFieldMask.Paths, extraMask.ToProtoFieldMask().Paths...)
}
res := &Resource_FieldMask{}
_ = res.FromProtoFieldMask(protoFieldMask)
return res
}