-
Notifications
You must be signed in to change notification settings - Fork 91
/
config.go
233 lines (228 loc) · 9.58 KB
/
config.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
228
229
230
231
232
233
package models
var PathConfig = "/configurations"
type ConfigBodyAuthPost struct {
OidcVerifyCert bool `json:"oidc_verify_cert"`
OidcAutoOnboard bool `json:"oidc_auto_onboard"`
OidcUserClaim string `json:"oidc_user_claim,omitempty"`
LdapGroupSearchFilter string `json:"ldap_group_search_filter,omitempty"`
AuthMode string `json:"auth_mode,omitempty"`
PrimaryAuthMode bool `json:"primary_auth_mode,omitempty"`
SelfRegistration bool `json:"self_registration"`
OidcScope string `json:"oidc_scope,omitempty"`
LdapSearchDn string `json:"ldap_search_dn,omitempty"`
ScanAllPolicy struct {
Type string `json:"type,omitempty"`
Parameter struct {
DailyTime int `json:"daily_time,omitempty"`
} `json:"parameter,omitempty"`
} `json:"scan_all_policy,omitempty"`
LdapTimeout int `json:"ldap_timeout,omitempty"`
LdapBaseDn string `json:"ldap_base_dn,omitempty"`
LdapFilter string `json:"ldap_filter,omitempty"`
LdapURL string `json:"ldap_url,omitempty"`
OidcName string `json:"oidc_name,omitempty"`
LdapUID string `json:"ldap_uid,omitempty"`
OidcClientID string `json:"oidc_client_id,omitempty"`
LdapGroupBaseDn string `json:"ldap_group_base_dn,omitempty"`
LdapGroupAttributeName string `json:"ldap_group_attribute_name,omitempty"`
LdapGroupMembershipAttribute string `json:"ldap_group_membership_attribute,omitempty"`
LdapSearchPassword string `json:"ldap_search_password,omitempty"`
LdapGroupAdminDn string `json:"ldap_group_admin_dn,omitempty"`
OidcEndpoint string `json:"oidc_endpoint,omitempty"`
OidcClientSecret string `json:"oidc_client_secret,omitempty"`
OidcGroupFilter string `json:"oidc_group_filter,omitempty"`
OidcGroupsClaim string `json:"oidc_groups_claim,omitempty"`
LdapScope int `json:"ldap_scope"`
TokenExpiration int `json:"token_expiration,omitempty"`
LdapGroupSearchScope int `json:"ldap_group_search_scope"`
LdapVerifyCert bool `json:"ldap_verify_cert"`
LdapGroupGID string `json:"ldap_group_gid,omitempty"`
OidcAdminGroup string `json:"oidc_admin_group,omitempty"`
}
type ConfigBodySystemPost struct {
ProjectCreationRestriction string `json:"project_creation_restriction,omitempty"`
ReadOnly bool `json:"read_only"`
RobotTokenDuration int `json:"robot_token_duration,omitempty"`
QuotaPerProjectEnable bool `json:"quota_per_project_enable"`
RobotNamePrefix string `json:"robot_name_prefix,omitempty"`
StoragePerProject int `json:"storage_per_project,omitempty"`
ScannerSkipUpdatePulltime bool `json:"scanner_skip_update_pulltime"`
AuditLogForwardEndpoint string `json:"audit_log_forward_endpoint,omitempty"`
SkipAuditLogDatabase bool `json:"skip_audit_log_database"`
BannerMessage string `json:"banner_message,omitempty"`
}
type ConfigBodyResponse struct {
OidcVerifyCert struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"oidc_verify_cert,omitempty"`
OidcAutoOnboard struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"oidc_auto_onboard,omitempty"`
OidcUserClaim struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_user_claim,omitempty"`
OidcGroupFilter struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_group_filter,omitempty"`
OidcGroupsClaim struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_groups_claim,omitempty"`
LdapGroupSearchFilter struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_group_search_filter,omitempty"`
AuthMode struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"auth_mode,omitempty"`
PrimaryAuthMode struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"primary_auth_mode,omitempty"`
SelfRegistration struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"self_registration,omitempty"`
OidcScope struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_scope,omitempty"`
LdapSearchDn struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_search_dn,omitempty"`
StoragePerProject struct {
Editable bool `json:"editable,omitempty"`
Value int `json:"value,omitempty"`
} `json:"storage_per_project,omitempty"`
ScanAllPolicy struct {
Type string `json:"type,omitempty"`
Parameter struct {
DailyTime int `json:"daily_time,omitempty"`
} `json:"parameter,omitempty"`
} `json:"scan_all_policy",omitempty`
VerifyRemoteCert struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"verify_remote_cert,omitempty"`
LdapTimeout struct {
Editable bool `json:"editable,omitempty"`
Value int `json:"value,omitempty"`
} `json:"ldap_timeout,omitempty"`
LdapBaseDn struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_base_dn,omitempty"`
LdapFilter struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_filter,omitempty"`
ReadOnly struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"read_only,omitempty"`
QuotaPerProjectEnable struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"quota_per_project_enable,omitempty"`
LdapURL struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_url,omitempty"`
OidcName struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_name,omitempty"`
ProjectCreationRestriction struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"project_creation_restriction,omitempty"`
LdapUID struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_uid,omitempty"`
OidcClientID struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_client_id,omitempty"`
LdapGroupBaseDn struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_group_base_dn,omitempty"`
LdapGroupAttributeName struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_group_attribute_name,omitempty"`
LdapGroupAdminDn struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_group_admin_dn,omitempty"`
LdapGroupMembershipAttribute struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_group_membership_attribute,omitempty"`
OidcEndpoint struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_endpoint,omitempty"`
LdapScope struct {
Editable bool `json:"editable,omitempty"`
Value int `json:"value,omitempty"`
} `json:"ldap_scope,omitempty"`
TokenExpiration struct {
Editable bool `json:"editable,omitempty"`
Value int `json:"value,omitempty"`
} `json:"token_expiration,omitempty"`
LdapGroupSearchScope struct {
Editable bool `json:"editable,omitempty"`
Value int `json:"value,omitempty"`
} `json:"ldap_group_search_scope,omitempty"`
LdapGroupGID struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"ldap_group_gid,omitempty"`
OidcAdminGroup struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"oidc_admin_group,omitempty"`
RobotNamePrefix struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"robot_name_prefix,omitempty"`
RobotTokenDuration struct {
Editable bool `json:"editable,omitempty"`
Value int `json:"value,omitempty"`
} `json:"robot_token_duration,omitempty"`
LdapVerifyCert struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"ldap_verify_cert,omitempty"`
ScannerSkipUpdatePulltime struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"scanner_skip_update_pulltime,omitempty"`
AuditLogForwardEndpoint struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"audit_log_forward_endpoint,omitempty"`
SkipAuditLogDatabase struct {
Editable bool `json:"editable,omitempty"`
Value bool `json:"value,omitempty"`
} `json:"skip_audit_log_database,omitempty"`
BannerMessage struct {
Editable bool `json:"editable,omitempty"`
Value string `json:"value,omitempty"`
} `json:"banner_message,omitempty"`
}
type BannerMessage struct {
Closable bool `json:"closable,omitempty"`
Message string `json:"message,omitempty"`
Type string `json:"type,omitempty"`
ToDate string `json:"toDate,omitempty"`
FromDate string `json:"fromDate,omitempty"`
}