forked from superfly/flyctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.go
1268 lines (1092 loc) · 25.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
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
package api
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
AppInfo AppInfo
AppBasic AppBasic
AppStatus AppStatus
AppMonitoring AppMonitoring
AppPostgres AppPostgres
AppCertsCompact AppCertsCompact
Viewer User
GqlMachine GqlMachine
Organizations struct {
Nodes []Organization
}
Organization *Organization
OrganizationDetails OrganizationDetails
Build Build
Volume struct {
App struct {
Name string
}
}
Domain *Domain
Node interface{}
Nodes []interface{}
Platform struct {
RequestRegion string
Regions []Region
VMSizes []VMSize
}
NearestRegion *Region
LatestImageTag string
LatestImageDetails ImageVersion
// aliases & nodes
TemplateDeploymentNode *TemplateDeployment
ReleaseCommandNode *ReleaseCommand
ValidateConfig AppConfig
// hack to let us alias node to a type
// DNSZone *DNSZone
// mutations
CreateApp struct {
App App
}
SetSecrets struct {
Release Release
}
UnsetSecrets struct {
Release Release
}
DeployImage struct {
Release Release
ReleaseCommand *ReleaseCommand
}
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
}
ReleaseIPAddress struct {
App App
}
ScaleApp struct {
App App
Placement []RegionPlacement
Delta []ScaleRegionChange
}
UpdateAutoscaleConfig struct {
App App
}
SetVMSize struct {
App App
VMSize *VMSize
ProcessGroup *ProcessGroup
}
SetVMCount struct {
App App
TaskGroupCounts []TaskGroupCount
Warnings []string
}
ConfigureRegions struct {
App App
Regions []Region
BackupRegions []Region
}
ResumeApp struct {
App AppCompact
}
SuspendApp struct {
App App
}
RestartApp 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
}
SetSlackHandler *struct {
Handler *HealthCheckHandler
}
SetPagerdutyHandler *struct {
Handler *HealthCheckHandler
}
CreatePostgresCluster *CreatePostgresClusterPayload
AttachPostgresCluster *AttachPostgresClusterPayload
EnablePostgresConsul *PostgresEnableConsulPayload
CreateOrganizationInvitation CreateOrganizationInvitation
ValidateWireGuardPeers struct {
InvalidPeerIPs []string
}
PostgresAttachments struct {
Nodes []*PostgresClusterAttachment
}
DeleteOrganizationMembership *DeleteOrganizationMembershipPayload
UpdateRemoteBuilder struct {
Organization Organization
}
CanPerformBluegreenDeployment bool
}
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
Name string
State string
Status string
Deployed bool
Hostname string
AppURL string
Version int
NetworkID int
Release *Release
Organization Organization
Secrets []Secret
CurrentRelease *Release
Releases struct {
Nodes []Release
}
IPAddresses struct {
Nodes []IPAddress
}
SharedIPAddress string
IPAddress *IPAddress
Builds struct {
Nodes []Build
}
SourceBuilds struct {
Nodes []SourceBuild
}
Changes struct {
Nodes []AppChange
}
Certificates struct {
Nodes []AppCertificate
}
Certificate AppCertificate
Config AppConfig
ParseConfig AppConfig
Allocations []*AllocationStatus
Allocation *AllocationStatus
DeploymentStatus *DeploymentStatus
Autoscaling *AutoscalingConfig
VMSize VMSize
Regions *[]Region
BackupRegions *[]Region
TaskGroupCounts []TaskGroupCount
ProcessGroups []ProcessGroup
HealthChecks *struct {
Nodes []CheckState
}
PostgresAppRole *struct {
Name string
Databases *[]PostgresClusterDatabase
Users *[]PostgresClusterUser
}
Image *Image
ImageUpgradeAvailable bool
ImageVersionTrackingEnabled bool
ImageDetails ImageVersion
LatestImageDetails ImageVersion
PlatformVersion string
LimitedAccessTokens *struct {
Nodes []LimitedAccessToken
}
CurrentLock *AppLock
}
type LimitedAccessToken struct {
Id string
Name string
ExpiresAt time.Time
}
type AppLock struct {
ID int `json:"lockId"`
Expiration time.Time
}
type TaskGroupCount struct {
Name string
Count int
}
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
}
ImageDetails ImageVersion
}
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
}
Services []Service
}
type AppBasic struct {
ID string
Name string
PlatformVersion string
Organization *OrganizationBasic
}
type AppMonitoring struct {
ID string
CurrentRelease *Release
}
type AppPostgres struct {
ID string
Name string
Organization *OrganizationBasic
ImageDetails ImageVersion
PostgresAppRole *struct {
Name string
Databases *[]PostgresClusterDatabase
Users *[]PostgresClusterUser
}
PlatformVersion string
Services []Service
}
func (app *AppPostgres) IsPostgresApp() bool {
// check app.PostgresAppRole.Name == "postgres_cluster"
return app.PostgresAppRole != nil && app.PostgresAppRole.Name == "postgres_cluster"
}
type AppStatus struct {
ID string
Name string
Deployed bool
Status string
Hostname string
Version int
PlatformVersion string
AppURL string
Organization Organization
DeploymentStatus *DeploymentStatus
Allocations []*AllocationStatus
}
type AppConfig struct {
Definition Definition
Services []Service
Valid bool
Errors []string
}
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
}
}
HealthCheckHandlers *struct {
Nodes []HealthCheckHandler
}
HealthChecks *struct {
Nodes []HealthCheck
}
LoggedCertificates *struct {
Nodes []LoggedCertificate
}
LimitedAccessTokens *struct {
Nodes []LimitedAccessToken
}
}
func (o *Organization) GetID() string {
return o.ID
}
func (o *Organization) GetSlug() string {
return o.Slug
}
type OrganizationBasic struct {
ID 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
}
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 Release struct {
ID string
Version int
Stable bool
InProgress bool
Reason string
Description string
Status string
DeploymentStrategy string
User User
EvaluationID string
CreatedAt time.Time
ImageRef string
}
type Build struct {
ID string
InProgress bool
Status string
User User
Logs string
Image string
CreatedAt time.Time
UpdatedAt time.Time
}
type SourceBuild struct {
ID string
Status string
User User
Logs string
Image string
AppName string
MachineId string
CreatedAt time.Time
UpdatedAt time.Time
}
type SignedUrl struct {
PutUrl string
}
type AppChange struct {
ID string
CreatedAt time.Time
UpdatedAt time.Time
Actor struct {
Type string
}
Status string
Description string
Reason string
User User
}
type DeploymentStatus struct {
ID string
Status string
Description string
InProgress bool
Successful bool
CreatedAt time.Time
Allocations []*AllocationStatus
Version int
DesiredCount int
PlacedCount int
HealthyCount int
UnhealthyCount int
}
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 DeployImageInput struct {
AppID string `json:"appId"`
Image string `json:"image"`
Services *[]Service `json:"services"`
Definition *Definition `json:"definition"`
Strategy *string `json:"strategy"`
}
type Service struct {
Description string `json:"description"`
Protocol string `json:"protocol,omitempty"`
InternalPort int `json:"internalPort,omitempty"`
Ports []PortHandler `json:"ports,omitempty"`
Checks []Check `json:"checks,omitempty"`
SoftConcurrency int `json:"softConcurrency,omitempty"`
HardConcurrency int `json:"hardConcurrency,omitempty"`
}
type PortHandler struct {
Port int `json:"port"`
Handlers []string `json:"handlers"`
}
type Check struct {
Type string `json:"type"`
Interval *uint64 `json:"interval"`
Timeout *uint64 `json:"timeout"`
HTTPMethod *string `json:"httpMethod"`
HTTPPath *string `json:"httpPath"`
HTTPProtocol *string `json:"httpProtocol"`
HTTPSkipTLSVerify *bool `json:"httpTlsSkipVerify"`
HTTPHeaders []HTTPHeader `json:"httpHeaders"`
}
type HTTPHeader struct {
Name string `json:"name"`
Value string `json:"value"`
}
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 ReleaseIPAddressInput struct {
AppID *string `json:"appId"`
IPAddressID *string `json:"ipAddressId"`
IP *string `json:"ip"`
}
type ScaleAppInput struct {
AppID string `json:"appId"`
Regions []ScaleRegionInput `json:"regions"`
}
type ScaleRegionInput struct {
Region string `json:"region"`
Count int `json:"count"`
}
type ScaleRegionChange struct {
Region string
FromCount int
ToCount int
}
type RegionPlacement struct {
Region string
Count int
}
type AllocationStatus struct {
ID string
IDShort string
Version int
TaskName string
Region string
Status string
DesiredStatus string
Healthy bool
Canary bool
Failed bool
Restarts int
CreatedAt time.Time
UpdatedAt time.Time
Checks []CheckState
Events []AllocationEvent
LatestVersion bool
PassingCheckCount int
WarningCheckCount int
CriticalCheckCount int
Transitioning bool
PrivateIP string
RecentLogs []LogEntry
AttachedVolumes struct {
Nodes []Volume
}
}
type AllocationEvent struct {
Timestamp time.Time
Type string
Message string
}
type CheckState struct {
Name string
Status string
Output string
ServiceName string
Allocation *AllocationStatus
Type string
UpdatedAt time.Time
}
type Region struct {
Code string
Name string
Latitude float32
Longitude float32
GatewayAvailable bool
RequiresPaidPlan bool
}
type AutoscalingConfig struct {
BalanceRegions bool
Enabled bool
MaxCount int
MinCount int
Regions []AutoscalingRegionConfig
}
type AutoscalingRegionConfig struct {
Code string
MinCount int
Weight int
}
type UpdateAutoscaleConfigInput struct {
AppID string `json:"appId"`
Enabled *bool `json:"enabled"`
MinCount *int `json:"minCount"`
MaxCount *int `json:"maxCount"`
BalanceRegions *bool `json:"balanceRegions"`
ResetRegions *bool `json:"resetRegions"`
Regions []AutoscaleRegionConfigInput `json:"regions"`
}
type AutoscaleRegionConfigInput struct {
Code string `json:"code"`
MinCount *int `json:"minCount"`
Weight *int `json:"weight"`
Reset *bool `json:"reset"`
}
type VMSize struct {
Name string
CPUCores float32
CPUClass string
MemoryGB float32
MemoryMB int
PriceMonth float32
PriceSecond float32
// MemoryIncrementsMB []int
}
type ProcessGroup struct {
Name string
Regions []string
MaxPerRegion int
VMSize *VMSize
}
type SetVMSizeInput struct {
AppID string `json:"appId"`
Group string `json:"group"`
SizeName string `json:"sizeName"`
MemoryMb int64 `json:"memoryMb"`
}
type SetVMCountInput struct {
AppID string `json:"appId"`
GroupCounts []VMCountInput `json:"groupCounts"`
}
type VMCountInput struct {
Group string `json:"group"`
Count int `json:"count"`
MaxPerRegion *int `json:"maxPerRegion"`
}
type StartSourceBuildInput struct {
AppID string `json:"appId"`
}
type BuildArgInput struct {
Name string `json:"name"`
Value string `json:"value"`
}
type ConfigureRegionsInput struct {
AppID string `json:"appId"`
Group string `json:"group"`
AllowRegions []string `json:"allowRegions"`
DenyRegions []string `json:"denyRegions"`
BackupRegions []string `json:"backupRegions"`
}
type Errors []Error
type Error struct {