-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequests.go
793 lines (717 loc) · 32.3 KB
/
requests.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
package horizon
import (
"fmt"
)
// Requests
type Workflow string
const (
Enroll Workflow = "enroll"
Revoke Workflow = "revoke"
Update Workflow = "update"
Migrate Workflow = "migrate"
Recover Workflow = "recover"
Renew Workflow = "renew"
Import Workflow = "import"
)
type Status string
const (
Denied Status = "denied"
Pending Status = "pending"
Approved Status = "approved"
Canceled Status = "canceled"
Completed Status = "completed"
Processing Status = "processing"
)
func invalidModuleError(found, expected Module) error {
return fmt.Errorf("invalid module (found '%s', expected '%s')", found, expected)
}
func invalidWorkflowError(found, expected Workflow) error {
return fmt.Errorf("invalid workflow (found '%s', expected '%s')", found, expected)
}
type IndexedDNElement struct {
Element string `json:"element"`
Type string `json:"type,omitempty"`
Value string `json:"value,omitempty"`
Mandatory bool `json:"mandatory,omitempty"`
Editable bool `json:"editable,omitempty"`
}
type ListSANElement struct {
Type string `json:"type,omitempty"`
Value []string `json:"value,omitempty"`
Editable bool `json:"editable,omitempty"`
Min int `json:"min,omitempty"`
Max int `json:"max,omitempty"`
}
type ExtensionElement struct {
Type string `json:"type,omitempty"`
Editable bool `json:"editable,omitempty"`
Mandatory bool `json:"mandatory,omitempty"`
Value string `json:"value,omitempty"`
}
func NewLabelElement(label string, value *string) *LabelElement {
if value == nil {
return nil
}
if *value == "" {
return &LabelElement{Label: label, Value: Delete}
}
return &LabelElement{Label: label, Value: &String{*value}}
}
type LabelElement struct {
Label string `json:"label,omitempty"`
Mandatory bool `json:"mandatory,omitempty"`
Editable bool `json:"editable,omitempty"`
Value *String `json:"value"`
}
type MetadataType string
const (
// Horizon metadata
MetadataPkiConnector MetadataType = "pki_connector"
MetadataScepTransId MetadataType = "scep_transid"
MetadataRenewedCertificateId MetadataType = "renewed_certificate_id"
MetadataPreviousCertificateId MetadataType = "previous_certificate_id"
MetadataAutomationPolicy MetadataType = "automation_policy"
// Third party PKI metadata
MetadataCertEuropeId MetadataType = "certeurope_id"
MetadataDigiCertId MetadataType = "digicert_id"
MetadataDigicertOrderId MetadataType = "digicert_order_id"
MetadataEntrustId MetadataType = "entrust_id"
MetadataFCMSId MetadataType = "fcms_id"
MetadataGlobalSignAtlasId MetadataType = "gsatlas_id"
MetadataGlobalSignId MetadataType = "gs_order_id"
MetadataMetaPKIId MetadataType = "metapki_id"
MetadataIDCAId MetadataType = "eviden_idca_id"
)
func GetMetadataType(metadata string) (MetadataType, error) {
switch MetadataType(metadata) {
case MetadataPkiConnector:
return MetadataPkiConnector, nil
case MetadataScepTransId:
return MetadataScepTransId, nil
case MetadataRenewedCertificateId:
return MetadataRenewedCertificateId, nil
case MetadataPreviousCertificateId:
return MetadataPreviousCertificateId, nil
case MetadataAutomationPolicy:
return MetadataAutomationPolicy, nil
case MetadataCertEuropeId:
return MetadataCertEuropeId, nil
case MetadataDigiCertId:
return MetadataDigiCertId, nil
case MetadataDigicertOrderId:
return MetadataDigicertOrderId, nil
case MetadataEntrustId:
return MetadataEntrustId, nil
case MetadataFCMSId:
return MetadataFCMSId, nil
case MetadataGlobalSignAtlasId:
return MetadataGlobalSignAtlasId, nil
case MetadataGlobalSignId:
return MetadataGlobalSignId, nil
case MetadataMetaPKIId:
return MetadataMetaPKIId, nil
case MetadataIDCAId:
return MetadataIDCAId, nil
}
return "", fmt.Errorf("invalid metadata type: %s", metadata)
}
// NewMetadataElement creates a new metadata element for Horizon:
// nil value means no change should be made
// empty value means the value was deleted
// any other value is setting the value
// note: this function does not check that metadata is a valid enum value. For this, use GetMetadataType beforehand
func NewMetadataElement(metadata string, value *string) *MetadataElement {
if value == nil {
return nil
}
if *value == "" {
return &MetadataElement{Metadata: MetadataType(metadata), Value: Delete}
}
return &MetadataElement{Metadata: MetadataType(metadata), Value: &String{*value}}
}
type MetadataElement struct {
Metadata MetadataType `json:"metadata,omitempty"`
Editable bool `json:"editable,omitempty"`
Value *String `json:"value"`
}
func NewOwnerElement(value *string) *OwnerElement {
if value == nil {
return nil
}
if *value == "" {
return &OwnerElement{Value: Delete}
}
return &OwnerElement{Value: &String{*value}}
}
type OwnerElement struct {
Value *String `json:"value"`
Mandatory bool `json:"mandatory"`
Editable bool `json:"editable"`
}
func NewTeamElement(value *string) *TeamElement {
if value == nil {
return nil
}
if *value == "" {
return &TeamElement{Value: Delete}
}
return &TeamElement{Value: &String{*value}}
}
type TeamElement struct {
Value *String `json:"value"`
Mandatory bool `json:"mandatory"`
Authorized []string `json:"authorized,omitempty"`
Editable bool `json:"editable"`
}
func NewContactEmailElement(value *string) *ContactEmailElement {
if value == nil {
return nil
}
if *value == "" {
return &ContactEmailElement{Value: Delete}
}
return &ContactEmailElement{Value: &String{*value}}
}
type ContactEmailElement struct {
Editable bool `json:"editable,omitempty"`
Mandatory bool `json:"mandatory,omitempty"`
Value *String `json:"value"`
}
type Secret struct {
Value string `json:"value,omitempty"`
}
type Capabilities struct {
Centralized bool `json:"centralized,omitempty"`
Decentralized bool `json:"decentralized,omitempty"`
PreferredEnrollmentMode string `json:"preferredEnrollmentMode,omitempty"`
DefaultKeyType string `json:"defaultKeyType,omitempty"`
AuthorizedKeyTypes []string `json:"authorizedKeyTypes,omitempty"`
Escrow bool `json:"escrow,omitempty"`
ShowP12PasswordOnEnroll bool `json:"showP12PasswordOnEnroll,omitempty"`
ShowP12OnEnroll bool `json:"showP12OnEnroll,omitempty"`
ShowP12PasswordOnRecover bool `json:"showP12PasswordOnRecover,omitempty"`
ShowP12OnRecover bool `json:"showP12OnRecover,omitempty"`
P12PasswordMode string `json:"p12PasswordMode,omitempty"`
}
type Request interface {
EnsureType() error
}
type WebRAEnrollTemplateParams struct {
CertificatePEM string
CertificateId string
Profile string
Csr string
}
// Capabilities is a readonly field
type WebRAEnrollTemplate struct {
KeyType string `json:"keyType,omitempty"`
Csr string `json:"csr,omitempty"`
Subject []IndexedDNElement `json:"subject,omitempty"`
Sans []ListSANElement `json:"sans,omitempty"`
Extensions []ExtensionElement `json:"extensions,omitempty"`
Owner *OwnerElement `json:"owner,omitempty"`
Team *TeamElement `json:"team,omitempty"`
ContactEmail *ContactEmailElement `json:"contactEmail,omitempty"`
Labels []LabelElement `json:"labels,omitempty"`
Metadata []MetadataElement `json:"metadata,omitempty"`
Capabilities *Capabilities `json:"capabilities,omitempty"`
}
type WebRAEnrollRequestParams struct {
Profile string
Template *WebRAEnrollTemplate
// If the request allows password set on client side, give the password here
Password string
}
type WebRAEnrollRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *WebRAEnrollTemplate `json:"template,omitempty"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Pkcs12 *Secret `json:"pkcs12,omitempty"`
Password *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *WebRAEnrollRequest) EnsureType() error {
if r.Module != WebRA {
return invalidModuleError(r.Module, WebRA)
}
if r.Workflow != Enroll {
return invalidWorkflowError(r.Workflow, Enroll)
}
return nil
}
type ScepChallengeTemplateParams struct {
Profile string
}
type ScepChallengeTemplate struct {
DnWhitelist *bool `json:"dnWhitelist,omitempty"`
Subject []IndexedDNElement `json:"subject,omitempty"`
Sans []ListSANElement `json:"sans,omitempty"`
Extensions []ExtensionElement `json:"extensions,omitempty"`
Owner *OwnerElement `json:"owner,omitempty"`
Team *TeamElement `json:"team,omitempty"`
ContactEmail *ContactEmailElement `json:"contactEmail,omitempty"`
Labels []LabelElement `json:"labels,omitempty"`
Metadata []MetadataElement `json:"metadata,omitempty"`
Capabilities *Capabilities `json:"capabilities,omitempty"`
}
func (t *ScepChallengeTemplate) IsDnWhitelist() bool {
return t.DnWhitelist != nil && *t.DnWhitelist
}
// Dn is mandatory if IsDnWhitelist is true for the template
type ScepChallengeRequestParams struct {
Profile string
Template *ScepChallengeTemplate
Dn string
}
type ScepChallengeRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *ScepChallengeTemplate `json:"template,omitempty"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Challenge *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *ScepChallengeRequest) EnsureType() error {
if r.Module != Scep {
return invalidModuleError(r.Module, Scep)
}
if r.Workflow != Enroll {
return invalidWorkflowError(r.Workflow, Enroll)
}
return nil
}
type EstChallengeTemplateParams struct {
Profile string
}
type EstChallengeTemplate struct {
DnWhitelist *bool `json:"dnWhitelist,omitempty"`
Subject []IndexedDNElement `json:"subject,omitempty"`
Sans []ListSANElement `json:"sans,omitempty"`
Extensions []ExtensionElement `json:"extensions,omitempty"`
Owner *OwnerElement `json:"owner,omitempty"`
Team *TeamElement `json:"team,omitempty"`
ContactEmail *ContactEmailElement `json:"contactEmail,omitempty"`
Labels []LabelElement `json:"labels,omitempty"`
Metadata []MetadataElement `json:"metadata,omitempty"`
Capabilities *Capabilities `json:"capabilities,omitempty"`
}
func (t *EstChallengeTemplate) IsDnWhitelist() bool {
return t.DnWhitelist != nil && *t.DnWhitelist
}
// Dn is mandatory if IsDnWhitelist is true for the template
type EstChallengeRequestParams struct {
Profile string
Template *EstChallengeTemplate
Dn string
}
type EstChallengeRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *EstChallengeTemplate `json:"template"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Challenge *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *EstChallengeRequest) EnsureType() error {
if r.Module != Est {
return invalidModuleError(r.Module, Est)
}
if r.Workflow != Enroll {
return invalidWorkflowError(r.Workflow, Enroll)
}
return nil
}
type WebRARenewTemplateParams struct {
CertificatePEM string
CertificateId string
}
// Capabilities is a readonly field
type WebRARenewTemplate struct {
KeyType string `json:"keyType,omitempty"`
Csr string `json:"csr,omitempty"`
Capabilities *Capabilities `json:"capabilities,omitempty"`
}
type WebRARenewRequestParams struct {
Template *WebRARenewTemplate
// If the request allows password set on client side, give the password here
Password string
CertToRenewId string
CertToRenewPem string
}
type WebRARenewRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *WebRARenewTemplate `json:"template,omitempty"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Pkcs12 *Secret `json:"pkcs12,omitempty"`
Password *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *WebRARenewRequest) EnsureType() error {
if r.Module != WebRA {
return invalidModuleError(r.Module, WebRA)
}
if r.Workflow != Renew {
return invalidWorkflowError(r.Workflow, Renew)
}
return nil
}
type WebRARevokeTemplate struct {
RevocationReason RevocationReason `json:"revocationReason,omitempty"`
}
type WebRARevokeRequestParams struct {
CertificateId string
CertificatePEM string
RevocationReason RevocationReason
}
type WebRARevokeRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *WebRARevokeTemplate `json:"template,omitempty"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Password *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *WebRARevokeRequest) EnsureType() error {
if r.Workflow != Revoke {
return invalidWorkflowError(r.Workflow, Revoke)
}
return nil
}
type WebRAUpdateTemplateParams struct {
CertificatePEM string
CertificateId string
}
type WebRAUpdateTemplate struct {
Owner *OwnerElement `json:"owner,omitempty"`
Team *TeamElement `json:"team,omitempty"`
ContactEmail *ContactEmailElement `json:"contactEmail,omitempty"`
Labels []LabelElement `json:"labels,omitempty"`
Metadata []MetadataElement `json:"metadata,omitempty"`
}
type WebRAUpdateRequestParams struct {
CertificatePEM string
CertificateId string
Template *WebRAUpdateTemplate
}
type WebRAUpdateRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *WebRAUpdateTemplate `json:"template,omitempty"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Password *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *WebRAUpdateRequest) EnsureType() error {
// Do not validate module as it depends on target profile
if r.Workflow != Update {
return invalidWorkflowError(r.Workflow, Update)
}
return nil
}
type WebRAMigrateTemplateParams struct {
CertificatePEM string
CertificateId string
Profile string
}
type WebRAMigrateTemplate struct {
Owner *OwnerElement `json:"owner,omitempty"`
Team *TeamElement `json:"team,omitempty"`
ContactEmail *ContactEmailElement `json:"contactEmail,omitempty"`
Labels []LabelElement `json:"labels,omitempty"`
Metadata []MetadataElement `json:"metadata,omitempty"`
}
type WebRAMigrateRequestParams struct {
CertificatePEM string
CertificateId string
Profile string
Template *WebRAMigrateTemplate
}
type WebRAMigrateRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *WebRAMigrateTemplate `json:"template,omitempty"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Password *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *WebRAMigrateRequest) EnsureType() error {
// Do not validate module as it depends on target profile
if r.Workflow != Migrate {
return invalidWorkflowError(r.Workflow, Migrate)
}
return nil
}
type WebRARecoverRequestParams struct {
CertificateId string
CertificatePEM string
Password string
Contact string
}
type WebRARecoverRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Pkcs12 *Secret `json:"pkcs12,omitempty"`
Password *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *WebRARecoverRequest) EnsureType() error {
if r.Module != WebRA {
return invalidModuleError(r.Module, WebRA)
}
if r.Workflow != Recover {
return invalidWorkflowError(r.Workflow, Recover)
}
return nil
}
type WebRAImportTemplateParams struct {
CertificatePEM string
CertificateId string
Profile string
}
//discoveryData: Option[HostDiscoveryData] = None
//
type WebRAImportTemplate struct {
PrivateKey string `json:"privateKey,omitempty"`
Owner *OwnerElement `json:"owner,omitempty"`
Team *TeamElement `json:"team,omitempty"`
ContactEmail *ContactEmailElement `json:"contactEmail,omitempty"`
Labels []LabelElement `json:"labels,omitempty"`
Metadata []MetadataElement `json:"metadata,omitempty"`
ThirdPartyData []ThirdPartyItem `json:"thirdPartyData,omitempty"`
DiscoveryData *DiscoveryData `json:"discoveryData,omitempty"`
DiscoveryInfo *DiscoveryInfo `json:"discoveryInfo,omitempty"`
}
type WebRAImportRequestParams struct {
CertificatePEM string
CertificateId string
Profile string
Template *WebRAImportTemplate
}
type WebRAImportRequest struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
Template *WebRAImportTemplate `json:"template,omitempty"`
CertificatePEM string `json:"certificatePem,omitempty"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Password *Secret `json:"password,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}
func (r *WebRAImportRequest) EnsureType() error {
// Do not validate module as it depends on target profile
if r.Workflow != Import {
return invalidWorkflowError(r.Workflow, Import)
}
return nil
}
type SearchScope string
const (
Search SearchScope = "search"
Manage SearchScope = "manage"
Self SearchScope = "self"
)
type RequestSearchQuery struct {
Query string `json:"query,omitempty"`
Fields []string `json:"fields,omitempty"`
SortedBy []SortFields `json:"sortedBy,omitempty"`
PageIndex int `json:"pageIndex,omitempty"`
PageSize int `json:"pageSize,omitempty"`
WithCount bool `json:"withCount,omitempty"`
Scope SearchScope `json:"scope,omitempty"`
}
type RequestSearchResult struct {
Id string `json:"_id,omitempty"`
Workflow Workflow `json:"workflow"`
Module Module `json:"module,omitempty"`
Status Status `json:"status,omitempty"`
Profile string `json:"profile,omitempty"`
Dn string `json:"dn,omitempty"`
Requester string `json:"requester,omitempty"`
Approver string `json:"approver,omitempty"`
Contact string `json:"contact,omitempty"`
RequesterComment string `json:"requesterComment,omitempty"`
ApproverComment string `json:"approverComment,omitempty"`
RegistrationDate int64 `json:"registrationDate"`
LastModificationDate int64 `json:"lastModificationDate"`
ExpirationDate int64 `json:"expirationDate"`
RemoveAt int64 `json:"removeAt"`
CertificateId string `json:"certificateId,omitempty"`
Certificate *Certificate `json:"certificate,omitempty"`
Labels []Label `json:"labels,omitempty"`
Metadata []Metadata `json:"metadata,omitempty"`
HolderId string `json:"holderId,omitempty"`
GlobalHolderIdCount int `json:"globalHolderIdCount,omitempty"`
ProfileHolderIdCount int `json:"profileHolderIdCount,omitempty"`
}