-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodels_gen.go
3310 lines (2916 loc) · 85 KB
/
models_gen.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
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package model
import (
"fmt"
"io"
"strconv"
)
// Base entity
type BaseEntity interface {
IsBaseEntity()
}
// "Common events properties
type CommonGitEventPayloadData interface {
IsCommonGitEventPayloadData()
}
// Customer
type Customer interface {
IsCustomer()
}
// Generic edge to allow cursors
type Edge interface {
IsEdge()
}
// Entity types
type Entity interface {
IsEntity()
}
// Error
type Error interface {
IsError()
}
// Event
type Event interface {
IsEvent()
}
// Event payload data types
type EventPayloadData interface {
IsEventPayloadData()
}
// Favorable
type Favorable interface {
IsFavorable()
}
// "Push data
type GitPush interface {
IsGitPush()
}
// Gitops entity
type GitopsEntity interface {
IsGitopsEntity()
}
// K8s logic entity
type K8sLogicEntity interface {
IsK8sLogicEntity()
}
// Base entity
type K8sStandardEntity interface {
IsK8sStandardEntity()
}
// Notification information kinds
type NotificationInfo interface {
IsNotificationInfo()
}
// Project based entity
type ProjectBasedEntity interface {
IsProjectBasedEntity()
}
// ReadModelEventPayload base interface
type ReadModelEventPayload interface {
IsReadModelEventPayload()
}
// Slice
type Slice interface {
IsSlice()
}
// Workflow spec template
type WorkflowSpecTemplate interface {
IsWorkflowSpecTemplate()
}
// Account is logical entity that group together users pipeliens and more
type Account struct {
// The account id
ID string `json:"id"`
// The account unique name
Name *string `json:"name"`
// Show to feature flags status for this account
Features *AccountFeatures `json:"features"`
// Account SSO integrations
SsoIntegrations []*Sso `json:"ssoIntegrations"`
// Users that are attached to this account
Users []*User `json:"users"`
// Ids of all users that have account admin premission to this account
Admins []string `json:"admins"`
// Controls if this account can edit its allowedDomains
EnabledAllowedDomains *bool `json:"enabledAllowedDomains"`
// All allowed domains for this account
AllowedDomains []string `json:"allowedDomains"`
// Account security
Security *SecurityInfo `json:"security"`
}
// Account Features flags
type AccountFeatures struct {
// Support ability to toggle between dark and light mode
ThemeToggle *bool `json:"themeToggle"`
}
// Args to add user to account
type AddUserToAccountArgs struct {
// User email
UserEmail string `json:"userEmail"`
// Is user Admin
IsAdmin bool `json:"isAdmin"`
// Users chosen sso id
Sso *string `json:"sso"`
}
// "Generate api token result
type APIToken struct {
// The token to use in runtime installation and other requests
Token *string `json:"token"`
}
// AppProjectReadModelEventPayload type
type AppProjectReadModelEventPayload struct {
// Type of DB entity
EntityType *string `json:"entityType"`
// Type of DB event upsert/delete
EventType *string `json:"eventType"`
// Runtime
Runtime *string `json:"runtime"`
// Reference to old entity
OldItem *EntityReference `json:"oldItem"`
// Reference to new entity
NewItem *EntityReference `json:"newItem"`
}
func (AppProjectReadModelEventPayload) IsReadModelEventPayload() {}
// Application entity
type Application struct {
// Object metadata
Metadata *ObjectMeta `json:"metadata"`
// Errors
Errors []Error `json:"errors"`
// Entities referencing this entity
ReferencedBy []BaseEntity `json:"referencedBy"`
// Entities referenced by this enitity
References []BaseEntity `json:"references"`
// Relations between parents and child applications in tree
AppsRelations *AppsRelations `json:"appsRelations"`
// History of the application
History *GitOpsSlice `json:"history"`
// Version of the entity (generation)
Version *int `json:"version"`
// Is this the latest version of this entity
Latest *bool `json:"latest"`
// Entity source
Source *GitopsEntitySource `json:"source"`
// Sync status
SyncStatus SyncStatus `json:"syncStatus"`
// Health status
HealthStatus *HealthStatus `json:"healthStatus"`
// Health message
HealthMessage *string `json:"healthMessage"`
// Desired manifest
DesiredManifest *string `json:"desiredManifest"`
// Actual manifest
ActualManifest *string `json:"actualManifest"`
// Projects
Projects []string `json:"projects"`
// Updated At
UpdatedAt *string `json:"updatedAt"`
// Path
Path *string `json:"path"`
// RepoURL
RepoURL *string `json:"repoURL"`
// Number of resources
Size *int `json:"size"`
// Revision
Revision *string `json:"revision"`
// Status
Status *ArgoCDApplicationStatus `json:"status"`
// Cluster from runtime
Cluster *string `json:"cluster"`
// Favorites
Favorites []string `json:"favorites"`
}
func (Application) IsGitopsEntity() {}
func (Application) IsBaseEntity() {}
func (Application) IsProjectBasedEntity() {}
func (Application) IsFavorable() {}
func (Application) IsEntity() {}
// Application Edge
type ApplicationEdge struct {
// Node contains the actual application data
Node *Application `json:"node"`
// Cursor
Cursor string `json:"cursor"`
}
func (ApplicationEdge) IsEdge() {}
// ApplicationReadModelEventPayload type
type ApplicationReadModelEventPayload struct {
// Type of DB entity
EntityType *string `json:"entityType"`
// Type of DB event upsert/delete
EventType *string `json:"eventType"`
// Runtime
Runtime *string `json:"runtime"`
// Reference to old entity
OldItem *EntityReference `json:"oldItem"`
// Reference to new entity
NewItem *EntityReference `json:"newItem"`
}
func (ApplicationReadModelEventPayload) IsReadModelEventPayload() {}
// Application ref
type ApplicationRef struct {
// Name
Name string `json:"name"`
// Group
Group string `json:"group"`
// Kind
Kind string `json:"kind"`
// Version
Version string `json:"version"`
// Namespace
Namespace *string `json:"namespace"`
// Is reference was cut during tree normalizing
IsReferenceCut *bool `json:"isReferenceCut"`
}
// Application Slice
type ApplicationSlice struct {
// Application edges
Edges []*ApplicationEdge `json:"edges"`
// Slice information
PageInfo *SliceInfo `json:"pageInfo"`
}
func (ApplicationSlice) IsSlice() {}
// Application filter arguments
type ApplicationsFilterArgs struct {
// Filter applications from a specific project
Project *string `json:"project"`
// Filter applications from a specific runtime
Runtime *string `json:"runtime"`
// Filter applications from runtime list
Runtimes []*string `json:"runtimes"`
// Filter applications by list of names
Applications []*string `json:"applications"`
// Filter applications by name fragment
ApplicationName *string `json:"applicationName"`
// Filter applications by status
Statuses []*SyncStatus `json:"statuses"`
// Filter applications by health status
HealthStatuses []*HealthStatus `json:"healthStatuses"`
// Filter applications by namespace
Namespaces []*string `json:"namespaces"`
// Filter applications by kind
Kinds []*string `json:"kinds"`
// Filter applications by cluster
Clusters []*string `json:"clusters"`
// Filter applications by favorite using userId
UserID *string `json:"userId"`
// Filter applications by favorite
Favorite *bool `json:"favorite"`
}
// Application sorting arguments
type ApplicationsSortArg struct {
// Field for sorting
Field SortingField `json:"field"`
// Order
Order SortingOrder `json:"order"`
}
// Application relations
type AppsRelations struct {
// Entities referencing this entity
ReferencedBy []*ApplicationRef `json:"referencedBy"`
// Entities referenced by this enitity
References []*ApplicationRef `json:"references"`
}
// Argo CD Application status
type ArgoCDApplicationStatus struct {
// Sync status
SyncStatus SyncStatus `json:"syncStatus"`
// Sync started at
SyncStartedAt *string `json:"syncStartedAt"`
// Sync finished at
SyncFinishedAt *string `json:"syncFinishedAt"`
// Health status
HealthStatus *HealthStatus `json:"healthStatus"`
// Health message
HealthMessage *string `json:"healthMessage"`
// Revision
Revision string `json:"revision"`
// Version
Version string `json:"version"`
}
// Calendar event payload data
type CalendarEventPayloadData struct {
// Event payload type
Type PayloadDataTypes `json:"type"`
// TBD
Schedule string `json:"schedule"`
// TBD
Interval string `json:"interval"`
// TBD
Timezone string `json:"timezone"`
// TBD
Metadata string `json:"metadata"`
}
func (CalendarEventPayloadData) IsEventPayloadData() {}
// ClientIP
type ClientIP struct {
// TimeoutSeconds
TimeoutSeconds *int `json:"timeoutSeconds"`
}
// Component entity
type Component struct {
// Object metadata
Metadata *ObjectMeta `json:"metadata"`
// Errors
Errors []Error `json:"errors"`
// Entities referencing this entity
ReferencedBy []BaseEntity `json:"referencedBy"`
// Entities referenced by this enitity
References []BaseEntity `json:"references"`
// Self entity reference for the real k8s entity in case of codefresh logical entity
Self *Application `json:"self"`
// History of the component
History *CompositeSlice `json:"history"`
// Sync status
SyncStatus SyncStatus `json:"syncStatus"`
// Health status
HealthStatus *HealthStatus `json:"healthStatus"`
// Health message
HealthMessage *string `json:"healthMessage"`
// Projects
Projects []string `json:"projects"`
// Component's version
Version string `json:"version"`
}
func (Component) IsBaseEntity() {}
func (Component) IsK8sLogicEntity() {}
func (Component) IsProjectBasedEntity() {}
func (Component) IsEntity() {}
// Component Edge
type ComponentEdge struct {
// Node contains the actual component data
Node *Component `json:"node"`
// Cursor
Cursor string `json:"cursor"`
}
func (ComponentEdge) IsEdge() {}
// ComponentReadModelEventPayload type
type ComponentReadModelEventPayload struct {
// Type of DB entity
EntityType *string `json:"entityType"`
// Type of DB event upsert/delete
EventType *string `json:"eventType"`
// Runtime
Runtime *string `json:"runtime"`
// Reference to old entity
OldItem *EntityReference `json:"oldItem"`
// Reference to new entity
NewItem *EntityReference `json:"newItem"`
}
func (ComponentReadModelEventPayload) IsReadModelEventPayload() {}
// Component Slice
type ComponentSlice struct {
// Component edges
Edges []*ComponentEdge `json:"edges"`
// Slice information
PageInfo *SliceInfo `json:"pageInfo"`
}
func (ComponentSlice) IsSlice() {}
// Composite Slice
type CompositeSlice struct {
// GitOps edges
Edges []*GitOpsEdge `json:"edges"`
// Slice information
PageInfo []*CompositeSliceInfo `json:"pageInfo"`
// Indicate if there is next slice
HasNextPage bool `json:"hasNextPage"`
// Indicate if there is previous slice
HasPrevPage bool `json:"hasPrevPage"`
}
// Infomration about a slice of a specific kind
type CompositeSliceInfo struct {
// Key of the slice
Key string `json:"key"`
// Cursor for the first result in the slice
StartCursor *string `json:"startCursor"`
// Cursor for the last result in the slice
EndCursor *string `json:"endCursor"`
}
// Pagination arguments to request kind-slice
type CompositeSlicePaginationArgs struct {
// References a specific key
Key string `json:"key"`
// Returns entities after the provided cursor
After *string `json:"after"`
// Returns entities before the provided cursor
Before *string `json:"before"`
// Returns the first X entities
First *int `json:"first"`
// Returns the last X entities
Last *int `json:"last"`
}
// Args to edit user to account
type EditUserToAccountArgs struct {
// User email
UserEmail string `json:"userEmail"`
// Is user Admin
IsAdmin bool `json:"isAdmin"`
// Users chosen sso id
Sso *string `json:"sso"`
// The user id
ID string `json:"id"`
// The current status of this user
Status string `json:"status"`
}
// Db Entity Reference
type EntityReference struct {
// GVK/group
Group *string `json:"group"`
// GVK/version
Version *string `json:"version"`
// GVK/kind
Kind *string `json:"kind"`
// Resource name
Name *string `json:"name"`
// Resource namespace
Namespace *string `json:"namespace"`
}
// Error Context
type ErrorContext struct {
// Repo url
RepoURL string `json:"repoURL"`
// Related revision
Revision string `json:"revision"`
// Git commit message
CommitMessage *string `json:"commitMessage"`
// Git commit date
CommitDate *string `json:"commitDate"`
// Git commit author
CommitAuthor *string `json:"commitAuthor"`
// Path to related file
Path string `json:"path"`
// Related line
Line *int `json:"line"`
// Commit url
CommitURL *string `json:"commitUrl"`
// Commit url with file
FileURL *string `json:"fileUrl"`
}
// Event payload entity
type EventPayload struct {
// UID of event
UID *string `json:"uid"`
// Content of the event
Data *string `json:"data"`
// Time
Time *string `json:"time"`
// Event source
EventSource *EventSource `json:"eventSource"`
// Event name
EventName *string `json:"eventName"`
// Event type
EventType *string `json:"eventType"`
// Account
Account *string `json:"account"`
// Runtime
Runtime *string `json:"runtime"`
}
func (EventPayload) IsEntity() {}
// EventPayload Edge
type EventPayloadEdge struct {
// Node contains the actual event payload data
Node *EventPayload `json:"node"`
// Cursor
Cursor string `json:"cursor"`
}
func (EventPayloadEdge) IsEdge() {}
// EventPayloadReadModelEventPayload type
type EventPayloadReadModelEventPayload struct {
// Type of DB entity
EntityType *string `json:"entityType"`
// Type of DB event upsert/delete
EventType *string `json:"eventType"`
// Runtime
Runtime *string `json:"runtime"`
// Reference to old entity
OldItem *EntityReference `json:"oldItem"`
// Reference to new entity
NewItem *EntityReference `json:"newItem"`
}
func (EventPayloadReadModelEventPayload) IsReadModelEventPayload() {}
// EventPayload Slice
type EventPayloadSlice struct {
// EventPayload edges
Edges []*EventPayloadEdge `json:"edges"`
// Slice information
PageInfo *SliceInfo `json:"pageInfo"`
}
func (EventPayloadSlice) IsSlice() {}
// Event source entity
type EventSource struct {
// Object metadata
Metadata *ObjectMeta `json:"metadata"`
// Errors
Errors []Error `json:"errors"`
// Entities referencing this entity
ReferencedBy []BaseEntity `json:"referencedBy"`
// Entities referenced by this enitity
References []BaseEntity `json:"references"`
// History of the event-source
History *GitOpsSlice `json:"history"`
// Version of the entity
Version *int `json:"version"`
// Is this the latest version of this entity
Latest *bool `json:"latest"`
// Entity source
Source *GitopsEntitySource `json:"source"`
// Sync status
SyncStatus SyncStatus `json:"syncStatus"`
// Health status
HealthStatus *HealthStatus `json:"healthStatus"`
// Health message
HealthMessage *string `json:"healthMessage"`
// Desired manifest
DesiredManifest *string `json:"desiredManifest"`
// Actual manifest
ActualManifest *string `json:"actualManifest"`
// Projects
Projects []string `json:"projects"`
}
func (EventSource) IsBaseEntity() {}
func (EventSource) IsGitopsEntity() {}
func (EventSource) IsProjectBasedEntity() {}
func (EventSource) IsEntity() {}
// Event source Edge
type EventSourceEdge struct {
// Node contains the actual event source data
Node *EventSource `json:"node"`
// Cursor
Cursor string `json:"cursor"`
}
func (EventSourceEdge) IsEdge() {}
// EventSourceReadModelEventPayload type
type EventSourceReadModelEventPayload struct {
// Type of DB entity
EntityType *string `json:"entityType"`
// Type of DB event upsert/delete
EventType *string `json:"eventType"`
// Runtime
Runtime *string `json:"runtime"`
// Reference to old entity
OldItem *EntityReference `json:"oldItem"`
// Reference to new entity
NewItem *EntityReference `json:"newItem"`
}
func (EventSourceReadModelEventPayload) IsReadModelEventPayload() {}
// Event source Slice
type EventSourceSlice struct {
// Event source edges
Edges []*EventSourceEdge `json:"edges"`
// Slice information
PageInfo *SliceInfo `json:"pageInfo"`
}
func (EventSourceSlice) IsSlice() {}
// Args to set favorite for entity
type FavoriteInfoArgs struct {
// Event-source kind
Kind string `json:"kind"`
// Event-source group
Group string `json:"group"`
// Event-source group
Version string `json:"version"`
// Event-source runtime name
Runtime string `json:"runtime"`
// Event-source name
Name string `json:"name"`
// Event-source namespace
Namespace *string `json:"namespace"`
}
// Generic entity
type GenericEntity struct {
// Object metadata
Metadata *ObjectMeta `json:"metadata"`
// Errors
Errors []Error `json:"errors"`
// Entities referencing this entity
ReferencedBy []BaseEntity `json:"referencedBy"`
// Entities referenced by this enitity
References []BaseEntity `json:"references"`
// History of the generic entity
History *GitOpsSlice `json:"history"`
// Version of the entity
Version *int `json:"version"`
// Is this the latest version of this entity
Latest *bool `json:"latest"`
// Entity source
Source *GitopsEntitySource `json:"source"`
// Sync status
SyncStatus SyncStatus `json:"syncStatus"`
// Health status
HealthStatus *HealthStatus `json:"healthStatus"`
// Health message
HealthMessage *string `json:"healthMessage"`
// Desired manifest
DesiredManifest *string `json:"desiredManifest"`
// Actual manifest
ActualManifest *string `json:"actualManifest"`
// Projects
Projects []string `json:"projects"`
}
func (GenericEntity) IsGitopsEntity() {}
func (GenericEntity) IsBaseEntity() {}
func (GenericEntity) IsProjectBasedEntity() {}
func (GenericEntity) IsEntity() {}
// GenericEntity Edge
type GenericEntityEdge struct {
// Node contains the actual app-project data
Node *GenericEntity `json:"node"`
// Cursor
Cursor string `json:"cursor"`
}
func (GenericEntityEdge) IsEdge() {}
// GenericEntity Slice
type GenericEntitySlice struct {
// GenericEntity edges
Edges []*GenericEntityEdge `json:"edges"`
// Slice information
PageInfo *SliceInfo `json:"pageInfo"`
}
func (GenericEntitySlice) IsSlice() {}
// GitOps Edge
type GitOpsEdge struct {
// Node contains the actual component data
Node GitopsEntity `json:"node"`
// Cursor
Cursor string `json:"cursor"`
}
// GitOps Slice
type GitOpsSlice struct {
// GitOps edges
Edges []*GitOpsEdge `json:"edges"`
// Slice information
PageInfo *SliceInfo `json:"pageInfo"`
}
// "PR data
type GitPr struct {
// PR action
Action string `json:"action"`
// PR id
ID string `json:"id"`
// PR title
Title string `json:"title"`
// PR url
URL string `json:"url"`
// PR number
Number int `json:"number"`
// PR labels
Labels []string `json:"labels"`
// PR head
Head *GitPushCommitRevision `json:"head"`
// PR target
Target *GitPushCommitTargetRevision `json:"target"`
// Indicates if a PR was merged
Merged *bool `json:"merged"`
// Indicates if a PR comes from forked repo
Fork *GitPrFork `json:"fork"`
// PR comment
Comment *GitPRComment `json:"comment"`
// Modified files
ModifiedFiles []string `json:"modifiedFiles"`
}
// "PR Comment data
type GitPRComment struct {
// Comment message
Message string `json:"message"`
// Comment author
Author string `json:"author"`
// Comment author association
AuthorAssociation *string `json:"authorAssociation"`
}
// "PR event
type GitPREventPayloadData struct {
// Event payload type
Type PayloadDataTypes `json:"type"`
// Name of the git event
Event string `json:"event"`
// Git provider
Provider string `json:"provider"`
// Repository
Repository *WorkflowRepository `json:"repository"`
// Event initiator
Initiator *Initiator `json:"initiator"`
// PR data
Pr *GitPr `json:"pr"`
}
func (GitPREventPayloadData) IsCommonGitEventPayloadData() {}
func (GitPREventPayloadData) IsEventPayloadData() {}
// "PR fork data
type GitPrFork struct {
// Repository
Repository *WorkflowRepository `json:"repository"`
}
// "Push commit event data
type GitPushCommit struct {
// Commit message
Message string `json:"message"`
// Commit url
URL string `json:"url"`
// Push revision
Head *GitPushCommitRevision `json:"head"`
// Push subject type
SubjectType GitPushPayloadDataTypes `json:"subjectType"`
// Modified files
ModifiedFiles []string `json:"modifiedFiles"`
}
func (GitPushCommit) IsGitPush() {}
// "Commit revision data
type GitPushCommitRevision struct {
// Branch name
Branch string `json:"branch"`
// Branch URL
BranchURL string `json:"branchURL"`
// SHA
Sha string `json:"sha"`
// SHA URL
ShaURL string `json:"shaURL"`
}
// "PR target commit revision data
type GitPushCommitTargetRevision struct {
// Branch name
Branch string `json:"branch"`
// Branch URL
BranchURL string `json:"branchURL"`
// SHA
Sha *string `json:"sha"`
// SHA URL
ShaURL *string `json:"shaURL"`
}
// "Push event
type GitPushEventPayloadData struct {
// Event payload type
Type PayloadDataTypes `json:"type"`
// Name of the git event
Event string `json:"event"`
// Git provider
Provider string `json:"provider"`
// Repository
Repository *WorkflowRepository `json:"repository"`
// Event initiator
Initiator *Initiator `json:"initiator"`
// Push data
Push GitPush `json:"push"`
}
func (GitPushEventPayloadData) IsCommonGitEventPayloadData() {}
func (GitPushEventPayloadData) IsEventPayloadData() {}
// "Push commit event data
type GitPushTag struct {
// Commit message
Message string `json:"message"`
// Commit url
URL string `json:"url"`
// Tag revision
Head *GitPushTagRevision `json:"head"`
// Push subject type
SubjectType GitPushPayloadDataTypes `json:"subjectType"`
// Modified files
ModifiedFiles []string `json:"modifiedFiles"`
}
func (GitPushTag) IsGitPush() {}
// "Tag revision data
type GitPushTagRevision struct {
// Tag name
Tag string `json:"tag"`
// Tag URL
TagURL string `json:"tagURL"`
// SHA
Sha string `json:"sha"`
// SHA URL
ShaURL string `json:"shaURL"`
}
// "Release data
type GitRelease struct {
// Release action
Action string `json:"action"`
// Release id
ID string `json:"id"`
// Release name
Name string `json:"name"`
// Release tag name
TagName string `json:"tagName"`
// Indicates if current release is a pre release
IsPreRelease bool `json:"isPreRelease"`
}
// "Release event
type GitReleaseEventPayloadData struct {
// Event payload type
Type PayloadDataTypes `json:"type"`
// Name of the git event
Event string `json:"event"`
// Git provider
Provider string `json:"provider"`
// Repository
Repository *WorkflowRepository `json:"repository"`
// Event initiator
Initiator *Initiator `json:"initiator"`
// Release data
Release *GitRelease `json:"release"`
}
func (GitReleaseEventPayloadData) IsCommonGitEventPayloadData() {}
func (GitReleaseEventPayloadData) IsEventPayloadData() {}
// Git source entity
type GitSource struct {
// Object metadata
Metadata *ObjectMeta `json:"metadata"`
// Errors
Errors []Error `json:"errors"`
// Entities referencing this entity
ReferencedBy []BaseEntity `json:"referencedBy"`
// Entities referenced by this enitity
References []BaseEntity `json:"references"`
// Self entity reference for the real k8s entity in case of codefresh logical entity
Self *Application `json:"self"`
// History of the GitSource
History *CompositeSlice `json:"history"`
// Sync status
SyncStatus SyncStatus `json:"syncStatus"`
// Health status
HealthStatus *HealthStatus `json:"healthStatus"`
// Health message
HealthMessage *string `json:"healthMessage"`
// Projects
Projects []string `json:"projects"`
}
func (GitSource) IsK8sLogicEntity() {}
func (GitSource) IsBaseEntity() {}
func (GitSource) IsProjectBasedEntity() {}
func (GitSource) IsEntity() {}
// Git source Edge
type GitSourceEdge struct {
// Node contains the actual git source data
Node *GitSource `json:"node"`
// Cursor
Cursor string `json:"cursor"`
}
func (GitSourceEdge) IsEdge() {}
// Git source notification
type GitSourceNotification struct {
// Commit information that triggered sync
Source *GitopsEntitySource `json:"source"`
// Link to the git-source in git provider
GsRepoLink *string `json:"gsRepoLink"`
// Sync status
GsSyncStatus SyncStatus `json:"gsSyncStatus"`
}
func (GitSourceNotification) IsNotificationInfo() {}
// GitSourceReadModelEventPayload type
type GitSourceReadModelEventPayload struct {
// Type of DB entity
EntityType *string `json:"entityType"`
// Type of DB event upsert/delete
EventType *string `json:"eventType"`
// Runtime
Runtime *string `json:"runtime"`
// Reference to old entity
OldItem *EntityReference `json:"oldItem"`
// Reference to new entity
NewItem *EntityReference `json:"newItem"`
}
func (GitSourceReadModelEventPayload) IsReadModelEventPayload() {}
// Git source Slice
type GitSourceSlice struct {
// Git source edges
Edges []*GitSourceEdge `json:"edges"`
// Slice information
PageInfo *SliceInfo `json:"pageInfo"`
}
func (GitSourceSlice) IsSlice() {}
// "Unknown Git event
type GitUnknownEventPayloadData struct {
// Event payload type
Type PayloadDataTypes `json:"type"`
// Name of the git event
Event string `json:"event"`
// Git provider
Provider string `json:"provider"`
// Repository
Repository *WorkflowRepository `json:"repository"`
// Event initiator
Initiator *Initiator `json:"initiator"`
}
func (GitUnknownEventPayloadData) IsCommonGitEventPayloadData() {}