-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.odata.json
More file actions
2243 lines (2243 loc) · 102 KB
/
sample.odata.json
File metadata and controls
2243 lines (2243 loc) · 102 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
{
"@odata.context": "https://relcomms-prod-dagnegedescbeefs.b02.azurefd.net/api/v2/$metadata#Azure",
"value": [
{
"id": "483803",
"productCategories": [
"Developer tools",
"DevOps"
],
"tags": [
"Features"
],
"products": [
"Azure Load Testing"
],
"generalAvailabilityDate": "2025-03",
"previewAvailabilityDate": null,
"privatePreviewAvailabilityDate": null,
"title": "Generally Available: Azure Load Testing Now Supports Locust",
"description": "\u003Cdiv style=\u0022font-family:Arial\u0022\u003EAzure Load Testing now supports Locust, a Python-based open-source framework for performance testing. You can use your existing Locust scripts with Azure Load Testing to easily generate high-scale load and identify performance bottlenecks.\u0026nbsp;\u003Cspan style=\u0022font-family:\u0026quot;Aptos\u0026quot;,sans-serif;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:Aptos;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Mangal;mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA\u0022\u003ELocust is a developer\nfriendly framework that lets you write code to create load test scripts as\nopposed to using GUI based test creation.\u0026nbsp;\u003C/span\u003E\u003C/div\u003E\u003Cdiv style=\u0022font-family:Arial\u0022\u003E\u003Cbr\u003E\u003C/div\u003E\u003Cdiv style=\u0022font-family:Arial\u0022\u003E\u003Cspan style=\u0022font-family:\u0026quot;Aptos\u0026quot;,sans-serif;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:Aptos;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Mangal;mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA\u0022\u003E\u003Ca href=\u0022https://learn.microsoft.com/azure/load-testing/quickstart-create-run-load-test-with-locust?tabs=portal\u0022\u003ELearn more\u003C/a\u003E.\u003C/span\u003E\u003C/div\u003E",
"status": "Launched",
"created": "2025-03-21T21:45:02.7441087Z",
"modified": "2025-03-21T21:45:02.7441087Z",
"locale": null,
"availabilities": [
{
"ring": "General Availability",
"year": 2025,
"month": "March"
}
]
},
{
"id": "485666",
"productCategories": [
"Integration",
"Internet of Things",
"Mobile",
"Web"
],
"tags": [
"Features",
"Services"
],
"products": [
"API Management"
],
"generalAvailabilityDate": null,
"previewAvailabilityDate": "2025-03",
"privatePreviewAvailabilityDate": null,
"title": "Public Preview: Managed Developer Portal in Azure API Center (API Center Portal)",
"description": "\u003Cdiv style=\u0022font-family: Arial; font-size: 10pt;\u0022\u003E\u003Cdiv style=\u0022margin: 0px; user-select: text; clear: both; cursor: text; font-family: \u0026quot;Segoe UI\u0026quot;, \u0026quot;Segoe UI Web\u0026quot;, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\u0022\u003E\u003Cp style=\u0022margin: 12px 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-variant-ligatures:none !important;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EHaving a developer portal for your APIs is crucial as it provides a centralized \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Elocation \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Ef\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Eor all API documentation and resources, making it easier for\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Edevelopers to find\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;the information they need\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E. \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EAdditionally, it facilitates better collaboration among teams by offering a shared space for \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EAPI \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Eknowledge and improving transparency.\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003C/p\u003E\u003Cp style=\u0022margin: 12px 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u003Cbr\u003E\u003C/span\u003E\u003C/p\u003E\u003C/div\u003E\u003Cdiv style=\u0022margin: 0px; user-select: text; clear: both; cursor: text; font-family: \u0026quot;Segoe UI\u0026quot;, \u0026quot;Segoe UI Web\u0026quot;, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\u0022\u003E\u003Cp style=\u0022margin: 12px 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-variant-ligatures:none !important;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EWe are excited to announce that \u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-variant-ligatures:none !important;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;font-weight:bold\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EAzure API Center now offers a managed API Center Portal \u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-variant-ligatures:none !important;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E- \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Ean API developer portal designed to support and streamline the work of developers who use and create APIs within an organization\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E.\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003C/p\u003E\u003Cp style=\u0022margin: 12px 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u003Cbr\u003E\u003C/span\u003E\u003C/p\u003E\u003C/div\u003E\u003Cdiv style=\u0022margin: 0px; user-select: text; clear: both; cursor: text; font-family: \u0026quot;Segoe UI\u0026quot;, \u0026quot;Segoe UI Web\u0026quot;, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\u0022\u003E\u003Cp style=\u0022margin: 12px 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-variant-ligatures:none !important;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EThe \u003C/span\u003E\u003C/span\u003E\u003Ca style=\u0022margin:0px;user-select:text;text-decoration:none\u0022 rel=\u0022noreferrer noopener\u0022 href=\u0022https://aka.ms/apicenter/docs/enable-portal\u0022\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; font-size: 11pt; text-decoration: underline; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; font-variant-ligatures: none !important; color: rgb(5, 99, 193);\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022 data-ccp-charstyle=\u0022Hyperlink\u0022\u003Emanaged API Center portal\u003C/span\u003E\u003C/span\u003E\u003C/a\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-variant-ligatures:none !important;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;includes:\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003C/p\u003E\u003C/div\u003E\u003Cul data-editing-info=\u0022{\u0026quot;orderedStyleType\u0026quot;:1,\u0026quot;unorderedStyleType\u0026quot;:1}\u0022\u003E\u003Cli style=\u0022user-select: text; clear: both; cursor: text; font-size: 11pt; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; list-style-type: disc; color: rgb(0, 0, 0);\u0022 data-aria-level=\u00221\u0022 data-aria-posinset=\u00221\u0022 data-list-defn-props=\u0022{\u0026quot;335552541\u0026quot;:1,\u0026quot;335559685\u0026quot;:720,\u0026quot;335559991\u0026quot;:360,\u0026quot;469769226\u0026quot;:\u0026quot;Symbol\u0026quot;,\u0026quot;469769242\u0026quot;:[8226],\u0026quot;469777803\u0026quot;:\u0026quot;left\u0026quot;,\u0026quot;469777804\u0026quot;:\u0026quot;\uF0B7\u0026quot;,\u0026quot;469777815\u0026quot;:\u0026quot;hybridMultilevel\u0026quot;}\u0022 data-listid=\u00226\u0022 data-font=\u0022Symbol\u0022 data-leveltext=\u0022\uF0B7\u0022\u003E\u003Cp style=\u0022margin: 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; font-weight: bold; font-variant-ligatures: none !important; color: rgb(0, 0, 0);\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EView API details and definitions\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; font-variant-ligatures: none !important; color: rgb(0, 0, 0);\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E: This feature allows developers to access comprehensive information about each API, including endpoints, methods, parameters, and response formats. It helps developers understand how to interact with the APIs effectively.\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; color: rgb(0, 0, 0);\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003C/p\u003E\u003C/li\u003E\u003Cli style=\u0022user-select: text; clear: both; cursor: text; font-size: 11pt; font-family: Calibri, Calibri_MSFontService, sans-serif; list-style-type: disc;\u0022 data-aria-level=\u00221\u0022 data-aria-posinset=\u00222\u0022 data-list-defn-props=\u0022{\u0026quot;335552541\u0026quot;:1,\u0026quot;335559685\u0026quot;:720,\u0026quot;335559991\u0026quot;:360,\u0026quot;469769226\u0026quot;:\u0026quot;Symbol\u0026quot;,\u0026quot;469769242\u0026quot;:[8226],\u0026quot;469777803\u0026quot;:\u0026quot;left\u0026quot;,\u0026quot;469777804\u0026quot;:\u0026quot;\uF0B7\u0026quot;,\u0026quot;469777815\u0026quot;:\u0026quot;hybridMultilevel\u0026quot;}\u0022 data-listid=\u00226\u0022 data-font=\u0022Symbol\u0022 data-leveltext=\u0022\uF0B7\u0022\u003E\u003Cp style=\u0022margin: 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; font-weight: bold; font-variant-ligatures: none !important; color: rgb(0, 0, 0);\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003ECustomize with branding\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; font-variant-ligatures: none !important; color: rgb(0, 0, 0);\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E: The portal \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Eallows\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Ecustomers\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;to reflect the organization\u0027s branding. Currently, \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Ein preview \u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EAPI Center portal\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;supports name customization, enabling organizations to personalize the portal with their brand name.\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; color: rgb(0, 0, 0);\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003C/p\u003E\u003C/li\u003E\u003Cli style=\u0022user-select: text; clear: both; cursor: text; font-size: 11pt; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; list-style-type: disc; color: rgb(0, 0, 0);\u0022 data-aria-level=\u00221\u0022 data-aria-posinset=\u00223\u0022 data-list-defn-props=\u0022{\u0026quot;335552541\u0026quot;:1,\u0026quot;335559685\u0026quot;:720,\u0026quot;335559991\u0026quot;:360,\u0026quot;469769226\u0026quot;:\u0026quot;Symbol\u0026quot;,\u0026quot;469769242\u0026quot;:[8226],\u0026quot;469777803\u0026quot;:\u0026quot;left\u0026quot;,\u0026quot;469777804\u0026quot;:\u0026quot;\uF0B7\u0026quot;,\u0026quot;469777815\u0026quot;:\u0026quot;hybridMultilevel\u0026quot;}\u0022 data-listid=\u00226\u0022 data-font=\u0022Symbol\u0022 data-leveltext=\u0022\uF0B7\u0022\u003E\u003Cp style=\u0022margin:0px;user-select:text;overflow-wrap:break-word;white-space:pre-wrap;font-weight:normal;font-kerning:none;text-align:left\u0022\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; font-weight: bold; font-variant-ligatures: none !important; color: rgb(0, 0, 0);\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EIntegrate with Microsoft Entra\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; font-variant-ligatures: none !important; color: rgb(0, 0, 0);\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E: This integration provides seamless authentication and authorization capabilities, leveraging Microsoft Entra\u0027s identity and access management services. It ensures secure access to the APIs and simplifies user management.\u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; color: rgb(0, 0, 0);\u0022 data-ccp-props=\u0022{}\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003C/p\u003E\u003C/li\u003E\u003C/ul\u003E\u003Cp style=\u0022font-family:Calibri, Calibri_MSFontService, sans-serif;font-size:11pt;margin:0px;user-select:text;overflow-wrap:break-word;white-space:pre-wrap;font-weight:normal;font-kerning:none;text-align:left\u0022\u003E\u003Cspan style=\u0022margin: 0px; user-select: text; line-height: 18px; font-family: Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif; color: rgb(0, 0, 0);\u0022 data-ccp-props=\u0022{}\u0022\u003E\u003Cbr\u003E\u003C/span\u003E\u003C/p\u003E\u003Cdiv style=\u0022margin: 0px; user-select: text; clear: both; cursor: text; font-family: \u0026quot;Segoe UI\u0026quot;, \u0026quot;Segoe UI Web\u0026quot;, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\u0022\u003E\u003Cp style=\u0022margin: 12px 0px; user-select: text; overflow-wrap: break-word; white-space: pre-wrap; font-weight: normal; font-kerning: none; text-align: left; background-color: rgb(255, 255, 255);\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-variant-ligatures:none !important;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 lang=\u0022EN-US\u0022 data-contrast=\u0022none\u0022\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003EWhile this is a preview release, we are actively working\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;improving the design and capabilities\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text\u0022\u003Eof the API Center Portal. \u003C/span\u003E\u003C/span\u003E\u003Cspan style=\u0022margin:0px;user-select:text;font-size:11pt;line-height:18px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\u0022 data-ccp-props=\u0022{\u0026quot;335557856\u0026quot;:16777215,\u0026quot;335559738\u0026quot;:180,\u0026quot;335559739\u0026quot;:180}\u0022\u003E\u0026nbsp;\u003C/span\u003E\u003C/p\u003E\u003C/div\u003E\u003C/div\u003E",
"status": "In preview",
"created": "2025-03-20T19:00:38.7187744Z",
"modified": "2025-03-20T19:00:38.7187744Z",
"locale": null,
"availabilities": [
{
"ring": "Preview",
"year": 2025,
"month": "March"
}
]
}
],
"facets": [
{
"name": "ProductCategory",
"values": [
{
"value": "AI \u002B machine learning",
"count": 353,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "AI Anomaly Detector",
"count": 1
},
{
"value": "Azure AI Bot Service",
"count": 13
},
{
"value": "Azure AI Content Safety",
"count": 1
},
{
"value": "Azure AI Custom Vision",
"count": 11
},
{
"value": "Azure AI Foundry",
"count": 10
},
{
"value": "Azure AI Language",
"count": 15
},
{
"value": "Azure AI Personalizer",
"count": 1
},
{
"value": "Azure AI Search",
"count": 38
},
{
"value": "Azure AI Services",
"count": 107
},
{
"value": "Azure AI Translator",
"count": 12
},
{
"value": "Azure AI Video Indexer",
"count": 14
},
{
"value": "Azure Databricks",
"count": 36
},
{
"value": "Azure Machine Learning",
"count": 114
},
{
"value": "Azure Open Datasets",
"count": 1
},
{
"value": "Azure OpenAI Service",
"count": 7
},
{
"value": "Data Science Virtual Machines",
"count": 2
},
{
"value": "Health Bot",
"count": 2
},
{
"value": "Language Understanding (LUIS)",
"count": 2
},
{
"value": "Microsoft Copilot for Security",
"count": 1
},
{
"value": "QnA Maker",
"count": 3
},
{
"value": "Speaker recognition",
"count": 1
},
{
"value": "Speech to text",
"count": 2
},
{
"value": "Speech translation",
"count": 1
},
{
"value": "Text to speech",
"count": 4
}
]
}
]
},
{
"value": "Analytics",
"count": 760,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Analysis Services",
"count": 20
},
{
"value": "Azure Chaos Studio",
"count": 10
},
{
"value": "Azure Data Explorer",
"count": 81
},
{
"value": "Azure Data Factory",
"count": 86
},
{
"value": "Azure Data Lake Storage",
"count": 71
},
{
"value": "Azure Data Share",
"count": 8
},
{
"value": "Azure Databricks",
"count": 36
},
{
"value": "Azure HDInsight on Azure Kubernetes Service (AKS)",
"count": 2
},
{
"value": "Azure Stream Analytics",
"count": 131
},
{
"value": "Azure Synapse Analytics",
"count": 60
},
{
"value": "Data Catalog",
"count": 6
},
{
"value": "Data Lake Analytics",
"count": 7
},
{
"value": "Event Hubs",
"count": 55
},
{
"value": "HDInsight",
"count": 111
},
{
"value": "Microsoft Fabric",
"count": 13
},
{
"value": "Microsoft Purview",
"count": 30
},
{
"value": "Power BI Embedded",
"count": 98
}
]
}
]
},
{
"value": "Compute",
"count": 1738,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "App Service",
"count": 368
},
{
"value": "Azure Compute Fleet",
"count": 3
},
{
"value": "Azure Container Instances",
"count": 21
},
{
"value": "Azure CycleCloud",
"count": 8
},
{
"value": "Azure Dedicated Host",
"count": 10
},
{
"value": "Azure Functions",
"count": 206
},
{
"value": "Azure Kubernetes Service (AKS)",
"count": 468
},
{
"value": "Azure Modeling and Simulation Workbench",
"count": 1
},
{
"value": "Azure Quantum",
"count": 1
},
{
"value": "Azure Service Fabric",
"count": 70
},
{
"value": "Azure Spot Virtual Machines",
"count": 5
},
{
"value": "Azure Spring Apps",
"count": 4
},
{
"value": "Azure Virtual Desktop",
"count": 35
},
{
"value": "Azure VM Image Builder",
"count": 2
},
{
"value": "Azure VMware Solution",
"count": 45
},
{
"value": "Batch",
"count": 50
},
{
"value": "Cloud Services",
"count": 46
},
{
"value": "Linux Virtual Machines",
"count": 28
},
{
"value": "SQL Server on Azure Virtual Machines",
"count": 34
},
{
"value": "Static Web Apps",
"count": 39
},
{
"value": "Virtual Machine Scale Sets",
"count": 92
},
{
"value": "Virtual Machines",
"count": 405
},
{
"value": "Windows Virtual Machines",
"count": 14
}
]
}
]
},
{
"value": "Containers",
"count": 934,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "App Configuration",
"count": 16
},
{
"value": "Azure Container Apps",
"count": 82
},
{
"value": "Azure Container Instances",
"count": 21
},
{
"value": "Azure Container Registry",
"count": 49
},
{
"value": "Azure Container Storage",
"count": 7
},
{
"value": "Azure Functions",
"count": 206
},
{
"value": "Azure Kubernetes Fleet Manager",
"count": 6
},
{
"value": "Azure Kubernetes Service (AKS)",
"count": 468
},
{
"value": "Azure Red Hat OpenShift",
"count": 35
},
{
"value": "Azure Service Fabric",
"count": 70
},
{
"value": "Web App for Containers",
"count": 1
},
{
"value": "Web Apps for Containers",
"count": 2
}
]
}
]
},
{
"value": "Databases",
"count": 1433,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Cache for Redis",
"count": 74
},
{
"value": "Azure confidential ledger",
"count": 7
},
{
"value": "Azure Cosmos DB",
"count": 326
},
{
"value": "Azure Data Factory",
"count": 86
},
{
"value": "Azure Database for MariaDB",
"count": 39
},
{
"value": "Azure Database for MySQL",
"count": 138
},
{
"value": "Azure Database for PostgreSQL",
"count": 266
},
{
"value": "Azure Database Migration Service",
"count": 45
},
{
"value": "Azure Managed Instance for Apache Cassandra",
"count": 5
},
{
"value": "Azure SQL",
"count": 10
},
{
"value": "Azure SQL Database",
"count": 448
},
{
"value": "Azure SQL Edge",
"count": 4
},
{
"value": "Azure SQL Managed Instance",
"count": 45
},
{
"value": "SQL Server on Azure Virtual Machines",
"count": 34
}
]
}
]
},
{
"value": "Developer tools",
"count": 264,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "App Configuration",
"count": 16
},
{
"value": "Azure Deployment Environments",
"count": 7
},
{
"value": "Azure DevOps",
"count": 69
},
{
"value": "Azure DevTest Labs",
"count": 84
},
{
"value": "Azure Load Testing",
"count": 37
},
{
"value": "Azure Pipelines",
"count": 5
},
{
"value": "Microsoft Dev Box",
"count": 5
},
{
"value": "Microsoft Playwright Testing",
"count": 1
},
{
"value": "SDKs",
"count": 16
},
{
"value": "Visual Studio",
"count": 15
},
{
"value": "Visual Studio Code",
"count": 16
}
]
}
]
},
{
"value": "DevOps",
"count": 697,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Boards",
"count": 2
},
{
"value": "Azure Deployment Environments",
"count": 7
},
{
"value": "Azure DevOps",
"count": 69
},
{
"value": "Azure DevTest Labs",
"count": 84
},
{
"value": "Azure Load Testing",
"count": 37
},
{
"value": "Azure Managed Grafana",
"count": 5
},
{
"value": "Azure Monitor",
"count": 493
},
{
"value": "Azure Pipelines",
"count": 5
},
{
"value": "Azure Repos",
"count": 2
},
{
"value": "DevOps tool integrations",
"count": 1
},
{
"value": "GitHub Advanced Security for Azure DevOps",
"count": 1
},
{
"value": "GitHub Enterprise",
"count": 5
},
{
"value": "Microsoft Dev Box",
"count": 5
},
{
"value": "Microsoft Playwright Testing",
"count": 1
}
]
}
]
},
{
"value": "Hybrid \u002B multicloud",
"count": 1141,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Arc",
"count": 46
},
{
"value": "Azure Database for PostgreSQL",
"count": 266
},
{
"value": "Azure DevOps",
"count": 69
},
{
"value": "Azure ExpressRoute",
"count": 72
},
{
"value": "Azure IoT Edge",
"count": 58
},
{
"value": "Azure SQL Database",
"count": 448
},
{
"value": "Azure SQL Edge",
"count": 4
},
{
"value": "Azure Stack",
"count": 30
},
{
"value": "Azure Stack Edge",
"count": 9
},
{
"value": "Azure Stack HCI",
"count": 16
},
{
"value": "Azure Stack Hub",
"count": 20
},
{
"value": "Microsoft Defender for Cloud",
"count": 118
},
{
"value": "Microsoft Sentinel",
"count": 8
}
]
}
]
},
{
"value": "Identity",
"count": 143,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Active Directory B2C",
"count": 19
},
{
"value": "Microsoft Entra Domain Services",
"count": 16
},
{
"value": "Microsoft Entra ID (formerly Azure AD)",
"count": 110
}
]
}
]
},
{
"value": "Integration",
"count": 338,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "API Management",
"count": 178
},
{
"value": "Azure Health Data Services",
"count": 6
},
{
"value": "Azure Web PubSub",
"count": 7
},
{
"value": "Event Grid",
"count": 56
},
{
"value": "Logic Apps",
"count": 61
},
{
"value": "Service Bus",
"count": 42
}
]
}
]
},
{
"value": "Internet of Things",
"count": 1389,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "API Management",
"count": 178
},
{
"value": "Azure Cosmos DB",
"count": 326
},
{
"value": "Azure Digital Twins",
"count": 23
},
{
"value": "Azure Functions",
"count": 206
},
{
"value": "Azure IoT Central",
"count": 70
},
{
"value": "Azure IoT Edge",
"count": 58
},
{
"value": "Azure IoT Hub",
"count": 73
},
{
"value": "Azure Machine Learning",
"count": 114
},
{
"value": "Azure Maps",
"count": 33
},
{
"value": "Azure RTOS",
"count": 6
},
{
"value": "Azure Sphere",
"count": 91
},
{
"value": "Azure SQL Edge",
"count": 4
},
{
"value": "Azure Stream Analytics",
"count": 131
},
{
"value": "Azure Time Series Insights",
"count": 12
},
{
"value": "Event Grid",
"count": 56
},
{
"value": "Logic Apps",
"count": 61
},
{
"value": "Notification Hubs",
"count": 5
},
{
"value": "Windows 10 IoT Core Services",
"count": 6
},
{
"value": "Windows for IoT",
"count": 7
}
]
}
]
},
{
"value": "Management and governance",
"count": 1214,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Automation",
"count": 105
},
{
"value": "Azure Advisor",
"count": 29
},
{
"value": "Azure Automanage",
"count": 5
},
{
"value": "Azure Backup",
"count": 175
},
{
"value": "Azure Blueprints",
"count": 8
},
{
"value": "Azure Chaos Studio",
"count": 10
},
{
"value": "Azure Lighthouse",
"count": 5
},
{
"value": "Azure Managed Applications",
"count": 2
},
{
"value": "Azure Managed Grafana",
"count": 5
},
{
"value": "Azure Migrate",
"count": 32
},
{
"value": "Azure mobile app",
"count": 5
},
{
"value": "Azure Monitor",
"count": 493
},
{
"value": "Azure Policy",
"count": 30
},
{
"value": "Azure Resource Manager",
"count": 20
},
{
"value": "Azure Resource Manager templates",
"count": 2
},
{
"value": "Azure Resource Mover",
"count": 2
},
{
"value": "Azure Service Health",
"count": 4
},
{
"value": "Azure Site Recovery",
"count": 126
},
{
"value": "Cloud Shell",
"count": 15
},
{
"value": "Microsoft Azure portal",
"count": 76
},
{
"value": "Microsoft Copilot for Azure",
"count": 4
},
{
"value": "Microsoft Cost Management",
"count": 56
},
{
"value": "Microsoft Purview",
"count": 30
},
{
"value": "Network Watcher",
"count": 42
},
{
"value": "Traffic Manager",
"count": 23
},
{
"value": "Update management center",
"count": 1
}
]
}
]
},
{
"value": "Media",
"count": 82,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Media Player",
"count": 2
},
{
"value": "Content Delivery Network",
"count": 36
},
{
"value": "Live and On-Demand Streaming",
"count": 2
},
{
"value": "Media Services",
"count": 49
}
]
}
]
},
{
"value": "Migration",
"count": 266,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Data Box",
"count": 11
},
{
"value": "Azure Database Migration Service",
"count": 45
},
{
"value": "Azure Migrate",
"count": 32
},
{
"value": "Azure Site Recovery",
"count": 126
},
{
"value": "Microsoft Cost Management",
"count": 56
}
]
}
]
},
{
"value": "Mixed reality",
"count": 24,
"subFacets": [
{
"name": "Product",
"values": [
{
"value": "Azure Digital Twins",
"count": 23
},
{
"value": "Remote Rendering",