forked from MicrosoftDocs/azure-docs-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
titleMapping.json
1126 lines (1126 loc) · 27.8 KB
/
titleMapping.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"az": {
"TocTitle": "Reference",
"PageTitle": "Azure CLI 2.0: Command reference"
},
"az account": {
"TocTitle": "Subscriptions",
"PageTitle": "Subscriptions"
},
"az acr": {
"TocTitle": "Container Registry",
"PageTitle": "Container Registry"
},
"az acr credential": {
"TocTitle": "Credentials",
"PageTitle": "Container Registry credentials"
},
"az acr repository": {
"TocTitle": "Repositories",
"PageTitle": "Container Registry repositories"
},
"az acs": {
"TocTitle": "Container Service",
"PageTitle": "Container Service"
},
"az acs dcos": {
"TocTitle": "DC/OS",
"PageTitle": "Container Service - DC/OS"
},
"az acs kubernetes": {
"TocTitle": "Kubernetes",
"PageTitle": "Container Service - Kubernetes"
},
"az ad": {
"TocTitle": "Azure Active Directory",
"PageTitle": "Azure Active Directory (AAD)"
},
"az ad app": {
"TocTitle": "Applications",
"PageTitle": "AAD applications"
},
"az ad group": {
"TocTitle": "Groups",
"PageTitle": "AAD groups"
},
"az ad sp": {
"TocTitle": "Service principals",
"PageTitle": "AAD service principals"
},
"az ad user": {
"TocTitle": "Users",
"PageTitle": "AAD users"
},
"az appservice": {
"TocTitle": "App Service",
"PageTitle": "App Service"
},
"az appservice plan": {
"TocTitle": "Plans",
"PageTitle": "App Service plans"
},
"az appservice web": {
"TocTitle": "Web Apps",
"PageTitle": "Web Apps"
},
"az appservice web config": {
"TocTitle": "Configuration",
"PageTitle": "Web Apps configuration"
},
"az appservice web config appsettings": {
"TocTitle": "Application settings",
"PageTitle": "Web Apps application settings"
},
"az appservice web config backup": {
"TocTitle": "Backups",
"PageTitle": "Web Apps backups"
},
"az appservice web config container": {
"TocTitle": "Container settings",
"PageTitle": "Web Apps container settings"
},
"az appservice web config hostname": {
"TocTitle": "Hostnames",
"PageTitle": "Web Apps hostnames"
},
"az appservice web config ssl": {
"TocTitle": "SSL certificates",
"PageTitle": "Web Apps SSL certificates"
},
"az appservice web deployment": {
"TocTitle": "Deployments",
"PageTitle": "Web Apps deployments"
},
"az appservice web deployment slot": {
"TocTitle": "Deployment slots",
"PageTitle": "Web Apps deployment slots"
},
"az appservice web deployment user": {
"TocTitle": "Deployment users",
"PageTitle": "Web Apps deployment users"
},
"az appservice web log": {
"TocTitle": "Logs",
"PageTitle": "Web Apps logs"
},
"az appservice web source-control": {
"TocTitle": "Source control",
"PageTitle": "Web Apps source control"
},
"az batch": {
"TocTitle": "Batch",
"PageTitle": "Batch"
},
"az batch account": {
"TocTitle": "Accounts",
"PageTitle": "Batch accounts"
},
"az batch account autostorage-keys": {
"TocTitle": "Auto-storage keys",
"PageTitle": "Batch account auto-storage keys"
},
"az batch account keys": {
"TocTitle": "Keys",
"PageTitle": "Batch account keys"
},
"az batch application": {
"TocTitle": "Applications",
"PageTitle": "Batch applications"
},
"az batch application package": {
"TocTitle": "Packages",
"PageTitle": "Batch application packages"
},
"az batch application summary": {
"TocTitle": "Summaries",
"PageTitle": "Batch application summaries"
},
"az batch certificate": {
"TocTitle": "Certificates",
"PageTitle": "Batch certificates"
},
"az batch job": {
"TocTitle": "Jobs",
"PageTitle": "Batch jobs"
},
"az batch job all-statistics": {
"TocTitle": "Statistics",
"PageTitle": "Batch job statistics"
},
"az batch job prep-release-status": {
"TocTitle": "Status",
"PageTitle": "Batch job preparation and release status"
},
"az batch job-schedule": {
"TocTitle": "Job schedules",
"PageTitle": "Batch job schedules"
},
"az batch location": {
"TocTitle": "Locations",
"PageTitle": "Batch locations"
},
"az batch location quotas": {
"TocTitle": "Quotas",
"PageTitle": "Batch location quotas"
},
"az batch node": {
"TocTitle": "Nodes",
"PageTitle": "Batch compute nodes"
},
"az batch node file": {
"TocTitle": "Files",
"PageTitle": "Batch compute node files"
},
"az batch node remote-desktop": {
"TocTitle": "Remote desktop protocols",
"PageTitle": "Remote desktop protocols for batch compute nodes"
},
"az batch node remote-login-settings": {
"TocTitle": "Remote login settings",
"PageTitle": "Remote login settings for batch compute nodes"
},
"az batch node scheduling": {
"TocTitle": "Scheduling",
"PageTitle": "Task scheduling for batch compute nodes"
},
"az batch node user": {
"TocTitle": "Users",
"PageTitle": "Users for batch compute nodes"
},
"az batch pool": {
"TocTitle": "Pools",
"PageTitle": "Batch pools"
},
"az batch pool all-statistics": {
"TocTitle": "Statistics",
"PageTitle": "Batch pool statistics"
},
"az batch pool autoscale": {
"TocTitle": "Autoscale",
"PageTitle": "Automatic scaling of batch pools"
},
"az batch pool node-agent-skus": {
"TocTitle": "Node agent SKUs",
"PageTitle": "Node agent SKUs of batch pools"
},
"az batch pool os": {
"TocTitle": "Operating systems",
"PageTitle": "Batch pool operating systems"
},
"az batch pool usage-metrics": {
"TocTitle": "Usage metrics",
"PageTitle": "Batch pool usage metrics"
},
"az batch task": {
"TocTitle": "Tasks",
"PageTitle": "Batch tasks"
},
"az batch task file": {
"TocTitle": "Files",
"PageTitle": "Batch task files"
},
"az batch task subtask": {
"TocTitle": "Subtasks",
"PageTitle": "Subtasks of batch tasks"
},
"az cdn": {
"TocTitle": "CDN",
"PageTitle": "CDN"
},
"az cloud": {
"TocTitle": "Cloud management",
"PageTitle": "Cloud management"
},
"az cognitiveservices": {
"TocTitle": "Cognitive Services",
"PageTitle": "Cognitive Services"
},
"az component": {
"TocTitle": "Components",
"PageTitle": "Components"
},
"az container": {
"TocTitle": "Container",
"PageTitle": "Container"
},
"az container build": {
"TocTitle": "Builds",
"PageTitle": "Container builds"
},
"az container release": {
"TocTitle": "Releases",
"PageTitle": "Container releases"
},
"az context": {
"TocTitle": "Contexts",
"PageTitle": "Contexts"
},
"az cosmosdb": {
"TocTitle": "Cosmos DB",
"PageTitle": "Cosmos DB"
},
"az dla": {
"TocTitle": "Data Lake Analytics",
"PageTitle": "Data Lake Analytics"
},
"az dla account": {
"TocTitle": "Accounts",
"PageTitle": "Data Lake Analytics accounts"
},
"az dla account blob-storage": {
"TocTitle": "Blob storage",
"PageTitle": "Data Lake Analytics accounts linked to Azure Storage"
},
"az dla account data-lake-store": {
"TocTitle": "Data Lake Store",
"PageTitle": "Data Lake Analytics accounts linked to Data Lake Store accounts"
},
"az dla account firewall": {
"TocTitle": "Firewall rules",
"PageTitle": "Data Lake Analytics account firewall rules"
},
"az dla catalog": {
"TocTitle": "Catalogs",
"PageTitle": "Data Lake Analytics catalogs"
},
"az dla catalog assembly": {
"TocTitle": "",
"PageTitle": "Data Lake Analytics catalog assemblies"
},
"az dla catalog credential": {
"TocTitle": "Credentials",
"PageTitle": "Data Lake Analytics catalog credentials"
},
"az dla catalog database": {
"TocTitle": "Databases",
"PageTitle": "Data Lake Analytics catalog databases"
},
"az dla catalog external-data-source": {
"TocTitle": "External data sources",
"PageTitle": "Data Lake Analytics catalog external data sources"
},
"az dla catalog procedure": {
"TocTitle": "Stored procedures",
"PageTitle": "Data Lake Analytics catalog stored procedures"
},
"az dla catalog schema": {
"TocTitle": "Schemas",
"PageTitle": "Data Lake Analytics catalog schemas"
},
"az dla catalog table": {
"TocTitle": "Tables",
"PageTitle": "Data Lake Analytics catalog tables"
},
"az dla catalog table-partition": {
"TocTitle": "Table partitions",
"PageTitle": "Data Lake Analytics catalog table partitions"
},
"az dla catalog table-stats": {
"TocTitle": "Table statistics",
"PageTitle": "Data Lake Analytics catalog table statistics"
},
"az dla catalog table-type": {
"TocTitle": "Table types",
"PageTitle": "Data Lake Analytics catalog table types"
},
"az dla catalog tvf": {
"TocTitle": "Table-valued functions",
"PageTitle": "Data Lake Analytics catalog table-valued functions"
},
"az dla catalog view": {
"TocTitle": "Views",
"PageTitle": "Data Lake Analytics catalog views"
},
"az dla job": {
"TocTitle": "Jobs",
"PageTitle": "Data Lake Analytics jobs"
},
"az dls": {
"TocTitle": "Data Lake Store",
"PageTitle": "Data Lake Store"
},
"az dls account": {
"TocTitle": "Accounts",
"PageTitle": "Data Lake Store accounts"
},
"az dls account firewall": {
"TocTitle": "Firewalls",
"PageTitle": "Data Lake Store account firewall rules"
},
"az dls account trusted-provider": {
"TocTitle": "Trusted identity providers",
"PageTitle": "Data Lake Store account trusted identity providers"
},
"az dls fs": {
"TocTitle": "File system",
"PageTitle": "Data Lake Store file system"
},
"az dls fs access": {
"TocTitle": "Access",
"PageTitle": "Data Lake Store file system access and permissions"
},
"az disk": {
"TocTitle": "Managed Disks",
"PageTitle": "Managed Disks"
},
"az documentdb": {
"TocTitle": "DocumentDB",
"PageTitle": "DocumentDB"
},
"az feature": {
"TocTitle": "Resource provider features",
"PageTitle": "Resource provider features"
},
"az functionapp": {
"TocTitle": "Functions",
"PageTitle": "Functions"
},
"az group": {
"TocTitle": "Resource groups",
"PageTitle": "Resource groups"
},
"az group deployment": {
"TocTitle": "Deployments",
"PageTitle": "Deployments"
},
"az group deployment operation": {
"TocTitle": "Operations",
"PageTitle": "Deployment operations"
},
"az image": {
"TocTitle": "VM Images",
"PageTitle": "Virtual Machine Images"
},
"az iot": {
"TocTitle": "IoT",
"PageTitle": "IoT"
},
"az iot device": {
"TocTitle": "Devices",
"PageTitle": "IoT devices"
},
"az iot device message": {
"TocTitle": "Messaging",
"PageTitle": "IoT device messaging"
},
"az iot hub": {
"TocTitle": "Hubs",
"PageTitle": "IoT hubs"
},
"az iot hub consumer-group": {
"TocTitle": "Consumer groups",
"PageTitle": "IoT hub consumer groups"
},
"az iot hub job": {
"TocTitle": "Jobs",
"PageTitle": "IoT hub jobs"
},
"az iot hub policy": {
"TocTitle": "Policies",
"PageTitle": "IoT hub policies"
},
"az keyvault": {
"TocTitle": "Key Vault",
"PageTitle": "Key Vault"
},
"az keyvault certificate": {
"TocTitle": "Certificates",
"PageTitle": "Key Vault certificates"
},
"az keyvault certificate contact": {
"TocTitle": "Contacts",
"PageTitle": "Key Vault certificate contacts"
},
"az keyvault certificate issuer": {
"TocTitle": "Issuers",
"PageTitle": "Key Vault certificate issuers"
},
"az keyvault certificate issuer admin": {
"TocTitle": "Administration",
"PageTitle": "Key Vault certificate issuer administration"
},
"az keyvault certificate pending": {
"TocTitle": "Pending",
"PageTitle": "Pending Key Vault certificates"
},
"az keyvault key": {
"TocTitle": "Keys",
"PageTitle": "Key Vault keys"
},
"az keyvault secret": {
"TocTitle": "Secrets",
"PageTitle": "Key Vault secrets"
},
"az lab": {
"TocTitle": "DevTest Lab",
"PageTitle": "Dev/Test Lab"
},
"az lab artifact": {
"TocTitle": "Artifacts",
"PageTitle": "Dev/Test Lab artifacts"
},
"az lab artifact-source": {
"TocTitle": "Artifact sources",
"PageTitle": "Dev/Test Lab artifact sources"
},
"az lab custom-image": {
"TocTitle": "Custom images",
"PageTitle": "Dev/Test Lab custom images"
},
"az lab formula": {
"TocTitle": "Formulas",
"PageTitle": "Dev/Test Lab formulas"
},
"az lab gallery-image": {
"TocTitle": "Gallery images",
"PageTitle": "Dev/Test Lab gallery images"
},
"az lab vm": {
"TocTitle": "Virtual machines",
"PageTitle": "Dev/Test Lab virtual machines"
},
"az lab vnet": {
"TocTitle": "Virtual networks",
"PageTitle": "Dev/Test Lab virtual networks"
},
"az lock": {
"TocTitle": "Locks",
"PageTitle": "Resource locks"
},
"az managedapp": {
"TocTitle": "Managed App",
"PageTitle": "Managed applications"
},
"az managedapp definition": {
"TocTitle": "Definition",
"PageTitle": "Managed application definitions"
},
"az monitor": {
"TocTitle": "Monitoring",
"PageTitle": "Monitoring "
},
"az monitor activity-log": {
"TocTitle": "Activity log",
"PageTitle": "Monitoring activity log"
},
"az monitor alert-rule-incidents": {
"TocTitle": "Alert rule incidents",
"PageTitle": "Monitoring alert rule incidents"
},
"az monitor autoscale-settings": {
"TocTitle": "Auto-scale settings",
"PageTitle": "Monitoring auto-scale settings"
},
"az monitor diagnostic-settings": {
"TocTitle": "Diagnostics settings",
"PageTitle": "Monitoring diagnostics settings"
},
"az monitor log-profiles": {
"TocTitle": "Log profiles",
"PageTitle": "Monitoring log profiles"
},
"az monitor metric-definitions": {
"TocTitle": "Metric definitions",
"PageTitle": "Monitoring "
},
"az monitor metrics": {
"TocTitle": "Metrics",
"PageTitle": "Monitoring metrics"
},
"az mysql": {
"TocTitle": "MySQL",
"PageTitle": "Azure Database for MySQL"
},
"az mysql db": {
"TocTitle": "Databases",
"PageTitle": "Azure Database for MySQL databases"
},
"az mysql server": {
"TocTitle": "Servers",
"PageTitle": "Azure Database for MySQL servers"
},
"az mysql server configuration": {
"TocTitle": "Configurations",
"PageTitle": "Azure Database for MySQL server configurations"
},
"az mysql server firewall-rule": {
"TocTitle": "Firewall rules",
"PageTitle": "Firewall rules for Azure Database for MySQL servers"
},
"az mysql server-logs": {
"TocTitle": "Server logs",
"PageTitle": "Azure Database for MySQL server logs"
},
"az network": {
"TocTitle": "Networking",
"PageTitle": "Networking"
},
"az network application-gateway": {
"TocTitle": "Application Gateway",
"PageTitle": "Application Gateway"
},
"az network application-gateway address-pool": {
"TocTitle": "Address pools",
"PageTitle": "Address pools"
},
"az network application-gateway auth-cert": {
"TocTitle": "Authorization certificates",
"PageTitle": "Authorization certificates"
},
"az network application-gateway frontend-ip": {
"TocTitle": "Front-end IP addresses",
"PageTitle": "Front-end IP addresses"
},
"az network application-gateway frontend-port": {
"TocTitle": "Front-end ports",
"PageTitle": "Front-end ports"
},
"az network application-gateway http-listener": {
"TocTitle": "HTTP listeners",
"PageTitle": "HTTP listeners"
},
"az network application-gateway http-settings": {
"TocTitle": "HTTP settings",
"PageTitle": "HTTP settings"
},
"az network application-gateway probe": {
"TocTitle": "Probes",
"PageTitle": "Application Gateway probes"
},
"az network application-gateway rule": {
"TocTitle": "Routing rules",
"PageTitle": "Routing rules"
},
"az network application-gateway ssl-cert": {
"TocTitle": "SSL certificates",
"PageTitle": "SSL certificates"
},
"az network application-gateway ssl-policy": {
"TocTitle": "SSL policies",
"PageTitle": "SSL policies"
},
"az network application-gateway url-path-map": {
"TocTitle": "URL path maps",
"PageTitle": "URL path maps"
},
"az network application-gateway url-path-map rule": {
"TocTitle": "Rules",
"PageTitle": "URL path map rules"
},
"az network application-gateway waf-config": {
"TocTitle": "Web application firewall settings",
"PageTitle": "Web application firewall settings"
},
"az network dns": {
"TocTitle": "DNS",
"PageTitle": "DNS domains"
},
"az network dns record-set": {
"TocTitle": "Record sets",
"PageTitle": "DNS - record sets"
},
"az network dns record-set a": {
"TocTitle": "A",
"PageTitle": "DNS - A records"
},
"az network dns record-set aaaa": {
"TocTitle": "AAAA",
"PageTitle": "DNS - AAAA records"
},
"az network dns record-set cname": {
"TocTitle": "CNAME",
"PageTitle": "DNS - CNAME records"
},
"az network dns record-set mx": {
"TocTitle": "MX (mail)",
"PageTitle": "DNS - MX (mail) records"
},
"az network dns record-set ns": {
"TocTitle": "NS (nameserver)",
"PageTitle": "DNS - NS (nameserver) records"
},
"az network dns record-set ptr": {
"TocTitle": "PTR (pointer)",
"PageTitle": "DNS - PTR (pointer) records"
},
"az network dns record-set srv": {
"TocTitle": "SRV",
"PageTitle": "DNS - SRV records"
},
"az network dns record-set txt": {
"TocTitle": "TXT",
"PageTitle": "DNS - TXT records"
},
"az network dns zone": {
"TocTitle": "Zones",
"PageTitle": "DNS zones"
},
"az network express-route": {
"TocTitle": "Express Route",
"PageTitle": "Express Route"
},
"az network express-route auth": {
"TocTitle": "Circuit authentication",
"PageTitle": "Express Route circuit authentication"
},
"az network express-route peering": {
"TocTitle": "Peering",
"PageTitle": "Express Route peering"
},
"az network lb": {
"TocTitle": "Network Load Balancer",
"PageTitle": "Network Load balancer"
},
"az network lb address-pool": {
"TocTitle": "Back-end address pools",
"PageTitle": "Back-end address pools"
},
"az network lb frontend-ip": {
"TocTitle": "Front-end IP addresses",
"PageTitle": "Front-end IP addresses"
},
"az network lb inbound-nat-pool": {
"TocTitle": "Inbound NAT address pools",
"PageTitle": "Inbound NAT address pools"
},
"az network lb inbound-nat-rule": {
"TocTitle": "Inbound NAT address rules",
"PageTitle": "Inbound NAT address rules"
},
"az network lb probe": {
"TocTitle": "Probes",
"PageTitle": "Load Balancer probes"
},
"az network lb rule": {
"TocTitle": "Rules",
"PageTitle": "Load Balancing rules"
},
"az network local-gateway": {
"TocTitle": "Local gateways",
"PageTitle": "Local gateways"
},
"az network nic": {
"TocTitle": "Network interfaces",
"PageTitle": "Network interfaces"
},
"az network nic ip-config": {
"TocTitle": "NIC IP configurations",
"PageTitle": "NIC IP configurations"
},
"az network nic ip-config address-pool": {
"TocTitle": "Address pools",
"PageTitle": "Address pools"
},
"az network nic ip-config inbound-nat-rule": {
"TocTitle": "Inbound NAT rules",
"PageTitle": "Inbound NAT rules"
},
"az network nsg": {
"TocTitle": "Network security groups",
"PageTitle": "Network security groups"
},
"az network nsg rule": {
"TocTitle": "Rules",
"PageTitle": "Network security group rules"
},
"az network public-ip": {
"TocTitle": "Public IP addresses",
"PageTitle": "Public IP addresses"
},
"az network route-table": {
"TocTitle": "Route tables",
"PageTitle": "Route tables"
},
"az network route-table route": {
"TocTitle": "Routes",
"PageTitle": "Route table routes"
},
"az network traffic-manager": {
"TocTitle": "Traffic Manager",
"PageTitle": "Network Traffic Manager"
},
"az network traffic-manager endpoint": {
"TocTitle": "End points",
"PageTitle": "End points"
},
"az network traffic-manager profile": {
"TocTitle": "Profiles",
"PageTitle": "Traffic Manager profiles"
},
"az network vnet": {
"TocTitle": "Virtual Network",
"PageTitle": "Virtual Network"
},
"az network vnet peering": {
"TocTitle": "Peering connections",
"PageTitle": "Peering connections"
},
"az network vnet subnet": {
"TocTitle": "Subnets",
"PageTitle": "Subnets"
},
"az network vnet-gateway": {
"TocTitle": "Virtual Network gateways",
"PageTitle": "Virtual Network gateways"
},
"az network vnet-gateway revoked-cert": {
"TocTitle": "Revoked certificates",
"PageTitle": "Revoked certificates"
},
"az network vnet-gateway root-cert": {
"TocTitle": "Root certificates",
"PageTitle": "Root certificates"
},
"az network vpn-connection": {
"TocTitle": "VPN connections",
"PageTitle": "VPN connections"
},
"az network vpn-connection shared-key": {
"TocTitle": "Shared keys",
"PageTitle": "VPN shared keys"
},
"az policy": {
"TocTitle": "Resource policies",
"PageTitle": "Resource policies"
},
"az policy assignment": {
"TocTitle": "Assignments",
"PageTitle": "Resource policy assignments"
},
"az policy definition": {
"TocTitle": "Definitions",
"PageTitle": "Resource policy definitions"
},
"az postgres": {
"TocTitle": "PostgreSQL",
"PageTitle": "Azure Database for PostgreSQL"
},
"az postgres db": {
"TocTitle": "Databases",
"PageTitle": "Azure Database for PostgreSQL databases"
},
"az postgres server": {
"TocTitle": "Servers",
"PageTitle": "Azure Database for PostgreSQL servers"
},
"az postgres server configuration": {
"TocTitle": "Configurations",
"PageTitle": "Azure Database for PostgreSQL server configurations"
},
"az postgres server firewall-rule": {
"TocTitle": "Firewall rules",
"PageTitle": "Firewall rules for Azure Database for PostgreSQL servers"
},
"az postgres server-logs": {
"TocTitle": "Server logs",
"PageTitle": "Azure Database for PostgreSQL server logs"
},
"az provider": {
"TocTitle": "Resource providers",
"PageTitle": "Resource providers"
},
"az redis": {
"TocTitle": "Redis Cache",
"PageTitle": "Redis Cache"
},
"az redis patch-schedule": {
"TocTitle": "Patch schedules",
"PageTitle": "Patch schedules"
},
"az resource": {
"TocTitle": "Resources",
"PageTitle": "Resources"
},
"az resource link": {
"TocTitle": "Links",
"PageTitle": "Resource links"
},
"az role": {
"TocTitle": "Roles",
"PageTitle": "Roles"
},
"az role assignment": {
"TocTitle": "Assignments",
"PageTitle": "Role assignments"
},
"az role definition": {
"TocTitle": "Definitions",
"PageTitle": "Role definitions"
},
"az sf": {
"TocTitle": "Service Fabric",
"PageTitle": "Service Fabric"
},
"az snapshot": {
"TocTitle": "VM Snapshots",
"PageTitle": "VM Snapshots"
},
"az sql": {
"TocTitle": "SQL",
"PageTitle": "SQL"
},
"az sql db": {
"TocTitle": "Databases",
"PageTitle": "SQL Databases"
},
"az sql db data-warehouse": {
"TocTitle": "Data warehouses",
"PageTitle": "SQL data warehouses"
},
"az sql db replication-link": {
"TocTitle": "Replication links",
"PageTitle": "SQL replication links"
},
"az sql db restore-point": {
"TocTitle": "Restore points",
"PageTitle": "SQL restore points"
},
"az sql db service-tier-advisor": {
"TocTitle": "Service tier advisors",
"PageTitle": "SQL service tier advisors"
},
"az sql db transparent-data-encryption": {
"TocTitle": "Transparent data encryption",
"PageTitle": "SQL transparent data encryption"
},
"az sql dw": {
"TocTitle": "Data warehouses",
"PageTitle": "SQL data warehouses"
},
"az sql elastic-pool": {
"TocTitle": "Elastic pools",
"PageTitle": "SQL elastic pools"
},
"az sql elastic-pool db": {
"TocTitle": "Database activity",
"PageTitle": "SQL elastic pool database activity"
},
"az sql elastic-pool recommended": {
"TocTitle": "Recommended",
"PageTitle": "SQL recommended elastic pools"
},
"az sql elastic-pool recommended db": {
"TocTitle": "Database",
"PageTitle": "SQL elastic pool database"
},
"az sql server": {
"TocTitle": "Server",
"PageTitle": "SQL Server"
},
"az sql server firewall-rule": {
"TocTitle": "Firewall rules",
"PageTitle": "SQL Server firewall rules"
},
"az sql server service-objective": {
"TocTitle": "Service objectives",
"PageTitle": "SQL Server service objectives"
},
"az storage": {
"TocTitle": "Storage",
"PageTitle": "Storage"
},
"az storage account": {
"TocTitle": "Accounts",
"PageTitle": "Storage accounts"
},
"az storage account keys": {
"TocTitle": "Keys",
"PageTitle": "Storage accounts keys"
},
"az storage blob": {
"TocTitle": "Blob",
"PageTitle": "Blob storage"
},
"az storage blob copy": {
"TocTitle": "Copy operations",
"PageTitle": "Blob storage copy operations"
},
"az storage blob lease": {
"TocTitle": "Leases",
"PageTitle": "Blob storage leases"
},
"az storage blob metadata": {
"TocTitle": "Metadata",
"PageTitle": "Blob storage metadata"
},
"az storage blob service-properties": {
"TocTitle": "Service properties",
"PageTitle": "Blob storage service properties"
},
"az storage container": {
"TocTitle": "Containers",
"PageTitle": "Storage containers"
},
"az storage container lease": {
"TocTitle": "Leases",
"PageTitle": "Storage container leases"
},
"az storage container metadata": {
"TocTitle": "Metadata",
"PageTitle": "Storage container metadata"
},
"az storage container policy": {
"TocTitle": "Policies",
"PageTitle": "Storage container policies"
},
"az storage cors": {
"TocTitle": "Cross-origin resorce sharing",
"PageTitle": "Cross-origin resorce sharing"
},
"az storage directory": {
"TocTitle": "Directories",
"PageTitle": "Storage directories"
},
"az storage directory metadata": {
"TocTitle": "Metadata",
"PageTitle": "Directory metadata"
},
"az storage entity": {
"TocTitle": "Table storage entities",
"PageTitle": "Table storage entities"
},
"az storage file": {
"TocTitle": "Files",
"PageTitle": "Files"
},
"az storage file copy": {
"TocTitle": "Copy operations",
"PageTitle": "File copy operations"
},
"az storage file metadata": {
"TocTitle": "Metadata",
"PageTitle": "File metadata"
},
"az storage logging": {
"TocTitle": "Logging",
"PageTitle": "Storage service logging"
},
"az storage message": {
"TocTitle": "Messages",
"PageTitle": "Storage messages"