-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudflare-schema.graphql
More file actions
56259 lines (37979 loc) · 776 KB
/
cloudflare-schema.graphql
File metadata and controls
56259 lines (37979 loc) · 776 KB
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
schema {
query: Query
}
# Network analytics data for Cloudflare CDN traffic
type AccountCdnNetworkAnalyticsAdaptiveGroups {
# The average of values for a metric per dimension
avg: AccountCdnNetworkAnalyticsAdaptiveGroupsAvg
# List of dimensions to group by
dimensions: AccountCdnNetworkAnalyticsAdaptiveGroupsDimensions
# The sum of values for a metric per dimension
sum: AccountCdnNetworkAnalyticsAdaptiveGroupsSum
}
#
type AccountCdnNetworkAnalyticsAdaptiveGroupsAvg {
# Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime
bitRate: uint64!
# Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date
bitRateDay: uint64!
# Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes
bitRateFifteenMinutes: uint64!
# Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes
bitRateFiveMinutes: uint64!
# Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour
bitRateHour: uint64!
# Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute
bitRateMinute: uint64!
# Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds
bitRateTenSeconds: uint64!
# Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime
packetRate: uint64!
# Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date
packetRateDay: uint64!
# Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes
packetRateFifteenMinutes: uint64!
# Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes
packetRateFiveMinutes: uint64!
# Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour
packetRateHour: uint64!
# Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute
packetRateMinute: uint64!
# Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds
packetRateTenSeconds: uint64!
}
#
type AccountCdnNetworkAnalyticsAdaptiveGroupsDimensions {
# City where the Cloudflare datacenter that received the packet is located
coloCity: string!
# Cloudflare datacenter that received the packet (nearest IATA airport code)
coloCode: string!
# Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2)
coloCountry: string!
# Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding)
coloGeohash: string!
# Cloudflare datacenter that received the packet (unique site identifier)
coloName: string!
# Date that the packet was received
date: Date!
# Date and time that the packet was received
datetime: Time!
# Date and time that the packet was received, rounded to the start of the nearest fifteen minutes
datetimeFifteenMinutes: Time!
# Date and time that the packet was received, rounded to the start of the nearest five minutes
datetimeFiveMinutes: Time!
# Date and time that the packet was received, rounded to the start of the nearest hour
datetimeHour: Time!
# Date and time that the packet was received, rounded to the start of the nearest minute
datetimeMinute: Time!
# Date and time that the packet was received, rounded to the start of the nearest ten seconds
datetimeTenSeconds: Time!
# ASN associated with the destination IP of the packet, or 0 if there was no mapping available
destinationAsn: uint32!
# Name of ASN associated with the destination IP of the packet, if available
destinationAsnName: string!
# Country where the destination IP of the packet is located (ISO 3166-1 alpha-2)
destinationCountry: string!
# Latitude and longitude where the destination IP of the packet is located (Geohash encoding)
destinationGeohash: string!
# Value of the Destination Port header field in the TCP or UDP packet
destinationPort: uint16!
# Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral)
direction: string!
# Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6)
ethertype: uint16!
# Value of the Checkusm header field in the GRE packet
greChecksum: uint16!
# Value of the Ethertype header field in the GRE packet
greEthertype: uint16!
# Length of the GRE packet header, in bytes
greHeaderLength: uint16!
# Value of the Key header field in the GRE packet
greKey: uint32!
# Value of the Sequence Number header field in the GRE packet
greSequenceNumber: uint32!
# Value of the Version header field in the GRE packet
greVersion: uint8!
# Value of the Checkusm header field in the ICMP packet
icmpChecksum: uint16!
# Value of the Code header field in the ICMP packet
icmpCode: uint8!
# Value of the Type header field in the ICMP packet
icmpType: uint8!
# Value of the Destination Address header field in the IPv4 or IPv6 packet
ipDestinationAddress: string!
# Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /64 for IPv6)
ipDestinationSubnet: string!
# Value of the Fragment Offset header field in the IPv4 or IPv6 packet
ipFragmentOffset: uint16!
# Length of the IPv4 or IPv6 packet header, in bytes
ipHeaderLength: uint16!
# Value of the More Fragments header field in the IPv4 or IPv6 packet
ipMoreFragments: uint8!
# Value of the Protocol header field in the IPv4 or IPv6 packet
ipProtocol: uint8!
# Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet
ipProtocolName: string!
# Value of the Source Address header field in the IPv4 or IPv6 packet
ipSourceAddress: string!
# Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /64 for IPv6)
ipSourceSubnet: string!
# Total length of the IPv4 or IPv6 packet, in bytes
ipTotalLength: uint16!
# Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated
ipTotalLengthBuckets: uint16!
# Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet
ipTtl: uint8!
# Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated
ipTtlBuckets: uint8!
# Value of the Checksum header field in the IPv4 packet
ipv4Checksum: uint16!
# Value of the Don't Fragment header field in the IPv4 packet
ipv4DontFragment: uint8!
# Value of the Differentiated Services Code Point header field in the IPv4 packet
ipv4Dscp: uint8!
# Value of the Explicit Congestion Notification header field in the IPv4 packet
ipv4Ecn: uint8!
# Value of the Identification header field in the IPv4 packet
ipv4Identification: uint16!
# List of Options numbers included in the IPv4 packet header
ipv4Options: string!
# Value of the Differentiated Services Code Point header field in the IPv6 packet
ipv6Dscp: uint8!
# Value of the Explicit Congestion Notification header field in the IPv6 packet
ipv6Ecn: uint8!
# List of Extension Header numbers included in the IPv6 packet header
ipv6ExtensionHeaders: string!
# Value of the Flow Label header field in the IPv6 packet
ipv6FlowLabel: uint32!
# Value of the Identification extension header field in the IPv6 packet
ipv6Identification: uint32!
# Which system dropped the packet (possible values: dosd, flowtrackd, magic-firewall)
mitigationSystem: string!
# The action that was taken on the packet (possible values: pass, drop)
outcome: string!
# ABR sample interval
sampleInterval: uint32!
# ASN associated with the source IP of the packet, or 0 if there was no mapping available
sourceAsn: uint32!
# Name of ASN associated with the source IP of the packet, if available
sourceAsnName: string!
# Country where the source IP of the packet is located (ISO 3166-1 alpha-2)
sourceCountry: string!
# Latitude and longitude where the source IP of the packet is located (Geohash encoding)
sourceGeohash: string!
# Value of the Source Port header field in the TCP or UDP packet
sourcePort: uint16!
# Value of the Acknowledgement Number header field in the TCP packet
tcpAcknowledgementNumber: uint32!
# Value of the Checkusm header field in the TCP packet
tcpChecksum: uint16!
# Value of the Data Offset header field in the TCP packet
tcpDataOffset: uint16!
# Value of the Flags header field in the TCP packet
tcpFlags: uint8!
# Human-readable string representation of the Flags header field in the TCP packet
tcpFlagsString: string!
# Value of the MSS option header field in the TCP packet
tcpMss: uint16!
# List of Options numbers included in the TCP packet header
tcpOptions: string!
# Value of the SACK Blocks option header field in the TCP packet
tcpSackBlocks: string!
# Value of the SACK Permitted option header field in the TCP packet
tcpSackPermitted: uint8!
# Value of the Sequence Number header field in the TCP packet
tcpSequenceNumber: uint32!
# Value of the Timestamp Echo Reply option header field in the TCP packet
tcpTimestampEcr: uint32!
# Value of the Timestamp option header field in the TCP packet
tcpTimestampValue: uint32!
# Value of the Urgent Pointer header field in the TCP packet
tcpUrgentPointer: uint16!
# Value of the Window Scale option header field in the TCP packet
tcpWindowScale: uint16!
# Value of the Window Size header field in the TCP packet
tcpWindowSize: uint16!
# Value of the Checkusm header field in the UDP packet
udpChecksum: uint16!
# Value of the Payload Length header field in the UDP packet
udpPayloadLength: uint16!
}
#
input AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject {
#
AND: [AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject!]
#
OR: [AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject!]
#
coloCity: string
#
coloCity_geq: string
#
coloCity_gt: string
#
coloCity_in: [string!]
#
coloCity_leq: string
#
coloCity_like: string
#
coloCity_lt: string
#
coloCity_neq: string
#
coloCity_notin: [string!]
#
coloCity_notlike: string
#
coloCode: string
#
coloCode_geq: string
#
coloCode_gt: string
#
coloCode_in: [string!]
#
coloCode_leq: string
#
coloCode_like: string
#
coloCode_lt: string
#
coloCode_neq: string
#
coloCode_notin: [string!]
#
coloCode_notlike: string
#
coloCountry: string
#
coloCountry_geq: string
#
coloCountry_gt: string
#
coloCountry_in: [string!]
#
coloCountry_leq: string
#
coloCountry_like: string
#
coloCountry_lt: string
#
coloCountry_neq: string
#
coloCountry_notin: [string!]
#
coloCountry_notlike: string
#
coloGeohash: string
#
coloGeohash_geq: string
#
coloGeohash_gt: string
#
coloGeohash_in: [string!]
#
coloGeohash_leq: string
#
coloGeohash_like: string
#
coloGeohash_lt: string
#
coloGeohash_neq: string
#
coloGeohash_notin: [string!]
#
coloGeohash_notlike: string
#
coloName: string
#
coloName_geq: string
#
coloName_gt: string
#
coloName_in: [string!]
#
coloName_leq: string
#
coloName_like: string
#
coloName_lt: string
#
coloName_neq: string
#
coloName_notin: [string!]
#
coloName_notlike: string
#
date: Date
#
date_geq: Date
#
date_gt: Date
#
date_in: [Date!]
#
date_leq: Date
#
date_lt: Date
#
date_neq: Date
#
date_notin: [Date!]
#
datetime: Time
#
datetimeFifteenMinutes: Time
#
datetimeFifteenMinutes_geq: Time
#
datetimeFifteenMinutes_gt: Time
#
datetimeFifteenMinutes_in: [Time!]
#
datetimeFifteenMinutes_leq: Time
#
datetimeFifteenMinutes_lt: Time
#
datetimeFifteenMinutes_neq: Time
#
datetimeFifteenMinutes_notin: [Time!]
#
datetimeFiveMinutes: Time
#
datetimeFiveMinutes_geq: Time
#
datetimeFiveMinutes_gt: Time
#
datetimeFiveMinutes_in: [Time!]
#
datetimeFiveMinutes_leq: Time
#
datetimeFiveMinutes_lt: Time
#
datetimeFiveMinutes_neq: Time
#
datetimeFiveMinutes_notin: [Time!]
#
datetimeHour: Time
#
datetimeHour_geq: Time
#
datetimeHour_gt: Time
#
datetimeHour_in: [Time!]
#
datetimeHour_leq: Time
#
datetimeHour_lt: Time
#
datetimeHour_neq: Time
#
datetimeHour_notin: [Time!]
#
datetimeMinute: Time
#
datetimeMinute_geq: Time
#
datetimeMinute_gt: Time
#
datetimeMinute_in: [Time!]
#
datetimeMinute_leq: Time
#
datetimeMinute_lt: Time
#
datetimeMinute_neq: Time
#
datetimeMinute_notin: [Time!]
#
datetimeTenSeconds: Time
#
datetimeTenSeconds_geq: Time
#
datetimeTenSeconds_gt: Time
#
datetimeTenSeconds_in: [Time!]
#
datetimeTenSeconds_leq: Time
#
datetimeTenSeconds_lt: Time
#
datetimeTenSeconds_neq: Time
#
datetimeTenSeconds_notin: [Time!]
#
datetime_geq: Time
#
datetime_gt: Time
#
datetime_in: [Time!]
#
datetime_leq: Time
#
datetime_lt: Time
#
datetime_neq: Time
#
datetime_notin: [Time!]
#
destinationAsn: uint32
#
destinationAsnName: string
#
destinationAsnName_geq: string
#
destinationAsnName_gt: string
#
destinationAsnName_in: [string!]
#
destinationAsnName_leq: string
#
destinationAsnName_like: string
#
destinationAsnName_lt: string
#
destinationAsnName_neq: string
#
destinationAsnName_notin: [string!]
#
destinationAsnName_notlike: string
#
destinationAsn_geq: uint32
#
destinationAsn_gt: uint32
#
destinationAsn_in: [uint32!]
#
destinationAsn_leq: uint32
#
destinationAsn_lt: uint32
#
destinationAsn_neq: uint32
#
destinationAsn_notin: [uint32!]
#
destinationCountry: string
#
destinationCountry_geq: string
#
destinationCountry_gt: string
#
destinationCountry_in: [string!]
#
destinationCountry_leq: string
#
destinationCountry_like: string
#
destinationCountry_lt: string
#
destinationCountry_neq: string
#
destinationCountry_notin: [string!]
#
destinationCountry_notlike: string
#
destinationGeohash: string
#
destinationGeohash_geq: string
#
destinationGeohash_gt: string
#
destinationGeohash_in: [string!]
#
destinationGeohash_leq: string
#
destinationGeohash_like: string
#
destinationGeohash_lt: string
#
destinationGeohash_neq: string
#
destinationGeohash_notin: [string!]
#
destinationGeohash_notlike: string
#
destinationPort: uint16
#
destinationPort_geq: uint16
#
destinationPort_gt: uint16
#
destinationPort_in: [uint16!]
#
destinationPort_leq: uint16
#
destinationPort_lt: uint16
#
destinationPort_neq: uint16
#
destinationPort_notin: [uint16!]
#
direction: string
#
direction_geq: string
#
direction_gt: string
#
direction_in: [string!]
#
direction_leq: string
#
direction_like: string
#
direction_lt: string
#
direction_neq: string
#
direction_notin: [string!]
#
direction_notlike: string
#
ethertype: uint16
#
ethertype_geq: uint16
#
ethertype_gt: uint16
#
ethertype_in: [uint16!]
#
ethertype_leq: uint16
#
ethertype_lt: uint16
#
ethertype_neq: uint16
#
ethertype_notin: [uint16!]
#
greChecksum: uint16
#
greChecksum_geq: uint16
#
greChecksum_gt: uint16
#
greChecksum_in: [uint16!]
#
greChecksum_leq: uint16
#
greChecksum_lt: uint16
#
greChecksum_neq: uint16
#
greChecksum_notin: [uint16!]
#
greEthertype: uint16
#
greEthertype_geq: uint16
#
greEthertype_gt: uint16
#
greEthertype_in: [uint16!]
#
greEthertype_leq: uint16
#
greEthertype_lt: uint16
#
greEthertype_neq: uint16
#
greEthertype_notin: [uint16!]
#
greHeaderLength: uint16
#
greHeaderLength_geq: uint16
#
greHeaderLength_gt: uint16
#
greHeaderLength_in: [uint16!]
#
greHeaderLength_leq: uint16
#
greHeaderLength_lt: uint16
#
greHeaderLength_neq: uint16
#
greHeaderLength_notin: [uint16!]
#
greKey: uint32
#
greKey_geq: uint32
#
greKey_gt: uint32
#
greKey_in: [uint32!]
#
greKey_leq: uint32
#
greKey_lt: uint32
#
greKey_neq: uint32
#
greKey_notin: [uint32!]
#
greSequenceNumber: uint32
#
greSequenceNumber_geq: uint32
#
greSequenceNumber_gt: uint32
#
greSequenceNumber_in: [uint32!]
#
greSequenceNumber_leq: uint32
#
greSequenceNumber_lt: uint32
#
greSequenceNumber_neq: uint32
#
greSequenceNumber_notin: [uint32!]
#
greVersion: uint8
#
greVersion_geq: uint8
#
greVersion_gt: uint8
#
greVersion_in: bytes
#
greVersion_leq: uint8
#
greVersion_lt: uint8
#
greVersion_neq: uint8
#
greVersion_notin: bytes
#
icmpChecksum: uint16
#
icmpChecksum_geq: uint16
#
icmpChecksum_gt: uint16
#
icmpChecksum_in: [uint16!]
#
icmpChecksum_leq: uint16
#
icmpChecksum_lt: uint16
#
icmpChecksum_neq: uint16
#
icmpChecksum_notin: [uint16!]
#
icmpCode: uint8
#
icmpCode_geq: uint8
#
icmpCode_gt: uint8
#
icmpCode_in: bytes
#
icmpCode_leq: uint8
#
icmpCode_lt: uint8