-
Notifications
You must be signed in to change notification settings - Fork 22
/
catalog.json
1440 lines (1440 loc) · 65.8 KB
/
catalog.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://json.schemastore.org/schema-catalog",
"version": 1,
"schemas": [
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/alloydb/v1/BackupEventData.json",
"product": "AlloyDB for PostgreSQL",
"name": "BackupEventData",
"description": "The data within all Backup events.",
"datatype": "google.events.cloud.alloydb.v1.BackupEventData",
"cloudeventTypes": [
"google.cloud.alloydb.backup.v1.created",
"google.cloud.alloydb.backup.v1.updated",
"google.cloud.alloydb.backup.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/alloydb/v1/ClusterEventData.json",
"product": "AlloyDB for PostgreSQL",
"name": "ClusterEventData",
"description": "The data within all Cluster events.",
"datatype": "google.events.cloud.alloydb.v1.ClusterEventData",
"cloudeventTypes": [
"google.cloud.alloydb.cluster.v1.created",
"google.cloud.alloydb.cluster.v1.updated",
"google.cloud.alloydb.cluster.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/alloydb/v1/InstanceEventData.json",
"product": "AlloyDB for PostgreSQL",
"name": "InstanceEventData",
"description": "The data within all Instance events.",
"datatype": "google.events.cloud.alloydb.v1.InstanceEventData",
"cloudeventTypes": [
"google.cloud.alloydb.instance.v1.created",
"google.cloud.alloydb.instance.v1.updated",
"google.cloud.alloydb.instance.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigateway/v1/ApiConfigEventData.json",
"product": "API Gateway",
"name": "ApiConfigEventData",
"description": "The data within all ApiConfig events.",
"datatype": "google.events.cloud.apigateway.v1.ApiConfigEventData",
"cloudeventTypes": [
"google.cloud.apigateway.apiConfig.v1.created",
"google.cloud.apigateway.apiConfig.v1.updated",
"google.cloud.apigateway.apiConfig.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigateway/v1/ApiEventData.json",
"product": "API Gateway",
"name": "ApiEventData",
"description": "The data within all Api events.",
"datatype": "google.events.cloud.apigateway.v1.ApiEventData",
"cloudeventTypes": [
"google.cloud.apigateway.api.v1.created",
"google.cloud.apigateway.api.v1.updated",
"google.cloud.apigateway.api.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigateway/v1/GatewayEventData.json",
"product": "API Gateway",
"name": "GatewayEventData",
"description": "The data within all Gateway events.",
"datatype": "google.events.cloud.apigateway.v1.GatewayEventData",
"cloudeventTypes": [
"google.cloud.apigateway.gateway.v1.created",
"google.cloud.apigateway.gateway.v1.updated",
"google.cloud.apigateway.gateway.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigeeregistry/v1/ApiDeploymentEventData.json",
"product": "Apigee Registry",
"name": "ApiDeploymentEventData",
"description": "The data within all ApiDeployment events.",
"datatype": "google.events.cloud.apigeeregistry.v1.ApiDeploymentEventData",
"cloudeventTypes": [
"google.cloud.apigeeregistry.apiDeployment.v1.created",
"google.cloud.apigeeregistry.apiDeployment.v1.updated",
"google.cloud.apigeeregistry.apiDeployment.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigeeregistry/v1/ApiEventData.json",
"product": "Apigee Registry",
"name": "ApiEventData",
"description": "The data within all Api events.",
"datatype": "google.events.cloud.apigeeregistry.v1.ApiEventData",
"cloudeventTypes": [
"google.cloud.apigeeregistry.api.v1.created",
"google.cloud.apigeeregistry.api.v1.updated",
"google.cloud.apigeeregistry.api.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigeeregistry/v1/ApiSpecEventData.json",
"product": "Apigee Registry",
"name": "ApiSpecEventData",
"description": "The data within all ApiSpec events.",
"datatype": "google.events.cloud.apigeeregistry.v1.ApiSpecEventData",
"cloudeventTypes": [
"google.cloud.apigeeregistry.apiSpec.v1.created",
"google.cloud.apigeeregistry.apiSpec.v1.updated",
"google.cloud.apigeeregistry.apiSpec.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigeeregistry/v1/ApiVersionEventData.json",
"product": "Apigee Registry",
"name": "ApiVersionEventData",
"description": "The data within all ApiVersion events.",
"datatype": "google.events.cloud.apigeeregistry.v1.ApiVersionEventData",
"cloudeventTypes": [
"google.cloud.apigeeregistry.apiVersion.v1.created",
"google.cloud.apigeeregistry.apiVersion.v1.updated",
"google.cloud.apigeeregistry.apiVersion.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/apigeeregistry/v1/InstanceEventData.json",
"product": "Apigee Registry",
"name": "InstanceEventData",
"description": "The data within all Instance events.",
"datatype": "google.events.cloud.apigeeregistry.v1.InstanceEventData",
"cloudeventTypes": [
"google.cloud.apigeeregistry.instance.v1.created",
"google.cloud.apigeeregistry.instance.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/audit/v1/LogEntryData.json",
"product": "Cloud Audit Logs",
"name": "LogEntryData",
"description": "The data within all Cloud Audit Logs log entry events.",
"datatype": "google.events.cloud.audit.v1.LogEntryData",
"cloudeventTypes": [
"google.cloud.audit.log.v1.written"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/batch/v1/JobEventData.json",
"product": "Batch",
"name": "JobEventData",
"description": "The data within all Job events.",
"datatype": "google.events.cloud.batch.v1.JobEventData",
"cloudeventTypes": [
"google.cloud.batch.job.v1.created",
"google.cloud.batch.job.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/beyondcorp/appconnections/v1/AppConnectionEventData.json",
"product": "BeyondCorp",
"name": "AppConnectionEventData",
"description": "The data within all AppConnection events.",
"datatype": "google.events.cloud.beyondcorp.appconnections.v1.AppConnectionEventData",
"cloudeventTypes": [
"google.cloud.beyondcorp.appconnections.appConnection.v1.created",
"google.cloud.beyondcorp.appconnections.appConnection.v1.updated",
"google.cloud.beyondcorp.appconnections.appConnection.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/beyondcorp/appconnectors/v1/AppConnectorEventData.json",
"product": "BeyondCorp",
"name": "AppConnectorEventData",
"description": "The data within all AppConnector events.",
"datatype": "google.events.cloud.beyondcorp.appconnectors.v1.AppConnectorEventData",
"cloudeventTypes": [
"google.cloud.beyondcorp.appconnectors.appConnector.v1.created",
"google.cloud.beyondcorp.appconnectors.appConnector.v1.updated",
"google.cloud.beyondcorp.appconnectors.appConnector.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/beyondcorp/appgateways/v1/AppGatewayEventData.json",
"product": "BeyondCorp",
"name": "AppGatewayEventData",
"description": "The data within all AppGateway events.",
"datatype": "google.events.cloud.beyondcorp.appgateways.v1.AppGatewayEventData",
"cloudeventTypes": [
"google.cloud.beyondcorp.appgateways.appGateway.v1.created",
"google.cloud.beyondcorp.appgateways.appGateway.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/beyondcorp/clientconnectorservices/v1/ClientConnectorServiceEventData.json",
"product": "BeyondCorp",
"name": "ClientConnectorServiceEventData",
"description": "The data within all ClientConnectorService events.",
"datatype": "google.events.cloud.beyondcorp.clientconnectorservices.v1.ClientConnectorServiceEventData",
"cloudeventTypes": [
"google.cloud.beyondcorp.clientconnectorservices.clientConnectorService.v1.created",
"google.cloud.beyondcorp.clientconnectorservices.clientConnectorService.v1.updated",
"google.cloud.beyondcorp.clientconnectorservices.clientConnectorService.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/beyondcorp/clientgateways/v1/ClientGatewayEventData.json",
"product": "BeyondCorp",
"name": "ClientGatewayEventData",
"description": "The data within all ClientGateway events.",
"datatype": "google.events.cloud.beyondcorp.clientgateways.v1.ClientGatewayEventData",
"cloudeventTypes": [
"google.cloud.beyondcorp.clientgateways.clientGateway.v1.created",
"google.cloud.beyondcorp.clientgateways.clientGateway.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/certificatemanager/v1/CertificateEventData.json",
"product": "Certificate Manager",
"name": "CertificateEventData",
"description": "The data within all Certificate events.",
"datatype": "google.events.cloud.certificatemanager.v1.CertificateEventData",
"cloudeventTypes": [
"google.cloud.certificatemanager.certificate.v1.created",
"google.cloud.certificatemanager.certificate.v1.updated",
"google.cloud.certificatemanager.certificate.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/certificatemanager/v1/CertificateIssuanceConfigEventData.json",
"product": "Certificate Manager",
"name": "CertificateIssuanceConfigEventData",
"description": "The data within all CertificateIssuanceConfig events.",
"datatype": "google.events.cloud.certificatemanager.v1.CertificateIssuanceConfigEventData",
"cloudeventTypes": [
"google.cloud.certificatemanager.certificateIssuanceConfig.v1.created",
"google.cloud.certificatemanager.certificateIssuanceConfig.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/certificatemanager/v1/CertificateMapEntryEventData.json",
"product": "Certificate Manager",
"name": "CertificateMapEntryEventData",
"description": "The data within all CertificateMapEntry events.",
"datatype": "google.events.cloud.certificatemanager.v1.CertificateMapEntryEventData",
"cloudeventTypes": [
"google.cloud.certificatemanager.certificateMapEntry.v1.created",
"google.cloud.certificatemanager.certificateMapEntry.v1.updated",
"google.cloud.certificatemanager.certificateMapEntry.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/certificatemanager/v1/CertificateMapEventData.json",
"product": "Certificate Manager",
"name": "CertificateMapEventData",
"description": "The data within all CertificateMap events.",
"datatype": "google.events.cloud.certificatemanager.v1.CertificateMapEventData",
"cloudeventTypes": [
"google.cloud.certificatemanager.certificateMap.v1.created",
"google.cloud.certificatemanager.certificateMap.v1.updated",
"google.cloud.certificatemanager.certificateMap.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/certificatemanager/v1/DnsAuthorizationEventData.json",
"product": "Certificate Manager",
"name": "DnsAuthorizationEventData",
"description": "The data within all DnsAuthorization events.",
"datatype": "google.events.cloud.certificatemanager.v1.DnsAuthorizationEventData",
"cloudeventTypes": [
"google.cloud.certificatemanager.dnsAuthorization.v1.created",
"google.cloud.certificatemanager.dnsAuthorization.v1.updated",
"google.cloud.certificatemanager.dnsAuthorization.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/cloudbuild/v1/BuildEventData.json",
"product": "Cloud Build",
"name": "BuildEventData",
"description": "Build event data for Google Cloud Platform API operations.",
"datatype": "google.events.cloud.cloudbuild.v1.BuildEventData",
"cloudeventTypes": [
"google.cloud.cloudbuild.build.v1.statusChanged"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/clouddms/v1/ConnectionProfileEventData.json",
"product": "Database Migration",
"name": "ConnectionProfileEventData",
"description": "The data within all ConnectionProfile events.",
"datatype": "google.events.cloud.clouddms.v1.ConnectionProfileEventData",
"cloudeventTypes": [
"google.cloud.clouddms.connectionProfile.v1.created",
"google.cloud.clouddms.connectionProfile.v1.updated",
"google.cloud.clouddms.connectionProfile.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/clouddms/v1/MigrationJobEventData.json",
"product": "Database Migration",
"name": "MigrationJobEventData",
"description": "The data within all MigrationJob events.",
"datatype": "google.events.cloud.clouddms.v1.MigrationJobEventData",
"cloudeventTypes": [
"google.cloud.clouddms.migrationJob.v1.created",
"google.cloud.clouddms.migrationJob.v1.updated",
"google.cloud.clouddms.migrationJob.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataflow/v1beta3/JobEventData.json",
"product": "Dataflow",
"name": "JobEventData",
"description": "The data within all Job events.",
"datatype": "google.events.cloud.dataflow.v1beta3.JobEventData",
"cloudeventTypes": [
"google.cloud.dataflow.job.v1beta3.statusChanged"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/datafusion/v1/DnsPeeringEventData.json",
"product": "Cloud Data Fusion",
"name": "DnsPeeringEventData",
"description": "The data within all DnsPeering events.",
"datatype": "google.events.cloud.datafusion.v1.DnsPeeringEventData",
"cloudeventTypes": [
"google.cloud.datafusion.dnsPeering.v1.created",
"google.cloud.datafusion.dnsPeering.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/datafusion/v1/InstanceEventData.json",
"product": "Cloud Data Fusion",
"name": "InstanceEventData",
"description": "The data within all Instance events.",
"datatype": "google.events.cloud.datafusion.v1.InstanceEventData",
"cloudeventTypes": [
"google.cloud.datafusion.instance.v1.created",
"google.cloud.datafusion.instance.v1.deleted",
"google.cloud.datafusion.instance.v1.updated"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/AssetEventData.json",
"product": "Cloud Dataplex",
"name": "AssetEventData",
"description": "The data within all Asset events.",
"datatype": "google.events.cloud.dataplex.v1.AssetEventData",
"cloudeventTypes": [
"google.cloud.dataplex.asset.v1.created",
"google.cloud.dataplex.asset.v1.updated",
"google.cloud.dataplex.asset.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/DataAttributeBindingEventData.json",
"product": "Cloud Dataplex",
"name": "DataAttributeBindingEventData",
"description": "The data within all DataAttributeBinding events.",
"datatype": "google.events.cloud.dataplex.v1.DataAttributeBindingEventData",
"cloudeventTypes": [
"google.cloud.dataplex.dataAttributeBinding.v1.created",
"google.cloud.dataplex.dataAttributeBinding.v1.updated",
"google.cloud.dataplex.dataAttributeBinding.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/DataAttributeEventData.json",
"product": "Cloud Dataplex",
"name": "DataAttributeEventData",
"description": "The data within all DataAttribute events.",
"datatype": "google.events.cloud.dataplex.v1.DataAttributeEventData",
"cloudeventTypes": [
"google.cloud.dataplex.dataAttribute.v1.created",
"google.cloud.dataplex.dataAttribute.v1.updated",
"google.cloud.dataplex.dataAttribute.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/DataScanEventData.json",
"product": "Cloud Dataplex",
"name": "DataScanEventData",
"description": "The data within all DataScan events.",
"datatype": "google.events.cloud.dataplex.v1.DataScanEventData",
"cloudeventTypes": [
"google.cloud.dataplex.dataScan.v1.created",
"google.cloud.dataplex.dataScan.v1.updated",
"google.cloud.dataplex.dataScan.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/DataTaxonomyEventData.json",
"product": "Cloud Dataplex",
"name": "DataTaxonomyEventData",
"description": "The data within all DataTaxonomy events.",
"datatype": "google.events.cloud.dataplex.v1.DataTaxonomyEventData",
"cloudeventTypes": [
"google.cloud.dataplex.dataTaxonomy.v1.created",
"google.cloud.dataplex.dataTaxonomy.v1.updated",
"google.cloud.dataplex.dataTaxonomy.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/EnvironmentEventData.json",
"product": "Cloud Dataplex",
"name": "EnvironmentEventData",
"description": "The data within all Environment events.",
"datatype": "google.events.cloud.dataplex.v1.EnvironmentEventData",
"cloudeventTypes": [
"google.cloud.dataplex.environment.v1.created",
"google.cloud.dataplex.environment.v1.updated",
"google.cloud.dataplex.environment.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/LakeEventData.json",
"product": "Cloud Dataplex",
"name": "LakeEventData",
"description": "The data within all Lake events.",
"datatype": "google.events.cloud.dataplex.v1.LakeEventData",
"cloudeventTypes": [
"google.cloud.dataplex.lake.v1.created",
"google.cloud.dataplex.lake.v1.updated",
"google.cloud.dataplex.lake.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/ScannedData.json",
"product": "Cloud Dataplex",
"name": "ScannedData",
"description": "The data scanned during processing (e.g. in incremental DataScan)",
"datatype": "google.events.cloud.dataplex.v1.ScannedData",
"cloudeventTypes": []
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/TaskEventData.json",
"product": "Cloud Dataplex",
"name": "TaskEventData",
"description": "The data within all Task events.",
"datatype": "google.events.cloud.dataplex.v1.TaskEventData",
"cloudeventTypes": [
"google.cloud.dataplex.task.v1.created",
"google.cloud.dataplex.task.v1.updated",
"google.cloud.dataplex.task.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/dataplex/v1/ZoneEventData.json",
"product": "Cloud Dataplex",
"name": "ZoneEventData",
"description": "The data within all Zone events.",
"datatype": "google.events.cloud.dataplex.v1.ZoneEventData",
"cloudeventTypes": [
"google.cloud.dataplex.zone.v1.created",
"google.cloud.dataplex.zone.v1.updated",
"google.cloud.dataplex.zone.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/datastore/v1/EntityEventData.json",
"product": "Cloud Firestore",
"name": "EntityEventData",
"description": "The data within all Firestore in Datastore Mode entity events.",
"datatype": "google.events.cloud.datastore.v1.EntityEventData",
"cloudeventTypes": [
"google.cloud.datastore.entity.v1.created",
"google.cloud.datastore.entity.v1.updated",
"google.cloud.datastore.entity.v1.deleted",
"google.cloud.datastore.entity.v1.written",
"google.cloud.datastore.entity.v1.created.withAuthContext",
"google.cloud.datastore.entity.v1.updated.withAuthContext",
"google.cloud.datastore.entity.v1.deleted.withAuthContext",
"google.cloud.datastore.entity.v1.written.withAuthContext"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/datastream/v1/ConnectionProfileEventData.json",
"product": "Datastream",
"name": "ConnectionProfileEventData",
"description": "The data within all ConnectionProfile events.",
"datatype": "google.events.cloud.datastream.v1.ConnectionProfileEventData",
"cloudeventTypes": [
"google.cloud.datastream.connectionProfile.v1.created",
"google.cloud.datastream.connectionProfile.v1.updated",
"google.cloud.datastream.connectionProfile.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/datastream/v1/PrivateConnectionEventData.json",
"product": "Datastream",
"name": "PrivateConnectionEventData",
"description": "The data within all PrivateConnection events.",
"datatype": "google.events.cloud.datastream.v1.PrivateConnectionEventData",
"cloudeventTypes": [
"google.cloud.datastream.privateConnection.v1.created",
"google.cloud.datastream.privateConnection.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/datastream/v1/RouteEventData.json",
"product": "Datastream",
"name": "RouteEventData",
"description": "The data within all Route events.",
"datatype": "google.events.cloud.datastream.v1.RouteEventData",
"cloudeventTypes": [
"google.cloud.datastream.route.v1.created",
"google.cloud.datastream.route.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/datastream/v1/StreamEventData.json",
"product": "Datastream",
"name": "StreamEventData",
"description": "The data within all Stream events.",
"datatype": "google.events.cloud.datastream.v1.StreamEventData",
"cloudeventTypes": [
"google.cloud.datastream.stream.v1.created",
"google.cloud.datastream.stream.v1.updated",
"google.cloud.datastream.stream.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/deploy/v1/AutomationEventData.json",
"product": "Cloud Deploy",
"name": "AutomationEventData",
"description": "The data within all Automation events.",
"datatype": "google.events.cloud.deploy.v1.AutomationEventData",
"cloudeventTypes": [
"google.cloud.deploy.automation.v1.created",
"google.cloud.deploy.automation.v1.updated",
"google.cloud.deploy.automation.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/deploy/v1/CustomTargetTypeEventData.json",
"product": "Cloud Deploy",
"name": "CustomTargetTypeEventData",
"description": "The data within all CustomTargetType events.",
"datatype": "google.events.cloud.deploy.v1.CustomTargetTypeEventData",
"cloudeventTypes": [
"google.cloud.deploy.customTargetType.v1.created",
"google.cloud.deploy.customTargetType.v1.updated",
"google.cloud.deploy.customTargetType.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/deploy/v1/DeliveryPipelineEventData.json",
"product": "Cloud Deploy",
"name": "DeliveryPipelineEventData",
"description": "The data within all DeliveryPipeline events.",
"datatype": "google.events.cloud.deploy.v1.DeliveryPipelineEventData",
"cloudeventTypes": [
"google.cloud.deploy.deliveryPipeline.v1.created",
"google.cloud.deploy.deliveryPipeline.v1.updated",
"google.cloud.deploy.deliveryPipeline.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/deploy/v1/ReleaseEventData.json",
"product": "Cloud Deploy",
"name": "ReleaseEventData",
"description": "The data within all Release events.",
"datatype": "google.events.cloud.deploy.v1.ReleaseEventData",
"cloudeventTypes": [
"google.cloud.deploy.release.v1.created"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/deploy/v1/RolloutEventData.json",
"product": "Cloud Deploy",
"name": "RolloutEventData",
"description": "The data within all Rollout events.",
"datatype": "google.events.cloud.deploy.v1.RolloutEventData",
"cloudeventTypes": [
"google.cloud.deploy.rollout.v1.created"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/deploy/v1/TargetEventData.json",
"product": "Cloud Deploy",
"name": "TargetEventData",
"description": "The data within all Target events.",
"datatype": "google.events.cloud.deploy.v1.TargetEventData",
"cloudeventTypes": [
"google.cloud.deploy.target.v1.created",
"google.cloud.deploy.target.v1.updated",
"google.cloud.deploy.target.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/eventarc/v1/ChannelConnectionEventData.json",
"product": "Eventarc",
"name": "ChannelConnectionEventData",
"description": "The data within all ChannelConnection events.",
"datatype": "google.events.cloud.eventarc.v1.ChannelConnectionEventData",
"cloudeventTypes": [
"google.cloud.eventarc.channelConnection.v1.created",
"google.cloud.eventarc.channelConnection.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/eventarc/v1/ChannelEventData.json",
"product": "Eventarc",
"name": "ChannelEventData",
"description": "The data within all Channel events.",
"datatype": "google.events.cloud.eventarc.v1.ChannelEventData",
"cloudeventTypes": [
"google.cloud.eventarc.channel.v1.created",
"google.cloud.eventarc.channel.v1.updated",
"google.cloud.eventarc.channel.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/eventarc/v1/TriggerEventData.json",
"product": "Eventarc",
"name": "TriggerEventData",
"description": "The data within all Trigger events.",
"datatype": "google.events.cloud.eventarc.v1.TriggerEventData",
"cloudeventTypes": [
"google.cloud.eventarc.trigger.v1.created",
"google.cloud.eventarc.trigger.v1.updated",
"google.cloud.eventarc.trigger.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/firestore/v1/DocumentEventData.json",
"product": "Cloud Firestore",
"name": "DocumentEventData",
"description": "The data within all Firestore document events.",
"datatype": "google.events.cloud.firestore.v1.DocumentEventData",
"cloudeventTypes": [
"google.cloud.firestore.document.v1.created",
"google.cloud.firestore.document.v1.updated",
"google.cloud.firestore.document.v1.deleted",
"google.cloud.firestore.document.v1.written",
"google.cloud.firestore.document.v1.created.withAuthContext",
"google.cloud.firestore.document.v1.updated.withAuthContext",
"google.cloud.firestore.document.v1.deleted.withAuthContext",
"google.cloud.firestore.document.v1.written.withAuthContext"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/functions/v2/FunctionEventData.json",
"product": "Cloud Functions",
"name": "FunctionEventData",
"description": "The data within all Function events.",
"datatype": "google.events.cloud.functions.v2.FunctionEventData",
"cloudeventTypes": [
"google.cloud.functions.function.v2.created",
"google.cloud.functions.function.v2.updated",
"google.cloud.functions.function.v2.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkebackup/v1/BackupEventData.json",
"product": "Backup for GKE",
"name": "BackupEventData",
"description": "The data within all Backup events.",
"datatype": "google.events.cloud.gkebackup.v1.BackupEventData",
"cloudeventTypes": [
"google.cloud.gkebackup.backup.v1.created",
"google.cloud.gkebackup.backup.v1.updated",
"google.cloud.gkebackup.backup.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkebackup/v1/BackupPlanEventData.json",
"product": "Backup for GKE",
"name": "BackupPlanEventData",
"description": "The data within all BackupPlan events.",
"datatype": "google.events.cloud.gkebackup.v1.BackupPlanEventData",
"cloudeventTypes": [
"google.cloud.gkebackup.backupPlan.v1.created",
"google.cloud.gkebackup.backupPlan.v1.updated",
"google.cloud.gkebackup.backupPlan.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkebackup/v1/RestoreEventData.json",
"product": "Backup for GKE",
"name": "RestoreEventData",
"description": "The data within all Restore events.",
"datatype": "google.events.cloud.gkebackup.v1.RestoreEventData",
"cloudeventTypes": [
"google.cloud.gkebackup.restore.v1.created",
"google.cloud.gkebackup.restore.v1.updated",
"google.cloud.gkebackup.restore.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkebackup/v1/RestorePlanEventData.json",
"product": "Backup for GKE",
"name": "RestorePlanEventData",
"description": "The data within all RestorePlan events.",
"datatype": "google.events.cloud.gkebackup.v1.RestorePlanEventData",
"cloudeventTypes": [
"google.cloud.gkebackup.restorePlan.v1.created",
"google.cloud.gkebackup.restorePlan.v1.updated",
"google.cloud.gkebackup.restorePlan.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkehub/v1/FeatureEventData.json",
"product": "GKE Hub",
"name": "FeatureEventData",
"description": "The data within all Feature events.",
"datatype": "google.events.cloud.gkehub.v1.FeatureEventData",
"cloudeventTypes": [
"google.cloud.gkehub.feature.v1.created",
"google.cloud.gkehub.feature.v1.deleted",
"google.cloud.gkehub.feature.v1.updated"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkehub/v1/MembershipBindingEventData.json",
"product": "GKE Hub",
"name": "MembershipBindingEventData",
"description": "The data within all MembershipBinding events.",
"datatype": "google.events.cloud.gkehub.v1.MembershipBindingEventData",
"cloudeventTypes": [
"google.cloud.gkehub.membershipBinding.v1.created",
"google.cloud.gkehub.membershipBinding.v1.updated",
"google.cloud.gkehub.membershipBinding.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkehub/v1/MembershipEventData.json",
"product": "GKE Hub",
"name": "MembershipEventData",
"description": "The data within all Membership events.",
"datatype": "google.events.cloud.gkehub.v1.MembershipEventData",
"cloudeventTypes": [
"google.cloud.gkehub.membership.v1.created",
"google.cloud.gkehub.membership.v1.deleted",
"google.cloud.gkehub.membership.v1.updated"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/gkehub/v1/ScopeEventData.json",
"product": "GKE Hub",
"name": "ScopeEventData",
"description": "The data within all Scope events.",
"datatype": "google.events.cloud.gkehub.v1.ScopeEventData",
"cloudeventTypes": [
"google.cloud.gkehub.scope.v1.created",
"google.cloud.gkehub.scope.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/iot/v1/DeviceEventData.json",
"product": "Cloud IoT",
"name": "DeviceEventData",
"description": "The data within all Cloud IoT Device events.",
"datatype": "google.events.cloud.iot.v1.DeviceEventData",
"cloudeventTypes": [
"google.cloud.iot.v1.DeviceManager.CreateDevice",
"google.cloud.iot.v1.DeviceManager.UpdateDevice",
"google.cloud.iot.v1.DeviceManager.DeleteDevice"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/iot/v1/RegistryEventData.json",
"product": "Cloud IoT",
"name": "RegistryEventData",
"description": "The data within all Cloud IoT Registry events.",
"datatype": "google.events.cloud.iot.v1.RegistryEventData",
"cloudeventTypes": [
"google.cloud.iot.v1.DeviceManager.CreateDeviceRegistry",
"google.cloud.iot.v1.DeviceManager.UpdateDeviceRegistry",
"google.cloud.iot.v1.DeviceManager.DeleteDeviceRegistry"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/memcache/v1/InstanceEventData.json",
"product": "Cloud Memorystore for Memcached",
"name": "InstanceEventData",
"description": "The data within all Instance events.",
"datatype": "google.events.cloud.memcache.v1.InstanceEventData",
"cloudeventTypes": [
"google.cloud.memcache.instance.v1.created",
"google.cloud.memcache.instance.v1.updated",
"google.cloud.memcache.instance.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/metastore/v1/BackupEventData.json",
"product": "Dataproc Metastore",
"name": "BackupEventData",
"description": "The data within all Backup events.",
"datatype": "google.events.cloud.metastore.v1.BackupEventData",
"cloudeventTypes": [
"google.cloud.metastore.backup.v1.created",
"google.cloud.metastore.backup.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/metastore/v1/FederationEventData.json",
"product": "Dataproc Metastore",
"name": "FederationEventData",
"description": "The data within all Federation events.",
"datatype": "google.events.cloud.metastore.v1.FederationEventData",
"cloudeventTypes": [
"google.cloud.metastore.federation.v1.created",
"google.cloud.metastore.federation.v1.updated",
"google.cloud.metastore.federation.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/metastore/v1/MetadataImportEventData.json",
"product": "Dataproc Metastore",
"name": "MetadataImportEventData",
"description": "The data within all MetadataImport events.",
"datatype": "google.events.cloud.metastore.v1.MetadataImportEventData",
"cloudeventTypes": [
"google.cloud.metastore.metadataImport.v1.created",
"google.cloud.metastore.metadataImport.v1.updated"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/metastore/v1/ServiceEventData.json",
"product": "Dataproc Metastore",
"name": "ServiceEventData",
"description": "The data within all Service events.",
"datatype": "google.events.cloud.metastore.v1.ServiceEventData",
"cloudeventTypes": [
"google.cloud.metastore.service.v1.created",
"google.cloud.metastore.service.v1.updated",
"google.cloud.metastore.service.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkconnectivity/v1/HubEventData.json",
"product": "Network Connectivity",
"name": "HubEventData",
"description": "The data within all Hub events.",
"datatype": "google.events.cloud.networkconnectivity.v1.HubEventData",
"cloudeventTypes": [
"google.cloud.networkconnectivity.hub.v1.created",
"google.cloud.networkconnectivity.hub.v1.updated",
"google.cloud.networkconnectivity.hub.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkconnectivity/v1/ServiceClassEventData.json",
"product": "Network Connectivity",
"name": "ServiceClassEventData",
"description": "The data within all ServiceClass events.",
"datatype": "google.events.cloud.networkconnectivity.v1.ServiceClassEventData",
"cloudeventTypes": [
"google.cloud.networkconnectivity.serviceClass.v1.updated",
"google.cloud.networkconnectivity.serviceClass.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkconnectivity/v1/ServiceConnectionMapEventData.json",
"product": "Network Connectivity",
"name": "ServiceConnectionMapEventData",
"description": "The data within all ServiceConnectionMap events.",
"datatype": "google.events.cloud.networkconnectivity.v1.ServiceConnectionMapEventData",
"cloudeventTypes": [
"google.cloud.networkconnectivity.serviceConnectionMap.v1.created",
"google.cloud.networkconnectivity.serviceConnectionMap.v1.updated",
"google.cloud.networkconnectivity.serviceConnectionMap.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkconnectivity/v1/ServiceConnectionPolicyEventData.json",
"product": "Network Connectivity",
"name": "ServiceConnectionPolicyEventData",
"description": "The data within all ServiceConnectionPolicy events.",
"datatype": "google.events.cloud.networkconnectivity.v1.ServiceConnectionPolicyEventData",
"cloudeventTypes": [
"google.cloud.networkconnectivity.serviceConnectionPolicy.v1.created",
"google.cloud.networkconnectivity.serviceConnectionPolicy.v1.updated",
"google.cloud.networkconnectivity.serviceConnectionPolicy.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkconnectivity/v1/ServiceConnectionTokenEventData.json",
"product": "Network Connectivity",
"name": "ServiceConnectionTokenEventData",
"description": "The data within all ServiceConnectionToken events.",
"datatype": "google.events.cloud.networkconnectivity.v1.ServiceConnectionTokenEventData",
"cloudeventTypes": [
"google.cloud.networkconnectivity.serviceConnectionToken.v1.created",
"google.cloud.networkconnectivity.serviceConnectionToken.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkconnectivity/v1/SpokeEventData.json",
"product": "Network Connectivity",
"name": "SpokeEventData",
"description": "The data within all Spoke events.",
"datatype": "google.events.cloud.networkconnectivity.v1.SpokeEventData",
"cloudeventTypes": [
"google.cloud.networkconnectivity.spoke.v1.created",
"google.cloud.networkconnectivity.spoke.v1.updated",
"google.cloud.networkconnectivity.spoke.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkmanagement/v1/ConnectivityTestEventData.json",
"product": "Network Management",
"name": "ConnectivityTestEventData",
"description": "The data within all ConnectivityTest events.",
"datatype": "google.events.cloud.networkmanagement.v1.ConnectivityTestEventData",
"cloudeventTypes": [
"google.cloud.networkmanagement.connectivityTest.v1.created",
"google.cloud.networkmanagement.connectivityTest.v1.updated",
"google.cloud.networkmanagement.connectivityTest.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/EndpointPolicyEventData.json",
"product": "Network Services",
"name": "EndpointPolicyEventData",
"description": "The data within all EndpointPolicy events.",
"datatype": "google.events.cloud.networkservices.v1.EndpointPolicyEventData",
"cloudeventTypes": [
"google.cloud.networkservices.endpointPolicy.v1.created",
"google.cloud.networkservices.endpointPolicy.v1.updated",
"google.cloud.networkservices.endpointPolicy.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/GatewayEventData.json",
"product": "Network Services",
"name": "GatewayEventData",
"description": "The data within all Gateway events.",
"datatype": "google.events.cloud.networkservices.v1.GatewayEventData",
"cloudeventTypes": [
"google.cloud.networkservices.gateway.v1.created",
"google.cloud.networkservices.gateway.v1.updated",
"google.cloud.networkservices.gateway.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/GrpcRouteEventData.json",
"product": "Network Services",
"name": "GrpcRouteEventData",
"description": "The data within all GrpcRoute events.",
"datatype": "google.events.cloud.networkservices.v1.GrpcRouteEventData",
"cloudeventTypes": [
"google.cloud.networkservices.grpcRoute.v1.created",
"google.cloud.networkservices.grpcRoute.v1.updated",
"google.cloud.networkservices.grpcRoute.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/HttpRouteEventData.json",
"product": "Network Services",
"name": "HttpRouteEventData",
"description": "The data within all HttpRoute events.",
"datatype": "google.events.cloud.networkservices.v1.HttpRouteEventData",
"cloudeventTypes": [
"google.cloud.networkservices.httpRoute.v1.created",
"google.cloud.networkservices.httpRoute.v1.updated",
"google.cloud.networkservices.httpRoute.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/MeshEventData.json",
"product": "Network Services",
"name": "MeshEventData",
"description": "The data within all Mesh events.",
"datatype": "google.events.cloud.networkservices.v1.MeshEventData",
"cloudeventTypes": [
"google.cloud.networkservices.mesh.v1.created",
"google.cloud.networkservices.mesh.v1.updated",
"google.cloud.networkservices.mesh.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/ServiceBindingEventData.json",
"product": "Network Services",
"name": "ServiceBindingEventData",
"description": "The data within all ServiceBinding events.",
"datatype": "google.events.cloud.networkservices.v1.ServiceBindingEventData",
"cloudeventTypes": [
"google.cloud.networkservices.serviceBinding.v1.created",
"google.cloud.networkservices.serviceBinding.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/TcpRouteEventData.json",
"product": "Network Services",
"name": "TcpRouteEventData",
"description": "The data within all TcpRoute events.",
"datatype": "google.events.cloud.networkservices.v1.TcpRouteEventData",
"cloudeventTypes": [
"google.cloud.networkservices.tcpRoute.v1.created",
"google.cloud.networkservices.tcpRoute.v1.updated",
"google.cloud.networkservices.tcpRoute.v1.deleted"
]
},
{
"url": "https://googleapis.github.io/google-cloudevents/jsonschema/google/events/cloud/networkservices/v1/TlsRouteEventData.json",
"product": "Network Services",
"name": "TlsRouteEventData",
"description": "The data within all TlsRoute events.",
"datatype": "google.events.cloud.networkservices.v1.TlsRouteEventData",
"cloudeventTypes": [