-
Notifications
You must be signed in to change notification settings - Fork 6
/
accountcommon_role.go
227 lines (176 loc) · 4.8 KB
/
accountcommon_role.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// Copyright (c) 2021 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.
// Code generated; DO NOT EDIT.
package iamclientmodels
import (
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// AccountcommonRole Accountcommon role
//
// swagger:model Accountcommon role.
type AccountcommonRole struct {
// adminrole
// Required: true
AdminRole *bool `json:"AdminRole"`
// deletable
// Required: true
Deletable *bool `json:"Deletable"`
// iswildcard
// Required: true
IsWildcard *bool `json:"IsWildcard"`
// managers
// Required: true
Managers []*AccountcommonRoleManager `json:"Managers"`
// members
// Required: true
Members []*AccountcommonRoleMember `json:"Members"`
// permissions
// Required: true
Permissions []*AccountcommonPermission `json:"Permissions"`
// roleid
// Required: true
RoleID *string `json:"RoleId"`
// rolename
// Required: true
RoleName *string `json:"RoleName"`
}
// Validate validates this Accountcommon role
func (m *AccountcommonRole) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateAdminRole(formats); err != nil {
res = append(res, err)
}
if err := m.validateDeletable(formats); err != nil {
res = append(res, err)
}
if err := m.validateIsWildcard(formats); err != nil {
res = append(res, err)
}
if err := m.validateManagers(formats); err != nil {
res = append(res, err)
}
if err := m.validateMembers(formats); err != nil {
res = append(res, err)
}
if err := m.validatePermissions(formats); err != nil {
res = append(res, err)
}
if err := m.validateRoleID(formats); err != nil {
res = append(res, err)
}
if err := m.validateRoleName(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *AccountcommonRole) validateAdminRole(formats strfmt.Registry) error {
if err := validate.Required("AdminRole", "body", m.AdminRole); err != nil {
return err
}
return nil
}
func (m *AccountcommonRole) validateDeletable(formats strfmt.Registry) error {
if err := validate.Required("Deletable", "body", m.Deletable); err != nil {
return err
}
return nil
}
func (m *AccountcommonRole) validateIsWildcard(formats strfmt.Registry) error {
if err := validate.Required("IsWildcard", "body", m.IsWildcard); err != nil {
return err
}
return nil
}
func (m *AccountcommonRole) validateManagers(formats strfmt.Registry) error {
if err := validate.Required("Managers", "body", m.Managers); err != nil {
return err
}
for i := 0; i < len(m.Managers); i++ {
if swag.IsZero(m.Managers[i]) { // not required
continue
}
if m.Managers[i] != nil {
if err := m.Managers[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("Managers" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
func (m *AccountcommonRole) validateMembers(formats strfmt.Registry) error {
if err := validate.Required("Members", "body", m.Members); err != nil {
return err
}
for i := 0; i < len(m.Members); i++ {
if swag.IsZero(m.Members[i]) { // not required
continue
}
if m.Members[i] != nil {
if err := m.Members[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("Members" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
func (m *AccountcommonRole) validatePermissions(formats strfmt.Registry) error {
if err := validate.Required("Permissions", "body", m.Permissions); err != nil {
return err
}
for i := 0; i < len(m.Permissions); i++ {
if swag.IsZero(m.Permissions[i]) { // not required
continue
}
if m.Permissions[i] != nil {
if err := m.Permissions[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("Permissions" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
func (m *AccountcommonRole) validateRoleID(formats strfmt.Registry) error {
if err := validate.Required("RoleId", "body", m.RoleID); err != nil {
return err
}
return nil
}
func (m *AccountcommonRole) validateRoleName(formats strfmt.Registry) error {
if err := validate.Required("RoleName", "body", m.RoleName); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *AccountcommonRole) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *AccountcommonRole) UnmarshalBinary(b []byte) error {
var res AccountcommonRole
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}