forked from MicrosoftDocs/azure-docs-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetwork.pycliyml
More file actions
1323 lines (1323 loc) · 56.6 KB
/
network.pycliyml
File metadata and controls
1323 lines (1323 loc) · 56.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commandList:
- name: az network application-gateway
description: Provides application-level routing and load balancing services.
href: network/application-gateway
isGroup: true
- name: az network application-gateway address-pool
description: Manage backend address pools for an application gateway.
href: network/application-gateway/address-pool
isGroup: true
- name: az network application-gateway address-pool create
description: Create a backend address pool.
href: network/application-gateway/address-pool#create
- name: az network application-gateway address-pool delete
description: Delete a backend address pool.
href: network/application-gateway/address-pool#delete
- name: az network application-gateway address-pool list
description: List backend address pools.
href: network/application-gateway/address-pool#list
- name: az network application-gateway address-pool show
description: Show details of a backend address pool.
href: network/application-gateway/address-pool#show
- name: az network application-gateway address-pool update
description: Update a backend address pool.
href: network/application-gateway/address-pool#update
- name: az network application-gateway auth-cert
description: Manage authorization certificates for an application gateway.
href: network/application-gateway/auth-cert
isGroup: true
- name: az network application-gateway auth-cert create
description: Create an authorization certificate.
href: network/application-gateway/auth-cert#create
- name: az network application-gateway auth-cert delete
description: Delete an authorization certificate.
href: network/application-gateway/auth-cert#delete
- name: az network application-gateway auth-cert list
description: List authorization certificates.
href: network/application-gateway/auth-cert#list
- name: az network application-gateway auth-cert show
description: Show details of an authorization certificate.
href: network/application-gateway/auth-cert#show
- name: az network application-gateway auth-cert update
description: Update an authorization certificate.
href: network/application-gateway/auth-cert#update
- name: az network application-gateway create
description: Create an application gateway.
href: network/application-gateway#create
- name: az network application-gateway delete
description: Delete an application gateway.
href: network/application-gateway#delete
- name: az network application-gateway frontend-ip
description: Manage frontend IP addresses for an application gateway.
href: network/application-gateway/frontend-ip
isGroup: true
- name: az network application-gateway frontend-ip create
description: Create a frontend IP address.
href: network/application-gateway/frontend-ip#create
- name: az network application-gateway frontend-ip delete
description: Delete a frontend IP address.
href: network/application-gateway/frontend-ip#delete
- name: az network application-gateway frontend-ip list
description: List frontend IP addresses.
href: network/application-gateway/frontend-ip#list
- name: az network application-gateway frontend-ip show
description: Show details of a frontend IP address.
href: network/application-gateway/frontend-ip#show
- name: az network application-gateway frontend-ip update
description: Update a frontend IP address.
href: network/application-gateway/frontend-ip#update
- name: az network application-gateway frontend-port
description: Manage frontend ports for an application gateway.
href: network/application-gateway/frontend-port
isGroup: true
- name: az network application-gateway frontend-port create
description: Create a frontend port.
href: network/application-gateway/frontend-port#create
- name: az network application-gateway frontend-port delete
description: Delete a frontend port.
href: network/application-gateway/frontend-port#delete
- name: az network application-gateway frontend-port list
description: List frontend ports.
href: network/application-gateway/frontend-port#list
- name: az network application-gateway frontend-port show
description: Show details of a frontend port.
href: network/application-gateway/frontend-port#show
- name: az network application-gateway frontend-port update
description: Update a frontend port.
href: network/application-gateway/frontend-port#update
- name: az network application-gateway http-listener
description: Manage HTTP listeners for an application gateway.
href: network/application-gateway/http-listener
isGroup: true
- name: az network application-gateway http-listener create
description: Create an HTTP listener.
href: network/application-gateway/http-listener#create
- name: az network application-gateway http-listener delete
description: Delete an HTTP listener.
href: network/application-gateway/http-listener#delete
- name: az network application-gateway http-listener list
description: List HTTP listeners.
href: network/application-gateway/http-listener#list
- name: az network application-gateway http-listener show
description: Show details of an HTTP listener.
href: network/application-gateway/http-listener#show
- name: az network application-gateway http-listener update
description: Update an HTTP listener.
href: network/application-gateway/http-listener#update
- name: az network application-gateway http-settings
description: Manage HTTP settings for an application gateway.
href: network/application-gateway/http-settings
isGroup: true
- name: az network application-gateway http-settings create
description: Create HTTP settings.
href: network/application-gateway/http-settings#create
- name: az network application-gateway http-settings delete
description: Delete HTTP settings.
href: network/application-gateway/http-settings#delete
- name: az network application-gateway http-settings list
description: List HTTP settings.
href: network/application-gateway/http-settings#list
- name: az network application-gateway http-settings show
description: Show details of HTTP settings.
href: network/application-gateway/http-settings#show
- name: az network application-gateway http-settings update
description: Update HTTP settings.
href: network/application-gateway/http-settings#update
- name: az network application-gateway list
description: List application gateways.
href: network/application-gateway#list
- name: az network application-gateway probe
description: Use probes to gather information, such as utilization, and then evaluate it by using rules.
href: network/application-gateway/probe
isGroup: true
- name: az network application-gateway probe create
description: Create a probe.
href: network/application-gateway/probe#create
- name: az network application-gateway probe delete
description: Delete a probe.
href: network/application-gateway/probe#delete
- name: az network application-gateway probe list
description: List probes.
href: network/application-gateway/probe#list
- name: az network application-gateway probe show
description: Show details of a probe.
href: network/application-gateway/probe#show
- name: az network application-gateway probe update
description: Update a probe.
href: network/application-gateway/probe#update
- name: az network application-gateway redirect-config
description: Manage redirect configurations.
href: network/application-gateway/redirect-config
isGroup: true
- name: az network application-gateway redirect-config create
description: Create a redirect configuration.
href: network/application-gateway/redirect-config#create
- name: az network application-gateway redirect-config delete
description: Delete a redirect configuration.
href: network/application-gateway/redirect-config#delete
- name: az network application-gateway redirect-config list
description: List redirect configurations.
href: network/application-gateway/redirect-config#list
- name: az network application-gateway redirect-config show
description: Show details of a redirect configuration.
href: network/application-gateway/redirect-config#show
- name: az network application-gateway redirect-config update
description: Update a redirect configuration.
href: network/application-gateway/redirect-config#update
- name: az network application-gateway rule
description: Evaluate probe information and define routing rules.
href: network/application-gateway/rule
isGroup: true
- name: az network application-gateway rule create
description: Create a rule.
href: network/application-gateway/rule#create
- name: az network application-gateway rule delete
description: Delete a rule.
href: network/application-gateway/rule#delete
- name: az network application-gateway rule list
description: List rules.
href: network/application-gateway/rule#list
- name: az network application-gateway rule show
description: Show details of a rule.
href: network/application-gateway/rule#show
- name: az network application-gateway rule update
description: Update a rule.
href: network/application-gateway/rule#update
- name: az network application-gateway show
description: Show details of an application gateway.
href: network/application-gateway#show
- name: az network application-gateway show-backend-health
description: Show details about the backend health of an application gateway.
href: network/application-gateway#show-backend-health
- name: az network application-gateway ssl-cert
description: Manage SSL certificates for an application gateway.
href: network/application-gateway/ssl-cert
isGroup: true
- name: az network application-gateway ssl-cert create
description: Upload an SSL certificate.
href: network/application-gateway/ssl-cert#create
- name: az network application-gateway ssl-cert delete
description: Delete an SSL certificate.
href: network/application-gateway/ssl-cert#delete
- name: az network application-gateway ssl-cert list
description: List SSL certificates.
href: network/application-gateway/ssl-cert#list
- name: az network application-gateway ssl-cert show
description: Show details of an SSL certificate.
href: network/application-gateway/ssl-cert#show
- name: az network application-gateway ssl-cert update
description: Update an SSL certificate.
href: network/application-gateway/ssl-cert#update
- name: az network application-gateway ssl-policy
description: Manage the SSL policy for an application gateway.
href: network/application-gateway/ssl-policy
isGroup: true
- name: az network application-gateway ssl-policy list-options
description: Lists available Ssl options for configuring Ssl policy.
href: network/application-gateway/ssl-policy#list-options
- name: az network application-gateway ssl-policy predefined
description: Information on predefined SSL policies.
href: network/application-gateway/ssl-policy/predefined
isGroup: true
- name: az network application-gateway ssl-policy predefined list
description: Lists all SSL predefined policies for configuring Ssl policy.
href: network/application-gateway/ssl-policy/predefined#list
- name: az network application-gateway ssl-policy predefined show
description: Gets Ssl predefined policy with the specified policy name.
href: network/application-gateway/ssl-policy/predefined#show
- name: az network application-gateway ssl-policy set
description: Update or clear SSL policy settings.
href: network/application-gateway/ssl-policy#set
- name: az network application-gateway ssl-policy show
description: Show the SSL policy settings.
href: network/application-gateway/ssl-policy#show
- name: az network application-gateway start
description: Start an application gateway.
href: network/application-gateway#start
- name: az network application-gateway stop
description: Stop an application gateway.
href: network/application-gateway#stop
- name: az network application-gateway update
description: Update an application gateway.
href: network/application-gateway#update
- name: az network application-gateway url-path-map
description: Manage URL path maps for an application gateway.
href: network/application-gateway/url-path-map
isGroup: true
- name: az network application-gateway url-path-map create
description: Create a URL path map.
href: network/application-gateway/url-path-map#create
- name: az network application-gateway url-path-map delete
description: Delete a URL path map.
href: network/application-gateway/url-path-map#delete
- name: az network application-gateway url-path-map list
description: List URL path maps.
href: network/application-gateway/url-path-map#list
- name: az network application-gateway url-path-map rule
description: Manage the rules for a URL path map.
href: network/application-gateway/url-path-map/rule
isGroup: true
- name: az network application-gateway url-path-map rule create
description: Create a rule for a URL path map.
href: network/application-gateway/url-path-map/rule#create
- name: az network application-gateway url-path-map rule delete
description: Delete a rule for a URL path map.
href: network/application-gateway/url-path-map/rule#delete
- name: az network application-gateway url-path-map show
description: Show details of a URL path map.
href: network/application-gateway/url-path-map#show
- name: az network application-gateway url-path-map update
description: Update a URL path map.
href: network/application-gateway/url-path-map#update
- name: az network application-gateway waf-config
description: Configure the settings of a web application firewall.
href: network/application-gateway/waf-config
isGroup: true
- name: az network application-gateway waf-config list-rule-sets
description: (PREVIEW) Lookup information on available WAF rule sets, rule groups, and rule IDs.
href: network/application-gateway/waf-config#list-rule-sets
- name: az network application-gateway waf-config set
description: Update the firewall configuration of a web application.
href: network/application-gateway/waf-config#set
- name: az network application-gateway waf-config show
description: Show the firewall configuration of a web application.
href: network/application-gateway/waf-config#show
- name: az network application-gateway wait
description: Place the CLI in a waiting state until a condition of the application gateway is met.
href: network/application-gateway#wait
- name: az network dns
description: Host your DNS domain in Azure.
href: network/dns
isGroup: true
- name: az network dns record-set
description: Manage DNS records and record sets.
href: network/dns/record-set
isGroup: true
- name: az network dns record-set a
description: Manage DNS A records.
href: network/dns/record-set/a
isGroup: true
- name: az network dns record-set a add-record
description: ''
href: network/dns/record-set/a#add-record
- name: az network dns record-set a create
description: Create an empty A record set.
href: network/dns/record-set/a#create
- name: az network dns record-set a delete
description: Delete a A record set and all records within.
href: network/dns/record-set/a#delete
- name: az network dns record-set a list
description: List all A record sets in a zone.
href: network/dns/record-set/a#list
- name: az network dns record-set a remove-record
description: Remove A record from its record set.
href: network/dns/record-set/a#remove-record
- name: az network dns record-set a show
description: Show details of A record set.
href: network/dns/record-set/a#show
- name: az network dns record-set a update
description: ''
href: network/dns/record-set/a#update
- name: az network dns record-set aaaa
description: Manage DNS AAAA records.
href: network/dns/record-set/aaaa
isGroup: true
- name: az network dns record-set aaaa add-record
description: ''
href: network/dns/record-set/aaaa#add-record
- name: az network dns record-set aaaa create
description: Create an empty AAAA record set.
href: network/dns/record-set/aaaa#create
- name: az network dns record-set aaaa delete
description: Delete a AAAA record set and all records within.
href: network/dns/record-set/aaaa#delete
- name: az network dns record-set aaaa list
description: List all AAAA record sets in a zone.
href: network/dns/record-set/aaaa#list
- name: az network dns record-set aaaa remove-record
description: Remove AAAA record from its record set.
href: network/dns/record-set/aaaa#remove-record
- name: az network dns record-set aaaa show
description: Show details of AAAA record set.
href: network/dns/record-set/aaaa#show
- name: az network dns record-set aaaa update
description: ''
href: network/dns/record-set/aaaa#update
- name: az network dns record-set cname
description: Manage DNS CNAME records.
href: network/dns/record-set/cname
isGroup: true
- name: az network dns record-set cname create
description: Create an empty CNAME record set.
href: network/dns/record-set/cname#create
- name: az network dns record-set cname delete
description: Delete a CNAME record set and all records within.
href: network/dns/record-set/cname#delete
- name: az network dns record-set cname list
description: List all CNAME record sets in a zone.
href: network/dns/record-set/cname#list
- name: az network dns record-set cname remove-record
description: Remove CNAME record from its record set.
href: network/dns/record-set/cname#remove-record
- name: az network dns record-set cname set-record
description: Set the value of the CNAME record.
href: network/dns/record-set/cname#set-record
- name: az network dns record-set cname show
description: Show details of CNAME record set.
href: network/dns/record-set/cname#show
- name: az network dns record-set list
description: List all record sets within a DNS zone.
href: network/dns/record-set#list
- name: az network dns record-set mx
description: Manage DNS MX records.
href: network/dns/record-set/mx
isGroup: true
- name: az network dns record-set mx add-record
description: ''
href: network/dns/record-set/mx#add-record
- name: az network dns record-set mx create
description: Create an empty MX record set.
href: network/dns/record-set/mx#create
- name: az network dns record-set mx delete
description: Delete a MX record set and all records within.
href: network/dns/record-set/mx#delete
- name: az network dns record-set mx list
description: List all MX record sets in a zone.
href: network/dns/record-set/mx#list
- name: az network dns record-set mx remove-record
description: Remove MX record from its record set.
href: network/dns/record-set/mx#remove-record
- name: az network dns record-set mx show
description: Show details of MX record set.
href: network/dns/record-set/mx#show
- name: az network dns record-set mx update
description: ''
href: network/dns/record-set/mx#update
- name: az network dns record-set ns
description: Manage DNS NS records.
href: network/dns/record-set/ns
isGroup: true
- name: az network dns record-set ns add-record
description: ''
href: network/dns/record-set/ns#add-record
- name: az network dns record-set ns create
description: Create an empty NS record set.
href: network/dns/record-set/ns#create
- name: az network dns record-set ns delete
description: Delete a NS record set and all records within.
href: network/dns/record-set/ns#delete
- name: az network dns record-set ns list
description: List all NS record sets in a zone.
href: network/dns/record-set/ns#list
- name: az network dns record-set ns remove-record
description: Remove NS record from its record set.
href: network/dns/record-set/ns#remove-record
- name: az network dns record-set ns show
description: Show details of NS record set.
href: network/dns/record-set/ns#show
- name: az network dns record-set ns update
description: ''
href: network/dns/record-set/ns#update
- name: az network dns record-set ptr
description: Manage DNS PTR records.
href: network/dns/record-set/ptr
isGroup: true
- name: az network dns record-set ptr add-record
description: ''
href: network/dns/record-set/ptr#add-record
- name: az network dns record-set ptr create
description: Create an empty PTR record set.
href: network/dns/record-set/ptr#create
- name: az network dns record-set ptr delete
description: Delete a PTR record set and all records within.
href: network/dns/record-set/ptr#delete
- name: az network dns record-set ptr list
description: List all PTR record sets in a zone.
href: network/dns/record-set/ptr#list
- name: az network dns record-set ptr remove-record
description: Remove PTR record from its record set.
href: network/dns/record-set/ptr#remove-record
- name: az network dns record-set ptr show
description: Show details of PTR record set.
href: network/dns/record-set/ptr#show
- name: az network dns record-set ptr update
description: ''
href: network/dns/record-set/ptr#update
- name: az network dns record-set soa
description: Manage DNS zone SOA record.
href: network/dns/record-set/soa
isGroup: true
- name: az network dns record-set soa show
description: Show details of the DNS zone's SOA record.
href: network/dns/record-set/soa#show
- name: az network dns record-set soa update
description: Update properties of the zone's SOA record.
href: network/dns/record-set/soa#update
- name: az network dns record-set srv
description: Manage DNS SRV records.
href: network/dns/record-set/srv
isGroup: true
- name: az network dns record-set srv add-record
description: ''
href: network/dns/record-set/srv#add-record
- name: az network dns record-set srv create
description: Create an empty SRV record set.
href: network/dns/record-set/srv#create
- name: az network dns record-set srv delete
description: Delete a SRV record set and all records within.
href: network/dns/record-set/srv#delete
- name: az network dns record-set srv list
description: List all SRV record sets in a zone.
href: network/dns/record-set/srv#list
- name: az network dns record-set srv remove-record
description: Remove SRV record from its record set.
href: network/dns/record-set/srv#remove-record
- name: az network dns record-set srv show
description: Show details of SRV record set.
href: network/dns/record-set/srv#show
- name: az network dns record-set srv update
description: ''
href: network/dns/record-set/srv#update
- name: az network dns record-set txt
description: Manage DNS TXT records.
href: network/dns/record-set/txt
isGroup: true
- name: az network dns record-set txt add-record
description: Add TXT record.
href: network/dns/record-set/txt#add-record
- name: az network dns record-set txt create
description: Create an empty TXT record set.
href: network/dns/record-set/txt#create
- name: az network dns record-set txt delete
description: Delete a TXT record set and all records within.
href: network/dns/record-set/txt#delete
- name: az network dns record-set txt list
description: List all TXT record sets in a zone.
href: network/dns/record-set/txt#list
- name: az network dns record-set txt remove-record
description: Remove TXT record from its record set.
href: network/dns/record-set/txt#remove-record
- name: az network dns record-set txt show
description: Show details of TXT record set.
href: network/dns/record-set/txt#show
- name: az network dns record-set txt update
description: Update TXT record set.
href: network/dns/record-set/txt#update
- name: az network dns zone
description: Manage DNS zones.
href: network/dns/zone
isGroup: true
- name: az network dns zone create
description: Create a DNS zone.
href: network/dns/zone#create
- name: az network dns zone delete
description: Delete a DNS zone and all associated records.
href: network/dns/zone#delete
- name: az network dns zone export
description: Export a DNS zone as a DNS zone file.
href: network/dns/zone#export
- name: az network dns zone import
description: Create a DNS zone using a DNS zone file.
href: network/dns/zone#import
- name: az network dns zone list
description: List DNS zones.
href: network/dns/zone#list
- name: az network dns zone show
description: Get DNS zone parameters. Does not show DNS records within the zone.
href: network/dns/zone#show
- name: az network dns zone update
description: Update DNS zone properties. Does not modify DNS records within the zone.
href: network/dns/zone#update
- name: az network express-route
description: Manage dedicated private network fiber connections to Azure.
href: network/express-route
isGroup: true
- name: az network express-route auth
description: Manage authentication of an ExpressRoute circuit.
href: network/express-route/auth
isGroup: true
- name: az network express-route auth create
description: Create an authorization setting.
href: network/express-route/auth#create
- name: az network express-route auth delete
description: Delete an authorization setting.
href: network/express-route/auth#delete
- name: az network express-route auth list
description: List authorization settings.
href: network/express-route/auth#list
- name: az network express-route auth show
description: Show details of an authorization setting.
href: network/express-route/auth#show
- name: az network express-route create
description: Create an ExpressRoute circuit.
href: network/express-route#create
- name: az network express-route delete
description: Delete an ExpressRoute circuit.
href: network/express-route#delete
- name: az network express-route get-stats
description: Show statistics of an ExpressRoute circuit.
href: network/express-route#get-stats
- name: az network express-route list
description: List ExpressRoute circuits.
href: network/express-route#list
- name: az network express-route list-arp-tables
description: List the currently advertised ARP table of an ExpressRoute circuit.
href: network/express-route#list-arp-tables
- name: az network express-route list-route-tables
description: List the currently advertised route tables of an ExpressRoute circuit.
href: network/express-route#list-route-tables
- name: az network express-route list-service-providers
description: List available ExpressRoute service providers.
href: network/express-route#list-service-providers
- name: az network express-route peering
description: Manage ExpressRoute peering.
href: network/express-route/peering
isGroup: true
- name: az network express-route peering create
description: Create peering settings.
href: network/express-route/peering#create
- name: az network express-route peering delete
description: Delete peering settings.
href: network/express-route/peering#delete
- name: az network express-route peering list
description: List peering settings.
href: network/express-route/peering#list
- name: az network express-route peering show
description: Show peering details.
href: network/express-route/peering#show
- name: az network express-route peering update
description: Update peering settings.
href: network/express-route/peering#update
- name: az network express-route show
description: Show details of an ExpressRoute circuit.
href: network/express-route#show
- name: az network express-route update
description: Update settings of an ExpressRoute circuit.
href: network/express-route#update
- name: az network express-route wait
description: ''
href: network/express-route#wait
- name: az network lb
description: Use a load balancer to deliver high availability and network performance to your applications.
href: network/lb
isGroup: true
- name: az network lb address-pool
description: Manage backend address pools for a load balancer.
href: network/lb/address-pool
isGroup: true
- name: az network lb address-pool create
description: Create a backend address pool.
href: network/lb/address-pool#create
- name: az network lb address-pool delete
description: Delete a backend address pool.
href: network/lb/address-pool#delete
- name: az network lb address-pool list
description: List backend address pools.
href: network/lb/address-pool#list
- name: az network lb address-pool show
description: Show details of a backend address pool.
href: network/lb/address-pool#show
- name: az network lb create
description: Create a load balancer.
href: network/lb#create
- name: az network lb delete
description: Delete a load balancer.
href: network/lb#delete
- name: az network lb frontend-ip
description: Manage frontend IP addresses for a load balancer.
href: network/lb/frontend-ip
isGroup: true
- name: az network lb frontend-ip create
description: Create a frontend IP address.
href: network/lb/frontend-ip#create
- name: az network lb frontend-ip delete
description: Delete a frontend IP address.
href: network/lb/frontend-ip#delete
- name: az network lb frontend-ip list
description: List frontend IP addresses.
href: network/lb/frontend-ip#list
- name: az network lb frontend-ip show
description: Show details of a frontend IP address.
href: network/lb/frontend-ip#show
- name: az network lb frontend-ip update
description: Update a frontend IP address.
href: network/lb/frontend-ip#update
- name: az network lb inbound-nat-pool
description: Manage inbound NAT address pools for a load balancer.
href: network/lb/inbound-nat-pool
isGroup: true
- name: az network lb inbound-nat-pool create
description: Create an inbound NAT address pool.
href: network/lb/inbound-nat-pool#create
- name: az network lb inbound-nat-pool delete
description: Delete an inbound NAT address pool.
href: network/lb/inbound-nat-pool#delete
- name: az network lb inbound-nat-pool list
description: List inbound NAT address pools.
href: network/lb/inbound-nat-pool#list
- name: az network lb inbound-nat-pool show
description: Show details of an inbound NAT address pool.
href: network/lb/inbound-nat-pool#show
- name: az network lb inbound-nat-pool update
description: Update an inbound NAT address pool.
href: network/lb/inbound-nat-pool#update
- name: az network lb inbound-nat-rule
description: Manage inbound NAT rules for a load balancer.
href: network/lb/inbound-nat-rule
isGroup: true
- name: az network lb inbound-nat-rule create
description: Create an inbound NAT rule.
href: network/lb/inbound-nat-rule#create
- name: az network lb inbound-nat-rule delete
description: Delete an inbound NAT rule.
href: network/lb/inbound-nat-rule#delete
- name: az network lb inbound-nat-rule list
description: List inbound NAT rules.
href: network/lb/inbound-nat-rule#list
- name: az network lb inbound-nat-rule show
description: Show details of an inbound NAT rule.
href: network/lb/inbound-nat-rule#show
- name: az network lb inbound-nat-rule update
description: Update an inbound NAT rule.
href: network/lb/inbound-nat-rule#update
- name: az network lb list
description: List load balancers.
href: network/lb#list
- name: az network lb probe
description: Evaluate probe information and define routing rules.
href: network/lb/probe
isGroup: true
- name: az network lb probe create
description: Create a probe.
href: network/lb/probe#create
- name: az network lb probe delete
description: Delete a probe.
href: network/lb/probe#delete
- name: az network lb probe list
description: List probes.
href: network/lb/probe#list
- name: az network lb probe show
description: Show details of a probe.
href: network/lb/probe#show
- name: az network lb probe update
description: Update a probe.
href: network/lb/probe#update
- name: az network lb rule
description: Manage load balancing rules.
href: network/lb/rule
isGroup: true
- name: az network lb rule create
description: Create a load balancing rule.
href: network/lb/rule#create
- name: az network lb rule delete
description: Delete a load balancing rule.
href: network/lb/rule#delete
- name: az network lb rule list
description: List load balancing rules.
href: network/lb/rule#list
- name: az network lb rule show
description: Show details of a load balancing rule.
href: network/lb/rule#show
- name: az network lb rule update
description: Update a load balancing rule.
href: network/lb/rule#update
- name: az network lb show
description: Show details of a load balancer.
href: network/lb#show
- name: az network lb update
description: Update a load balancer.
href: network/lb#update
- name: az network list-private-access-services
description: List which services support private access for a given region.
href: network#list-private-access-services
- name: az network list-usages
description: Lists compute usages for a subscription.
href: network#list-usages
- name: az network local-gateway
description: Manage local gateways.
href: network/local-gateway
isGroup: true
- name: az network local-gateway create
description: Create a local VPN gateway.
href: network/local-gateway#create
- name: az network local-gateway delete
description: Delete a local VPN gateway.
href: network/local-gateway#delete
- name: az network local-gateway list
description: List local VPN gateways.
href: network/local-gateway#list
- name: az network local-gateway show
description: Show details of a local VPN gateway.
href: network/local-gateway#show
- name: az network local-gateway update
description: Update a local VPN gateway.
href: network/local-gateway#update
- name: az network local-gateway wait
description: ''
href: network/local-gateway#wait
- name: az network nic
description: Manage network interfaces.
href: network/nic
isGroup: true
- name: az network nic create
description: Create a network interface.
href: network/nic#create
- name: az network nic delete
description: Delete a network interface.
href: network/nic#delete
- name: az network nic ip-config
description: Manage IP configurations of a network interface.
href: network/nic/ip-config
isGroup: true
- name: az network nic ip-config address-pool
description: Manage backend address pools in an IP configuration.
href: network/nic/ip-config/address-pool
isGroup: true
- name: az network nic ip-config address-pool add
description: Add a backend address pool.
href: network/nic/ip-config/address-pool#add
- name: az network nic ip-config address-pool remove
description: Remove a backend address pool.
href: network/nic/ip-config/address-pool#remove
- name: az network nic ip-config create
description: Create an IP configuration.
href: network/nic/ip-config#create
- name: az network nic ip-config delete
description: Delete an IP configuration.
href: network/nic/ip-config#delete
- name: az network nic ip-config inbound-nat-rule
description: Manage inbound NAT rules for an IP configuration.
href: network/nic/ip-config/inbound-nat-rule
isGroup: true
- name: az network nic ip-config inbound-nat-rule add
description: Add an inbound NAT rule.
href: network/nic/ip-config/inbound-nat-rule#add
- name: az network nic ip-config inbound-nat-rule remove
description: Remove an inbound NAT rule.
href: network/nic/ip-config/inbound-nat-rule#remove
- name: az network nic ip-config list
description: List IP configurations.
href: network/nic/ip-config#list
- name: az network nic ip-config show
description: Show details of an IP configuration.
href: network/nic/ip-config#show
- name: az network nic ip-config update
description: Update an IP configuration.
href: network/nic/ip-config#update
- name: az network nic list
description: List network interfaces.
href: network/nic#list
- name: az network nic list-effective-nsg
description: List all network security groups applied to a network interface.
href: network/nic#list-effective-nsg
- name: az network nic show
description: Show details of a network interface.
href: network/nic#show
- name: az network nic show-effective-route-table
description: Show all route tables applied to a network interface.
href: network/nic#show-effective-route-table
- name: az network nic update
description: Update a network interface.
href: network/nic#update
- name: az network nsg
description: Manage Azure Network Security Groups.
href: network/nsg
isGroup: true
- name: az network nsg create
description: Create a network security group.
href: network/nsg#create
- name: az network nsg delete
description: Deletes the specified network security group.
href: network/nsg#delete
- name: az network nsg list
description: Lists information about network security groups.
href: network/nsg#list
- name: az network nsg rule
description: Manage NSG rules.
href: network/nsg/rule
isGroup: true
- name: az network nsg rule create
description: Create an NSG rule.
href: network/nsg/rule#create
- name: az network nsg rule delete
description: Delete an NSG rule.
href: network/nsg/rule#delete
- name: az network nsg rule list
description: List all rules in an NSG.
href: network/nsg/rule#list
- name: az network nsg rule show
description: Show details of an NSG rule.
href: network/nsg/rule#show
- name: az network nsg rule update
description: Update an NSG rule.
href: network/nsg/rule#update
- name: az network nsg show
description: Retrieves information about the specified network security group.
href: network/nsg#show
- name: az network nsg update
description: ''
href: network/nsg#update
- name: az network public-ip
description: Manage public IP addresses.
href: network/public-ip
isGroup: true
- name: az network public-ip create
description: Create a public IP address.
href: network/public-ip#create
- name: az network public-ip delete
description: Delete a public IP address.
href: network/public-ip#delete
- name: az network public-ip list
description: List public IP addresses.
href: network/public-ip#list
- name: az network public-ip show
description: Show details of a public IP address.
href: network/public-ip#show
- name: az network public-ip update
description: Update a public IP address.
href: network/public-ip#update
- name: az network route-filter
description: (PREVIEW) Manage route filters.
href: network/route-filter
isGroup: true
- name: az network route-filter create
description: Create a route filter.
href: network/route-filter#create
- name: az network route-filter delete
description: Delete a route filter.
href: network/route-filter#delete
- name: az network route-filter list
description: List route filters.
href: network/route-filter#list
- name: az network route-filter rule
description: (PREVIEW) Manage rules in a route filter.
href: network/route-filter/rule
isGroup: true
- name: az network route-filter rule create
description: Create a rule in a route filter.
href: network/route-filter/rule#create
- name: az network route-filter rule delete
description: Delete a rule from a route filter.
href: network/route-filter/rule#delete
- name: az network route-filter rule list
description: List rules in a route filter.
href: network/route-filter/rule#list
- name: az network route-filter rule list-service-communities
description: Gets all the available bgp service communities.
href: network/route-filter/rule#list-service-communities
- name: az network route-filter rule show
description: Show details of a rule in a route filter.
href: network/route-filter/rule#show
- name: az network route-filter rule update
description: Update a rule in a route filter.
href: network/route-filter/rule#update
- name: az network route-filter show
description: Show details of a route filter.
href: network/route-filter#show
- name: az network route-filter update
description: Update a route filter.
href: network/route-filter#update
- name: az network route-table
description: Manage route tables.
href: network/route-table
isGroup: true
- name: az network route-table create
description: Create a route table.
href: network/route-table#create
- name: az network route-table delete
description: Delete a route table.
href: network/route-table#delete
- name: az network route-table list
description: List route tables.
href: network/route-table#list
- name: az network route-table route
description: Manage routes in a route table.
href: network/route-table/route
isGroup: true
- name: az network route-table route create
description: Create a route in a route table.
href: network/route-table/route#create
- name: az network route-table route delete
description: Delete a route from a route table.
href: network/route-table/route#delete
- name: az network route-table route list
description: List routes in a route table.
href: network/route-table/route#list
- name: az network route-table route show
description: Show details of a route in a route table.
href: network/route-table/route#show
- name: az network route-table route update
description: Update a route in a route table.
href: network/route-table/route#update
- name: az network route-table show
description: Show details of a route table.
href: network/route-table#show
- name: az network route-table update
description: Update a route table.
href: network/route-table#update
- name: az network traffic-manager
description: Route incoming traffic for high performance and availability.
href: network/traffic-manager
isGroup: true
- name: az network traffic-manager endpoint
description: Manage Traffic Manager end points.
href: network/traffic-manager/endpoint
isGroup: true
- name: az network traffic-manager endpoint create
description: Create an endpoint.
href: network/traffic-manager/endpoint#create
- name: az network traffic-manager endpoint delete
description: Delete an endpoint.
href: network/traffic-manager/endpoint#delete
- name: az network traffic-manager endpoint list
description: List endpoints.
href: network/traffic-manager/endpoint#list
- name: az network traffic-manager endpoint show
description: Show details of an endpoint.
href: network/traffic-manager/endpoint#show
- name: az network traffic-manager endpoint show-geographic-hierarchy
description: Gets the default Geographic Hierarchy used by the Geographic traffic routing method.
href: network/traffic-manager/endpoint#show-geographic-hierarchy
- name: az network traffic-manager endpoint update
description: Update an endpoint.
href: network/traffic-manager/endpoint#update
- name: az network traffic-manager profile
description: Manage Traffic Manager profiles.
href: network/traffic-manager/profile
isGroup: true
- name: az network traffic-manager profile check-dns
description: Check the availability of a relative DNS name.
href: network/traffic-manager/profile#check-dns
- name: az network traffic-manager profile create
description: Create a profile.
href: network/traffic-manager/profile#create
- name: az network traffic-manager profile delete
description: Delete a profile.
href: network/traffic-manager/profile#delete
- name: az network traffic-manager profile list
description: List profiles.
href: network/traffic-manager/profile#list
- name: az network traffic-manager profile show