-
Notifications
You must be signed in to change notification settings - Fork 1
/
plan_assignment_request.pb.view.go
68 lines (59 loc) · 2 KB
/
plan_assignment_request.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Code generated by protoc-gen-goten-resource
// Resource: PlanAssignmentRequest
// DO NOT EDIT!!!
package plan_assignment_request
import (
"google.golang.org/protobuf/types/known/fieldmaskpb"
"github.com/cloudwan/goten-sdk/runtime/api/view"
)
// proto imports
import (
ntt_meta "github.com/cloudwan/edgelq-sdk/common/types/meta"
iam_organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/organization"
iam_project "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/project"
common "github.com/cloudwan/edgelq-sdk/limits/resources/v1alpha2/common"
plan "github.com/cloudwan/edgelq-sdk/limits/resources/v1alpha2/plan"
plan_assignment "github.com/cloudwan/edgelq-sdk/limits/resources/v1alpha2/plan_assignment"
meta_service "github.com/cloudwan/edgelq-sdk/meta/resources/v1alpha2/service"
)
// ensure the imports are used
var (
_ = fieldmaskpb.FieldMask{}
_ = view.View_UNSPECIFIED
)
// make sure we're using proto imports
var (
_ = &ntt_meta.Meta{}
_ = &iam_organization.Organization{}
_ = &iam_project.Project{}
_ = &common.Allowance{}
_ = &plan.Plan{}
_ = &plan_assignment.PlanAssignment{}
_ = &meta_service.Service{}
)
func ResourceViewFieldMask(viewName view.View, extraMask *PlanAssignmentRequest_FieldMask) *PlanAssignmentRequest_FieldMask {
protoFieldMask := &fieldmaskpb.FieldMask{}
switch viewName {
case view.View_UNSPECIFIED:
return extraMask
case view.View_FULL:
return nil
case view.View_BASIC:
protoFieldMask.Paths = append(protoFieldMask.Paths, "name", "service", "approver", "status")
break
case view.View_DETAIL:
protoFieldMask.Paths = append(protoFieldMask.Paths, "name", "service", "approver", "request", "status")
break
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 := &PlanAssignmentRequest_FieldMask{}
_ = res.FromProtoFieldMask(protoFieldMask)
return res
}