File: DistributedVirtualSwitch.rst

package info (click to toggle)
python-pyvmomi 6.7.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,984 kB
  • sloc: python: 9,206; xml: 77; makefile: 9
file content (946 lines) | stat: -rw-r--r-- 31,549 bytes parent folder | download | duplicates (3)
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
.. _int: https://docs.python.org/2/library/stdtypes.html

.. _str: https://docs.python.org/2/library/stdtypes.html

.. _bool: https://docs.python.org/2/library/stdtypes.html

.. _policy: ../vim/DistributedVirtualSwitch/ConfigSpec.rst#policy

.. _pvlanId: ../vim/dvs/VmwareDistributedVirtualSwitch/PvlanSpec.rst#pvlanId

.. _maxPorts: ../vim/DistributedVirtualSwitch/ConfigInfo.rst#maxPorts

.. _vim.Task: ../vim/Task.rst

.. _capability: ../vim/DistributedVirtualSwitch.rst#capability

.. _DVSConfigSpec: ../vim/DistributedVirtualSwitch/ConfigSpec.rst

.. _vim.HostSystem: ../vim/HostSystem.rst

.. _vspanConfigSpec: ../vim/dvs/VmwareDistributedVirtualSwitch/ConfigSpec.rst#vspanConfigSpec

.. _vSphere API 5.0: ../vim/version.rst#vimversionversion7

.. _vSphere API 4.0: ../vim/version.rst#vimversionversion5

.. _vSphere API 4.1: ../vim/version.rst#vimversionversion6

.. _vSphere API 5.1: ../vim/version.rst#vimversionversion8

.. _uplinkPortPolicy: ../vim/DistributedVirtualSwitch/ConfigSpec.rst#uplinkPortPolicy

.. _DVSRollback_Task: ../vim/DistributedVirtualSwitch.rst#rollback

.. _defaultPortConfig: ../vim/DistributedVirtualSwitch/ConfigSpec.rst#defaultPortConfig

.. _vim.ManagedEntity: ../vim/ManagedEntity.rst

.. _vim.fault.NotFound: ../vim/fault/NotFound.rst

.. _vim.fault.DvsFault: ../vim/fault/DvsFault.rst

.. _VMwareDVSConfigSpec: ../vim/dvs/VmwareDistributedVirtualSwitch/ConfigSpec.rst

.. _vim.dvs.ProductSpec: ../vim/dvs/ProductSpec.rst

.. _ReconfigureDvs_Task: ../vim/DistributedVirtualSwitch.rst#reconfigure

.. _vim.dvs.PortCriteria: ../vim/dvs/PortCriteria.rst

.. _dvsOperationSupported: ../vim/DistributedVirtualSwitch/Capability.rst#dvsOperationSupported

.. _vim.fault.InvalidName: ../vim/fault/InvalidName.rst

.. _vim.fault.InvalidState: ../vim/fault/InvalidState.rst

.. _vim.fault.ResourceInUse: ../vim/fault/ResourceInUse.rst

.. _vim.fault.LimitExceeded: ../vim/fault/LimitExceeded.rst

.. _vim.fault.AlreadyExists: ../vim/fault/AlreadyExists.rst

.. _vim.fault.DuplicateName: ../vim/fault/DuplicateName.rst

.. _DistributedVirtualSwitch: ../vim/DistributedVirtualSwitch.rst

.. _vmodl.fault.NotSupported: ../vmodl/fault/NotSupported.rst

.. _vim.fault.TaskInProgress: ../vim/fault/TaskInProgress.rst

.. _vim.fault.RollbackFailure: ../vim/fault/RollbackFailure.rst

.. _vim.fault.ConcurrentAccess: ../vim/fault/ConcurrentAccess.rst

.. _vim.fault.InvalidHostState: ../vim/fault/InvalidHostState.rst

.. _vim.fault.DvsNotAuthorized: ../vim/fault/DvsNotAuthorized.rst

.. _DistributedVirtualPortgroup: ../vim/dvs/DistributedVirtualPortgroup.rst

.. _vmodl.fault.InvalidArgument: ../vmodl/fault/InvalidArgument.rst

.. _vim.fault.VspanPortConflict: ../vim/fault/VspanPortConflict.rst

.. _vim.dvs.EntityBackup.Config: ../vim/dvs/EntityBackup/Config.rst

.. _vim.dvs.NetworkResourcePool: ../vim/dvs/NetworkResourcePool.rst

.. _vim.DistributedVirtualSwitch: ../vim/DistributedVirtualSwitch.rst

.. _vim.dvs.DistributedVirtualPort: ../vim/dvs/DistributedVirtualPort.rst

.. _VmwareDistributedVirtualSwitch: ../vim/dvs/VmwareDistributedVirtualSwitch.rst

.. _vim.fault.ResourceNotAvailable: ../vim/fault/ResourceNotAvailable.rst

.. _vim.fault.VspanDestPortConflict: ../vim/fault/VspanDestPortConflict.rst

.. _vim.dvs.DistributedVirtualPortgroup: ../vim/dvs/DistributedVirtualPortgroup.rst

.. _vim.DistributedVirtualSwitch.Summary: ../vim/DistributedVirtualSwitch/Summary.rst

.. _vim.dvs.NetworkResourcePool.ConfigSpec: ../vim/dvs/NetworkResourcePool/ConfigSpec.rst

.. _vim.fault.VspanSameSessionPortConflict: ../vim/fault/VspanSameSessionPortConflict.rst

.. _vim.DistributedVirtualSwitch.Capability: ../vim/DistributedVirtualSwitch/Capability.rst

.. _vim.DistributedVirtualSwitch.ConfigSpec: ../vim/DistributedVirtualSwitch/ConfigSpec.rst

.. _vim.DistributedVirtualSwitch.ConfigInfo: ../vim/DistributedVirtualSwitch/ConfigInfo.rst

.. _vim.DistributedVirtualSwitch.RuntimeInfo: ../vim/DistributedVirtualSwitch/RuntimeInfo.rst

.. _vim.dvs.DistributedVirtualPort.ConfigSpec: ../vim/dvs/DistributedVirtualPort/ConfigSpec.rst

.. _vim.fault.VspanPromiscuousPortNotSupported: ../vim/fault/VspanPromiscuousPortNotSupported.rst

.. _vim.dvs.DistributedVirtualPortgroup.ConfigSpec: ../vim/dvs/DistributedVirtualPortgroup/ConfigSpec.rst

.. _vim.DistributedVirtualSwitch.HealthCheckConfig: ../vim/DistributedVirtualSwitch/HealthCheckConfig.rst


vim.DistributedVirtualSwitch
============================
  A `DistributedVirtualSwitch`_ managed object is a virtual network switch that is located on a vCenter Server. A distributed virtual switch manages configuration for proxy switches ( `HostProxySwitch`_ ). A proxy switch is located on an ESXi host that is managed by the vCenter Server and is a member of the switch. A distributed switch also provides virtual port state management so that port state is maintained when vCenter Server operations move a virtual machine from one host to another.
  A proxy switch performs network I/O to support the following network traffic and operations:
   * Network traffic between virtual machines on any hosts that are members of the distributed virtual switch.
   * Network traffic between virtual machines that uses a distributed switch and a virtual machine that uses a VMware standard switch.
   * Network traffic between a virtual machine and a remote system on a physical network connected to the ESXi host.
   * vSphere system operations to support capabilities such as VMotion or High Availability.
  A `DistributedVirtualSwitch`_ is the base distributed switch implementation. It supports a VMware distributed virtual switch implementation and it supports third party distributed switch implementations. The base implementation provides the following capabilities ( `DVSFeatureCapability`_ ):
   * NIC teaming
   * Network I/O control
   * Network resource allocation
   * Quality of service tag support
   * User-defined resource pools
   * I/O passthrough (VMDirectPath Gen2)
  A `VmwareDistributedVirtualSwitch`_ supports the following additional capabilities ( `DVSFeatureCapability`_ and `VMwareDVSFeatureCapability`_ ):
   * Backup, restore, and rollback for a VMware distributed virtual switch and its associated portgroups.
   * Maximum Transmission Unit (MTU) configuration.
   * Health check operations for NIC teaming and VLAN/MTU support.
   * Monitoring switch traffic using Internet Protocol Flow Information Export (IPFIX).
   * Link Layer Discovery Protocol (LLDP).
   * Virtual network segmentation using a Private VLAN (PVLAN).
   * VLAN-based SPAN (VSPAN) for virtual distributed port mirroring.
   * Link Aggregation Control Protocol (LACP) defined for uplink portgroups.
Distributed Virtual Switch Configuration.
  To use a distributed virtual switch, you create a switch and portgroups on a vCenter Server, and add hosts as members of the switch.
   1. Create a distributed virtual switch ( `Folder.CreateDVS_Task`_ ). Use a `DVSConfigSpec`_ to create a switch for a third-party implementation. Use a `VMwareDVSConfigSpec`_ to create a VMware distributed virtual switch.
   2. Create portgroups ( `CreateDVPortgroup_Task`_ ) for host and virtual machine network connections and for the connection between proxy switches and physical NICs. A `DistributedVirtualPortgroup`_ specifies how virtual ports ( `DistributedVirtualPort`_ ) will be used. When you create a distributed virtual switch, the vCenter Server automatically creates one uplink portgroup ( `config.uplinkPortgroup`_ ). Uplink portgroups are distributed virtual portgroups that support the connection between proxy switches and physical NICs.
      Port creation on a distributed switch is determined by the portgroup type ( `DVPortgroupConfigSpec.type`_ ):
       * If a portgroup is early binding (static), then `DVPortgroupConfigSpec.numPorts`_ determines the number of ports that get created when the portgroup is created. This number can be increased if `DVPortgroupConfigSpec.autoExpand`_ is true.
       * If a portgroup is ephemeral (dynamic), then `numPorts`_ is ignored and ports are created as needed.
      You can also specify standalone ports that are not associated with a port group and uplink ports that are created on ESXi hosts ( `DVSConfigSpec`_ . `numStandalonePorts`_ ).The `DVPortgroupConfigInfo`_ . `numPorts`_ property is the total number of ports for a distributed virtual switch. This total includes the ports generated by the static and dynamic portgroups and the standalone ports.
   3. If you have created additional uplink portgroups, use the `ReconfigureDvs_Task`_ method to add the portgroup(s) to the `DVSConfigSpec.uplinkPortgroup`_ array.
   4. Retrieve physical NIC device names from the host ( `HostSystem.config.network.pnic[].device`_ ).
   5. Add host member(s) to the distributed virtual switch. To configure host members:
     * Specify hosts (`DVSConfigSpec.host[]`_).
     * For each host, specify one or more physical NIC device names to identify the pNIC(s) for the host proxy connection to the network (
     * `DistributedVirtualSwitchHostMemberConfigSpec.backing.pnicSpec[].`pnicDevice`_ )
     * Use the `DistributedVirtualSwitch.ReconfigureDvs_Task`_ method to update the switch configuration.
     When you add a host to a distributed virtual switch ( `DistributedVirtualSwitch`_ . `config`_ . `host`_ ), the host automatically creates a proxy switch. The proxy switch is removed automatically when the host is removed from the distributed virtual switch.
   6. Connect hosts and virtual machines to the distributed virtual switch.

   * Host connection    Specify port or portgroup connections in the host virtual NIC spec ( `HostVirtualNicSpec.distributedVirtualPort`_ or `HostVirtualNicSpec.portgroup`_ ).

   * Virtual machine connection    Specify port or portgroup connections in the distributed virtual port backing ( `VirtualEthernetCardDistributedVirtualPortBackingInfo`_ ) for the virtual Ethernet cards on the virtual machine ( `VirtualEthernetCard.backing`_ ).

Backup, Rollback, and Query Operations
  If you are using a `VmwareDistributedVirtualSwitch`_ , you can perform backup and rollback operations on the switch and its associated distributed virtual portgroups.
  When you reconfigure a VMware distributed virtual switch ( `ReconfigureDvs_Task`_ ), the Server saves the current switch configuration before applying the configuration updates. The saved switch configuration includes portgroup configuration data. The Server uses the saved switch configuration as a checkpoint for rollback operations. You can rollback the switch or portgroup configuration to the saved configuration, or you can rollback to a backup configuration ( `EntityBackupConfig`_ ).
   * To backup the switch and portgroup configuration, use the `DistributedVirtualSwitchManager.DVSManagerExportEntity_Task`_ method. The export method produces a `EntityBackupConfig`_ object. The backup configuration contains the switch and/or portgroups specified in the SelectionSet parameter. To backup the complete configuration you must select the distributed virtual switch and all of its portgroups.
   * To rollback the switch configuration, use the `DVSRollback_Task`_ method to determine if the switch configuration has changed. If it has changed, use the `ReconfigureDvs_Task`_ method to complete the rollback operation.
   * To rollback the portgroup configuration, use the `DistributedVirtualPortgroup.DVPortgroupRollback_Task`_ method to determine if the portgroup configuration has changed. If it has changed, use the `ReconfigureDVPortgroup_Task`_ method to complete the rollback operation.
  To perform query operations on a distributed virtual switch, use the `DistributedVirtualSwitchManager`_ methods.


:extends: vim.ManagedEntity_
:since: `vSphere API 4.0`_


Attributes
----------
    uuid (`str`_):
       Generated UUID of the switch. Unique across vCenter Server inventory and instances.
    capability (`vim.DistributedVirtualSwitch.Capability`_):
       Capability of the switch. Capabilities are indicated at the port, portgroup and switch levels, and for version-specific features. When you retrieve this property from an ESXi host, `capability`_ . `dvsOperationSupported`_ should always be set to false.
    summary (`vim.DistributedVirtualSwitch.Summary`_):
       Summary of the switch.
    config (`vim.DistributedVirtualSwitch.ConfigInfo`_):
       Switch configuration data.
    networkResourcePool ([`vim.dvs.NetworkResourcePool`_]):
       Network resource pool information for the switch.
    portgroup ([`vim.dvs.DistributedVirtualPortgroup`_]):
       Portgroups that are defined on the switch.
    runtime (`vim.DistributedVirtualSwitch.RuntimeInfo`_):
       Runtime information of the distributed virtual switch.


Methods
-------


FetchDVPortKeys(criteria):
   Return the keys of ports that meet the criteria. On an ESXi host, the property shows only the connected ports currently on the host.


  Privilege:
               System.Read



  Args:
    criteria (`vim.dvs.PortCriteria`_, optional):
       The port selection criteria. If unset, the operation returns the keys of all the ports in the switch.




  Returns:
    [`str`_]:



FetchDVPorts(criteria):
   Return the ports that meet the criteria.


  Privilege:
               System.Read



  Args:
    criteria (`vim.dvs.PortCriteria`_, optional):
       The port selection criteria. If unset, the operation returns the keys of all the ports in the portgroup.




  Returns:
    [`vim.dvs.DistributedVirtualPort`_]:



QueryUsedVlanIdInDvs():
   Return the used VLAN ID (PVLAN excluded) in the switch.


  Privilege:
               System.Read



  Args:


  Returns:
    [`int`_]:



ReconfigureDvs(spec):
   Reconfigures a distributed virtual switch. You can use this method to set switch properties or to reset the switch to a previous state.Reconfiguring a Standard Distributed Virtual SwitchTo reconfigure a `DistributedVirtualSwitch`_ , use a `DVSConfigSpec`_ to set the switch properties.Reconfiguring a VMware Distributed Virtual SwitchIf you use a `VmwareDistributedVirtualSwitch`_ , you can perform the following switch reconfiguration:
    * Use a
    * `VMwareDVSConfigSpec`_
    * to set the switch properties.
    * Use the
    * `VMwareDVSConfigSpec`_
    * returned by
    * `DVSRollback_Task`_
    * to reset the switch to a previous state.Reconfiguring the switch may require any of the following privileges, depending on what is being changed:
    * DVSwitch.PolicyOp if
    * `policy`_
    * is set.
    * DVSwitch.PortSetting if
    * `defaultPortConfig`_
    * is set.
    * DVSwitch.HostOp if
    * `policy`_
    * is set. The user will also need the Host.Config.Network privilege on the host.
    * DVSwitch.Vspan if
    * `vspanConfigSpec`_
    * is set.
    * DVSwitch.Modify for anything else.


  Privilege:
               dynamic



  Args:
    spec (`vim.DistributedVirtualSwitch.ConfigSpec`_):
       The configuration of the switch




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.ConcurrentAccess`_:
       vim.fault.ConcurrentAccess

    `vim.fault.DuplicateName`_:
       vim.fault.DuplicateName

    `vim.fault.InvalidState`_:
       vim.fault.InvalidState

    `vim.fault.InvalidName`_:
       vim.fault.InvalidName

    `vim.fault.NotFound`_:
       vim.fault.NotFound

    `vim.fault.AlreadyExists`_:
       vim.fault.AlreadyExists

    `vim.fault.LimitExceeded`_:
       vim.fault.LimitExceeded

    `vim.fault.ResourceInUse`_:
       vim.fault.ResourceInUse

    `vim.fault.ResourceNotAvailable`_:
       If there is no port available in the portgroup

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .

    `vmodl.fault.NotSupported`_:
       if called directly on a host or if the spec includes settings for any vNetwork Distributed Switch feature that is not supported on this switch.

    `vmodl.fault.InvalidArgument`_:
       if any of the hosts being added lack support for any of the overlay classes of the switch's overlay instances.

    `vim.fault.VspanPortConflict`_:
       if dvPort is used as both the transmitted source and destination ports in Distributed Port Mirroring sessions.

    `vim.fault.VspanPromiscuousPortNotSupported`_:
       if a promiscuous port is used as transmitted source or destination in the Distributed Port Mirroring sessions.

    `vim.fault.VspanSameSessionPortConflict`_:
       if a dvPort is used as both the source and destination in the same Distributed Port Mirroring session.

    `vim.fault.VspanDestPortConflict`_:
       if a dvPort is used as desination ports in multiple Distributed Port Mirroring sessions.


PerformDvsProductSpecOperation(operation, productSpec):
   This method updates the `DistributedVirtualSwitch`_ product specifications.


  Privilege:
               DVSwitch.Modify



  Args:
    operation (`str`_):
       The operation. See `DistributedVirtualSwitchProductSpecOperationType`_ for valid values. For `VmwareDistributedVirtualSwitch`_ , only `upgrade`_ is valid.


    productSpec (`vim.dvs.ProductSpec`_, optional):
       The product info of the implementation.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.TaskInProgress`_:
       vim.fault.TaskInProgress

    `vim.fault.InvalidState`_:
       vim.fault.InvalidState

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vmodl.fault.NotSupported`_:
       If called directly on a host.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


MergeDvs(dvs):
   Merge an existing DistributedVirtualSwitch (source) to this switch (destination). The host members and the connected entity of the source switch will be transferred to the destination switch. This operation disconnects the entities from the source switch, tears down its host proxy switches, creates new proxies for the destination switch, and reconnects the entities to the destination switch. In summary, this operation does the following:
    * Adds the config `maxPorts`_ of the source switch to the maxPorts of the destination switch.
    * The host members of the source switch leave the source switch and join the destination switch with the same Physical NIC and VirtualSwitch (if applicable). A set of new uplink ports, compliant with the `uplinkPortPolicy`_, is created as the hosts join the destination switch.
    * The portgroups on the source switch are copied over to destination switch, by calculating the effective default port config and creating a portgroup of the same name in the destination switch. If the name already exists, the copied portgroup uses names following a "Copy of switch-portgroup-name" scheme to avoid conflict. The same number of ports are created inside each copied portgroup.
    * The standalone distributed virtual ports are not copied, unless there is a virtual machine or host virtual NIC connecting to it. In that case, the operation calculates the effective port config and creates a port in the destination switch with the same name. Name conflict is resolved using numbers like "original-port-name(1)". The uplink ports are not copied over.
    * The virtual machine and host virtual NICs are disconnected from the source switch and reconnected with the destination switch, to the copied standalone port or portgroup.
    * If you are using a `VmwareDistributedVirtualSwitch`_
    * - Unless the PVLAN map contains exactly the same entries between the source and destination VMware distributed virtual switches, the method raises a fault if `pvlanId`_ is set in any port, portgroup, or switch that will be copied.


  Privilege:
               DVSwitch.Modify



  Args:
    dvs (`vim.DistributedVirtualSwitch`_):
       The switch (source) to be merged




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.NotFound`_:
       vim.fault.NotFound

    `vim.fault.ResourceInUse`_:
       If failed to delete the source switch

    `vim.fault.InvalidHostState`_:
       vim.fault.InvalidHostState

    `vmodl.fault.NotSupported`_:
       If called directly on a host.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


AddDVPortgroup(spec):
   Creates one or more `DistributedVirtualPortgroup`_ s and adds them to the distributed virtual switch.


  Privilege:
               DVPortgroup.Create



  Args:
    spec (`vim.dvs.DistributedVirtualPortgroup.ConfigSpec`_):
       The specification for the portgroup.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.DuplicateName`_:
       vim.fault.DuplicateName

    `vim.fault.InvalidName`_:
       vim.fault.InvalidName

    `vmodl.fault.NotSupported`_:
       If called directly on a host.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


MoveDVPort(portKey, destinationPortgroupKey):
   Move the ports out of their current portgroup into the specified portgroup. If the moving of any of the ports results in a violation of the portgroup policy, or type of the source or destination portgroup, the operation raises a fault. A conflict port cannot be moved.


  Privilege:
               DVSwitch.Modify



  Args:
    portKey (`str`_):
       The keys of the ports to be moved into the portgroup.


    destinationPortgroupKey (`str`_, optional):
       The key of the portgroup to be moved into. If unset, the port will be moved under the switch.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.NotFound`_:
       vim.fault.NotFound

    `vim.fault.ConcurrentAccess`_:
       vim.fault.ConcurrentAccess

    `vmodl.fault.NotSupported`_:
       If called directly on a host.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


UpdateDvsCapability(capability):
   Set the capability of the switch.


  Privilege:
               DVSwitch.Modify



  Args:
    capability (`vim.DistributedVirtualSwitch.Capability`_):
       The capability of the switch.




  Returns:
    None


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vmodl.fault.NotSupported`_:
       If called directly on a host or if the switch implementation doesn't support this API.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


ReconfigureDVPort(port):
   Reconfigure individual ports.


  Privilege:
               DVSwitch.PortConfig



  Args:
    port (`vim.dvs.DistributedVirtualPort.ConfigSpec`_):
       The specification of the ports.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.NotFound`_:
       vim.fault.NotFound

    `vim.fault.ResourceInUse`_:
       vim.fault.ResourceInUse

    `vim.fault.ConcurrentAccess`_:
       vim.fault.ConcurrentAccess

    `vmodl.fault.NotSupported`_:
       If called directly on a host or if the switch implementation doesn't support this API or if the spec includes settings for any vSphere Distributed Switch feature that is not supported on this switch.

    `vmodl.fault.InvalidArgument`_:
       If the array have different elements for the same port.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


RefreshDVPortState(portKeys):
   Refresh port states.


  Privilege:
               System.Read



  Args:
    portKeys (`str`_, optional):
       The keys of the ports to be refreshed. If not specified, all port states are refreshed.




  Returns:
    None


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.NotFound`_:
       vim.fault.NotFound


RectifyDvsHost(hosts):
   Update the switch configuration on the host to bring them in sync with the current configuration in vCenter Server.


  Privilege:
               System.Read



  Args:
    hosts (`vim.HostSystem`_, optional):
       The hosts to be rectified.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.NotFound`_:
       vim.fault.NotFound


UpdateNetworkResourcePool(configSpec):
   Update the network resource pool configuration.
  since: `vSphere API 4.1`_


  Privilege:
               DVSwitch.ResourceManagement



  Args:
    configSpec (`vim.dvs.NetworkResourcePool.ConfigSpec`_):
       The network resource pool configuration specification.




  Returns:
    None


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.NotFound`_:
       if the resource pool does not exist on the dvs.

    `vim.fault.InvalidName`_:
       if the name of the resource pool is invalid.

    `vim.fault.ConcurrentAccess`_:
       if a network resource pool is modified by two or more clients at the same time.

    `vmodl.fault.NotSupported`_:
       if network I/O control is not supported on the vSphere Distributed Switch.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


AddNetworkResourcePool(configSpec):
   Add a network resource pool.
  since: `vSphere API 5.0`_


  Privilege:
               DVSwitch.ResourceManagement



  Args:
    configSpec (`vim.dvs.NetworkResourcePool.ConfigSpec`_):
       the network resource pool configuration specification.




  Returns:
    None


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.InvalidName`_:
       vim.fault.InvalidName

    `vmodl.fault.NotSupported`_:
       if network I/O control is not supported on the vSphere Distributed Switch.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


RemoveNetworkResourcePool(key):
   Remove a network resource pool.
  since: `vSphere API 5.0`_


  Privilege:
               DVSwitch.ResourceManagement



  Args:
    key (`str`_):
       The network resource pool key.




  Returns:
    None


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.NotFound`_:
       if the resource pool does not exist on the dvs.

    `vim.fault.InvalidName`_:
       if the name of the resource pool is invalid.

    `vim.fault.ResourceInUse`_:
       If network resource pool is associated with a network entity

    `vmodl.fault.NotSupported`_:
       if network I/O control is not supported on the vSphere Distributed Switch.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


EnableNetworkResourceManagement(enable):
   Enable/Disable network I/O control on the vSphere Distributed Switch.
  since: `vSphere API 4.1`_


  Privilege:
               DVSwitch.ResourceManagement



  Args:
    enable (`bool`_):
       If true, enables I/O control. If false, disables network I/O control.




  Returns:
    None


  Raises:

    `vim.fault.DvsFault`_:
       if the enabling/disabling fails.

    `vmodl.fault.NotSupported`_:
       if network I/O control is not supported on the vSphere Distributed Switch.

    `vim.fault.DvsNotAuthorized`_:
       if login-session's extension key does not match the switch's configured `extensionKey`_ .


DVSRollback(entityBackup):
   This method determines if the distributed virtual switch configuration has changed. If it has changed, the method returns a `VMwareDVSConfigSpec`_ . Use the `ReconfigureDvs_Task`_ method to apply the rollback configuration to the switch. You can use the rollback method only on a `VmwareDistributedVirtualSwitch`_ .
    * If you specify the
    * entityBackup
    * parameter, the returned configuration specification represents the exported switch configuration. If the
    * entityBackup
    * matches the current switch configuration, the method does not return a configuration specification.
    * If
    * entityBackup
    * is not specified, the returned configuration specification represents a previous state of the switch, if available. When you use a VMware distributed virtual switch, each time you reconfigure the switch, the Server saves the switch configuration before applying the updates. If the vCenter Server is restarted, the saved configuration is not preserved and the method does not return a configuration specification.To use the rollback method, you must have the DVSwitch.Read privilege.
  since: `vSphere API 5.1`_


  Privilege:
               dynamic



  Args:
    entityBackup (`vim.dvs.EntityBackup.Config`_, optional):
       Backup of a distributed virtual switch, returned by the `DVSManagerExportEntity_Task`_ method.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails.

    `vim.fault.RollbackFailure`_:
       if there is no configuration specified in entityBackup and the previous configuration does not exist either.


CreateDVPortgroup(spec):
   Creates a single `DistributedVirtualPortgroup`_ and adds it to the distributed virtual switch.
  since: `vSphere API 5.1`_


  Privilege:
               DVPortgroup.Create



  Args:
    spec (`vim.dvs.DistributedVirtualPortgroup.ConfigSpec`_):
       The specification for the portgroup.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vim.fault.DuplicateName`_:
       if a portgroup with the same name already exists

    `vim.fault.InvalidName`_:
       if name of the portgroup is invalid


UpdateDVSHealthCheckConfig(healthCheckConfig):
   Update health check configuration.
  since: `vSphere API 5.1`_


  Privilege:
               DVSwitch.Modify



  Args:
    healthCheckConfig (`vim.DistributedVirtualSwitch.HealthCheckConfig`_):
       The health check configuration.




  Returns:
     `vim.Task`_:


  Raises:

    `vim.fault.DvsFault`_:
       if operation fails on any host or if there are other update failures.

    `vmodl.fault.NotSupported`_:
       if health check is not supported on the switch.


LookupDvPortGroup(portgroupKey):
   Returns the portgroup identified by the key within this VDS.
  since: `vSphere API 5.1`_


  Privilege:
               System.Read



  Args:
    portgroupKey (`str`_):
       The key that identifies a portgroup of this VDS.




  Returns:
    `vim.dvs.DistributedVirtualPortgroup`_:


  Raises:

    `vim.fault.NotFound`_:
       If the portgroup for the specified key is not found.

    `vmodl.fault.NotSupported`_:
       If the operation is not supported.