-
Notifications
You must be signed in to change notification settings - Fork 3
/
types.go
911 lines (781 loc) · 17.5 KB
/
types.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
package fly
import (
"fmt"
"time"
)
// Query - Master query which encapsulates all possible returned structures
type Query struct {
Errors Errors
Apps struct {
PageInfo struct {
HasNextPage bool
EndCursor string
}
Nodes []App
}
App App
AppCompact AppCompact
AppBasic AppBasic
AppCertsCompact AppCertsCompact
Viewer User
GqlMachine GqlMachine
Organizations struct {
Nodes []Organization
}
Organization *Organization
OrganizationDetails OrganizationDetails
Volume struct {
App struct {
Name string
}
State string
Snapshots struct {
Nodes []VolumeSnapshotGql
}
}
Domain *Domain
Node interface{}
Nodes []interface{}
Platform struct {
RequestRegion string
Regions []Region
}
NearestRegion *Region
LatestImageTag string
LatestImageDetails ImageVersion
AppHostIssues AppHostIssues
// aliases & nodes
// mutations
CreateApp struct {
App App
}
SetSecrets struct {
Release Release
}
UnsetSecrets struct {
Release Release
}
EnsureRemoteBuilder *struct {
App *App
URL string
Release Release
}
EnsureMachineRemoteBuilder *struct {
App *App
Machine *GqlMachine
}
CreateDoctorUrl SignedUrl
AddCertificate struct {
Certificate *AppCertificate
Check *HostnameCheck
}
DeleteCertificate DeleteCertificatePayload
CheckCertificate struct {
App *App
Certificate *AppCertificate
Check *HostnameCheck
}
AllocateIPAddress struct {
App App
IPAddress IPAddress
}
AllocateEgressIPAddress struct {
V4 string
V6 string
}
ReleaseEgressIPAddress struct {
V4 string
V6 string
}
ReleaseIPAddress struct {
App App
}
CreateDomain struct {
Domain *Domain
}
CreateAndRegisterDomain struct {
Domain *Domain
}
CheckDomain *CheckDomainResult
ExportDnsZone struct {
Contents string
}
ImportDnsZone struct {
Warnings []ImportDnsWarning
Changes []ImportDnsChange
}
CreateOrganization CreateOrganizationPayload
DeleteOrganization DeleteOrganizationPayload
AddWireGuardPeer CreatedWireGuardPeer
EstablishSSHKey SSHCertificate
IssueCertificate IssuedCertificate
CreateDelegatedWireGuardToken DelegatedWireGuardToken
DeleteDelegatedWireGuardToken DelegatedWireGuardToken
RemoveWireGuardPeer struct {
Organization Organization
}
AttachPostgresCluster *AttachPostgresClusterPayload
EnablePostgresConsul *PostgresEnableConsulPayload
CreateOrganizationInvitation CreateOrganizationInvitation
ValidateWireGuardPeers struct {
InvalidPeerIPs []string
}
PostgresAttachments struct {
Nodes []*PostgresClusterAttachment
}
DeleteOrganizationMembership *DeleteOrganizationMembershipPayload
UpdateRemoteBuilder struct {
Organization Organization
}
CanPerformBluegreenDeployment bool
AppNameAvailable bool
LockApp *LockApp
}
type LockApp struct {
LockID string `json:"lockId"`
Expiration time.Time
}
type LockAppInput struct {
AppID string `json:"app_id"`
LockID string `json:"lock_id"`
}
type UnlockAppInput struct {
AppID string `json:"app_id"`
LockID string `json:"lock_id"`
}
type CreatedWireGuardPeer struct {
Peerip string `json:"peerip"`
Endpointip string `json:"endpointip"`
Pubkey string `json:"pubkey"`
}
type DeleteOrganizationMembershipPayload struct {
Organization *Organization
User *User
}
type DelegatedWireGuardToken struct {
Token string
}
type DelegatedWireGuardTokenHandle /* whatever */ struct {
Name string
}
type SSHCertificate struct {
Certificate string
}
type IssuedCertificate struct {
Certificate string
Key string
}
type Definition map[string]interface{}
func DefinitionPtr(in map[string]interface{}) *Definition {
if len(in) > 0 {
return Pointer(Definition(in))
}
return nil
}
type ImageVersion struct {
Registry string
Repository string
Tag string
Version string
Digest string
}
func (img *ImageVersion) FullImageRef() string {
imgStr := fmt.Sprintf("%s/%s", img.Registry, img.Repository)
tag := img.Tag
digest := img.Digest
if tag != "" && digest != "" {
imgStr = fmt.Sprintf("%s:%s@%s", imgStr, tag, digest)
} else if digest != "" {
imgStr = fmt.Sprintf("%s@%s", imgStr, digest)
} else if tag != "" {
imgStr = fmt.Sprintf("%s:%s", imgStr, tag)
}
return imgStr
}
type App struct {
ID string
InternalNumericID int32
Name string
State string
Status string
Deployed bool
Hostname string
AppURL string
Version int
NetworkID int
Network string
Release *Release
Organization Organization
Secrets []Secret
CurrentRelease *Release
Releases struct {
Nodes []Release
}
IPAddresses struct {
Nodes []IPAddress
}
SharedIPAddress string
IPAddress *IPAddress
Certificates struct {
Nodes []AppCertificate
}
Certificate AppCertificate
PostgresAppRole *struct {
Name string
}
Image *Image
ImageUpgradeAvailable bool
ImageVersionTrackingEnabled bool
ImageDetails ImageVersion
LatestImageDetails ImageVersion
PlatformVersion string
LimitedAccessTokens *struct {
Nodes []LimitedAccessToken
}
Machines struct {
Nodes []GqlMachine
}
CurrentLock *struct {
LockID string
Expiration string
}
}
func (app *App) Compact() *AppCompact {
return &AppCompact{
ID: app.ID,
Name: app.Name,
Status: app.Status,
Deployed: app.Deployed,
Hostname: app.Hostname,
AppURL: app.AppURL,
Organization: app.Organization.Basic(),
PlatformVersion: app.PlatformVersion,
PostgresAppRole: app.PostgresAppRole,
}
}
type LimitedAccessToken struct {
Id string
Name string
Token string
ExpiresAt time.Time
RevokedAt *time.Time
User User
}
type AppCertsCompact struct {
Certificates struct {
Nodes []AppCertificateCompact
}
}
type AppCertificateCompact struct {
CreatedAt time.Time
Hostname string
ClientStatus string
}
type AppCompact struct {
ID string
Name string
Status string
Deployed bool
Hostname string
AppURL string
Organization *OrganizationBasic
PlatformVersion string
PostgresAppRole *struct {
Name string
}
}
func (app *AppCompact) IsPostgresApp() bool {
// check app.PostgresAppRole.Name == "postgres_cluster"
return app.PostgresAppRole != nil && app.PostgresAppRole.Name == "postgres_cluster"
}
type AppInfo struct {
ID string
Name string
Status string
Deployed bool
Hostname string
Version int
PlatformVersion string
Organization *OrganizationBasic
IPAddresses struct {
Nodes []IPAddress
}
}
type AppBasic struct {
ID string
Name string
PlatformVersion string
Organization *OrganizationBasic
}
type Organization struct {
ID string
InternalNumericID string
Name string
RemoteBuilderImage string
RemoteBuilderApp *App
Slug string
RawSlug string
Type string
PaidPlan bool
Billable bool
Settings map[string]any
Domains struct {
Nodes *[]*Domain
Edges *[]*struct {
Cursor *string
Node *Domain
}
}
WireGuardPeer *WireGuardPeer
WireGuardPeers struct {
Nodes *[]*WireGuardPeer
Edges *[]*struct {
Cursor *string
Node *WireGuardPeer
}
}
DelegatedWireGuardTokens struct {
Nodes *[]*DelegatedWireGuardTokenHandle
Edges *[]*struct {
Cursor *string
Node *DelegatedWireGuardTokenHandle
}
}
LoggedCertificates *struct {
Nodes []LoggedCertificate
}
LimitedAccessTokens *struct {
Nodes []LimitedAccessToken
}
}
func (o *Organization) Basic() *OrganizationBasic {
if o == nil {
return nil
}
return &OrganizationBasic{
ID: o.ID,
Name: o.Name,
Slug: o.Slug,
RawSlug: o.RawSlug,
PaidPlan: o.PaidPlan,
}
}
func (o *Organization) GetID() string {
return o.ID
}
func (o *Organization) GetSlug() string {
return o.Slug
}
type OrganizationBasic struct {
ID string
InternalNumericID string
Name string
Slug string
RawSlug string
PaidPlan bool
}
func (o *OrganizationBasic) GetID() string {
return o.ID
}
func (o *OrganizationBasic) GetSlug() string {
return o.Slug
}
type OrganizationImpl interface {
GetID() string
GetSlug() string
}
type OrganizationDetails struct {
ID string
InternalNumericID string
Name string
RemoteBuilderImage string
RemoteBuilderApp *App
Slug string
Type string
ViewerRole string
Apps struct {
Nodes []App
}
Members struct {
Edges []OrganizationMembershipEdge
}
}
type OrganizationMembershipEdge struct {
Cursor string
Node User
Role string
JoinedAt time.Time
}
type Billable struct {
Category string
Product string
Time time.Time
Quantity float64
App App
}
type DNSRecords struct {
ID string
Name string
Ttl int
Values []string
CreatedAt time.Time
UpdatedAt time.Time
Fqdn string
IsApex bool
IsSystem bool
IsWildcard bool
Domain *Domain
}
type IPAddress struct {
ID string
Address string
Type string
Region string
CreatedAt time.Time
ServiceName string
Network *struct {
Name string
Organization *struct {
Slug string
}
}
}
type EgressIPAddress struct {
ID string
IP string
Version int
Region string
}
type VMSize struct {
Name string
CPUCores float32
CPUClass string
MemoryGB float32
MemoryMB int
PriceMonth float32
PriceSecond float32
}
type User struct {
ID string
Name string
Email string
EnablePaidHobby bool
}
type Secret struct {
Name string
Digest string
CreatedAt time.Time
}
type SetSecretsInput struct {
AppID string `json:"appId"`
Secrets []SetSecretsInputSecret `json:"secrets"`
}
type SetSecretsInputSecret struct {
Key string `json:"key"`
Value string `json:"value"`
}
type UnsetSecretsInput struct {
AppID string `json:"appId"`
Keys []string `json:"keys"`
}
type CreateAppInput struct {
OrganizationID string `json:"organizationId"`
Name string `json:"name"`
PreferredRegion *string `json:"preferredRegion,omitempty"`
Network *string `json:"network,omitempty"`
AppRoleID string `json:"appRoleId,omitempty"`
Machines bool `json:"machines"`
}
type LogEntry struct {
Timestamp string
Message string
Level string
Instance string
Region string
Meta struct {
Instance string
Region string
Event struct {
Provider string
}
HTTP struct {
Request struct {
ID string
Method string
Version string
}
Response struct {
StatusCode int `json:"status_code"`
}
}
Error struct {
Code int
Message string
}
URL struct {
Full string
}
}
}
type Region struct {
Code string
Name string
Latitude float32
Longitude float32
GatewayAvailable bool
RequiresPaidPlan bool
}
type Release struct {
ID string
Version int
Stable bool
InProgress bool
Reason string
Description string
Status string
DeploymentStrategy string
Metadata *ReleaseMetadata
User User
EvaluationID string
CreatedAt time.Time
ImageRef string
}
type PostDeploymentInfo struct {
FlyctlVersion string `json:"flyctl_version"`
Error string `json:"error"`
}
type ReleaseMetadata struct {
PostDeploymentInfo PostDeploymentInfo `json:"post_deployment_info,omitempty"`
}
type SignedUrl struct {
PutUrl string
}
type AppCertificate struct {
ID string
AcmeDNSConfigured bool
AcmeALPNConfigured bool
Configured bool
CertificateAuthority string
CreatedAt time.Time
DNSProvider string
DNSValidationInstructions string
DNSValidationHostname string
DNSValidationTarget string
Hostname string
Source string
ClientStatus string
IsApex bool
IsWildcard bool
Issued struct {
Nodes []struct {
ExpiresAt time.Time
Type string
}
}
}
type CreateOrganizationPayload struct {
Organization Organization
}
type DeleteOrganizationPayload struct {
DeletedOrganizationId string
}
type HostnameCheck struct {
ARecords []string `json:"aRecords"`
AAAARecords []string `json:"aaaaRecords"`
CNAMERecords []string `json:"cnameRecords"`
SOA string `json:"soa"`
DNSProvider string `json:"dnsProvider"`
DNSVerificationRecord string `json:"dnsVerificationRecord"`
ResolvedAddresses []string `json:"resolvedAddresses"`
}
type DeleteCertificatePayload struct {
App App
Certificate AppCertificate
}
type AllocateIPAddressInput struct {
AppID string `json:"appId"`
Type string `json:"type"`
Region string `json:"region"`
OrganizationID string `json:"organizationId,omitempty"`
Network string `json:"network,omitempty"`
}
type AllocateEgressIPAddressInput struct {
AppID string `json:"appId"`
MachineID string `json:"machineId"`
}
type ReleaseEgressIPAddressInput struct {
AppID string `json:"appId"`
MachineID string `json:"machineId"`
}
type ReleaseIPAddressInput struct {
AppID *string `json:"appId"`
IPAddressID *string `json:"ipAddressId"`
IP *string `json:"ip"`
}
type Errors []Error
type Error struct {
Message string
Path []string
Extensions Extensions
}
type Extensions struct {
Code string
ServiceName string
Query string
Variables map[string]string
}
type Domain struct {
ID string
Name string
CreatedAt time.Time
Organization *Organization
AutoRenew *bool
DelegatedNameservers *[]string
ZoneNameservers *[]string
DnsStatus *string
RegistrationStatus *string
ExpiresAt time.Time
DnsRecords *struct {
Nodes *[]*DNSRecord
}
}
type CheckDomainResult struct {
DomainName string
TLD string
RegistrationSupported bool
RegistrationAvailable bool
RegistrationPrice int
RegistrationPeriod int
TransferAvailable bool
DnsAvailable bool
}
type DNSRecord struct {
ID string
Name string
FQDN string
IsApex bool
IsWildcard bool
IsSystem bool
TTL int
Type string
RData string
CreatedAt time.Time
UpdatedAt time.Time
}
type ImportDnsChange struct {
Action string
OldText string
NewText string
}
type ImportDnsWarning struct {
Action string
Attributes struct {
Name string
Type string
TTL int
Rdata string
}
Message string
}
type WireGuardPeer struct {
ID string
Pubkey string
Region string
Name string
Peerip string
GatewayStatus *WireGuardPeerStatus
}
type WireGuardPeerStatus struct {
Endpoint string
LastHandshake string
SinceHandshake string
Rx int64
Tx int64
Added string
SinceAdded string
Live bool
WgError string
}
type LoggedCertificate struct {
Root bool
Cert string
}
type AttachPostgresClusterInput struct {
AppID string `json:"appId"`
PostgresClusterAppID string `json:"postgresClusterAppId"`
DatabaseName *string `json:"databaseName,omitempty"`
DatabaseUser *string `json:"databaseUser,omitempty"`
VariableName *string `json:"variableName,omitempty"`
ManualEntry bool `json:"manualEntry,omitempty"`
}
type DetachPostgresClusterInput struct {
AppID string `json:"appId"`
PostgresClusterId string `json:"postgresClusterAppId"`
PostgresClusterAttachmentId string `json:"postgresClusterAttachmentId"`
}
type AttachPostgresClusterPayload struct {
App App
PostgresClusterApp App
ConnectionString string
EnvironmentVariableName string
}
type PostgresEnableConsulPayload struct {
ConsulURL string `json:"consulUrl"`
}
type EnsureRemoteBuilderInput struct {
AppName *string `json:"appName"`
OrganizationID *string `json:"organizationId"`
Region *string `json:"region"`
}
type PostgresClusterAttachment struct {
ID string
DatabaseName string
DatabaseUser string
EnvironmentVariableName string
}
type Image struct {
ID string
Digest string
Ref string
CompressedSize string
}
type Invitation struct {
ID string
Email string
CreatedAt time.Time
Redeemed bool
Inviter *User
Organization *Organization
}
type CreateOrganizationInvitation struct {
Invitation Invitation
}
type GqlMachine struct {
ID string
Name string
State string
Region string
Config MachineConfig
App *AppCompact
IPs struct {
Nodes []*MachineIP
}
EgressIpAddresses struct {
Nodes []*EgressIPAddress
}
}
type Logger interface {
Debug(v ...interface{})
Debugf(format string, v ...interface{})
}
type AppHostIssues struct {
HostIssues struct {
Nodes []HostIssue
}
}
type HostIssue struct {
InternalId string
Message string
CreatedAt time.Time
UpdatedAt time.Time
}