forked from taskcluster/taskcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0007.yml
1153 lines (966 loc) · 49.6 KB
/
0007.yml
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
version: 7
description: bugfix for `.._scan` taskcluster-lib-entities methods
methods:
# This updates the _scan methods to treat 'page' as an offset. The previous
# approach (from verison 2) did not work.
clients_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: auth
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select clients_entities.partition_key, clients_entities.row_key, clients_entities.value, clients_entities.version, clients_entities.etag from clients_entities';
partition_key_var text;
row_key_var text;
begin
if clients_entities_scan.pk is not null or clients_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if clients_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(clients_entities_scan.pk);
end if;
if clients_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(clients_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by clients_entities.partition_key, clients_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
roles_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: auth
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select roles_entities.partition_key, roles_entities.row_key, roles_entities.value, roles_entities.version, roles_entities.etag from roles_entities';
partition_key_var text;
row_key_var text;
begin
if roles_entities_scan.pk is not null or roles_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if roles_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(roles_entities_scan.pk);
end if;
if roles_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(roles_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by roles_entities.partition_key, roles_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
taskcluster_github_builds_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: github
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select taskcluster_github_builds_entities.partition_key, taskcluster_github_builds_entities.row_key, taskcluster_github_builds_entities.value, taskcluster_github_builds_entities.version, taskcluster_github_builds_entities.etag from taskcluster_github_builds_entities';
partition_key_var text;
row_key_var text;
begin
if taskcluster_github_builds_entities_scan.pk is not null or taskcluster_github_builds_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if taskcluster_github_builds_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(taskcluster_github_builds_entities_scan.pk);
end if;
if taskcluster_github_builds_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(taskcluster_github_builds_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by taskcluster_github_builds_entities.partition_key, taskcluster_github_builds_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
taskcluster_integration_owners_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: github
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select taskcluster_integration_owners_entities.partition_key, taskcluster_integration_owners_entities.row_key, taskcluster_integration_owners_entities.value, taskcluster_integration_owners_entities.version, taskcluster_integration_owners_entities.etag from taskcluster_integration_owners_entities';
partition_key_var text;
row_key_var text;
begin
if taskcluster_integration_owners_entities_scan.pk is not null or taskcluster_integration_owners_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if taskcluster_integration_owners_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(taskcluster_integration_owners_entities_scan.pk);
end if;
if taskcluster_integration_owners_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(taskcluster_integration_owners_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by taskcluster_integration_owners_entities.partition_key, taskcluster_integration_owners_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
taskcluster_checks_to_tasks_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: github
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select taskcluster_checks_to_tasks_entities.partition_key, taskcluster_checks_to_tasks_entities.row_key, taskcluster_checks_to_tasks_entities.value, taskcluster_checks_to_tasks_entities.version, taskcluster_checks_to_tasks_entities.etag from taskcluster_checks_to_tasks_entities';
partition_key_var text;
row_key_var text;
begin
if taskcluster_checks_to_tasks_entities_scan.pk is not null or taskcluster_checks_to_tasks_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if taskcluster_checks_to_tasks_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(taskcluster_checks_to_tasks_entities_scan.pk);
end if;
if taskcluster_checks_to_tasks_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(taskcluster_checks_to_tasks_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by taskcluster_checks_to_tasks_entities.partition_key, taskcluster_checks_to_tasks_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
taskcluster_check_runs_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: github
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select taskcluster_check_runs_entities.partition_key, taskcluster_check_runs_entities.row_key, taskcluster_check_runs_entities.value, taskcluster_check_runs_entities.version, taskcluster_check_runs_entities.etag from taskcluster_check_runs_entities';
partition_key_var text;
row_key_var text;
begin
if taskcluster_check_runs_entities_scan.pk is not null or taskcluster_check_runs_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if taskcluster_check_runs_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(taskcluster_check_runs_entities_scan.pk);
end if;
if taskcluster_check_runs_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(taskcluster_check_runs_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by taskcluster_check_runs_entities.partition_key, taskcluster_check_runs_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
hooks_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: hooks
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select hooks_entities.partition_key, hooks_entities.row_key, hooks_entities.value, hooks_entities.version, hooks_entities.etag from hooks_entities';
partition_key_var text;
row_key_var text;
begin
if hooks_entities_scan.pk is not null or hooks_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if hooks_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(hooks_entities_scan.pk);
end if;
if hooks_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(hooks_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by hooks_entities.partition_key, hooks_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queues_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: hooks
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queues_entities.partition_key, queues_entities.row_key, queues_entities.value, queues_entities.version, queues_entities.etag from queues_entities';
partition_key_var text;
row_key_var text;
begin
if queues_entities_scan.pk is not null or queues_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queues_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queues_entities_scan.pk);
end if;
if queues_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queues_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queues_entities.partition_key, queues_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
last_fire_3_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: hooks
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select last_fire_3_entities.partition_key, last_fire_3_entities.row_key, last_fire_3_entities.value, last_fire_3_entities.version, last_fire_3_entities.etag from last_fire_3_entities';
partition_key_var text;
row_key_var text;
begin
if last_fire_3_entities_scan.pk is not null or last_fire_3_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if last_fire_3_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(last_fire_3_entities_scan.pk);
end if;
if last_fire_3_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(last_fire_3_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by last_fire_3_entities.partition_key, last_fire_3_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
indexed_tasks_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: index
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select indexed_tasks_entities.partition_key, indexed_tasks_entities.row_key, indexed_tasks_entities.value, indexed_tasks_entities.version, indexed_tasks_entities.etag from indexed_tasks_entities';
partition_key_var text;
row_key_var text;
begin
if indexed_tasks_entities_scan.pk is not null or indexed_tasks_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if indexed_tasks_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(indexed_tasks_entities_scan.pk);
end if;
if indexed_tasks_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(indexed_tasks_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by indexed_tasks_entities.partition_key, indexed_tasks_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
namespaces_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: index
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select namespaces_entities.partition_key, namespaces_entities.row_key, namespaces_entities.value, namespaces_entities.version, namespaces_entities.etag from namespaces_entities';
partition_key_var text;
row_key_var text;
begin
if namespaces_entities_scan.pk is not null or namespaces_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if namespaces_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(namespaces_entities_scan.pk);
end if;
if namespaces_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(namespaces_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by namespaces_entities.partition_key, namespaces_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
denylisted_notification_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: notify
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select denylisted_notification_entities.partition_key, denylisted_notification_entities.row_key, denylisted_notification_entities.value, denylisted_notification_entities.version, denylisted_notification_entities.etag from denylisted_notification_entities';
partition_key_var text;
row_key_var text;
begin
if denylisted_notification_entities_scan.pk is not null or denylisted_notification_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if denylisted_notification_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(denylisted_notification_entities_scan.pk);
end if;
if denylisted_notification_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(denylisted_notification_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by denylisted_notification_entities.partition_key, denylisted_notification_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
cache_purges_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: purge_cache
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select cache_purges_entities.partition_key, cache_purges_entities.row_key, cache_purges_entities.value, cache_purges_entities.version, cache_purges_entities.etag from cache_purges_entities';
partition_key_var text;
row_key_var text;
begin
if cache_purges_entities_scan.pk is not null or cache_purges_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if cache_purges_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(cache_purges_entities_scan.pk);
end if;
if cache_purges_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(cache_purges_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by cache_purges_entities.partition_key, cache_purges_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_tasks_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_tasks_entities.partition_key, queue_tasks_entities.row_key, queue_tasks_entities.value, queue_tasks_entities.version, queue_tasks_entities.etag from queue_tasks_entities';
partition_key_var text;
row_key_var text;
begin
if queue_tasks_entities_scan.pk is not null or queue_tasks_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_tasks_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_tasks_entities_scan.pk);
end if;
if queue_tasks_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_tasks_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_tasks_entities.partition_key, queue_tasks_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_artifacts_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_artifacts_entities.partition_key, queue_artifacts_entities.row_key, queue_artifacts_entities.value, queue_artifacts_entities.version, queue_artifacts_entities.etag from queue_artifacts_entities';
partition_key_var text;
row_key_var text;
begin
if queue_artifacts_entities_scan.pk is not null or queue_artifacts_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_artifacts_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_artifacts_entities_scan.pk);
end if;
if queue_artifacts_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_artifacts_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_artifacts_entities.partition_key, queue_artifacts_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_task_groups_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_task_groups_entities.partition_key, queue_task_groups_entities.row_key, queue_task_groups_entities.value, queue_task_groups_entities.version, queue_task_groups_entities.etag from queue_task_groups_entities';
partition_key_var text;
row_key_var text;
begin
if queue_task_groups_entities_scan.pk is not null or queue_task_groups_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_task_groups_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_task_groups_entities_scan.pk);
end if;
if queue_task_groups_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_task_groups_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_task_groups_entities.partition_key, queue_task_groups_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_task_group_members_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_task_group_members_entities.partition_key, queue_task_group_members_entities.row_key, queue_task_group_members_entities.value, queue_task_group_members_entities.version, queue_task_group_members_entities.etag from queue_task_group_members_entities';
partition_key_var text;
row_key_var text;
begin
if queue_task_group_members_entities_scan.pk is not null or queue_task_group_members_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_task_group_members_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_task_group_members_entities_scan.pk);
end if;
if queue_task_group_members_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_task_group_members_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_task_group_members_entities.partition_key, queue_task_group_members_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_task_group_active_sets_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_task_group_active_sets_entities.partition_key, queue_task_group_active_sets_entities.row_key, queue_task_group_active_sets_entities.value, queue_task_group_active_sets_entities.version, queue_task_group_active_sets_entities.etag from queue_task_group_active_sets_entities';
partition_key_var text;
row_key_var text;
begin
if queue_task_group_active_sets_entities_scan.pk is not null or queue_task_group_active_sets_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_task_group_active_sets_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_task_group_active_sets_entities_scan.pk);
end if;
if queue_task_group_active_sets_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_task_group_active_sets_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_task_group_active_sets_entities.partition_key, queue_task_group_active_sets_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_task_requirement_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_task_requirement_entities.partition_key, queue_task_requirement_entities.row_key, queue_task_requirement_entities.value, queue_task_requirement_entities.version, queue_task_requirement_entities.etag from queue_task_requirement_entities';
partition_key_var text;
row_key_var text;
begin
if queue_task_requirement_entities_scan.pk is not null or queue_task_requirement_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_task_requirement_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_task_requirement_entities_scan.pk);
end if;
if queue_task_requirement_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_task_requirement_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_task_requirement_entities.partition_key, queue_task_requirement_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_task_dependency_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_task_dependency_entities.partition_key, queue_task_dependency_entities.row_key, queue_task_dependency_entities.value, queue_task_dependency_entities.version, queue_task_dependency_entities.etag from queue_task_dependency_entities';
partition_key_var text;
row_key_var text;
begin
if queue_task_dependency_entities_scan.pk is not null or queue_task_dependency_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_task_dependency_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_task_dependency_entities_scan.pk);
end if;
if queue_task_dependency_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_task_dependency_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_task_dependency_entities.partition_key, queue_task_dependency_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_worker_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_worker_entities.partition_key, queue_worker_entities.row_key, queue_worker_entities.value, queue_worker_entities.version, queue_worker_entities.etag from queue_worker_entities';
partition_key_var text;
row_key_var text;
begin
if queue_worker_entities_scan.pk is not null or queue_worker_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_worker_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_worker_entities_scan.pk);
end if;
if queue_worker_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_worker_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_worker_entities.partition_key, queue_worker_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_worker_type_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_worker_type_entities.partition_key, queue_worker_type_entities.row_key, queue_worker_type_entities.value, queue_worker_type_entities.version, queue_worker_type_entities.etag from queue_worker_type_entities';
partition_key_var text;
row_key_var text;
begin
if queue_worker_type_entities_scan.pk is not null or queue_worker_type_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_worker_type_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_worker_type_entities_scan.pk);
end if;
if queue_worker_type_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_worker_type_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_worker_type_entities.partition_key, queue_worker_type_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
queue_provisioner_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: queue
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select queue_provisioner_entities.partition_key, queue_provisioner_entities.row_key, queue_provisioner_entities.value, queue_provisioner_entities.version, queue_provisioner_entities.etag from queue_provisioner_entities';
partition_key_var text;
row_key_var text;
begin
if queue_provisioner_entities_scan.pk is not null or queue_provisioner_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if queue_provisioner_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(queue_provisioner_entities_scan.pk);
end if;
if queue_provisioner_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(queue_provisioner_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by queue_provisioner_entities.partition_key, queue_provisioner_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
secrets_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: secrets
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select secrets_entities.partition_key, secrets_entities.row_key, secrets_entities.value, secrets_entities.version, secrets_entities.etag from secrets_entities';
partition_key_var text;
row_key_var text;
begin
if secrets_entities_scan.pk is not null or secrets_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if secrets_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(secrets_entities_scan.pk);
end if;
if secrets_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(secrets_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by secrets_entities.partition_key, secrets_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
authorization_codes_table_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: web_server
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select authorization_codes_table_entities.partition_key, authorization_codes_table_entities.row_key, authorization_codes_table_entities.value, authorization_codes_table_entities.version, authorization_codes_table_entities.etag from authorization_codes_table_entities';
partition_key_var text;
row_key_var text;
begin
if authorization_codes_table_entities_scan.pk is not null or authorization_codes_table_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if authorization_codes_table_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(authorization_codes_table_entities_scan.pk);
end if;
if authorization_codes_table_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(authorization_codes_table_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by authorization_codes_table_entities.partition_key, authorization_codes_table_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
access_token_table_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: web_server
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select access_token_table_entities.partition_key, access_token_table_entities.row_key, access_token_table_entities.value, access_token_table_entities.version, access_token_table_entities.etag from access_token_table_entities';
partition_key_var text;
row_key_var text;
begin
if access_token_table_entities_scan.pk is not null or access_token_table_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if access_token_table_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(access_token_table_entities_scan.pk);
end if;
if access_token_table_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(access_token_table_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by access_token_table_entities.partition_key, access_token_table_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;
end if;
end if;
return query execute sql;
end
session_storage_table_entities_scan:
description: See taskcluster-lib-entities
mode: read
serviceName: web_server
args: pk text, rk text, condition text, size integer, page integer
returns: table (partition_key text, row_key text, value jsonb, version integer, etag uuid)
body: |-
declare
sql text := 'select session_storage_table_entities.partition_key, session_storage_table_entities.row_key, session_storage_table_entities.value, session_storage_table_entities.version, session_storage_table_entities.etag from session_storage_table_entities';
partition_key_var text;
row_key_var text;
begin
if session_storage_table_entities_scan.pk is not null or session_storage_table_entities_scan.rk is not null or condition is not null then
sql := sql || ' where ';
end if;
if session_storage_table_entities_scan.pk is not null then
partition_key_var := 'partition_key = ' || quote_literal(session_storage_table_entities_scan.pk);
end if;
if session_storage_table_entities_scan.rk is not null then
row_key_var := 'row_key = ' || quote_literal(session_storage_table_entities_scan.rk);
end if;
sql := sql || concat_ws(' and ', partition_key_var, row_key_var, condition);
sql := sql || ' order by session_storage_table_entities.partition_key, session_storage_table_entities.row_key';
if size is not null and size > 0 then
sql := sql || ' limit ' || size + 1;
if page is not null and page > 0 then
sql := sql || ' offset ' || page;