-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazureservicefeatures.txt
4301 lines (4301 loc) · 511 KB
/
azureservicefeatures.txt
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
ProviderNamespace ProviderName FeatureName
================= ============ ===========
Microsoft DB for MySQL Microsoft.DBforMySQL enableondemandbackupnewapi_southafricanorth
Microsoft DB for MySQL Microsoft.DBforMySQL enableondemandbackupnewapi_uaecentral
Microsoft DB for MySQL Microsoft.DBforMySQL enableondemandbackupnewapi_uaenorth
Microsoft Network Microsoft.Network EnablePeregrinePrivateLinkServiceOptimizationInAllRegions
Microsoft Network Microsoft.Network AllowSetDefaultOutboundAccessOnSubnet
Microsoft.HybridContainerService Microsoft.HybridContainerService hiddenPreviewAccess
Microsoft Compute Microsoft.Compute SIGEdgeZonePublishingInAllEdgeZone
Microsoft Event Grid Microsoft.eventgrid Oct2021Features
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL showPG14
Microsoft DB for MySQL Microsoft.DBForMySQL replicaAvailabilityZone
Microsoft Security Insights microsoft.securityinsights strictActionsThrottlingLimits
Microsoft Security Insights microsoft.securityinsights strictIncidentsThrottlingLimits
Microsoft Event Grid Microsoft.eventgrid Oct2021FeaturesV2
Microsoft DB for MySQL Microsoft.DBForMySQL enableWorkbooks
Microsoft.Cdn Microsoft.Cdn BypassAuthoritativeDnsQueryForCNameCheck
Microsoft.RecoveryServices Microsoft.RecoveryServices MultipleBackupsPerDay
Microsoft.RecoveryServices Microsoft.RecoveryServices TrustedVMBackup
- Microsoft.Graph PrivatePreviewAccess
Microsoft DB for MariaDB Microsoft.DBForMariaDB orcasconfignopdl
Microsoft DB for MySQL Microsoft.DBForMySQL storageAutoGrowth
Microsoft DB for MySQL Microsoft.DBForMySQL stopStateMaximumExtend
Microsoft DB for MySQL Microsoft.DBForMySQL showDiagnoseAndSolveBlade
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL showDiagnoseAndSolveBlade
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL showAdvisorRecommendations
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL marlinPrivateLink
Microsoft Container Service microsoft.ContainerService EnablePrivateClusterSubZone
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFDisableShowmount
Microsoft Network Microsoft.Network AllowCloudServiceMove
Microsoft DocumentDB Microsoft.DocumentDB AnalyticalStoreMigration
Microsoft.HybridConnectivity Microsoft.HybridConnectivity hiddenPreviewAccess
Microsoft Container Service microsoft.ContainerService AKSWindowsGmsaPreview
Microsoft Cognitive Services Microsoft.CognitiveServices ComputerVision.CelebrityRecognition
Microsoft Compute Microsoft.Compute SIGTrustedLaunchVM
Microsoft Network Microsoft.Network AFWEnablePreviewFeatures
Microsoft Network Microsoft.Network AFWEnableAccelnet
Microsoft Network Microsoft.Network AFWEnableNetworkRuleNameLogging
Microsoft Network Microsoft.Network AFWEnablePerformanceOptimization
Microsoft Azure Stream Analytics Microsoft.StreamAnalytics LargeSUJob
Microsoft Azure Stream Analytics Microsoft.StreamAnalytics LargeSUDedicatedCluster
- Microsoft.DevAI Dev
- Microsoft.DevAI PPE
Microsoft Container Service microsoft.ContainerService AKS-EnableDualStack
Microsoft Compute Microsoft.Compute FailureRecoveryViaReprovisioning
Microsoft Logic microsoft.logic AllowAppServiceRuntime
Microsoft DB for MySQL Microsoft.DBForMySQL flexibleServerGeoRestore
Microsoft DB for MySQL Microsoft.DBForMySQL flexibleServerBcdrNetworking
Microsoft Network Microsoft.Network AllowValidateVmssTargettedTenantNicReadOptimization
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier123
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier4-STT
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier4-NTTS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier4-FormRecognizer
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier4-CVRead
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier4-LUIS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier4-TA
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTier4-Translator
Microsoft Storage Microsoft.Storage CustomerInitiatedMigration
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFCrossZoneReplication
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-SecondaryCanaryCentralEUAP
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-SecondaryCanaryEastUS2EUAP
Microsoft.DeviceUpdate Microsoft.DeviceUpdate EnablePrivateEndpoint
Microsoft DB for MySQL Microsoft.DBForMySQL fastestRestorePoint
Microsoft DB for MySQL Microsoft.DBForMySQL flexibleServerDeleteBlade
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL flexibleServerDeleteBlade
Microsoft Azure Stream Analytics Microsoft.StreamAnalytics PreferEventHubMultiSender
Microsoft Container Service microsoft.ContainerService EnableNamespaceResourcesPreview
Microsoft Storage Microsoft.Storage DataMoverPreviewAccess
Microsoft Network Microsoft.Network AllowRsVmssMigration
Microsoft.OpenEnergyPlatform Microsoft.OpenEnergyPlatform OEPPrivatePreviewAccess
Machine Learning Services Resource Provider Microsoft.MachineLearningServices mastertestsfeature
Microsoft Network Microsoft.Network AllowApplicationGatewayTlsProxy
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL flexibleServerGeoRestore
Microsoft Storage Microsoft.Storage PremiumFilesPaidBursting
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL flexibleServerBcdrNetworking
Microsoft Network Microsoft.Network DisableForceAccelNetForOvlVms
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL citusDeleteBlade
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL marlinisallowedwcus
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFSingleFileBackupRestore
Azure Data Box Microsoft.DataBox EnableCustomerDiskSku_India
Microsoft Databricks Microsoft.Databricks EnableServiceFabricRP
Microsoft Network Microsoft.Network AzureFirewallBasic
Microsoft.ServiceLinker microsoft.servicelinker Dogfood
Microsoft.RecoveryServices Microsoft.RecoveryServices SAPHANAHSR
NGINX.NGINXPLUS NGINX.NGINXPLUS prodAccess
Microsoft Storage Microsoft.Storage PremiumToHotTiering
Microsoft Compute Microsoft.Compute UsePreprovisionedVMsForConfidentialVMs
Microsoft Network Microsoft.Network AuxiliaryAttachedModeEnabled
Microsoft Compute Microsoft.Compute G8LMLIDedicatedHost
Microsoft Kubernetes Configuration Microsoft.KubernetesConfiguration Namespaces
Microsoft Security Microsoft.Security Governance
Microsoft.Dashboard Microsoft.Dashboard InternalRegions
Microsoft Network Microsoft.Network vWANNFVRPMigrationSEC
Microsoft Network Microsoft.Network vWANNFVRPMigrationSES
Microsoft Network Microsoft.Network AllowPrivateEndpointCustomNicName
Microsoft Network Microsoft.Network VNetEncryptionCustomerManagedCert
Microsoft Portal Microsoft.Portal extensionspreview
Microsoft.EdgeZones Microsoft.EdgeZones canary
Microsoft Domains Microsoft.DomainRegistration RegionalizeRp
Microsoft Certificates Microsoft.CertificateRegistration RegionalizeResourceProvider
Microsoft Domains Microsoft.DomainRegistration RegionalizeResourceProvider
Azure Data Box Microsoft.DataBox EnableCustomerDiskSku_US
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier1-CVRead
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier23-CVRead
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier4-CVRead
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier1-STT
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier23-STT
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier4-STT
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier1-NTTS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier23-NTTS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier4-NTTS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier1-FormRecognizer
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier23-FormRecognizer
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier4-FormRecognizer
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier1-LUIS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier23-LUIS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier4-LUIS
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier1-TA
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier23-TA
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier4-TA
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier1-Translator
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier2-Translator
Microsoft Cognitive Services Microsoft.CognitiveServices CommitmentTierDCTier34-Translator
Microsoft Compute Microsoft.Compute CASv3PolicyCheck
Microsoft.HybridNetwork Microsoft.HybridNetwork ASECreateMecRoleEnabled
Microsoft Network Microsoft.Network EnableApplicationGatewayNetworkIsolation
Microsoft Network Microsoft.Network AuxiliaryMaxConnectionsModeEnabled
Microsoft Network Microsoft.Network AuxiliaryFloatingModeEnabled
Azure Data Box Microsoft.DataBox EnableCustomerDiskSku_Europe
Azure Data Box Microsoft.DataBox CustomerDiskAccess_Europe
Azure Data Box Microsoft.DataBox CustomerDiskAccess_UK
Microsoft.AVS Microsoft.AVS scriptingPreview
Microsoft Storage Microsoft.Storage AllowRegularPremiumPageBlobOnEdgeZone
Microsoft.Cdn Microsoft.Cdn EnableTaskService
Microsoft Compute Microsoft.Compute AllowAADAuthForDataAccess
Microsoft Security Microsoft.Security AttackPaths
Microsoft Security Microsoft.Security OrionStage
Microsoft Storage Microsoft.Storage ArchivePolicyAffinityID
Microsoft Storage Microsoft.Storage ArchivePolicyRehdyrateDelayInMinutes
Microsoft Storage Microsoft.Storage ArchivePolicyMinimumArchiveSize
Microsoft Storage Microsoft.Storage ArchivePolicyPropertiesCompanyMetUK
Microsoft Storage Microsoft.Storage ArchivePolicyPropertiesTapeZonality
- microsoft.testbase API20211201
- Microsoft.StorSimple ShowBannerForDeviceUpdate52
Microsoft.IoTFirmwareDefense Microsoft.IoTFirmwareDefense AccessControl
Microsoft Azure Monitor Microsoft.Insights GraphDeprecation
Microsoft Kubernetes Configuration Microsoft.KubernetesConfiguration ExtensionTypes
Microsoft.Confluent Microsoft.Confluent DataMigrationCleanup
Microsoft Network Microsoft.Network DisableAZFWSubnetPermissionCheck
Microsoft Network Microsoft.Network EnableAZFWSubnetPermissionCheck
Microsoft Storage Microsoft.Storage BaltimoreCA
Microsoft Network Microsoft.Network TruncateCollectionsOnNRPGetVnet
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFReestablishReplication
Microsoft.Cdn Microsoft.Cdn EnableDTF
Microsoft Network Microsoft.Network AllowAdminRulesOnNipBasedServices
Microsoft Cognitive Services Microsoft.CognitiveServices openAINewModel
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL hidePgCfsEventInfobox
Microsoft DB for MySQL Microsoft.DBForMySQL flexibleServerDatabases
- Microsoft.SecurityDevOps DfdGitHubConnector
Microsoft Network Microsoft.Network EnableApplicationGatewaySubnetPermissionCheck
Microsoft Network Microsoft.Network AllowDeleteAddressPrefixesOnSubnet
Microsoft Container Service microsoft.ContainerService PreviewGuardRails
Microsoft Container Service microsoft.ContainerService CapacityReservationGroupPreview
Microsoft Container Instance Microsoft.ContainerInstance spotPriorityContainerGroup
Microsoft Web Apps Microsoft.Web ASEPrivateLinkHost
Microsoft.Kusto Microsoft.Kusto UseComputeSubscriptionAMD
Microsoft DB for MySQL Microsoft.DBForMySQL haServerAdditionalIOPs
Microsoft Cognitive Services Microsoft.CognitiveServices openAI1PFtModel
Microsoft Cognitive Services Microsoft.CognitiveServices Container.TA.IssueResolutionSummarization
Microsoft.Cdn Microsoft.Cdn Region-Route-MWH
Microsoft.Cdn Microsoft.Cdn Region-Route-CDM
Microsoft.Cdn Microsoft.Cdn Region-Route-BY1
Microsoft.Cdn Microsoft.Cdn Region-Route-DM1
Microsoft.Cdn Microsoft.Cdn Region-Route-SN6
Microsoft.Cdn Microsoft.Cdn Region-Route-DB3
Microsoft.Cdn Microsoft.Cdn Region-Route-AM5
Microsoft.Cdn Microsoft.Cdn Region-Route-HKN
Microsoft.Cdn Microsoft.Cdn Region-Route-BL2
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL marlinWorkbooks
Microsoft.LoadTestService Microsoft.LoadTestService DeprecatedAPIVersion
Microsoft Compute Microsoft.Compute InGuestAutoPatchVmssUniformPreview
Microsoft.DataProtection Microsoft.DataProtection BlobVaultedBackup
Microsoft Network Microsoft.Network EnableApplicationGatewayTlsProxyBackendHealth
Microsoft DocumentDB Microsoft.DocumentDb MongoTest
Microsoft Compute Microsoft.Compute AHBEnabledForPAYG
Microsoft Container Service microsoft.ContainerService ManagedClusterSnapshotPreview
Microsoft.AzureArcData Microsoft.AzureArcData ArcDataActiveDirectory
Microsoft Managed Identity Microsoft.ManagedIdentity FederatedIdentityCredentials
Microsoft Storage Microsoft.Storage PremiumFilesFirstTierWithBurstSettings
Microsoft Event Grid Microsoft.eventgrid BypassPartnerAuthorizationFeature
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMoveLinks
Microsoft DB for MySQL Microsoft.DBForMySQL enableMoveLinks
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMarlinLogs
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL offlineMigrations
Microsoft.AVS Microsoft.AVS smartSwitchConfigExperience
Microsoft Databricks Microsoft.Databricks EnableAccessConnectorPreview
Microsoft DB for MySQL Microsoft.DBForMySQL enableSameZoneHA
Microsoft IoT Security Microsoft.IotSecurity PrivatePreviewParticipation
Microsoft Storage Microsoft.Storage AllowPremiumBlockBlobsInMicroRegions
Microsoft Storage Microsoft.Storage PartitionedDnsPublicPreview
Microsoft.Cdn Microsoft.Cdn RollingTest01
Microsoft.Cdn Microsoft.Cdn RollingTest02
Microsoft.Cdn Microsoft.Cdn RollingTest03
Microsoft.Cdn Microsoft.Cdn RollingTest04
Microsoft.Cdn Microsoft.Cdn RollingTest05
Microsoft.Cdn Microsoft.Cdn RollingTest06
Microsoft Databricks Microsoft.Databricks EnableDatabricks20220401PreviewApiVersion
Microsoft.Cdn Microsoft.Cdn BypassPreflightValidation
Microsoft Event Grid Microsoft.eventgrid PartnerAuthorizationFeature
Microsoft Data Replication Microsoft.DataReplication PPEAccess
Microsoft DB for MySQL Microsoft.DBForMySQL geoRestoreForNonZRServer
Microsoft Logic Microsoft.Logic ISVSubscription
Microsoft Container Service microsoft.ContainerService AKSInfinibandSupport
Microsoft Container Service microsoft.ContainerService EnableAPIServerVnetIntegrationPreview
Microsoft DB for MySQL Microsoft.DBForMySQL enableBackupAndRestoreBlade
Microsoft Storage Microsoft.Storage AllowDataSharing
Microsoft Network Microsoft.Network AllowSpecificIpAddressInPublicIP
Microsoft Container Instance Microsoft.ContainerInstance ContainerScaleSetsPreview1
Microsoft Compute Microsoft.Compute VMScaleSetFlexPriorityMix
Microsoft Compute Microsoft.Compute UseForceDeleteOnEviction
Microsoft Compute Microsoft.Compute SpotTryRestoreFastRestoration
- GitHub.Enterprise PreviewRegion
Microsoft Search Microsoft.Search HOBOv2Support
Microsoft Network Microsoft.Network FastPathMigrationEnabled
Microsoft Cognitive Services Microsoft.CognitiveServices FormRecognizer.NeuralLimimt50
Microsoft Search Microsoft.Search InternalFeatures
Microsoft Compute Microsoft.Compute EncryptionAtRestWithCrossTenantKey
- Test.shoebox TestInProduction
Microsoft Container Service microsoft.ContainerService AKS-KedaPreview
- Microsoft.PlayFab scus
- Microsoft.PlayFab eus2
Microsoft DocumentDB Microsoft.DocumentDb APIForMongoDbRBAC
Microsoft DocumentDB Microsoft.DocumentDb APIForMongoDbUniqueReindex
Microsoft.Cdn Microsoft.Cdn EnableZtna
Microsoft.MobileNetwork Microsoft.MobileNetwork Routing-SecondaryCanaryEastUS2EUAP
Microsoft.MobileNetwork Microsoft.MobileNetwork Routing-SecondaryCanaryCentralUSEUAP
Microsoft.AlertsManagement microsoft.alertsmanagement prometheusRulesInt
Microsoft Container Service microsoft.ContainerService CustomConfiguration
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL citusLargeScaleStorage
Microsoft.Syntex microsoft.syntex PrivatePreview
- Microsoft.SecurityDevOps AlphaRegions
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableEditPrivateDns
Microsoft Container Service microsoft.ContainerService CustomCATrustPreview
- Microsoft.ApiSecurity PP2CanaryAccessDEV
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableHideCitusConInformationBanner
Azure Log Analytics Microsoft.OperationalInsights NewRegionsTest
- Microsoft.ApiSecurity PP2CanaryCentralUSAccessDEV
Microsoft Event Grid Microsoft.EventGrid qac-9abfce26-7dfa-49fe-9a8d-a3d6cb13afd6
Microsoft Cognitive Services Microsoft.CognitiveServices FormRecognizer.Neural100
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFSMBNonBrowsable
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFSMBAccessBasedEnumeration
Microsoft Cache Microsoft.Cache qac-59fe8ab9-6707-4b3c-afb0-f5ed4214b531
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableHideFreeAccountMessages
Microsoft DB for MySQL Microsoft.DBForMySQL enableHideFreeAccountMessages
Microsoft Guest Configuration Microsoft.GuestConfiguration TestParticipation
Microsoft.Kusto microsoft.kusto qac-e02603c6-3469-498a-994c-b0df4ceae1d0
Microsoft API Management Microsoft.ApiManagement qac-6ba70dfa-ead9-4cc1-b894-049f8a17c22b
Microsoft Compute Microsoft.Compute SpotAsHarvestShrink
Microsoft Compute Microsoft.Compute SpotAsHarvestExpand
Microsoft Compute Microsoft.Compute SpotAsHarvestShrinkByDefault
Microsoft Compute Microsoft.Compute SpotAsHarvestExpandByDefault
Microsoft Compute Microsoft.Compute ADHHarvestShrink
Microsoft Logic Microsoft.Logic IntegrationAccountArtifactsLargeCapacity
Microsoft Cognitive Services Microsoft.CognitiveServices FormRecognizer.Neural50
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL hidePostgreSql9.6Version
Microsoft.RecoveryServices Microsoft.RecoveryServices ArchiveV1SmartTiering
MicrosoftElasticSan Microsoft.ElasticSan AllowValidationRegions
Microsoft ContainerRegistry Microsoft.ContainerRegistry qac-3c737fd7-1389-4626-868f-c18df5790cb6
Microsoft Network Microsoft.Network AllowAppGwWafCustomBlockResponse
Microsoft Guest Configuration Microsoft.GuestConfiguration TestParticipation2
Microsoft Guest Configuration Microsoft.GuestConfiguration TestParticipation3
Microsoft Guest Configuration Microsoft.GuestConfiguration TestParticipation4
Microsoft Guest Configuration Microsoft.GuestConfiguration TestParticipation5
Microsoft Devices Microsoft.Devices BlockedRegion
Microsoft Azure Monitor microsoft.insights actiongroupswedenc
PaloAltoNetworks.Cloudngfw PaloAltoNetworks.Cloudngfw PAN-Firewall
- Microsoft.PlayFab pfci
Microsoft Azure Monitor microsoft.insights qac-53601923-fb1a-4937-bcf2-ae71190acf34
Microsoft Logic Microsoft.Logic IseCreationInRestrictedRegionAllowed
Microsoft Container Service microsoft.ContainerService EnableAzureDiskCSIDriverV2
Microsoft Container Service microsoft.ContainerService AKS-ExtensionRegionParity
Microsoft Automation Microsoft.Automation qac-57605519-c17a-4786-a6c8-069635a2ee48
Microsoft.BackupSolutions Microsoft.BackupSolutions PublicPreviewTesting
Microsoft Network Microsoft.Network AllowThrottleByOperationCounter
Microsoft Cognitive Services Microsoft.CognitiveServices FormRecognizer.Neural5
Microsoft Network Microsoft.Network AllowIpv6ApplicationGateway
Microsoft Container Service microsoft.ContainerService TrustedAccessPreview
Microsoft Container Instance Microsoft.ContainerInstance snpEnabledContainerGroup
- Microsoft.ApiSecurity PP2PPE
Microsoft Network Microsoft.Network EnableDefaultLoadBalancerForFastPathVirtualNetworks
Microsoft Cognitive Services Microsoft.CognitiveServices FormRecognizer.Neural150
Microsoft Logic Microsoft.Logic LogicApps-2022-05-RegionsPreview
- Microsoft.ApiSecurity PP2CanaryAccessPROD
Microsoft Network Microsoft.Network SupportOutboundNatVirtualIPForCloudServices
Microsoft Azure Monitor Microsoft.Insights EnableCustomMetricsV2
Microsoft Azure Monitor Microsoft.Insights EnablePercentilesMAC
Microsoft Network Microsoft.Network AFWEnableTcpConnectionLogging
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFHanaHonorPinning
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFHonorPinning
Microsoft Cognitive Services Microsoft.CognitiveServices FormRecognizer.Neural4500
- Microsoft.PlayFab Microsoft.PlayFab
Microsoft Network Microsoft.Network EnableSharedVNet
- Microsoft.PlayFab segments
Microsoft DocumentDB Microsoft.DocumentDB ThroughputRedistributionAcrossPartitions
Microsoft DocumentDB Microsoft.DocumentDB Serverless1TBContainer
Microsoft.Easm Microsoft.Easm EasmAccess
Microsoft Resources Microsoft.Resources ItalyCentral
Microsoft Resources Microsoft.Resources TagNamespace
Microsoft Cognitive Services Microsoft.CognitiveServices Face.HighRisk
Microsoft Cognitive Services Microsoft.CognitiveServices LimitedAccess.HighRisk
Microsoft DB for MySQL Microsoft.DBForMySQL enableBusinessCriticalWorkloadType
Microsoft.AVS Microsoft.AVS AddOnHCXEEMetering
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFPopulateAvailabilityZone
Microsoft Network Microsoft.Network AllowAVNMPreviewJuly2022
Microsoft DocumentDB Microsoft.DocumentDB BurstCapacity1
Microsoft.Kusto Microsoft.Kusto UseComputeSubscriptionEUDB
Microsoft Cognitive Services Microsoft.CognitiveServices FormRecognizer.PodMode.msform
Microsoft Web Apps Microsoft.Web qac-df36aee8-c644-400b-a0ab-fd0f1191211d
Machine Learning Services Resource Provider Microsoft.MachineLearningServices registriesprivatepreview
Microsoft Compute Microsoft.Compute ServiceGroupARCOPreview
Microsoft Network Microsoft.Network EnableIPV6CAAllocationByNRP
Microsoft.RecoveryServices Microsoft.RecoveryServices EdgeZoneVMBackupPreview
Microsoft Network Microsoft.Network EnableNameReservation
Microsoft Compute Microsoft.Compute GenerateUniqueVhdIdForAllDisks
Microsoft DB for MySQL Microsoft.DBForMySQL showAdvisorRecommendations
Microsoft.HDInsight Microsoft.HDInsight qac-6c014cb4-2247-46e7-a4b1-103991f0dc04
Microsoft Storage Microsoft.Storage ColdTier
Microsoft Storage Microsoft.Storage AllowSettingSystemTime
Microsoft Storage Microsoft.Storage SetFolderExpiry
Microsoft.SignalRService Microsoft.SignalRService qac-624c481d-e51c-4016-a522-fbe180d125fc
Microsoft.Easm Microsoft.Easm EasmRoutingPPE
Microsoft Event Grid Microsoft.eventgrid EventGridFeatures2022
Microsoft.IoTFirmwareDefense Microsoft.IoTFirmwareDefense Staging
Microsoft Compute Microsoft.Compute SIGCVMSupportedPreview
Microsoft Network Microsoft.Network DnsppProd
Microsoft Network Microsoft.Network DnsppReleaseCandidate
Microsoft DB for MySQL Microsoft.DBForMySQL showPendingRestartInfobox
Microsoft Network Microsoft.Network SupportVnetPeeringAutoUpdateAfterVNetEncryptionChange
Microsoft Container Service microsoft.ContainerService AzureOverlayPreview
Microsoft Container Service microsoft.ContainerService AKS-PrometheusAddonPreview
Microsoft DB for MySQL Microsoft.DBForMySQL enableConnectSettings
Microsoft App Configuration Microsoft.Appconfiguration SwitzerlandWestPreview
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFManagedHsmEncryption
Azure Log Analytics Microsoft.OperationalInsights SearchOverADLS
Microsoft Azure Monitor Microsoft.Insights PrometheusPreview
Microsoft Network Microsoft.Network AFWEnableStructuredLogs
Microsoft Network Microsoft.Network AFWEnableIPv6
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableSameZoneHA
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusCrossRegionReplica
Azure Log Analytics Microsoft.OperationalInsights qac-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Azure Monitor Microsoft.Insights qac-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Container Service microsoft.ContainerService WindowsNetworkPolicyPreview
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCrossRegionReplica
Microsoft Container Service microsoft.ContainerService EnableBlobCSIDriver
Microsoft Security Insights microsoft.securityinsights strictConnectorsThrottlingLimits
Microsoft Azure Monitor microsoft.insights actiongroupgermanywestcentral
Microsoft Network Microsoft.Network AllowApplicationGatewayIpv6
Microsoft Event Grid Microsoft.eventgrid OptOutOfPartnerAuthorizationFeature
Microsoft Devices Microsoft.Devices ArmNewRegionRollout
Microsoft Azure Monitor microsoft.insights actiongroupgermanywc
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL showCDBPostgreSQL
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL testAFECCreation
- Microsoft.AzureSphereGen2 preview
- Microsoft.AzureSphereGen2 int
- Microsoft.AzurePercept IntegrationTest
Microsoft Network Microsoft.Network EnableAppgwCsesDeployments
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableDataEncryption
Microsoft App Configuration microsoft.appconfiguration qac-45a7d954-eede-467d-b4f9-1f77feeec23c
Microsoft Network Microsoft.Network EnableOptimizedVnets
Microsoft Network Microsoft.Network RollbackOptimizedVnets
Microsoft Network Microsoft.Network AfdRegion-Route-DB3
Microsoft Network Microsoft.Network ShouldDisableDefaultOutboundConnectivityForFastPathVirtualMachines
Microsoft Cognitive Services Microsoft.CognitiveServices Container.TA.DocumentAbstractiveSummarization
Microsoft Cognitive Services Microsoft.CognitiveServices Container.TA.GenericConversationSummarization
Microsoft.RecoveryServices Microsoft.RecoveryServices CrossSubscriptionRestore
Microsoft Cognitive Services Microsoft.CognitiveServices PreBuilt-FormRecognizer
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableReadReplica
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableSameZoneHAMode
- Microsoft.PlayFab shoeboxTesting
Microsoft Batch Microsoft.Batch qac-58aa8ff2-5d53-444a-8026-1610fb23c30f
Microsoft.HybridNetwork Microsoft.HybridNetwork AllowPreReleaseFeatures
Microsoft Network Microsoft.Network AllowZonalBasicSku
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_canadacentral
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_centralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_westus3
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_germanywestcentral
Microsoft.FluidRelay Microsoft.FluidRelay NewRegionOfferingsApprovalAccess
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableAADProvisioning
Microsoft.AzurePlaywrightService Microsoft.AzurePlaywrightService playwrightServiceBetaAccess
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePrivateAccessPG14
Microsoft Compute Microsoft.Compute PerformancePlus
- Microsoft.SecurityDevOps DfdAzDevOpsConnector
Microsoft.RecoveryServices Microsoft.RecoveryServices ConfidentialVMBackup
Microsoft Policy Insights Microsoft.PolicyInsights componentPolicyStates
Microsoft Network Microsoft.Network AllowDisableTcpStateTracking
Microsoft Container Service microsoft.ContainerService KubeProxyConfigurationPreview
Microsoft Container Service microsoft.ContainerService AKS-AzurePolicyExternalData
Microsoft.ServiceLinker microsoft.servicelinker PrivatePreviewEnabled
Microsoft.MobileNetwork Microsoft.MobileNetwork UseAlternateNFLocation
Microsoft Azure Monitor Microsoft.Insights Amcs20220601
Microsoft Logic Microsoft.Logic QatarCentral
Microsoft Logic Microsoft.Logic qac-e977b40f-c627-41e8-86c3-5fb6b5711774
Microsoft.Kusto Microsoft.Kusto AllowQatarCentral
Microsoft.Kusto Microsoft.Kusto AllowSwedenSouth
Microsoft DocumentDB Microsoft.DocumentDB DataTransferIntraAccountContainerCopy
Microsoft Web Apps Microsoft.Web qac-e977b40f-c627-41e8-86c3-5fb6b5711774
Microsoft Compute Microsoft.Compute InGuestAutoPatchVMGalleryImagePreview
Microsoft Compute Microsoft.Compute AutoOSUpgradeWithinOffPeakHours
private.iotdevices privateAccess
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgrelSqlMigrationInformationBanner
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_centralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_uksouth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_westus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_canadacentral
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_southcentralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_northcentralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_eastasia
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_switzerlandnorth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_australiasoutheast
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_uaenorth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_ukwest
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePostgreSqlMigration_canadaeast
Microsoft Storage Microsoft.Storage CustomerInitiatedCrossRegionMigration
- Microsoft.TestBase PrivatePreview
Microsoft DocumentDB Microsoft.DocumentDB FranceSouth
Microsoft.AzureScan Microsoft.AzureScan ScanAccountAccess
Microsoft Data Factory microsoft.datafactory qac-f76de4a1-629f-4651-9d76-1d7b56544f3c
Microsoft Azure Lab Services Microsoft.LabServices AllowLargeDisks
Microsoft Compute Microsoft.Compute VmssMultiZonePreProvisioning
Microsoft Search Microsoft.Search qac-28d32201-d1ad-47ab-9a4a-3de2dcb6ea2a
Microsoft Compute Microsoft.Compute UsePreprovisionedVMsForLowPriorityVMs
Microsoft Storage Microsoft.Storage AllowSoftFailover
Microsoft.Cdn microsoft.cdn Migrate1Pto3P
Microsoft Network Microsoft.Network DisableDefaultOutboundAccessOnVMsBehindIpBasedLoadBalancer
Microsoft DB for MySQL Microsoft.DBForMySQL showServerLogsBlade
Microsoft Network Microsoft.Network AllowAppGwWafIpv6
Microsoft Storage Microsoft.Storage AllowDataSharingInHeroRegion
Microsoft Compute Microsoft.Compute AutoOSUpgradeTargetedSdpForRedisService
MicrosoftElasticSan Microsoft.ElasticSan ElasticSanPreviewAccess
PaloAltoNetworks.Cloudngfw PaloAltoNetworks.Cloudngfw betaAccess
Microsoft Azure Monitor Microsoft.Insights actiongroupglobal
Microsoft Compute Microsoft.Compute Fabric.IsTenantAllowedOnFaultPointHardware
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL TryCosmosDBForPostgreSQL
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL pereviewNewPackages
- Microsoft.SecretManagementSampleProvider PrivatePreview
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL previewNewPackages
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_centralindia
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_eastus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_eastus2
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_northcentralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_northeurope
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_southcentralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_switzerlandnorth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_westeurope
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_westus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_westus2
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableswitzerlandwest
Microsoft DB for MySQL Microsoft.DBForMySQL enableOnDemandBackups
Microsoft.MobileNetwork Microsoft.MobileNetwork Allow-WestCentralUS
Microsoft Cognitive Services Microsoft.CognitiveServices BypassBilling.OpenAI
Machine Learning Services Resource Provider Microsoft.MachineLearningServices RestAPITesting
- Microsoft.PlayFab automationRule
- Microsoft.PlayFab segmentsV2
Microsoft.AVS Microsoft.AVS iSCSIMultipath
Microsoft Network Microsoft.Network Configure4KMtuOnExpressRouteDirect
Microsoft Network Microsoft.Network AllowRedirectGwmCallsToExpressRouteIDCGwm
Microsoft.BackupSolutions Microsoft.BackupSolutions AMADeprecation
Microsoft Cognitive Services Microsoft.CognitiveServices OpenAI.RAIPolicy.nil
Microsoft Container Service microsoft.ContainerService EnableImageCleanerPreview
Microsoft Container Service microsoft.ContainerService AKS-VPAPreview
Microsoft.Pki Microsoft.Pki preview
Microsoft.UsageBilling Microsoft.UsageBilling PrivatePreviewParticipation
Microsoft Container Service microsoft.ContainerService PodHostPortAutoAssignPreview
Microsoft.IoTFirmwareDefense Microsoft.IoTFirmwareDefense Canary
Microsoft Cognitive Services Microsoft.CognitiveServices Cloud.TA.LanguageReleaseEarlyAccess
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableBackupAndRestoreBlade
Microsoft Network Microsoft.Network ThrottleCheckDnsCalls
Microsoft Container Service microsoft.ContainerService NodePublicIPTagsPreview
Microsoft Container Service microsoft.ContainerService IPBasedLoadBalancerPreview
Virtual Machine Image Builder Microsoft.VirtualMachineImages Triggers
Microsoft DB for MySQL Microsoft.DBForMySQL enableDataEncryption
Microsoft.Cdn Microsoft.Cdn DisableAFDPortalARG
Microsoft Cognitive Services Microsoft.CognitiveServices Container.TA.ConversationSentiment
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableCitusPromoteReplica
Microsoft Network Microsoft.Network AllowDeletionOfIpPrefixFromSubnet
Virtual Machine Image Builder Microsoft.VirtualMachineImages qac-4b8d3bdc-e2d1-4b44-ba4f-b0fbcb18960f
Microsoft Databricks Microsoft.Databricks DatabricksTestEnvSlot2
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableswedencentral
Microsoft Container Service microsoft.ContainerService NodePublicIPNSGControlPreview
Microsoft DB for MySQL Microsoft.DBForMySQL enableActiveDirectoryAdmins
Microsoft Cognitive Services Microsoft.CognitiveServices Cloud.TA.ConversationSentiment
- Microsoft.NetworkAnalytics Routing-SecondaryCanaryEastUS2EUAP
- Microsoft.NetworkAnalytics Routing-SecondaryCanaryCentralEUAP
Microsoft DB for MySQL Microsoft.DBForMySQL enableMySqlHaWithReadReplica
Microsoft Service Networking Microsoft.ServiceNetworking AllowTrafficController
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL flexibleServerDatabases
Microsoft.AVS Microsoft.AVS vTPMEnablement
Microsoft Compute Microsoft.Compute UseLongerHealthExtensionStaleTime
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade
Microsoft Container Instance Microsoft.ContainerInstance EastUSSTG-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Container Instance Microsoft.ContainerInstance SouthCentralUSSTG-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Azure Monitor microsoft.insights actiongroupusnorth
Microsoft Azure Monitor microsoft.insights actiongroupussouth
Microsoft Cognitive Services Microsoft.CognitiveServices LimitedAccess.IsvHighRisk
Microsoft Cognitive Services Microsoft.CognitiveServices Face.IsvVerification
Microsoft Cognitive Services Microsoft.CognitiveServices Face.IsvIdentification
Microsoft Service Networking Microsoft.ServiceNetworking AllowRedirectToTestRP
Microsoft.Confluent Microsoft.Confluent validationEndpoint
Microsoft Cognitive Services Microsoft.CognitiveServices Cloud.TA.ZeroShotClassification
Microsoft Batch Microsoft.Batch cpt-58aa8ff2-5d53-444a-8026-1610fb23c30f
Microsoft Network Microsoft.Network EnablePlsOnIpBasedLoadBalancer
Microsoft Compute Microsoft.Compute MaxSurgeRollingUpgrade
Microsoft Event Grid Microsoft.eventgrid FontanaFeatures2022
Microsoft Container Service microsoft.ContainerService KataVMIsolationPreview
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_australiaeast
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_brazilsouth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_japaneast
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableCitusStandardComputeVcores_koreacentral
Microsoft Network Microsoft.Network BypassPreflightValidationAfd
Microsoft Network Microsoft.Network SupportIPv6PrivateEndpoint
Microsoft.Mission Microsoft.Mission MissionBetaAccess
Microsoft.IoTFirmwareDefense Microsoft.IoTFirmwareDefense PrivatePreviewWEU
Microsoft Network Microsoft.Network EnableGatewayUtilisationMetric
Microsoft Network Microsoft.Network AllowNsgFlushConnection
Microsoft DocumentDB Microsoft.DocumentDB mongoVersion5
Microsoft Network Microsoft.Network RollbackOptimizedVnetsGlobally
Microsoft Compute Microsoft.Compute OSImageScheduledEvent
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh EastUSSTG-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh SouthCentralUSSTG-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Apps Microsoft.App ServerlessCompute
Microsoft Apps Microsoft.App PrereleaseApiVersionAllowed
Microsoft Key Vault Microsoft.KeyVault MHSMGovernance
Microsoft.Cdn Microsoft.Cdn Bypass1PMigrationAuthCheck
Microsoft.Cdn Microsoft.Cdn Enable1PProfileBilling
Microsoft Network Microsoft.Network AllowUpdateOfIpPrefixFromSubnet
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableSeverParametersUpdate
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanaryDev2EastUS2EUAP
Microsoft Cognitive Services Microsoft.CognitiveServices openAIModels.dv3
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanaryDev3EastUS2EUAP
Microsoft Container Service microsoft.ContainerService DisableWindowsOutboundNATPreview
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh EastUSSTG-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh SouthCentralUSSTG-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft Container Service microsoft.ContainerService CiliumDataplanePreview
Microsoft.MobileNetwork Microsoft.MobileNetwork Allow-WestEurope
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanaryCentralUSEastUS2EUAP
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanaryWestUS2EastUS2EUAP
Microsoft.Impact Microsoft.Impact TestInPPE
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePG15
Microsoft.Impact Microsoft.Impact AllowImpactReporting
Microsoft.Impact Microsoft.Impact DevTest
Microsoft Storage Microsoft.Storage PremiumFilesPreferredAccountAllocation
Microsoft.GraphServices Microsoft.GraphServices PrivatePreviewAccess
Microsoft.HybridNetwork Microsoft.HybridNetwork AllowNewRegionAccess
Microsoft Network Microsoft.Network EnableFixAsgReferences
Microsoft Event Grid Microsoft.eventgrid PartnerEventsLifeCycleFeature
Microsoft.Mission Microsoft.Mission MissionPreviewTestEnvironment
Microsoft.Mission Microsoft.Mission MissionPreviewPPEEnvironment
Microsoft.Mission Microsoft.Mission MissionPreviewPRODEnvironment
Microsoft DB for MySQL Microsoft.DBForMySQL enableMySqlAutoScaleIops
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableReadReplicaPublicPreview
- Microsoft.TestBase RelaxRateLimitRunTest
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFMultipleActiveDirectory
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowPreReleaseApi
Microsoft Logic Microsoft.Logic AllowNewIseCreations
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanaryEastUS2EastUS2EUAP
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanaryNorthEuropeEastUS2EUAP
Microsoft Container Instance Microsoft.ContainerInstance cbr-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft.Mission Microsoft.Mission MissionPreviewDevEnvironment
Microsoft Resources Microsoft.Resources BootstrapperAccess
Virtual Machine Image Builder Microsoft.VirtualMachineImages ImageOptimizationPreview
Microsoft.HealthcareApis Microsoft.Healthcareapis AnalyticsConnectorPreview
Microsoft Network Microsoft.Network AzureFirewallParallelIPGroupUpdate
Microsoft SQL Database Microsoft.Sql AzureSQLDatabaseBlockGeoRedundantBackupStorage
Microsoft Azure Monitor Microsoft.Insights skipDataPullerWorkspaceValidation
- Microsoft.DataAccelerator privatepreview
Microsoft Network Microsoft.Network DisableApplicationGatewaySubnetPermissionCheck
Microsoft.Mission Microsoft.Mission MissionCommunityBeta
- Microsoft.M365 mainv1
Microsoft DB for MySQL Microsoft.DBForMySQL enableGeoDataEncryption
Microsoft.Workloads Microsoft.Workloads InsightPrivatePreview
- Microsoft.WindowsPushNotificationServices CanaryAccess
- Microsoft.WindowsPushNotificationServices ProductionAccess
Microsoft Event Grid Microsoft.EventGrid plc-9abfce26-7dfa-49fe-9a8d-a3d6cb13afd6
Microsoft Container Service microsoft.ContainerService WindowsCustomKubeletConfigPreview
Microsoft Container Instance Microsoft.ContainerInstance WestIndia-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft DevTest Labs microsoft.devtestlab RegionalRP
Microsoft Compute Microsoft.Compute SIGEdgeZonePreview
Microsoft Compute Microsoft.Compute SIGEdgeZone_attatlanta1
Microsoft Compute Microsoft.Compute SIGEdgeZone_attdallas1
Microsoft Compute Microsoft.Compute SIGEdgeZone_eastus2euapmockedge
Microsoft Compute Microsoft.Compute SIGEdgeZone_ezecustomerlabboston1
Microsoft Compute Microsoft.Compute SIGEdgeZone_ezecustomerlabhouston1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftb25lab1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftdclabs1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftlasvegas1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftlosangeles1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftmiami1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftnewyork1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftperth1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab1
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab2
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab3
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab4
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab5
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab6
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab7
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab8
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab9
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftrrdclab10
Microsoft Compute Microsoft.Compute SIGEdgeZone_microsoftvancouver1
Microsoft Compute Microsoft.Compute SIGEdgeZone_onefleetedge1mockedge
Microsoft Compute Microsoft.Compute SIGEdgeZone_southcentralusstgmockedge
Microsoft Compute Microsoft.Compute SIGEdgeZone_vzwindsor1
Microsoft DevTest Labs Microsoft.DevTestlab RegionalRP-CY
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-SN
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-DM
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-ML
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-PN
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-CW
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-SE
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-HK
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-DXB
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-CHN
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-YT
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-TY
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-BL
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-DB
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-JINW
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-MA
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-YQ
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-OS
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-CQ
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-NOE
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-DEWC
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-CH
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-SY
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-SG
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-BY
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-USW3
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-AM
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-LN
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-MWH
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-BN
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-QAC
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-PAR
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-CBR
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-SEC
Microsoft DevTest Labs Microsoft.DevTestLab RegionalRP-EastUS2EUAP
- Microsoft.Windows365 Windows365Int
- Microsoft.Windows365 Windows365Sh
Microsoft Container Instance Microsoft.ContainerInstance KoreaSouth-7189fb51-dab4-404e-a38a-ba138ac9ce42
- Microsoft.Windows365 Windows365PPE
- Microsoft.Windows365 Windows365PROD
Microsoft Container Instance Microsoft.ContainerInstance auh-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Container Instance Microsoft.ContainerInstance den-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Container Instance Microsoft.ContainerInstance cbr2-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Container Instance Microsoft.ContainerInstance mrs-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Container Instance Microsoft.ContainerInstance jinc-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Container Instance Microsoft.ContainerInstance ps-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Container Instance Microsoft.ContainerInstance cpt-7189fb51-dab4-404e-a38a-ba138ac9ce42
MicrosoftElasticSan Microsoft.ElasticSan AllowTargetStampSpecification
Microsoft.RecoveryServices Microsoft.RecoveryServices EnableAzureSiteRecoveryAlertsToAzureMonitor
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanarySwedenCentral
Microsoft.HybridNetwork Microsoft.HybridNetwork Routing-CanaryWestUS3
Microsoft Search Microsoft.Search ng-28d32201-d1ad-47ab-9a4a-3de2dcb6ea2a
Microsoft Key Vault Microsoft.KeyVault MHSM_IncreasedQuota
Microsoft Compute Microsoft.Compute DenyComputeGallerySharing
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFLargeVolumesCRR
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFOnPremMigrationViaReplication
Microsoft.AVS Microsoft.AVS AzureServicesVm
Microsoft.HybridConnectivity Microsoft.HybridConnectivity publicCloudPreviewAccess
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFAntiRansomware
Microsoft Databricks Microsoft.Databricks DatabricksTestEnvSlot3
Microsoft Event Grid Microsoft.EventGrid StorageNotificationContractV2
Microsoft.ModSimWorkbench Microsoft.ModSimWorkbench PrivatePreview_03012021
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFNFSV4IDDomain
Microsoft Compute Microsoft.Compute SIGEdgeZone_cvxhou1
Microsoft Compute Microsoft.Compute SIGEdgeZone_attlosangeles1
Microsoft Compute Microsoft.Compute SIGEdgeZone_sgxsingapore1
Microsoft Compute Microsoft.Compute SIGEdgeZone_attdetroit1
Microsoft Compute Microsoft.Compute SIGEdgeZone_attnewyork1
Microsoft Operations Management Microsoft.OperationsManagement cpt-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Azure Log Analytics Microsoft.OperationalInsights cpt-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Azure Monitor Microsoft.Insights cpt-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Azure Monitor Microsoft.Insights den-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Azure Log Analytics Microsoft.OperationalInsights den-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Operations Management Microsoft.OperationsManagement den-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Operations Management Microsoft.OperationsManagement cdm-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Azure Log Analytics Microsoft.OperationalInsights cdm-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Azure Monitor Microsoft.Insights cdm-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft.AVS Microsoft.AVS ArcAutomatedOnboarding
Microsoft Cache Microsoft.Cache plc-59fe8ab9-6707-4b3c-afb0-f5ed4214b531
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFOracleVolumeGroup
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFLargeVolumesMaxSize
Microsoft.HDInsight Microsoft.HDInsight HiloPrivateRPaaS
Microsoft.HDInsight Microsoft.HDInsight HiloLoadTesting
Microsoft Container Instance Microsoft.ContainerInstance plc-7189fb51-dab4-404e-a38a-ba138ac9ce42
Private.ModsimWorkbench hiddenRp
Microsoft.DataBoxEdge Microsoft.DataBoxEdge AseVmMarketplaceAllowed
Microsoft Container Instance Microsoft.ContainerInstance bm-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Network Microsoft.Network AllowApplicationGatewayBasicSku
Microsoft.AVS Microsoft.AVS customName
Microsoft.MobileNetwork Microsoft.MobileNetwork Routing-TestInProduction-EastUS-1
Microsoft.MobileNetwork Microsoft.MobileNetwork Routing-TestInProduction-EastUS-2
Microsoft.MobileNetwork Microsoft.MobileNetwork Routing-TestInProduction-EastUS-3
Microsoft Network Microsoft.Network EnableCloudServiceExtensionNetworkingResources
Microsoft Network Microsoft.Network AllowApplicationGatewayManagedHSM
- Microsoft.EnergyDataPlatform MEDSV2PrivatePreview
Microsoft.RecoveryServices Microsoft.RecoveryServices GranularBillingInfo
Microsoft Network Microsoft.Network EnableRnmAllocationsApi
Microsoft Devices Microsoft.Devices AzureIotInternalSubscriptions
Microsoft DB for MySQL Microsoft.DBforMySQL enableMySqlLearningCenter
Microsoft Cognitive Services Microsoft.CognitiveServices Face.Snapshot
Microsoft Compute Microsoft.Compute ResourceBasedThrottling
Microsoft.Easm Microsoft.Easm DataConnectionAccess
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowAzureStackHci
Microsoft Azure Monitor Microsoft.insights TenantActionGroup
Microsoft Network Microsoft.Network EnableSubnetCapacityPrevalidation
Microsoft Cognitive Services Microsoft.CognitiveServices Srmr
Microsoft Web Apps Microsoft.Web SouthAfricaNorthRegionEnabled
Microsoft Azure Monitor microsoft.insights ActivityLogLAQSCanary
Microsoft Azure Monitor microsoft.insights ActivityLogLAQS
Microsoft App Configuration Microsoft.Appconfiguration plc-45a7d954-eede-467d-b4f9-1f77feeec23c
Microsoft Network Microsoft.Network SLBAllowAdminStateChangeForConnectionDraining
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh jinc-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh cpt-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh cbr-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh cbr2-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh ps-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh mrs-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh den-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh auh-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_eastus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_australiaeast
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_francesouth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_centralindia
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_southindia
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_japaneast
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_jioindiawest
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_koreacentral
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_northeurope
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_norwayeast
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_southcentralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_swedencentral
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_switzerlandnorth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_switzerlandwest
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_uaenorth
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_westcentralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_westus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_westus3
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_qatarcentral
Microsoft Compute Microsoft.Compute Gen2ToTLMigrationPreview
Microsoft ServiceFabricMesh Microsoft.ServiceFabricMesh uste-1a113496-2837-4f5c-bf90-133dd0b626db
Azure Log Analytics Microsoft.OperationalInsights plc-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Azure Monitor Microsoft.Insights plc-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Operations Management Microsoft.OperationsManagement plc-fe63f845-4aee-4313-9b2e-3a8a2fe61897
Microsoft Compute Microsoft.Compute ImageSkuGenUpdateWithVMSS
Microsoft DocumentDB Microsoft.DocumentDB AllVersionsAndDeletesChangeFeed
- Microsoft.DatabaseInsights DatabaseWatcherPreviewAccess
Microsoft Cache Microsoft.Cache TiP
Microsoft Network Microsoft.Network EnableIPv6VpnGateway
Microsoft Apps Microsoft.App WorkloadProfiles
Microsoft Azure Monitor microsoft.insights OTLPIngestion
Microsoft Compute Microsoft.Compute InGuestPatchImageCheckBypassPartnerTeamInternalUseOnly
Microsoft Batch Microsoft.Batch plc-58aa8ff2-5d53-444a-8026-1610fb23c30f
Microsoft DB for MySQL Microsoft.DBForMySQL upgrade
Microsoft Container Service microsoft.ContainerService AKS-AzurePolicyMutation
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowRanPreview
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_eastus
Microsoft Container Service microsoft.ContainerService AKSWindows2022Gen2Preview
Microsoft Network Microsoft.Network AllowApplicationGatewayHttp3Listener
Azure Log Analytics microsoft.operationalInsights BcdrEnabled
Microsoft DB for MySQL Microsoft.DBForMySQL allowMySqlChangesDuringRestore
Microsoft Cognitive Services Microsoft.CognitiveServices OpenAI.RAIPolicyTest
Azure Digital Twins Microsoft.DigitalTwins NspEarlyAccess
Microsoft API Management Microsoft.ApiManagement plc-6ba70dfa-ead9-4cc1-b894-049f8a17c22b
Microsoft Container Instance Microsoft.ContainerInstance brse-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_westus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_eastus2
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_centralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_southcentralus
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_westus2
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_westus3
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMigrationsv2_northcentralus
Microsoft.Syntex Microsoft.Syntex AccountsPrivatePreview
Microsoft Container Service microsoft.ContainerService NodeOsUpgradeChannelPreview
Microsoft Apps Microsoft.App SpringboardApps
Microsoft Compute Microsoft.Compute ConfidentialVMTdxStatelessPreview
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableGeoDataEncryption
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFShortTermClone
Microsoft ServiceFabricMesh Microsoft.ServicefabricMesh brse-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft ServiceFabricMesh Microsoft.ServicefabricMesh plc-1a113496-2837-4f5c-bf90-133dd0b626db
Microsoft.NetworkCloud Microsoft.NetworkCloud EnableOperatorNexus
Microsoft Automanage Microsoft.Automanage AuditOnlyAssignments
Microsoft.StorageMover Microsoft.StorageMover PrivatePreview
Microsoft DocumentDB Microsoft.DocumentDB EnableCrossRegionRestorePortalUX
Microsoft Event Grid Microsoft.eventgrid RpAdminInteractionFeature
Microsoft Search Microsoft.Search plc-28d32201-d1ad-47ab-9a4a-3de2dcb6ea2a
Microsoft.Cdn Microsoft.Cdn EnableSharedCustomDomain
Microsoft DB for MySQL Microsoft.DBforMySQL enableMajorVersionUpgrade
Microsoft Data Replication Microsoft.DataReplication HVMTAZStackHCIWAM
Microsoft.DeviceUpdate Microsoft.DeviceUpdate AzureDeviceUpdateCMK
Microsoft.RecoveryServices Microsoft.RecoveryServices PrivateStampAccessA
Microsoft Azure Stream Analytics Microsoft.StreamAnalytics ASAOneLakeFqdnMSIT
Microsoft Azure Stream Analytics Microsoft.StreamAnalytics ASAOneLakeFqdnDXT
Microsoft Azure Stream Analytics Microsoft.StreamAnalytics ASAOneLakeFqdnDaily
Microsoft Compute Microsoft.Compute UsePrivelegedMR
Microsoft.AVS Microsoft.AVS Autoscale
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableWorkbooks
Microsoft Azure Lab Services Microsoft.LabServices AllowV2Bastion
Microsoft.OperatorVoicemail Microsoft.OperatorVoicemail OperatorVoicemailInternalTest
Microsoft DB for MySQL Microsoft.DBForMySQL enablePowerBI
Microsoft Network Microsoft.Network AllowUpdateBgpCommunityInPeeredVnets
Microsoft.DatabaseWatcher Microsoft.DatabaseWatcher DatabaseWatcherPreviewAccess
Microsoft.HybridNetwork Microsoft.HybridNetwork Allow-2023-04-01-preview
Microsoft Container Service Microsoft.ContainerService mys-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft.UsageBilling Microsoft.UsageBilling PrivatePreviewStageParticipation
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowBaseVM
Microsoft Cognitive Services Microsoft.CognitiveServices openAIModels.dv-ppo
Microsoft.Cdn Microsoft.Cdn EnableNegativeCaching
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableMajorVersionUpgrade_uksouth
Dynatrace.Observability Dynatrace.Observability MPSaaSCanary
Microsoft Container Instance Microsoft.ContainerInstance enableKernelBootOptions
Microsoft Apps Microsoft.App Jobs
Microsoft.IoTFirmwareDefense Microsoft.IoTFirmwareDefense StagingWEU
Microsoft Azure Monitor Microsoft.Insights enabledcrdiagnostics
Microsoft Storage Microsoft.Storage disableAnonymousAccessForNewStorageAccounts
Microsoft Storage Microsoft.Storage EnableAnonymousAccessForNewStorageAccounts
Microsoft Maintenance Service Microsoft.Maintenance InGuestPatchDynamicScope
Microsoft.AzurePlaywrightService Microsoft.AzurePlaywrightService PlaywrightServicePublicPreviewRegions
Microsoft Azure Lab Services Microsoft.LabServices AllowStandard_NV4as_v4
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowAzureEdgeNetworkFabricCustomer
Microsoft Compute Microsoft.Compute VmssAllowRegionalToZonalMigration
Microsoft Compute Microsoft.Compute VmssAllowExpansionOfAvailabilityZones
Microsoft Compute Microsoft.Compute VmssFlexAllowExpansionOfAvailabilityZones
Microsoft Compute Microsoft.Compute VmssFlexAllowRegionalToZonalMigration
Microsoft Container Service microsoft.ContainerService NRGLockdownPreview
Microsoft Container Service microsoft.ContainerService NetworkObservabilityPreview
Microsoft Event Grid Microsoft.EventGrid AzureMonitorAlertAsDestination
Microsoft.Cdn Microsoft.Cdn EnableCapacityBasedLoadBalancingForPrivatePreview
Microsoft Event Grid Microsoft.EventGrid DummyFeatures
Microsoft Cognitive Services Microsoft.CognitiveServices OpenAIFinetune.WestEurope
Microsoft.Quota Microsoft.Quota AlternativeRecommendations
Microsoft.AzureDataTransfer Microsoft.AzureDataTransfer access
Microsoft Automanage Microsoft.Automanage AutomanageConformanceRollup
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_australiacentral
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_australiacentral2
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_brazilsoutheast
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_germanynorth
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_norwaywest
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_polandcentral
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_southafricawest
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_swedensouth
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowG3G4BillingSKU
Microsoft Event Grid Microsoft.EventGrid June2023Features
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFMigratePmkToCmk
Microsoft.NetApp Resource Provider Microsoft.NetApp ANF1TiBPoolSize
Microsoft Cache Microsoft.Cache mys-59fe8ab9-6707-4b3c-afb0-f5ed4214b531
Microsoft.Workloads Microsoft.Workloads temp_TestAutoApproveFeature
Microsoft Compute Microsoft.Compute MREnabledForTenantDeletion
Microsoft DB for PostgreSQL Microsoft.DBforPostgreSQL enableMajorVersionUpgrade_eastus2euap
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowOnlyG3BillingSKU
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowOnlyG4BillingSKU
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableIntelligentPerformance
Virtual Machine Image Builder Microsoft.VirtualMachineImages plc-4b8d3bdc-e2d1-4b44-ba4f-b0fbcb18960f
Microsoft Network Microsoft.Network NMRoutingPreview
Azure Log Analytics Microsoft.OperationalInsights BronzeLogs
Microsoft.Workloads Microsoft.Workloads ACSSBackupIntegration
Microsoft Event Grid Microsoft.EventGrid mys-9abfce26-7dfa-49fe-9a8d-a3d6cb13afd6
Microsoft Event Grid Microsoft.EventGrid itn-9abfce26-7dfa-49fe-9a8d-a3d6cb13afd6
- Microsoft.MobilePacketCore AllowWestCentralUS
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL hidePostgreSql10Version
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowOnlyM1BillingSKU
Microsoft Container Service microsoft.ContainerService GuardrailsPreview
Microsoft Key Vault Microsoft.KeyVault AllowNonCanonicalKey
Microsoft.RecoveryServices Microsoft.RecoveryServices ConfidentialVMCustomerManagedKeyBackup
Microsoft.Kusto Microsoft.Kusto EnableStorageCmkFollowing
Microsoft ContainerRegistry Microsoft.ContainerRegistry itn-3c737fd7-1389-4626-868f-c18df5790cb6
Microsoft.HybridNetwork Microsoft.HybridNetwork MsiForResourceEnabled
Virtual Machine Image Builder Microsoft.VirtualMachineImages sec-4b8d3bdc-e2d1-4b44-ba4f-b0fbcb18960f
Microsoft Cognitive Services Microsoft.CognitiveServices Face.SensitiveAttributes
Microsoft Cognitive Services Microsoft.CognitiveServices Face.LimitedAccessRestrictionAcknowledged
Microsoft.ModSimWorkbench Microsoft.ModSimworkbench mswbcanary
Microsoft.AlertsManagement Microsoft.AlertsManagement ProcessingRulesCorrelation
Microsoft Data Factory Microsoft.DataFactory plc-f76de4a1-629f-4651-9d76-1d7b56544f3c
Microsoft Azure Monitor Microsoft.Insights Amcs20230311
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableNewMySqlMigrationApiVersion
Microsoft DB for MySQL Microsoft.DBForMySQL enableMySqlAutoMigration
Microsoft DB for MySQL Microsoft.DBForMySQL enableNewMySqlMigrationApiVersion
Microsoft Network Microsoft.Network vWANNFVRPMigrationPLC
Microsoft Network Microsoft.Network AllowDisableSnatOnPL
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFEnablePPG
Microsoft Network Microsoft.Network twn-7ecdbd40-fe6a-4d66-bb95-dab4ee9c8fce
Microsoft Network Microsoft.Network twnw-7ecdbd40-fe6a-4d66-bb95-dab4ee9c8fce
Microsoft Network Microsoft.Network mxc-7ecdbd40-fe6a-4d66-bb95-dab4ee9c8fce
Microsoft Network Microsoft.Network esc-7ecdbd40-fe6a-4d66-bb95-dab4ee9c8fce
Microsoft Network Microsoft.Network clc-7ecdbd40-fe6a-4d66-bb95-dab4ee9c8fce
Microsoft Network Microsoft.Network ilnw-7ecdbd40-fe6a-4d66-bb95-dab4ee9c8fce
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableHidingPostgreSqlCitusConBanner
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enablePowerBI
Microsoft Event Grid Microsoft.EventGrid NamespaceLockedRegionFeature
Microsoft.Kusto Microsoft.Kusto mys-e02603c6-3469-498a-994c-b0df4ceae1d0
Microsoft.ProviderHub Microsoft.ProviderHub UnmanagedHybrid
Microsoft Cognitive Services Microsoft.CognitiveServices BypassBilling.AOAI-BYO-GPUs
Microsoft.Kusto Microsoft.Kusto den-e02603c6-3469-498a-994c-b0df4ceae1d0
Microsoft Compute Microsoft.Compute SecurityPosturePublisher
Microsoft Key Vault Microsoft.KeyVault OptOutTLSEnforcement
Microsoft.Quantum Microsoft.Quantum cmsBeta
Microsoft Compute Microsoft.Compute IsPV2ColocationAllowed
Microsoft Chaos Microsoft.Chaos ChaosApplicationsAccess
Microsoft.OpenEnergyPlatform Microsoft.OpenEnergyPlatform sku
Microsoft.HealthModel Microsoft.HealthModel EUAPParticipation
Microsoft DB for MySQL Microsoft.DBForMySQL enableMySqlCrossRegionReadReplica
Microsoft Container Service microsoft.ContainerService KataCcIsolationPreview
Microsoft.Cdn Microsoft.Cdn Enable1PPartnerExtendedInformation
Microsoft Container Service microsoft.ContainerService EnableBYOKOnEphemeralOSDiskPreview
Microsoft Network Microsoft.Network AllowNewAppgwV1WithSubnetNameAsGatewaySubnet
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFFilePathUniquenessInAZ
Machine Learning Services Resource Provider Microsoft.MachineLearningServices AMLManagedNetworkEnabled
Microsoft.StandbyPool Microsoft.StandbyPool StandbyVMPoolPreview
Microsoft Container Instance Microsoft.ContainerInstance aciOnBareMetal
Microsoft Network Microsoft.Network AllowSetNicEncryptionFlagBasedOnAccelNetwork
Microsoft Network Microsoft.Network AllowEncryptionOnFSv2ForBLK
Microsoft Search Microsoft.Search itn-28d32201-d1ad-47ab-9a4a-3de2dcb6ea2a
Microsoft Compute Microsoft.Compute PatchSettingsForAllVMs
Microsoft Network Microsoft.Network BlockAppGwV1SkuCreation
Microsoft Container Service Microsoft.ContainerService ilc-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService mxc-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService clc-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService ilnw-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService esc-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService twn-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService twnw-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Compute Microsoft.Compute CCOSupport
Microsoft Cognitive Services Microsoft.CognitiveServices OpenAI.ContentFilters
Microsoft Container Service Microsoft.ContainerService itn-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService myw-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Container Service Microsoft.ContainerService nzn-f1d1800e-d38e-41f2-b63c-72d59ecaf9c0
Microsoft Storage Microsoft.Storage StoragePlatformPreview
Microsoft Container Service microsoft.ContainerService AzureOverlayDualStackPreview
Microsoft.Easm Microsoft.Easm BetaAccess
Microsoft.Easm Microsoft.Easm ObservationAccess
Microsoft Compute Microsoft.Compute InGuestPatchVmssUniformPreview
Microsoft.StorageMover Microsoft.StorageMover Allowsoutheastasia
Microsoft.StorageMover Microsoft.StorageMover Allownortheurope
Microsoft Compute Microsoft.Compute DisableSuspensionOfAutomaticRepairs
Microsoft Network Microsoft.Network AllowAppGwV1SkuCreation
Microsoft Kubernetes Configuration Microsoft.KubernetesConfiguration AllowTestRouting
Microsoft DocumentDB Microsoft.DocumentDB MaterializedViewsForNoSQL
Microsoft DocumentDB Microsoft.DocumentDB DataTransferIntraAccountContainerCopyMongoDB
Microsoft Azure Lab Services Microsoft.LabServices AllowLargeDSv4
Microsoft Cognitive Services Microsoft.CognitiveServices allowProvisionedWithoutCommitment
Microsoft Batch Microsoft.Batch itn-58aa8ff2-5d53-444a-8026-1610fb23c30f
Microsoft Storage Microsoft.Storage DeleteMarkerRetention
Microsoft App Configuration Microsoft.AppConfiguration itn-45a7d954-eede-467d-b4f9-1f77feeec23c
MicrosoftNetworkFunction Microsoft.NetworkFunction AllowNaasVpnAccess
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enableStorageDropDown_public
Microsoft DB for PostgreSQL Microsoft.DBForPostgreSQL enable32TBStorage
Microsoft.AlertsManagement Microsoft.AlertsManagement InvestigationsPrivatePreview
Microsoft.AlertsManagement Microsoft.AlertsManagement InvestigationsTestInProduction
Microsoft Cache Microsoft.Cache itn-59fe8ab9-6707-4b3c-afb0-f5ed4214b531
Microsoft.StorageMover Microsoft.StorageMover db-c88bf702-9a3e-4962-a15d-dbc3c3a8f42f
Microsoft.Kusto microsoft.kusto itn-e02603c6-3469-498a-994c-b0df4ceae1d0
Microsoft.MobileNetwork Microsoft.MobileNetwork AllowEventHubPreview
Microsoft Container Service microsoft.ContainerService EnableImageIntegrityPreview
Azure Red Hat OpenShift Microsoft.RedHatOpenShift PreconfiguredNSG
Microsoft.ProviderHub Microsoft.ProviderHub RPaaSRunner
Microsoft ContainerRegistry Microsoft.ContainerRegistry ArchiveBeta
Microsoft Cognitive Services Microsoft.CognitiveServices OpenAI.Inference.GPT4.UKSouth
Microsoft.RecoveryServices Microsoft.RecoveryServices MultiDiskCrashConsistent
Microsoft Network Microsoft.Network EnableOptimizedNetworkSecurityGroups
Microsoft.DatabaseWatcher Microsoft.DatabaseWatcher DatabaseWatcherCanaryAccess
Microsoft Maintenance Service Microsoft.Maintenance InGuestPatchPrePostMaintenanceActivity
Microsoft Network Microsoft.Network UseAnmForPublish
Microsoft HybridCompute Microsoft.HybridCompute HybridComputePreview
Microsoft Compute Microsoft.Compute VmssFlexScaleInPolicyPreview
Microsoft Azure Lab Services Microsoft.LabServices AllowLegacySkus
Microsoft Azure Lab Services Microsoft.LabServices AllowAlternativeSkus
Microsoft Event Grid Microsoft.EventGrid ilc-9abfce26-7dfa-49fe-9a8d-a3d6cb13afd6
Microsoft Cognitive Services Microsoft.CognitiveServices OpenAIModels.text-embedding-ada-002.WestEurope
Microsoft Network Microsoft.Network AllowDropUnecryptedVnet
Microsoft.Maps Microsoft.Maps addfeaturesnoexpansion
Microsoft Compute Microsoft.Compute BakedInExtensionsPublishing
Microsoft Azure Monitor microsoft.insights SqrMigration
Microsoft DocumentDB Microsoft.DocumentDB mongoMultipleUsers
Microsoft DocumentDB Microsoft.DocumentDB mongoUsersLimit10
Microsoft DocumentDB Microsoft.DocumentDB mongoUsersLimit50
- Microsoft.BakeryUnmanaged RPaaSRunner
- Microsoft.BakeryHybrid RPaaSRunner
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFLargeVolumesMinSize
Microsoft.NetApp Resource Provider Microsoft.NetApp ANFStdToBasicNetworkFeaturesRevert
Microsoft Compute Microsoft.Compute VmssFlexRollingUpgrade
Microsoft Container Instance Microsoft.ContainerInstance itn-7189fb51-dab4-404e-a38a-ba138ac9ce42
Microsoft Storage Microsoft.Storage Enable8TBForFiles
Microsoft.Kusto Microsoft.Kusto EnableDatabasesCmk
Microsoft Cognitive Services Microsoft.CognitiveServices Face.ExtendedLegacy
Microsoft.Maps Microsoft.Maps testhooks
Microsoft Automanage Microsoft.Automanage AutomanageProfileStacking
Microsoft Event Grid Microsoft.EventGrid December2023Features