-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTHIRDPARTY.txt
More file actions
1828 lines (1631 loc) · 137 KB
/
THIRDPARTY.txt
File metadata and controls
1828 lines (1631 loc) · 137 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
Copyright 2026
Vision One Container Security
Third Party Licenses
License Attributions
=============================================================================
This product includes or may include the following:
Components:
alecthomas/jsonschema 20220216-snapshot-9eeeec9d: https://github.com/alecthomas/jsonschema : MIT License
alpine-base 3.19.8 : MIT License
alpine-keys 2.4 : MIT License
armon/go-socks5 20160902-snapshot-e7533296: https://github.com/armon/go-socks5 : MIT License
AWS SDK for Go v1.55.8: http://aws.amazon.com/sdk-for-go/ : Apache License 2.0
AzureAD/microsoft-authentication-library-for-go v1.4.2: https://github.com/AzureAD/microsoft-authentication-library-for-go : MIT License
AzureAD/microsoft-authentication-library-for-go v1.5.0: https://github.com/AzureAD/microsoft-authentication-library-for-go : MIT License
Azure/azure-sdk-for-go sdk/azcore/v1.18.0: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/azcore/v1.19.1: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/azidentity/v1.10.1: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/azidentity/v1.13.0: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/internal/v1.11.1: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/internal/v1.11.2: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/messaging/azeventhubs/v1.4.0: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/resourcemanager/eventhub/armeventhub/v1.3.0: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/resourcemanager/storage/armstorage/v1.8.1: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/storage/azblob/v1.6.1: https://docs.microsoft.com/azure/ : MIT License
Azure/azure-sdk-for-go sdk/storage/azblob/v1.6.3: https://docs.microsoft.com/azure/ : MIT License
Azure/go-amqp v1.4.0: https://github.com/Azure/go-amqp : MIT License
beorn7-perks v1.0.1: https://github.com/beorn7/perks : MIT License
blang-semver v4.0.0: https://github.com/blang/semver : MIT License
btree v1.1.3: https://github.com/google/btree : Apache License 2.0
buger/jsonparser 1.1.1: https://github.com/buger/jsonparser/ : MIT License
BurntSushi/toml v0.3.1: https://github.com/BurntSushi/toml : MIT License
busybox 1.36.1: https://busybox.net/ : Apache License 2.0
ca-certificates-bundle 20230506 : (MIT License AND Mozilla Public License 2.0)
cenkalti/backoff v4.3.0: https://github.com/cenkalti/backoff : MIT License
census-instrumentation/opencensus-go v0.24.0: http://opencensus.io : Apache License 2.0
cespare/xxhash v2.3.0: https://github.com/cespare/xxhash : MIT License
client9/misspell v0.3.4: https://pkg.go.dev/github.com/client9/misspell : (MIT License AND BSD 3-clause "New" or "Revised" License)
client-go v0.34.3: https://github.com/kubernetes/client-go : Apache License 2.0
client_golang v1.22.0: https://github.com/prometheus/client_golang : Apache License 2.0
cncf/udpa 20191208-snapshot-269d4d46: https://github.com/cncf/udpa : Apache License 2.0
CoreOS v0.3.1: https://coreos.com/ : Apache License 2.0
coreos-go-oidc v2.3.0: https://github.com/coreos/go-oidc : Apache License 2.0
dominikh/go-tools 20190523-snapshot-ea95bdfd: https://github.com/dominikh/go-tools : MIT License
einride/aip-go v0.68.1: https://github.com/einride/aip-go : MIT License
envoyproxy/go-control-plane 20251024-snapshot-75eaa193: https://github.com/envoyproxy/go-control-plane : Apache License 2.0
envoyproxy/go-control-plane envoy/v1.35.0: https://github.com/envoyproxy/go-control-plane : Apache License 2.0
envoyproxy/go-control-plane ratelimit/v0.1.0: https://github.com/envoyproxy/go-control-plane : Apache License 2.0
envoyproxy/protoc-gen-validate 1.2.1: https://github.com/envoyproxy/protoc-gen-validate : Apache License 2.0
errcheck v1.5.0-alpha: https://github.com/kisielk/errcheck : MIT License
etcd-io/raft v3.6.0 : Apache License 2.0
evanphx/json-patch v4.12.0: https://github.com/evanphx/json-patch : BSD 3-clause "New" or "Revised" License
exp 20240711-snapshot-8a7402ab: http://code.google.com/p/go.exp : BSD 3-clause "New" or "Revised" License
falcosecurity/falco 0.39.1: https://falco.org : Apache License 2.0
falcosecurity/k8s-metacollector v0.1.1 : Apache License 2.0
falcosecurity/libs 0.13.0-rc2: https://github.com/falcosecurity/libs : Apache License 2.0
falcosecurity/libs 6.0.1+driver: https://github.com/falcosecurity/libs : Apache License 2.0
falcosecurity/plugins plugins/k8saudit-gke/v0.2.0 : Apache License 2.0
falcosecurity/plugin-sdk-go v0.7.3: https://github.com/falcosecurity/plugin-sdk-go : Apache License 2.0
falcosecurity/plugin-sdk-go v0.7.4: https://github.com/falcosecurity/plugin-sdk-go : Apache License 2.0
felixge/httpsnoop v1.0.4: https://github.com/felixge/httpsnoop : MIT License
fortytw2/leaktest v1.3.0: https://github.com/fortytw2/leaktest : BSD 3-clause "New" or "Revised" License
fsnotify-fsnotify v1.9.0: https://fsnotify.org : BSD 3-clause "New" or "Revised" License
fxamacker/cbor v2.9.0: https://github.com/fxamacker/cbor : MIT License
github.com/antlr4-go/antlr v4.13.0: https://github.com/antlr4-go/antlr : BSD 3-clause "New" or "Revised" License
github.com/bahlo/generic-list-go 0.2.0: https://github.com/bahlo/generic-list-go : BSD 3-clause "New" or "Revised" License
github.com/cncf/xds 20251022-snapshot-0feb6915: https://github.com/cncf/xds : Apache License 2.0
github.com/coder/websocket v1.8.13: https://github.com/coder/websocket : ISC License
github.com/google/cel-spec v0.24.0: https://github.com/google/cel-spec : Apache License 2.0
github.com/moby/spdystream v0.5.0: https://github.com/moby/spdystream : Apache License 2.0
github.com/munnerz/goautoneg 20191010-snapshot-a7dc8b61: https://github.com/munnerz/goautoneg : BSD 3-clause "New" or "Revised" License
github.com/planetscale/vtprotobuf 20240319-snapshot-0393e58b: https://github.com/planetscale/vtprotobuf : BSD 3-clause "New" or "Revised" License
go-check-check 20171108-snapshot-20d25e28: http://labix.org/gocheck : BSD 2-clause "Simplified" License
go-check-check 20201130-snapshot-10cb9826: http://labix.org/gocheck : BSD 2-clause "Simplified" License
godebug v1.1.0: https://github.com/kylelemons/godebug : Apache License 2.0
GoDoc Text v0.2.0: http://godoc.org/github.com/kr/text : MIT License
godotenv v1.5.1: http://godoc.org/github.com/joho/godotenv : MIT License
go-etcd api/v3.6.4: https://github.com/etcd-io/etcd : Apache License 2.0
go-etcd client/pkg/v3.6.4: https://github.com/etcd-io/etcd : Apache License 2.0
go-etcd client/v3.6.4: https://github.com/etcd-io/etcd : Apache License 2.0
go-etcd pkg/v3.6.4: https://github.com/etcd-io/etcd : Apache License 2.0
go-etcd server/v3.6.4: https://github.com/etcd-io/etcd : Apache License 2.0
go-flowrate 20140419-snapshot-cca7078d: https://github.com/mxk/go-flowrate : BSD 3-clause "New" or "Revised" License
gogo/protobuf v1.3.2: http://github.com/gogo/protobuf/ : BSD 3-clause "New" or "Revised" License
go humanize 1.0.1: http://github.com/dustin/go-humanize : MIT License
go-inf-inf v0.9.1: https://godoc.org/gopkg.in/inf.v0 : BSD 3-clause "New" or "Revised" License
go-jose v2.6.3: https://github.com/go-jose/go-jose : Apache License 2.0
go-jose v4.1.3: https://github.com/go-jose/go-jose : Apache License 2.0
golang/appengine v1.6.8: http://google.golang.org/appengine : Apache License 2.0
golang-github-spf13-pflag-dev v1.0.6: https://github.com/spf13/pflag : BSD 3-clause "New" or "Revised" License
golang/glog v1.2.5: https://github.com/golang/glog : Apache License 2.0
golang-jwt/jwt v5.2.2: https://github.com/golang-jwt/jwt : MIT License
golang-jwt/jwt v5.3.0: https://github.com/golang-jwt/jwt : MIT License
golang-mock v1.1.1: https://github.com/golang/mock : Apache License 2.0
golang-mock v1.6.0: https://github.com/golang/mock : Apache License 2.0
golang/oauth2 v0.34.0: https://pkg.go.dev/golang.org/x/oauth2 : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto v0.39.0: https://godoc.org/golang.org/x/crypto : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto v0.41.0: https://godoc.org/golang.org/x/crypto : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto v0.46.0: https://godoc.org/golang.org/x/crypto : BSD 3-clause "New" or "Revised" License
golang.org/x/lint 20190308-snapshot-d0100b6b: https://pkg.go.dev/golang.org/x/lint : BSD 3-clause "New" or "Revised" License
golang.org/x/mod v0.25.0: https://go.googlesource.com/mod : BSD 3-clause "New" or "Revised" License
golang.org/x/mod v0.26.0: https://go.googlesource.com/mod : BSD 3-clause "New" or "Revised" License
golang.org/x/mod v0.30.0: https://go.googlesource.com/mod : BSD 3-clause "New" or "Revised" License
golang.org/x/net v0.41.0: https://godoc.org/golang.org/x/net : BSD 3-clause "New" or "Revised" License
golang.org/x/net v0.43.0: https://godoc.org/golang.org/x/net : BSD 3-clause "New" or "Revised" License
golang.org/x/net v0.48.0: https://godoc.org/golang.org/x/net : BSD 3-clause "New" or "Revised" License
golang.org/x/sys v0.33.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang.org/x/sys v0.35.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang.org/x/sys v0.39.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang.org/x/term v0.32.0: https://go.googlesource.com/term : BSD 3-clause "New" or "Revised" License
golang.org/x/term v0.34.0: https://go.googlesource.com/term : BSD 3-clause "New" or "Revised" License
golang.org/x/term v0.38.0: https://go.googlesource.com/term : BSD 3-clause "New" or "Revised" License
golang.org/x/time v0.14.0: https://pkg.go.dev/golang.org/x/time : BSD 3-clause "New" or "Revised" License
golang.org/x/tools v0.33.0: https://pkg.go.dev/golang.org/x/tools : BSD 3-clause "New" or "Revised" License
golang.org/x/tools v0.35.0: https://pkg.go.dev/golang.org/x/tools : BSD 3-clause "New" or "Revised" License
golang.org/x/tools v0.39.0: https://pkg.go.dev/golang.org/x/tools : BSD 3-clause "New" or "Revised" License
golang.org/x/xerrors 20200804-snapshot-5ec99f83 : BSD 3-clause "New" or "Revised" License
Golang Protobuf 1.36.11: https://github.com/golang/protobuf : BSD 3-clause "New" or "Revised" License
Golang Protobuf v1.5.4: https://github.com/golang/protobuf : BSD 3-clause "New" or "Revised" License
golang-snappy-go-dev v0.0.4: https://github.com/golang/snappy : BSD 3-clause "New" or "Revised" License
golang/sync v0.15.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang/sync v0.16.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang/sync v0.19.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang/text v0.26.0: https://github.com/golang/text : BSD 3-clause "New" or "Revised" License
golang/text v0.28.0: https://github.com/golang/text : BSD 3-clause "New" or "Revised" License
golang/text v0.32.0: https://github.com/golang/text : BSD 3-clause "New" or "Revised" License
go-logr/logr v1.4.3: https://github.com/go-logr/logr : Apache License 2.0
go-logr/stdr v1.2.2: https://github.com/go-logr/stdr : Apache License 2.0
Go Logrus v1.9.3: https://github.com/sirupsen/logrus : MIT License
gomega v1.35.1: https://github.com/onsi/gomega : MIT License
Gonum numerical packages v0.16.0: https://www.gonum.org/ : BSD 3-clause "New" or "Revised" License
googleapis/enterprise-certificate-proxy v0.3.7: https://github.com/googleapis/enterprise-certificate-proxy : Apache License 2.0
googleapis/gax-go v2.15.0: https://godoc.org/github.com/googleapis/gax-go : BSD 3-clause "New" or "Revised" License
googleapis/go-genproto 20250603-snapshot-513f2392: https://godoc.org/google.golang.org/genproto : Apache License 2.0
googleapis/go-genproto 20251022-snapshot-3a174f96: https://godoc.org/google.golang.org/genproto : Apache License 2.0
googleapis/go-genproto 20251213-snapshot-97cd9d5a: https://godoc.org/google.golang.org/genproto : Apache License 2.0
googleapis/google-api-go-client v0.258.0 : BSD 3-clause "New" or "Revised" License
google/cel-go v0.26.0: https://github.com/google/cel-go : Apache License 2.0
google-cloud-go accessapproval/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go accesscontextmanager/v1.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go aiplatform/v1.89.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go analytics/v0.28.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go apigateway/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go apigeeconnect/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go apigeeregistry/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go appengine/v1.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go area120/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go artifactregistry/v1.17.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go asset/v1.21.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go assuredworkloads/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go auth/oauth2adapt/v0.2.8: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go auth/v0.17.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go automl/v1.14.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go baremetalsolution/v1.3.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go batch/v1.12.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go beyondcorp/v1.1.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go bigquery/v1.69.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go bigtable/v1.37.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go billing/v1.20.4: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go binaryauthorization/v1.9.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go certificatemanager/v1.9.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go channel/v1.19.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go cloudbuild/v1.22.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go clouddms/v1.8.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go cloudtasks/v1.13.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go compute/metadata/v0.9.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go compute/v1.38.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go contactcenterinsights/v1.17.3: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go containeranalysis/v0.14.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go container/v1.43.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go datacatalog/v1.26.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go dataflow/v0.11.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go dataform/v0.12.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go datafusion/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go datalabeling/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go dataplex/v1.25.3: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go dataproc/v2.11.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go dataqna/v0.9.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go datastore/v1.20.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go datastream/v1.14.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go deploy/v1.27.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go dialogflow/v1.68.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go dlp/v1.23.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go documentai/v1.37.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go domains/v0.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go edgecontainer/v1.4.3: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go errorreporting/v0.3.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go essentialcontacts/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go eventarc/v1.15.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go filestore/v1.10.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go firestore/v1.18.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go functions/v1.19.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go gkebackup/v1.8.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go gkeconnect/v0.12.4: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go gkehub/v0.15.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go gkemulticloud/v1.5.3: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go gsuiteaddons/v1.7.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go iam/v1.5.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go iap/v1.11.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go ids/v1.5.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go iot/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go kms/v1.22.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go language/v1.14.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go lifesciences/v0.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go logging/v1.13.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go longrunning/v0.6.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go managedidentities/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go maps/v1.21.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go mediatranslation/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go memcache/v1.11.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go metastore/v1.14.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go monitoring/v1.24.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go networkconnectivity/v1.17.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go networkmanagement/v1.19.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go networksecurity/v0.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go notebooks/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go optimization/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go orchestration/v1.11.9: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go orgpolicy/v1.15.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go osconfig/v1.14.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go oslogin/v1.14.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go phishingprotection/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go policytroubleshooter/v1.11.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go privatecatalog/v0.10.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go pubsublite/v1.8.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go pubsub/v1.49.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go recaptchaenterprise/v2.20.4: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go recommendationengine/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go recommender/v1.13.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go redis/v1.18.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go resourcemanager/v1.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go resourcesettings/v1.8.3: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go retail/v1.21.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go run/v1.10.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go scheduler/v1.11.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go secretmanager/v1.14.7: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go securitycenter/v1.36.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go security/v1.18.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go servicedirectory/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go shell/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go spanner/v1.82.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go speech/v1.27.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go storagetransfer/v1.13.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go storage/v1.56.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go talent/v1.8.3: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go texttospeech/v1.13.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go tpu/v1.8.3: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go trace/v1.11.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go translate/v1.12.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go v0.121.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go videointelligence/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go video/v1.24.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go vision/v2.9.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go vmmigration/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go vmwareengine/v1.3.5: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go vpcaccess/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go webrisk/v1.11.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go websecurityscanner/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go workflows/v1.14.2: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.30.0 : Apache License 2.0
GoogleCloudPlatform/opentelemetry-operations-go exporter/metric/v0.53.0 : Apache License 2.0
GoogleCloudPlatform/opentelemetry-operations-go internal/resourcemapping/v0.53.0 : Apache License 2.0
google/gnostic-models v0.7.0: https://github.com/google/gnostic-models : Apache License 2.0
google/go-cmp v0.6.0: https://github.com/google/go-cmp : BSD 3-clause "New" or "Revised" License
google/go-cmp v0.7.0: https://github.com/google/go-cmp : BSD 3-clause "New" or "Revised" License
google-gofuzz v1.0.0: https://github.com/google/gofuzz : Apache License 2.0
google/go-pkcs11 v0.3.0: https://github.com/google/go-pkcs11 : Apache License 2.0
google/s2a-go v0.1.9: https://github.com/google/s2a-go : Apache License 2.0
Googleuuid v1.6.0: https://github.com/google/uuid : BSD 3-clause "New" or "Revised" License
go-openapi/jsonpointer v0.21.0: https://github.com/go-openapi/jsonpointer : Apache License 2.0
go.opentelemetry.io/proto otlp/v1.5.0: https://github.com/open-telemetry/opentelemetry-proto-go : Apache License 2.0
go-restful v3.12.2: https://github.com/emicklei/go-restful : MIT License
gorilla/websocket 20250226-snapshot-e064f32e: https://github.com/gorilla/websocket : BSD 2-clause "Simplified" License
go-spew v1.1.0: https://github.com/davecgh/go-spew : ISC License
go-spew v1.1.1: https://github.com/davecgh/go-spew : ISC License
go-systemd v22.5.0: https://github.com/coreos/go-systemd : Apache License 2.0
Go Testify v1.10.0: https://github.com/stretchr/testify : MIT License
Go Testify v1.11.1: https://github.com/stretchr/testify : MIT License
Go Testify v1.8.2: https://github.com/stretchr/testify : MIT License
go.uber.org/multierr v1.11.0: https://github.com/uber-go/multierr : MIT License
go.yaml.in/yaml/v2 v2.4.2 : MIT License
go.yaml.in/yaml/v2 v3.0.4 : MIT License
go-zap v1.27.0: https://godoc.org/go.uber.org/zap : MIT License
groupcache 20210331-snapshot-41bb18bf: https://github.com/golang/groupcache : Apache License 2.0
grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.0.1: https://github.com/grpc-ecosystem/go-grpc-middleware : Apache License 2.0
grpc-ecosystem/go-grpc-middleware v2.3.0: https://github.com/grpc-ecosystem/go-grpc-middleware : Apache License 2.0
grpc-ecosystem/go-grpc-prometheus v1.2.0: https://github.com/grpc-ecosystem/go-grpc-prometheus : Apache License 2.0
grpc-gateway v2.26.3: https://github.com/grpc-ecosystem/grpc-gateway : BSD 3-clause "New" or "Revised" License
grpc-go v1.77.0: https://github.com/grpc/grpc-go : Apache License 2.0
hashicorp/nomad-autoscaler nightly : Mozilla Public License 2.0
iancoleman/orderedmap 20190318-snapshot-ac98e3ec: https://github.com/iancoleman/orderedmap : MIT License
iancoleman/orderedmap v0.2.0: https://github.com/iancoleman/orderedmap : MIT License
iancoleman/orderedmap v0.3.0: https://github.com/iancoleman/orderedmap : MIT License
inconshreveable/mousetrap v1.1.0: https://github.com/inconshreveable/mousetrap : Apache License 2.0
invopop/jsonschema v0.13.0: https://github.com/invopop/jsonschema : MIT License
jmespath-go-jmespath internal/testify/v1.5.1: https://github.com/jmespath/go-jmespath : Apache License 2.0
jmespath-go-jmespath v0.4.0: https://github.com/jmespath/go-jmespath : Apache License 2.0
jonboulle-clockwork v0.5.0: https://github.com/jonboulle/clockwork : Apache License 2.0
josharian/intern v1.0.0: https://github.com/josharian/intern : MIT License
jsoniter-go v1.1.12: http://jsoniter.com/ : MIT License
jsonreference v0.20.2: https://github.com/go-openapi/jsonreference : Apache License 2.0
k8s.io/klog 2.130.1: https://github.com/kubernetes/klog : Apache License 2.0
k8s.io/kube-openapi 20250710-snapshot-f3f2b991: https://github.com/kubernetes/kube-openapi : Apache License 2.0
k8s.io/utils 20250324-snapshot-4c0f3b24: https://github.com/kubernetes/utils : Apache License 2.0
kisielk-gotool v1.0.0: https://github.com/kisielk/gotool : (MIT License AND BSD 3-clause "New" or "Revised" License)
kr/pretty v0.3.1: https://github.com/kr/pretty : MIT License
kubernetes/api v0.34.3: https://github.com/kubernetes/api : Apache License 2.0
kubernetes/apimachinery v0.34.3: https://github.com/kubernetes/apimachinery : Apache License 2.0
kubernetes/apiserver v0.34.3: https://github.com/kubernetes/apiserver : Apache License 2.0
kubernetes/component-base v0.34.3: https://github.com/kubernetes/component-base : Apache License 2.0
kubernetes/kms v0.34.3: https://github.com/kubernetes/kms : Apache License 2.0
kubernetes-sigs/apiserver-network-proxy konnectivity-client/v0.31.2: https://github.com/kubernetes-sigs/apiserver-network-proxy : Apache License 2.0
kubernetes-sigs/structured-merge-diff v6.3.0: https://github.com/kubernetes-sigs/structured-merge-diff : Apache License 2.0
libfalcosecurity0 0.14.1: https://github.com/falcosecurity/libs : Apache License 2.0
maelstrom-container 0.14.0: https://github.com/maelstrom-software/maelstrom : (MIT License OR Apache License 2.0)
mailru/easyjson v0.7.7: https://github.com/mailru/easyjson : MIT License
mailru/easyjson v0.9.0: https://github.com/mailru/easyjson : MIT License
martian v3.3.3: https://github.com/google/martian : Apache License 2.0
modern-go/concurrent 20180305-snapshot-bacd9c7e: https://github.com/modern-go/concurrent : Apache License 2.0
modern-go/reflect2 20250322-snapshot-35a7c28c: https://github.com/modern-go/reflect2 : Apache License 2.0
musl 1.2.4_git20230717: http://www.musl-libc.org : MIT License
natefinch/lumberjack v2.2.1: https://github.com/natefinch/lumberjack : MIT License
NumPy 2.2.6: https://numpy.org/ : BSD 3-clause "New" or "Revised" License
NYTimes-gziphandler v1.1.1: https://github.com/NYTimes/gziphandler : Apache License 2.0
oci2git 0.2.2: https://github.com/virviil/oci2git : MIT License
onsi/ginkgo 2.21.0: https://github.com/onsi/ginkgo : MIT License
OpenCensus 0.2.1: https://opencensus.io/ : Apache License 2.0
open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.34.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0
open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.34.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0
open-telemetry/opentelemetry-go metric/v1.38.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0
open-telemetry/opentelemetry-go sdk/metric/v1.38.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0
open-telemetry/opentelemetry-go sdk/v1.38.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0
open-telemetry/opentelemetry-go trace/v1.38.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0
open-telemetry/opentelemetry-go v1.38.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0
open-telemetry/opentelemetry-go-contrib detectors/gcp/v1.38.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0
open-telemetry/opentelemetry-go-contrib instrumentation/google.golang.org/grpc/otelgrpc/v0.61.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0
open-telemetry/opentelemetry-go-contrib instrumentation/net/http/otelhttp/v0.61.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0
open-telemetry/opentelemetry-go-instrumentation sdk/v1.2.1 : Apache License 2.0
pandas-python 2.3.3: https://pandas.pydata.org : BSD 3-clause "New" or "Revised" License
patrickmn-go-cache 2.1.0: https://patrickmn.com/projects/go-cache/ : MIT License
pkg/browser 20240102-snapshot-5ac0b6a4: https://github.com/pkg/browser : BSD 2-clause "Simplified" License
pkg/errors v0.9.1: https://github.com/pkg/errors : BSD 2-clause "Simplified" License
pmezard-go-difflib 1.0.0: https://github.com/pmezard/go-difflib : BSD 3-clause "New" or "Revised" License
porla v0.41.0: http://porla.org : MIT License
pquerna/cachecontrol v0.1.0: https://github.com/pquerna/cachecontrol : Apache License 2.0
prometheus-client_model v0.6.1: https://github.com/prometheus/client_model : Apache License 2.0
prometheus-common v0.62.0: https://github.com/prometheus/common : Apache License 2.0
prometheus-procfs v0.15.1: https://github.com/prometheus/procfs.git : Apache License 2.0
python-dateutil 2.9.0.post0: https://github.com/dateutil/dateutil : (Apache License 2.0 OR BSD 3-clause "New" or "Revised" License)
Python six 1.16.0: http://pypi.python.org/pypi/six : MIT License
Python tzdata 2025.3: https://github.com/python/tzdata : Apache License 2.0
PyTZ - Python Time Zone Library 2025.2: http://pythonhosted.org/pytz/ : MIT License
PyYAML 6.0.3: https://pyyaml.org/ : MIT License
rogpeppe/go-internal v1.12.0: http://github.com/rogpeppe/go-internal/ : BSD 3-clause "New" or "Revised" License
rogpeppe/go-internal v1.14.1: http://github.com/rogpeppe/go-internal/ : BSD 3-clause "New" or "Revised" License
sigs.k8s.io/json 20241014-snapshot-cfa47c3a: https://github.com/kubernetes-sigs/json : Apache License 2.0
sigs.k8s.io/randfill v1.0.0: https://github.com/kubernetes-sigs/randfill : Apache License 2.0
sigs.k8s.io/yaml v1.6.0: https://github.com/kubernetes-sigs/yaml : (MIT License AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License)
soheilhy/cmux v0.1.5: https://github.com/soheilhy/cmux : Apache License 2.0
spf13-cobra 1.9.1: https://github.com/spf13/cobra : Apache License 2.0
spiffe/go-spiffe v2.6.0: https://github.com/spiffe/go-spiffe : Apache License 2.0
stoewer/go-strcase v1.3.0: https://github.com/stoewer/go-strcase : MIT License
stretchr/objx v0.1.0: https://github.com/stretchr/objx : MIT License
stretchr/objx v0.5.0: https://github.com/stretchr/objx : MIT License
swag v0.23.0: https://github.com/go-openapi/swag : Apache License 2.0
sysdig 0.34.1: https://sysdig.com/ : Apache License 2.0
tmc/grpc-websocket-proxy 20220101-snapshot-673ab2c3: https://github.com/tmc/grpc-websocket-proxy : MIT License
valyala-fastjson v1.6.3: https://github.com/valyala/fastjson : MIT License
wk8/go-ordered-map v2.1.8: https://github.com/wk8/go-ordered-map : Apache License 2.0
x448/float16 v0.8.4: https://github.com/x448/float16 : MIT License
xeipuuv-gojsonpointer 20190904-snapshot-02993c40: https://github.com/xeipuuv/gojsonpointer : Apache License 2.0
xeipuuv-gojsonreference 20180127-snapshot-bd5ef7bd: https://github.com/xeipuuv/gojsonreference : Apache License 2.0
xeipuuv/gojsonschema v1.2.0: https://github.com/xeipuuv/gojsonschema : Apache License 2.0
xiang90-probing 20221125-snapshot-a49e3df8: https://github.com/xiang90/probing : MIT License
yaml for Go v2.2.8: https://github.com/go-yaml/yaml/tree/v2 : Apache License 2.0
yaml for Go v3.0.1: https://github.com/go-yaml/yaml/tree/v2 : (MIT License AND Apache License 2.0)
yuin/goldmark v1.2.1: https://github.com/yuin/goldmark : MIT License
zeebo/errs v1.4.0: https://github.com/zeebo/errs : MIT License
Copyright Text:
alecthomas/jsonschema 20220216-snapshot-9eeeec9d github:alecthomas/jsonschema:9eeeec9d044b28001bc1a5aaf61333d60ac33a64: https://github.com/alecthomas/jsonschema
Copyright (C) 2014 Alec Thomas
alpine-base 3.19.8 alpine:alpine-release/3.19.8-r0/noarch
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
11 of the WIPO copyright treaty adopted on 20 December 1996, or
alpine-keys 2.4 alpine:alpine-keys/2.4-r1/aarch64
Copyright (c) 2019 P3TERX
armon/go-socks5 20160902-snapshot-e7533296 github:armon/go-socks5:e75332964ef517daa070d7c38a9466a0d687e0a5: https://github.com/armon/go-socks5
Copyright (c) 2014 Armon Dadgar
AWS SDK for Go v1.55.8 github:aws/aws-sdk-go:v1.55.8: http://aws.amazon.com/sdk-for-go/
Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Copyright 2014-2015 Stripe, Inc.
AzureAD/microsoft-authentication-library-for-go v1.4.2 github:azuread/microsoft-authentication-library-for-go:v1.4.2: https://github.com/AzureAD/microsoft-authentication-library-for-go
Copyright (c) Microsoft Corporation.
AzureAD/microsoft-authentication-library-for-go v1.5.0 github:azuread/microsoft-authentication-library-for-go:v1.5.0: https://github.com/AzureAD/microsoft-authentication-library-for-go
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/azcore/v1.18.0 github:azure/azure-sdk-for-go:sdk/azcore/v1.18.0: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/azcore/v1.19.1 github:azure/azure-sdk-for-go:sdk/azcore/v1.19.1: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/azidentity/v1.10.1 github:azure/azure-sdk-for-go:sdk/azidentity/v1.10.1: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/azidentity/v1.13.0 github:azure/azure-sdk-for-go:sdk/azidentity/v1.13.0: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/internal/v1.11.1 github:azure/azure-sdk-for-go:sdk/internal/v1.11.1: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/internal/v1.11.2 github:azure/azure-sdk-for-go:sdk/internal/v1.11.2: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/messaging/azeventhubs/v1.4.0 github:azure/azure-sdk-for-go:sdk/messaging/azeventhubs/v1.4.0: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/resourcemanager/eventhub/armeventhub/v1.3.0 github:azure/azure-sdk-for-go:sdk/resourcemanager/eventhub/armeventhub/v1.3.0: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/resourcemanager/storage/armstorage/v1.8.1 github:azure/azure-sdk-for-go:sdk/resourcemanager/storage/armstorage/v1.8.1: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/storage/azblob/v1.6.1 github:azure/azure-sdk-for-go:sdk/storage/azblob/v1.6.1: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/azure-sdk-for-go sdk/storage/azblob/v1.6.3 github:azure/azure-sdk-for-go:sdk/storage/azblob/v1.6.3: https://docs.microsoft.com/azure/
Copyright (c) Microsoft Corporation.
Azure/go-amqp v1.4.0 github:azure/go-amqp:v1.4.0: https://github.com/Azure/go-amqp
Copyright (C) 2017 Kale Blankenship
Portions Copyright (C) Microsoft Corporation
beorn7-perks v1.0.1 github:beorn7/perks:v1.0.1: https://github.com/beorn7/perks
Copyright (C) 2013 Blake Mizerany
blang-semver v4.0.0 github:blang/semver:v4.0.0: https://github.com/blang/semver
Copyright (c) 2014 Benedikt Lang <github at benediktlang.de>
btree v1.1.3 github:google/btree:v1.1.3: https://github.com/google/btree
No Copyrights found
buger/jsonparser 1.1.1 github:buger/jsonparser:v1.1.1: https://github.com/buger/jsonparser/
Copyright (c) 2016 Leonid Bugaev
BurntSushi/toml v0.3.1 github:burntsushi/toml:v0.3.1: https://github.com/BurntSushi/toml
Copyright (c) 2013 TOML authors
busybox 1.36.1 alpine:ssl_client/1.36.1-r16/aarch64: https://busybox.net/
Copyright (c) uutils developers
ca-certificates-bundle 20230506 alpine:ca-certificates-bundle/20230506-r1/s390x
Copyright (c) 2019 P3TERX
cenkalti/backoff v4.3.0 github:cenkalti/backOff:v4.3.0: https://github.com/cenkalti/backoff
Copyright (c) 2014 Cenk Altı
census-instrumentation/opencensus-go v0.24.0 github:census-instrumentation/opencensus-go:v0.24.0: http://opencensus.io
No Copyrights found
cespare/xxhash v2.3.0 github:cespare/xxhash:v2.3.0: https://github.com/cespare/xxhash
Copyright (c) 2016 Caleb Spare
client9/misspell v0.3.4 github:client9/misspell:v0.3.4: https://pkg.go.dev/github.com/client9/misspell
Copyright (c) 2015-2017 Nick Galbreath
client-go v0.34.3 github:kubernetes/client-go:v0.34.3: https://github.com/kubernetes/client-go
No Copyrights found
client_golang v1.22.0 github:prometheus/client_golang:v1.22.0: https://github.com/prometheus/client_golang
Copyright 2012-2015 The Prometheus Authors
Copyright 2013-2015 Blake Mizerany, Björn Rabenstein
Copyright 2010 The Go Authors
cncf/udpa 20191208-snapshot-269d4d46 github:cncf/udpa:269d4d468f6f798d803d140c3016ed6fc6b735c5: https://github.com/cncf/udpa
No Copyrights found
CoreOS v0.3.1 github:coreos/go-semver:v0.3.1: https://coreos.com/
Copyright 2018 CoreOS, Inc
coreos-go-oidc v2.3.0 github:coreos/go-oidc:v2.3.0: https://github.com/coreos/go-oidc
Copyright 2014 CoreOS, Inc
dominikh/go-tools 20190523-snapshot-ea95bdfd github:dominikh/go-tools:ea95bdfd59fc14c1c9afa08716e0cd013eae4e12: https://github.com/dominikh/go-tools
Copyright (c) 2016 Dominik Honnef
Copyright (c) 2009 The Go Authors. All rights reserved.
Copyright (c) 2013 TOML authors
Copyright (c) 2017, Daniel Martí. All rights reserved.
Copyright (c) 2014 Dmitry Vyukov. All rights reserved.
einride/aip-go v0.68.1 github:einride/aip-go:v0.68.1: https://github.com/einride/aip-go
Copyright 2020 Einride AB
envoyproxy/go-control-plane 20251024-snapshot-75eaa193 github:envoyproxy/go-control-plane:75eaa193e329413d3a688b7c3aa2991095f321c1: https://github.com/envoyproxy/go-control-plane
No Copyrights found
envoyproxy/go-control-plane envoy/v1.35.0 github:envoyproxy/go-control-plane:envoy/v1.35.0: https://github.com/envoyproxy/go-control-plane
No Copyrights found
envoyproxy/go-control-plane ratelimit/v0.1.0 github:envoyproxy/go-control-plane:ratelimit/v0.1.0: https://github.com/envoyproxy/go-control-plane
No Copyrights found
envoyproxy/protoc-gen-validate 1.2.1 github:envoyproxy/protoc-gen-validate:v1.2.1: https://github.com/envoyproxy/protoc-gen-validate
No Copyrights found
errcheck v1.5.0-alpha github:kisielk/errcheck:v1.5.0-alpha: https://github.com/kisielk/errcheck
Copyright (c) 2013 Kamil Kisiel
etcd-io/raft v3.6.0 github:etcd-io/raft:v3.6.0
No Copyrights found
evanphx/json-patch v4.12.0 unknown: https://github.com/evanphx/json-patch
Copyright (c) 2014, Evan Phoenix
exp 20240711-snapshot-8a7402ab long_tail:go.googlesource.com/exp#8a7402abbf56ed11a2540c1d8beb569bd29e22d1: http://code.google.com/p/go.exp
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
falcosecurity/falco 0.39.1 github:falcosecurity/falco:0.39.1: https://falco.org
Copyright 2019 The Falco Authors
falcosecurity/k8s-metacollector v0.1.1 github:falcosecurity/k8s-metacollector:v0.1.1
Copyright 2019 The Falco Authors
falcosecurity/libs 0.13.0-rc2 github:falcosecurity/libs:0.13.0-rc2: https://github.com/falcosecurity/libs
No Copyrights found
falcosecurity/libs 6.0.1+driver github:falcosecurity/libs:6.0.1+driver: https://github.com/falcosecurity/libs
No Copyrights found
falcosecurity/plugins plugins/k8saudit-gke/v0.2.0 github:falcosecurity/plugins:plugins/k8saudit-gke/v0.2.0
No Copyrights found
falcosecurity/plugin-sdk-go v0.7.3 github:falcosecurity/plugin-sdk-go:v0.7.3: https://github.com/falcosecurity/plugin-sdk-go
No Copyrights found
falcosecurity/plugin-sdk-go v0.7.4 github:falcosecurity/plugin-sdk-go:v0.7.4: https://github.com/falcosecurity/plugin-sdk-go
No Copyrights found
felixge/httpsnoop v1.0.4 github:felixge/httpsnoop:v1.0.4: https://github.com/felixge/httpsnoop
Copyright (c) 2016 Felix Geisendörfer (felix@debuggable.com)
fortytw2/leaktest v1.3.0 github:fortytw2/leaktest:v1.3.0: https://github.com/fortytw2/leaktest
Copyright (c) 2012 The Go Authors. All rights reserved.
fsnotify-fsnotify v1.9.0 github:fsnotify/fsnotify:v1.9.0: https://fsnotify.org
Copyright © 2012 The Go Authors. All rights reserved.
Copyright © fsnotify Authors. All rights reserved.
fxamacker/cbor v2.9.0 github:fxamacker/cbor:v2.9.0: https://github.com/fxamacker/cbor
Copyright (c) 2019-present Faye Amacker
github.com/antlr4-go/antlr v4.13.0 github:antlr4-go/antlr:v4.13.0: https://github.com/antlr4-go/antlr
Copyright (c) 2012-2023 The ANTLR Project. All rights reserved.
github.com/bahlo/generic-list-go 0.2.0 github:bahlo/generic-list-go:v0.2.0: https://github.com/bahlo/generic-list-go
Copyright (c) 2009 The Go Authors. All rights reserved.
github.com/cncf/xds 20251022-snapshot-0feb6915 github:cncf/xds:0feb69152e9f7e8a45c8a3cfe8c7dd93bca3512f: https://github.com/cncf/xds
No Copyrights found
github.com/coder/websocket v1.8.13 github:coder/websocket:v1.8.13: https://github.com/coder/websocket
Copyright (c) 2025 Coder
github.com/google/cel-spec v0.24.0 github:google/cel-spec:v0.24.0: https://github.com/google/cel-spec
No Copyrights found
github.com/moby/spdystream v0.5.0 github:moby/spdystream:v0.5.0: https://github.com/moby/spdystream
Copyright 2014-2021 Docker Inc.
Copyright 2009-2013 The Go Authors.
Modifications Copyright 2014-2021 Docker Inc.
github.com/munnerz/goautoneg 20191010-snapshot-a7dc8b61 github:munnerz/goautoneg:a7dc8b61c822528f973a5e4e7b272055c6fdb43e: https://github.com/munnerz/goautoneg
Copyright (c) 2011, Open Knowledge Foundation Ltd.
github.com/planetscale/vtprotobuf 20240319-snapshot-0393e58b github:planetscale/vtprotobuf:0393e58bdf106fe0347e554d272a8f2c84d12461: https://github.com/planetscale/vtprotobuf
Copyright (c) 2021, PlanetScale Inc. All rights reserved.
Copyright (c) 2013, The GoGo Authors. All rights reserved.
Copyright (c) 2018 The Go Authors. All rights reserved.
go-check-check 20171108-snapshot-20d25e28 github:go-check/check:20d25e2804050c1cd24a7eea1e7a6447dd0e74ec: http://labix.org/gocheck
Copyright (c) 2010-2013 Gustavo Niemeyer <gustavo@niemeyer.net>
go-check-check 20201130-snapshot-10cb9826 github:go-check/check:10cb98267c6cb43ea9cd6793f29ff4089c306974: http://labix.org/gocheck
Copyright (c) 2010-2013 Gustavo Niemeyer <gustavo@niemeyer.net>
godebug v1.1.0 github:kylelemons/godebug:v1.1.0: https://github.com/kylelemons/godebug
No Copyrights found
GoDoc Text v0.2.0 github:kr/text:v0.2.0: http://godoc.org/github.com/kr/text
Copyright 2012 Keith Rarick
godotenv v1.5.1 github:joho/godotenv:v1.5.1: http://godoc.org/github.com/joho/godotenv
No Copyrights found
go-etcd api/v3.6.4 github:etcd-io/etcd:api/v3.6.4: https://github.com/etcd-io/etcd
Copyright 2013 The etcd Authors
go-etcd client/pkg/v3.6.4 github:etcd-io/etcd:client/pkg/v3.6.4: https://github.com/etcd-io/etcd
Copyright 2013 The etcd Authors
go-etcd client/v3.6.4 github:etcd-io/etcd:client/v3.6.4: https://github.com/etcd-io/etcd
Copyright 2013 The etcd Authors
go-etcd pkg/v3.6.4 github:etcd-io/etcd:pkg/v3.6.4: https://github.com/etcd-io/etcd
Copyright 2013 The etcd Authors
go-etcd server/v3.6.4 github:etcd-io/etcd:server/v3.6.4: https://github.com/etcd-io/etcd
Copyright 2013 The etcd Authors
go-flowrate 20140419-snapshot-cca7078d github:mxk/go-flowrate:cca7078d478f8520f85629ad7c68962d31ed7682: https://github.com/mxk/go-flowrate
Copyright (c) 2014 The Go-FlowRate Authors. All rights reserved.
gogo/protobuf v1.3.2 unknown: http://github.com/gogo/protobuf/
Copyright (c) 2013, The GoGo Authors. All rights reserved.
Copyright 2010 The Go Authors. All rights reserved.
go humanize 1.0.1 github:dustin/go-humanize:v1.0.1: http://github.com/dustin/go-humanize
Copyright (c) 2005-2008 Dustin Sallings <dustin@spy.net>
go-inf-inf v0.9.1 github:go-inf/inf:v0.9.1: https://godoc.org/gopkg.in/inf.v0
Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go
go-jose v2.6.3 github:go-jose/go-jose:v2.6.3: https://github.com/go-jose/go-jose
No Copyrights found
go-jose v4.1.3 github:go-jose/go-jose:v4.1.3: https://github.com/go-jose/go-jose
No Copyrights found
golang/appengine v1.6.8 github:golang/appengine:v1.6.8: http://google.golang.org/appengine
No Copyrights found
golang-github-spf13-pflag-dev v1.0.6 github:spf13/pflag:v1.0.6: https://github.com/spf13/pflag
Copyright (c) 2012 Alex Ogier. All rights reserved.
Copyright (c) 2012 The Go Authors. All rights reserved.
golang/glog v1.2.5 github:golang/glog:v1.2.5: https://github.com/golang/glog
No Copyrights found
golang-jwt/jwt v5.2.2 github:golang-jwt/jwt:v5.2.2: https://github.com/golang-jwt/jwt
Copyright (c) 2012 Dave Grijalva
Copyright (c) 2021 golang-jwt maintainers
golang-jwt/jwt v5.3.0 github:golang-jwt/jwt:v5.3.0: https://github.com/golang-jwt/jwt
Copyright (c) 2012 Dave Grijalva
Copyright (c) 2021 golang-jwt maintainers
golang-mock v1.1.1 github:golang/mock:v1.1.1: https://github.com/golang/mock
No Copyrights found
golang-mock v1.6.0 github:golang/mock:v1.6.0: https://github.com/golang/mock
No Copyrights found
golang/oauth2 v0.34.0 long_tail:go.googlesource.com/oauth2#v0.34.0: https://pkg.go.dev/golang.org/x/oauth2
Copyright 2009 The Go Authors.
golang.org/x/crypto v0.39.0 long_tail:go.googlesource.com/crypto#v0.39.0: https://godoc.org/golang.org/x/crypto
Copyright 2009 The Go Authors.
golang.org/x/crypto v0.41.0 long_tail:go.googlesource.com/crypto#v0.41.0: https://godoc.org/golang.org/x/crypto
Copyright 2009 The Go Authors.
golang.org/x/crypto v0.46.0 long_tail:go.googlesource.com/crypto#v0.46.0: https://godoc.org/golang.org/x/crypto
Copyright 2009 The Go Authors.
golang.org/x/lint 20190308-snapshot-d0100b6b long_tail:go.googlesource.com/lint#d0100b6bd8b389f0385611eb39152c4d7c3a7905: https://pkg.go.dev/golang.org/x/lint
Copyright (c) 2013 The Go Authors. All rights reserved.
golang.org/x/mod v0.25.0 long_tail:go.googlesource.com/mod#v0.25.0: https://go.googlesource.com/mod
Copyright (c) 2019 P3TERX
golang.org/x/mod v0.26.0 long_tail:go.googlesource.com/mod#v0.26.0: https://go.googlesource.com/mod
Copyright (c) 2019 P3TERX
golang.org/x/mod v0.30.0 long_tail:go.googlesource.com/mod#v0.30.0: https://go.googlesource.com/mod
Copyright (c) 2019 P3TERX
golang.org/x/net v0.41.0 long_tail:go.googlesource.com/net#v0.41.0: https://godoc.org/golang.org/x/net
Copyright 2009 The Go Authors.
golang.org/x/net v0.43.0 long_tail:go.googlesource.com/net#v0.43.0: https://godoc.org/golang.org/x/net
Copyright 2009 The Go Authors.
golang.org/x/net v0.48.0 long_tail:go.googlesource.com/net#v0.48.0: https://godoc.org/golang.org/x/net
Copyright 2009 The Go Authors.
golang.org/x/sys v0.33.0 long_tail:go.googlesource.com/sys#v0.33.0: https://pkg.go.dev/golang.org/x/sync
Copyright 2009 The Go Authors.
golang.org/x/sys v0.35.0 long_tail:go.googlesource.com/sys#v0.35.0: https://pkg.go.dev/golang.org/x/sync
Copyright 2009 The Go Authors.
golang.org/x/sys v0.39.0 long_tail:go.googlesource.com/sys#v0.39.0: https://pkg.go.dev/golang.org/x/sync
Copyright 2009 The Go Authors.
golang.org/x/term v0.32.0 long_tail:go.googlesource.com/term#v0.32.0: https://go.googlesource.com/term
Copyright (c) 2019 P3TERX
golang.org/x/term v0.34.0 long_tail:go.googlesource.com/term#v0.34.0: https://go.googlesource.com/term
Copyright (c) 2019 P3TERX
golang.org/x/term v0.38.0 long_tail:go.googlesource.com/term#v0.38.0: https://go.googlesource.com/term
Copyright (c) 2019 P3TERX
golang.org/x/time v0.14.0 long_tail:go.googlesource.com/time#v0.14.0: https://pkg.go.dev/golang.org/x/time
Copyright 2009 The Go Authors.
golang.org/x/tools v0.33.0 long_tail:go.googlesource.com/tools#v0.33.0: https://pkg.go.dev/golang.org/x/tools
Copyright 2009 The Go Authors.
golang.org/x/tools v0.35.0 long_tail:go.googlesource.com/tools#v0.35.0: https://pkg.go.dev/golang.org/x/tools
Copyright 2009 The Go Authors.
golang.org/x/tools v0.39.0 long_tail:go.googlesource.com/tools#v0.39.0: https://pkg.go.dev/golang.org/x/tools
Copyright 2009 The Go Authors.
golang.org/x/xerrors 20200804-snapshot-5ec99f83 long_tail:go.googlesource.com/xerrors#5ec99f83aff198f5fbd629d6c8d8eb38a04218ca
No Copyrights found
Golang Protobuf 1.36.11 long_tail:go.googlesource.com/protobuf#v1.36.11: https://github.com/golang/protobuf
Copyright 2010 The Go Authors. All rights reserved.
Golang Protobuf v1.5.4 github:golang/protobuf:v1.5.4: https://github.com/golang/protobuf
Copyright 2010 The Go Authors. All rights reserved.
golang-snappy-go-dev v0.0.4 github:golang/snappy:v0.0.4: https://github.com/golang/snappy
Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
golang/sync v0.15.0 long_tail:go.googlesource.com/sync#v0.15.0: https://pkg.go.dev/golang.org/x/sync
Copyright 2009 The Go Authors.
golang/sync v0.16.0 long_tail:go.googlesource.com/sync#v0.16.0: https://pkg.go.dev/golang.org/x/sync
Copyright 2009 The Go Authors.
golang/sync v0.19.0 long_tail:go.googlesource.com/sync#v0.19.0: https://pkg.go.dev/golang.org/x/sync
Copyright 2009 The Go Authors.
golang/text v0.26.0 long_tail:go.googlesource.com/text#v0.26.0: https://github.com/golang/text
Copyright 2009 The Go Authors.
golang/text v0.28.0 long_tail:go.googlesource.com/text#v0.28.0: https://github.com/golang/text
Copyright 2009 The Go Authors.
golang/text v0.32.0 long_tail:go.googlesource.com/text#v0.32.0: https://github.com/golang/text
Copyright 2009 The Go Authors.
go-logr/logr v1.4.3 github:go-logr/logr:v1.4.3: https://github.com/go-logr/logr
No Copyrights found
go-logr/stdr v1.2.2 github:go-logr/stdr:v1.2.2: https://github.com/go-logr/stdr
No Copyrights found
Go Logrus v1.9.3 github:Sirupsen/logrus:v1.9.3: https://github.com/sirupsen/logrus
Copyright (c) 2014 Simon Eskildsen
gomega v1.35.1 github:onsi/gomega:v1.35.1: https://github.com/onsi/gomega
Copyright (c) 2013-2014 Onsi Fakhouri
Gonum numerical packages v0.16.0 github:gonum/gonum:v0.16.0: https://www.gonum.org/
Copyright ©2013 The Gonum Authors. All rights reserved.
googleapis/enterprise-certificate-proxy v0.3.7 github:googleapis/enterprise-certificate-proxy:v0.3.7: https://github.com/googleapis/enterprise-certificate-proxy
No Copyrights found
googleapis/gax-go v2.15.0 github:googleapis/gax-go:v2.15.0: https://godoc.org/github.com/googleapis/gax-go
Copyright 2016, Google Inc.
googleapis/go-genproto 20250603-snapshot-513f2392 github:googleapis/go-genproto:513f239258222611ca91e13068201edfabda8696: https://godoc.org/google.golang.org/genproto
No Copyrights found
googleapis/go-genproto 20251022-snapshot-3a174f96 github:googleapis/go-genproto:3a174f9686a8c31630db6dcfd3e1ebbaefa11974: https://godoc.org/google.golang.org/genproto
No Copyrights found
googleapis/go-genproto 20251213-snapshot-97cd9d5a github:googleapis/go-genproto:97cd9d5aeac218bfe9f270458e65f48e6303b60c: https://godoc.org/google.golang.org/genproto
No Copyrights found
googleapis/google-api-go-client v0.258.0 github:googleapis/google-api-go-client:v0.258.0
Copyright (c) 2011 Google Inc. All rights reserved.
google/cel-go v0.26.0 github:google/cel-go:v0.26.0: https://github.com/google/cel-go
Copyright (c) 2018 The Go Authors. All rights reserved.
google-cloud-go accessapproval/v1.8.6 github:googleapis/google-cloud-go:accessapproval/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go accesscontextmanager/v1.9.6 github:googleapis/google-cloud-go:accesscontextmanager/v1.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go aiplatform/v1.89.0 github:googleapis/google-cloud-go:aiplatform/v1.89.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go analytics/v0.28.1 github:googleapis/google-cloud-go:analytics/v0.28.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go apigateway/v1.7.6 github:googleapis/google-cloud-go:apigateway/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go apigeeconnect/v1.7.6 github:googleapis/google-cloud-go:apigeeconnect/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go apigeeregistry/v0.9.6 github:googleapis/google-cloud-go:apigeeregistry/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go appengine/v1.9.6 github:googleapis/google-cloud-go:appengine/v1.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go area120/v0.9.6 github:googleapis/google-cloud-go:area120/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go artifactregistry/v1.17.1 github:googleapis/google-cloud-go:artifactregistry/v1.17.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go asset/v1.21.1 github:googleapis/google-cloud-go:asset/v1.21.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go assuredworkloads/v1.12.6 github:googleapis/google-cloud-go:assuredworkloads/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go auth/oauth2adapt/v0.2.8 github:googleapis/google-cloud-go:auth/oauth2adapt/v0.2.8: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go auth/v0.17.0 github:googleapis/google-cloud-go:auth/v0.17.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go automl/v1.14.7 github:googleapis/google-cloud-go:automl/v1.14.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go baremetalsolution/v1.3.6 github:googleapis/google-cloud-go:baremetalsolution/v1.3.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go batch/v1.12.2 github:googleapis/google-cloud-go:batch/v1.12.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go beyondcorp/v1.1.6 github:googleapis/google-cloud-go:beyondcorp/v1.1.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go bigquery/v1.69.0 github:googleapis/google-cloud-go:bigquery/v1.69.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go bigtable/v1.37.0 github:googleapis/google-cloud-go:bigtable/v1.37.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go billing/v1.20.4 github:googleapis/google-cloud-go:billing/v1.20.4: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go binaryauthorization/v1.9.5 github:googleapis/google-cloud-go:binaryauthorization/v1.9.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go certificatemanager/v1.9.5 github:googleapis/google-cloud-go:certificatemanager/v1.9.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go channel/v1.19.5 github:googleapis/google-cloud-go:channel/v1.19.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go cloudbuild/v1.22.2 github:googleapis/google-cloud-go:cloudbuild/v1.22.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go clouddms/v1.8.7 github:googleapis/google-cloud-go:clouddms/v1.8.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go cloudtasks/v1.13.6 github:googleapis/google-cloud-go:cloudtasks/v1.13.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go compute/metadata/v0.9.0 github:googleapis/google-cloud-go:compute/metadata/v0.9.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go compute/v1.38.0 github:googleapis/google-cloud-go:compute/v1.38.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go contactcenterinsights/v1.17.3 github:googleapis/google-cloud-go:contactcenterinsights/v1.17.3: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go containeranalysis/v0.14.1 github:googleapis/google-cloud-go:containeranalysis/v0.14.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go container/v1.43.0 github:googleapis/google-cloud-go:container/v1.43.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go datacatalog/v1.26.0 github:googleapis/google-cloud-go:datacatalog/v1.26.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go dataflow/v0.11.0 github:googleapis/google-cloud-go:dataflow/v0.11.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go dataform/v0.12.0 github:googleapis/google-cloud-go:dataform/v0.12.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go datafusion/v1.8.6 github:googleapis/google-cloud-go:datafusion/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go datalabeling/v0.9.6 github:googleapis/google-cloud-go:datalabeling/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go dataplex/v1.25.3 github:googleapis/google-cloud-go:dataplex/v1.25.3: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go dataproc/v2.11.2 github:googleapis/google-cloud-go:dataproc/v2.11.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go dataqna/v0.9.7 github:googleapis/google-cloud-go:dataqna/v0.9.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go datastore/v1.20.0 github:googleapis/google-cloud-go:datastore/v1.20.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go datastream/v1.14.1 github:googleapis/google-cloud-go:datastream/v1.14.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go deploy/v1.27.2 github:googleapis/google-cloud-go:deploy/v1.27.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go dialogflow/v1.68.2 github:googleapis/google-cloud-go:dialogflow/v1.68.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go dlp/v1.23.0 github:googleapis/google-cloud-go:dlp/v1.23.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go documentai/v1.37.0 github:googleapis/google-cloud-go:documentai/v1.37.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go domains/v0.10.6 github:googleapis/google-cloud-go:domains/v0.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go edgecontainer/v1.4.3 github:googleapis/google-cloud-go:edgecontainer/v1.4.3: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go errorreporting/v0.3.2 github:googleapis/google-cloud-go:errorreporting/v0.3.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go essentialcontacts/v1.7.6 github:googleapis/google-cloud-go:essentialcontacts/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go eventarc/v1.15.5 github:googleapis/google-cloud-go:eventarc/v1.15.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go filestore/v1.10.2 github:googleapis/google-cloud-go:filestore/v1.10.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go firestore/v1.18.0 github:googleapis/google-cloud-go:firestore/v1.18.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go functions/v1.19.6 github:googleapis/google-cloud-go:functions/v1.19.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go gkebackup/v1.8.0 github:googleapis/google-cloud-go:gkebackup/v1.8.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go gkeconnect/v0.12.4 github:googleapis/google-cloud-go:gkeconnect/v0.12.4: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go gkehub/v0.15.6 github:googleapis/google-cloud-go:gkehub/v0.15.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go gkemulticloud/v1.5.3 github:googleapis/google-cloud-go:gkemulticloud/v1.5.3: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go gsuiteaddons/v1.7.7 github:googleapis/google-cloud-go:gsuiteaddons/v1.7.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go iam/v1.5.2 github:googleapis/google-cloud-go:iam/v1.5.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go iap/v1.11.2 github:googleapis/google-cloud-go:iap/v1.11.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go ids/v1.5.6 github:googleapis/google-cloud-go:ids/v1.5.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go iot/v1.8.6 github:googleapis/google-cloud-go:iot/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go kms/v1.22.0 github:googleapis/google-cloud-go:kms/v1.22.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go language/v1.14.5 github:googleapis/google-cloud-go:language/v1.14.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go lifesciences/v0.10.6 github:googleapis/google-cloud-go:lifesciences/v0.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go logging/v1.13.1 github:googleapis/google-cloud-go:logging/v1.13.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go longrunning/v0.6.7 github:googleapis/google-cloud-go:longrunning/v0.6.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go managedidentities/v1.7.6 github:googleapis/google-cloud-go:managedidentities/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go maps/v1.21.0 github:googleapis/google-cloud-go:maps/v1.21.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go mediatranslation/v0.9.6 github:googleapis/google-cloud-go:mediatranslation/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go memcache/v1.11.6 github:googleapis/google-cloud-go:memcache/v1.11.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go metastore/v1.14.7 github:googleapis/google-cloud-go:metastore/v1.14.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go monitoring/v1.24.2 github:googleapis/google-cloud-go:monitoring/v1.24.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go networkconnectivity/v1.17.1 github:googleapis/google-cloud-go:networkconnectivity/v1.17.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go networkmanagement/v1.19.1 github:googleapis/google-cloud-go:networkmanagement/v1.19.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go networksecurity/v0.10.6 github:googleapis/google-cloud-go:networksecurity/v0.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go notebooks/v1.12.6 github:googleapis/google-cloud-go:notebooks/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go optimization/v1.7.6 github:googleapis/google-cloud-go:optimization/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go orchestration/v1.11.9 github:googleapis/google-cloud-go:orchestration/v1.11.9: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go orgpolicy/v1.15.0 github:googleapis/google-cloud-go:orgpolicy/v1.15.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go osconfig/v1.14.6 github:googleapis/google-cloud-go:osconfig/v1.14.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go oslogin/v1.14.6 github:googleapis/google-cloud-go:oslogin/v1.14.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go phishingprotection/v0.9.6 github:googleapis/google-cloud-go:phishingprotection/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go policytroubleshooter/v1.11.6 github:googleapis/google-cloud-go:policytroubleshooter/v1.11.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go privatecatalog/v0.10.7 github:googleapis/google-cloud-go:privatecatalog/v0.10.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go pubsublite/v1.8.2 github:googleapis/google-cloud-go:pubsublite/v1.8.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go pubsub/v1.49.0 github:googleapis/google-cloud-go:pubsub/v1.49.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go recaptchaenterprise/v2.20.4 github:googleapis/google-cloud-go:recaptchaenterprise/v2.20.4: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go recommendationengine/v0.9.6 github:googleapis/google-cloud-go:recommendationengine/v0.9.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go recommender/v1.13.5 github:googleapis/google-cloud-go:recommender/v1.13.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go redis/v1.18.2 github:googleapis/google-cloud-go:redis/v1.18.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go resourcemanager/v1.10.6 github:googleapis/google-cloud-go:resourcemanager/v1.10.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go resourcesettings/v1.8.3 github:googleapis/google-cloud-go:resourcesettings/v1.8.3: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go retail/v1.21.0 github:googleapis/google-cloud-go:retail/v1.21.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go run/v1.10.0 github:googleapis/google-cloud-go:run/v1.10.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go scheduler/v1.11.7 github:googleapis/google-cloud-go:scheduler/v1.11.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go secretmanager/v1.14.7 github:googleapis/google-cloud-go:secretmanager/v1.14.7: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go securitycenter/v1.36.2 github:googleapis/google-cloud-go:securitycenter/v1.36.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go security/v1.18.5 github:googleapis/google-cloud-go:security/v1.18.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go servicedirectory/v1.12.6 github:googleapis/google-cloud-go:servicedirectory/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go shell/v1.8.6 github:googleapis/google-cloud-go:shell/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go spanner/v1.82.0 github:googleapis/google-cloud-go:spanner/v1.82.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go speech/v1.27.1 github:googleapis/google-cloud-go:speech/v1.27.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go storagetransfer/v1.13.0 github:googleapis/google-cloud-go:storagetransfer/v1.13.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go storage/v1.56.0 github:googleapis/google-cloud-go:storage/v1.56.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go talent/v1.8.3 github:googleapis/google-cloud-go:talent/v1.8.3: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go texttospeech/v1.13.0 github:googleapis/google-cloud-go:texttospeech/v1.13.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go tpu/v1.8.3 github:googleapis/google-cloud-go:tpu/v1.8.3: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go trace/v1.11.6 github:googleapis/google-cloud-go:trace/v1.11.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go translate/v1.12.5 github:googleapis/google-cloud-go:translate/v1.12.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go v0.121.6 github:googleapis/google-cloud-go:v0.121.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go videointelligence/v1.12.6 github:googleapis/google-cloud-go:videointelligence/v1.12.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go video/v1.24.0 github:googleapis/google-cloud-go:video/v1.24.0: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go vision/v2.9.5 github:googleapis/google-cloud-go:vision/v2.9.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go vmmigration/v1.8.6 github:googleapis/google-cloud-go:vmmigration/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go vmwareengine/v1.3.5 github:googleapis/google-cloud-go:vmwareengine/v1.3.5: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go vpcaccess/v1.8.6 github:googleapis/google-cloud-go:vpcaccess/v1.8.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go webrisk/v1.11.1 github:googleapis/google-cloud-go:webrisk/v1.11.1: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go websecurityscanner/v1.7.6 github:googleapis/google-cloud-go:websecurityscanner/v1.7.6: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
google-cloud-go workflows/v1.14.2 github:googleapis/google-cloud-go:workflows/v1.14.2: https://github.com/GoogleCloudPlatform/google-cloud-go
No Copyrights found
GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.30.0 github:googlecloudplatform/opentelemetry-operations-go:detectors/gcp/v1.30.0
No Copyrights found
GoogleCloudPlatform/opentelemetry-operations-go exporter/metric/v0.53.0 github:googlecloudplatform/opentelemetry-operations-go:exporter/metric/v0.53.0
No Copyrights found
GoogleCloudPlatform/opentelemetry-operations-go internal/resourcemapping/v0.53.0 github:googlecloudplatform/opentelemetry-operations-go:internal/resourcemapping/v0.53.0
No Copyrights found
google/gnostic-models v0.7.0 github:google/gnostic-models:v0.7.0: https://github.com/google/gnostic-models
No Copyrights found
google/go-cmp v0.6.0 github:google/go-cmp:v0.6.0: https://github.com/google/go-cmp
Copyright (c) 2017 The Go Authors. All rights reserved.
google/go-cmp v0.7.0 github:google/go-cmp:v0.7.0: https://github.com/google/go-cmp
Copyright (c) 2017 The Go Authors. All rights reserved.
google-gofuzz v1.0.0 unknown: https://github.com/google/gofuzz
No Copyrights found
google/go-pkcs11 v0.3.0 github:google/go-pkcs11:v0.3.0: https://github.com/google/go-pkcs11
No Copyrights found
google/s2a-go v0.1.9 github:google/s2a-go:v0.1.9: https://github.com/google/s2a-go
No Copyrights found
Googleuuid v1.6.0 github:google/uuid:v1.6.0: https://github.com/google/uuid
Copyright (c) 2009,2014 Google Inc. All rights reserved.
go-openapi/jsonpointer v0.21.0 github:go-openapi/jsonpointer:v0.21.0: https://github.com/go-openapi/jsonpointer
Copyright 2015-2025 go-swagger maintainers
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
// SPDX-FileCopyrightText: Copyright 2013 sigu-399 ( https://github.com/sigu-399 )
Copyright 2013 sigu-399 ( https://github.com/sigu-399 )
go.opentelemetry.io/proto otlp/v1.5.0 github:open-telemetry/opentelemetry-proto-go:otlp/v1.5.0: https://github.com/open-telemetry/opentelemetry-proto-go
No Copyrights found
go-restful v3.12.2 github:emicklei/go-restful:v3.12.2: https://github.com/emicklei/go-restful
Copyright (c) 2012,2013 Ernest Micklei
gorilla/websocket 20250226-snapshot-e064f32e github:gorilla/websocket:e064f32e3674d9d79a8fd417b5bc06fa5c6cad8f: https://github.com/gorilla/websocket
Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved.
go-spew v1.1.0 github:davecgh/go-spew:v1.1.0: https://github.com/davecgh/go-spew
Copyright (c) 2012-2016 Dave Collins <dave@davec.name>
go-spew v1.1.1 github:davecgh/go-spew:v1.1.1: https://github.com/davecgh/go-spew
Copyright (c) 2012-2016 Dave Collins <dave@davec.name>
go-systemd v22.5.0 github:coreos/go-systemd:v22.5.0: https://github.com/coreos/go-systemd
Copyright 2018 CoreOS, Inc
Go Testify v1.10.0 github:stretchr/testify:v1.10.0: https://github.com/stretchr/testify
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
Go Testify v1.11.1 github:stretchr/testify:v1.11.1: https://github.com/stretchr/testify
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
Go Testify v1.8.2 github:stretchr/testify:v1.8.2: https://github.com/stretchr/testify
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
go.uber.org/multierr v1.11.0 github:uber-go/multierr:v1.11.0: https://github.com/uber-go/multierr
Copyright (c) 2017-2021 Uber Technologies, Inc.
go.yaml.in/yaml/v2 v2.4.2 github:yaml/go-yaml:v2.4.2
Copyright 2025 - The go-yaml Project Contributors
Copyright 2006-2010 Kirill Simonov
Copyright 2011-2019 Canonical Ltd
Copyright 2025 The go-yaml Project Contributors
go.yaml.in/yaml/v2 v3.0.4 github:yaml/go-yaml:v3.0.4
Copyright 2025 - The go-yaml Project Contributors
Copyright 2006-2010 Kirill Simonov
Copyright 2011-2019 Canonical Ltd
Copyright 2025 The go-yaml Project Contributors
go-zap v1.27.0 github:uber-go/zap:v1.27.0: https://godoc.org/go.uber.org/zap
Copyright (c) 2016-2024 Uber Technologies, Inc.
*"Copyright (c) "*" Uber Technologies, Inc.")
groupcache 20210331-snapshot-41bb18bf github:Golang/groupcache:41bb18bfe9da5321badc438f91158cd790a33aa3: https://github.com/golang/groupcache
No Copyrights found
grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.0.1 github:grpc-ecosystem/go-grpc-middleware:providers/prometheus/v1.0.1: https://github.com/grpc-ecosystem/go-grpc-middleware
Copyright (c) The go-grpc-middleware Authors.
grpc-ecosystem/go-grpc-middleware v2.3.0 github:grpc-ecosystem/go-grpc-middleware:v2.3.0: https://github.com/grpc-ecosystem/go-grpc-middleware
Copyright (c) The go-grpc-middleware Authors.
grpc-ecosystem/go-grpc-prometheus v1.2.0 github:grpc-ecosystem/go-grpc-prometheus:v1.2.0: https://github.com/grpc-ecosystem/go-grpc-prometheus
No Copyrights found
grpc-gateway v2.26.3 github:grpc-ecosystem/grpc-gateway:v2.26.3: https://github.com/grpc-ecosystem/grpc-gateway
Copyright (c) 2015, Gengo, Inc.
grpc-go v1.77.0 github:grpc/grpc-go:v1.77.0: https://github.com/grpc/grpc-go
Copyright 2014 gRPC authors.
hashicorp/nomad-autoscaler nightly github:hashicorp/nomad-autoscaler:nightly
Copyright IBM Corp. 2020, 2026
iancoleman/orderedmap 20190318-snapshot-ac98e3ec github:iancoleman/orderedmap:ac98e3ecb4b017efb5c5d0fc075c2ded1f5d500d: https://github.com/iancoleman/orderedmap
Copyright (c) 2017 Ian Coleman
iancoleman/orderedmap v0.2.0 github:iancoleman/orderedmap:v0.2.0: https://github.com/iancoleman/orderedmap
Copyright (c) 2017 Ian Coleman
iancoleman/orderedmap v0.3.0 github:iancoleman/orderedmap:v0.3.0: https://github.com/iancoleman/orderedmap
Copyright (c) 2017 Ian Coleman
inconshreveable/mousetrap v1.1.0 github:inconshreveable/mousetrap:v1.1.0: https://github.com/inconshreveable/mousetrap
Copyright 2022 Alan Shreve (@inconshreveable)
invopop/jsonschema v0.13.0 github:invopop/jsonschema:v0.13.0: https://github.com/invopop/jsonschema
Copyright (C) 2014 Alec Thomas
jmespath-go-jmespath internal/testify/v1.5.1 github:jmespath/go-jmespath:internal/testify/v1.5.1: https://github.com/jmespath/go-jmespath
Copyright 2015 James Saryerwinnie
jmespath-go-jmespath v0.4.0 github:jmespath/go-jmespath:v0.4.0: https://github.com/jmespath/go-jmespath
Copyright 2015 James Saryerwinnie
jonboulle-clockwork v0.5.0 github:jonboulle/clockwork:v0.5.0: https://github.com/jonboulle/clockwork
No Copyrights found
josharian/intern v1.0.0 github:josharian/intern:v1.0.0: https://github.com/josharian/intern
Copyright (c) 2019 Josh Bleecher Snyder
jsoniter-go v1.1.12 github:json-iterator/go:v1.1.12: http://jsoniter.com/
Copyright (c) 2016 json-iterator
jsonreference v0.20.2 github:go-openapi/jsonreference:v0.20.2: https://github.com/go-openapi/jsonreference
Copyright 2015-2025 go-swagger maintainers