pulumi-vsphere 4.11.0a1__py3-none-any.whl → 4.11.0a1711033215__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-vsphere might be problematic. Click here for more details.

Files changed (58) hide show
  1. pulumi_vsphere/__init__.py +0 -28
  2. pulumi_vsphere/_inputs.py +230 -554
  3. pulumi_vsphere/compute_cluster.py +1477 -747
  4. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +16 -28
  5. pulumi_vsphere/datacenter.py +12 -26
  6. pulumi_vsphere/datastore_cluster.py +350 -154
  7. pulumi_vsphere/distributed_port_group.py +175 -70
  8. pulumi_vsphere/distributed_virtual_switch.py +805 -308
  9. pulumi_vsphere/file.py +24 -16
  10. pulumi_vsphere/folder.py +7 -7
  11. pulumi_vsphere/get_compute_cluster.py +4 -0
  12. pulumi_vsphere/get_compute_cluster_host_group.py +10 -8
  13. pulumi_vsphere/get_content_library.py +4 -0
  14. pulumi_vsphere/get_custom_attribute.py +4 -0
  15. pulumi_vsphere/get_datacenter.py +4 -0
  16. pulumi_vsphere/get_datastore.py +4 -0
  17. pulumi_vsphere/get_datastore_cluster.py +4 -0
  18. pulumi_vsphere/get_datastore_stats.py +12 -4
  19. pulumi_vsphere/get_distributed_virtual_switch.py +4 -2
  20. pulumi_vsphere/get_dynamic.py +8 -4
  21. pulumi_vsphere/get_folder.py +6 -10
  22. pulumi_vsphere/get_guest_os_customization.py +4 -0
  23. pulumi_vsphere/get_host.py +4 -0
  24. pulumi_vsphere/get_host_pci_device.py +12 -4
  25. pulumi_vsphere/get_host_thumbprint.py +4 -0
  26. pulumi_vsphere/get_host_vgpu_profile.py +8 -0
  27. pulumi_vsphere/get_license.py +4 -0
  28. pulumi_vsphere/get_network.py +4 -0
  29. pulumi_vsphere/get_policy.py +4 -0
  30. pulumi_vsphere/get_resource_pool.py +10 -2
  31. pulumi_vsphere/get_role.py +4 -0
  32. pulumi_vsphere/get_tag.py +4 -0
  33. pulumi_vsphere/get_tag_category.py +4 -0
  34. pulumi_vsphere/get_vapp_container.py +4 -0
  35. pulumi_vsphere/get_virtual_machine.py +8 -0
  36. pulumi_vsphere/get_vmfs_disks.py +4 -0
  37. pulumi_vsphere/guest_os_customization.py +0 -50
  38. pulumi_vsphere/ha_vm_override.py +378 -189
  39. pulumi_vsphere/host.py +20 -0
  40. pulumi_vsphere/host_port_group.py +24 -12
  41. pulumi_vsphere/host_virtual_switch.py +287 -140
  42. pulumi_vsphere/license.py +32 -0
  43. pulumi_vsphere/outputs.py +230 -543
  44. pulumi_vsphere/pulumi-plugin.json +1 -2
  45. pulumi_vsphere/resource_pool.py +22 -48
  46. pulumi_vsphere/virtual_machine.py +807 -578
  47. pulumi_vsphere/virtual_machine_snapshot.py +10 -6
  48. pulumi_vsphere/vm_storage_policy.py +84 -72
  49. pulumi_vsphere/vnic.py +20 -8
  50. {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1711033215.dist-info}/METADATA +1 -1
  51. pulumi_vsphere-4.11.0a1711033215.dist-info/RECORD +82 -0
  52. pulumi_vsphere/get_host_base_images.py +0 -97
  53. pulumi_vsphere/offline_software_depot.py +0 -180
  54. pulumi_vsphere/supervisor.py +0 -858
  55. pulumi_vsphere/virtual_machine_class.py +0 -440
  56. pulumi_vsphere-4.11.0a1.dist-info/RECORD +0 -86
  57. {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1711033215.dist-info}/WHEEL +0 -0
  58. {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1711033215.dist-info}/top_level.txt +0 -0
@@ -78,7 +78,8 @@ class DistributedPortGroupArgs:
78
78
  may lead to errors when the port count grows past the amount specified. If you
79
79
  specify `number_of_ports`, you may wish to set `auto_expand` to `false`.
80
80
  :param pulumi.Input[bool] block_all_ports: Indicates whether to block all ports by default.
81
- :param pulumi.Input[bool] block_override_allowed: Allow the blocked setting of an individual port to override the setting in the portgroup.
81
+ :param pulumi.Input[bool] block_override_allowed: Allow the port shutdown
82
+ policy to be overridden on an individual port.
82
83
  :param pulumi.Input[bool] check_beacon: Enable beacon probing on the ports this policy applies to.
83
84
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] custom_attributes: Map of custom attribute ids to attribute
84
85
  value string to set for port group.
@@ -98,38 +99,52 @@ class DistributedPortGroupArgs:
98
99
  :param pulumi.Input[int] ingress_shaping_peak_bandwidth: The peak ingress bandwidth during bursts in bits per second if ingress traffic shaping is enabled on the port.
99
100
  :param pulumi.Input[bool] lacp_enabled: Whether or not to enable LACP on all uplink ports.
100
101
  :param pulumi.Input[str] lacp_mode: The uplink LACP mode to use. Can be one of active or passive.
101
- :param pulumi.Input[bool] live_port_moving_allowed: Allow a live port to be moved in and out of the portgroup.
102
+ :param pulumi.Input[bool] live_port_moving_allowed: Allow a port in this port group to be
103
+ moved to another port group while it is connected.
102
104
  :param pulumi.Input[str] name: The name of the port group.
103
105
  :param pulumi.Input[bool] netflow_enabled: Indicates whether to enable netflow on all ports.
104
- :param pulumi.Input[bool] netflow_override_allowed: Allow the enabling or disabling of Netflow on a port, contrary to the policy in the portgroup.
106
+ :param pulumi.Input[bool] netflow_override_allowed: Allow the
107
+ [Netflow policy][netflow-policy] on this port group to be overridden on an
108
+ individual port.
105
109
  :param pulumi.Input[str] network_resource_pool_key: The key of a network resource pool
106
110
  to associate with this port group. The default is `-1`, which implies no
107
111
  association.
108
- :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network resource pool of an individual port to override the setting in the portgroup.
112
+ :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network
113
+ resource pool set on this port group to be overridden on an individual port.
109
114
  :param pulumi.Input[bool] notify_switches: If true, the teaming policy will notify the broadcast network of a NIC failover, triggering cache updates.
110
115
  :param pulumi.Input[int] number_of_ports: The number of ports available on this port
111
116
  group. Cannot be decreased below the amount of used ports on the port group.
112
- :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset the setting of any ports in this portgroup back to the default setting when the port disconnects.
117
+ :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset a port's settings to the
118
+ settings defined on this port group policy when the port disconnects.
113
119
  :param pulumi.Input[str] port_name_format: An optional formatting policy for naming of
114
120
  the ports in this port group. See the `portNameFormat` attribute listed
115
121
  [here][ext-vsphere-portname-format] for details on the format syntax.
116
122
 
117
123
  [ext-vsphere-portname-format]: https://vdc-download.vmware.com/vmwb-repository/dcr-public/b50dcbbf-051d-4204-a3e7-e1b618c1e384/538cf2ec-b34f-4bae-a332-3820ef9e7773/vim.dvs.DistributedVirtualPortgroup.ConfigInfo.html#portNameFormat
118
124
  :param pulumi.Input[int] port_private_secondary_vlan_id: The secondary VLAN ID for this port.
119
- :param pulumi.Input[bool] security_policy_override_allowed: Allow security policy settings on a port to override those on the portgroup.
120
- :param pulumi.Input[bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
125
+ :param pulumi.Input[bool] security_policy_override_allowed: Allow the
126
+ [security policy settings][sec-policy-settings] defined in this port group
127
+ policy to be overridden on an individual port.
128
+ :param pulumi.Input[bool] shaping_override_allowed: Allow the
129
+ [traffic shaping options][traffic-shaping-settings] on this port group policy
130
+ to be overridden on an individual port.
121
131
  :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
122
132
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag IDs to apply to this object.
123
133
  :param pulumi.Input[str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
124
134
  failover_explicit, or loadbalance_loadbased.
125
- :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
135
+ :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any traffic filters on
136
+ this port group to be overridden on an individual port.
126
137
  :param pulumi.Input[bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
127
138
  forwarded done by the switch.
128
139
  :param pulumi.Input[str] type: The port group type. Can be one of `earlyBinding` (static
129
140
  binding) or `ephemeral`. Default: `earlyBinding`.
130
- :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
141
+ :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the
142
+ [uplink teaming options][uplink-teaming-settings] on this port group to be
143
+ overridden on an individual port.
131
144
  :param pulumi.Input[int] vlan_id: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
132
- :param pulumi.Input[bool] vlan_override_allowed: Allow the VLAN configuration on a port to override those on the portgroup.
145
+ :param pulumi.Input[bool] vlan_override_allowed: Allow the
146
+ [VLAN settings][vlan-settings] on this port group to be overridden on an
147
+ individual port.
133
148
  :param pulumi.Input[Sequence[pulumi.Input['DistributedPortGroupVlanRangeArgs']]] vlan_ranges: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
134
149
  """
135
150
  pulumi.set(__self__, "distributed_virtual_switch_uuid", distributed_virtual_switch_uuid)
@@ -319,7 +334,8 @@ class DistributedPortGroupArgs:
319
334
  @pulumi.getter(name="blockOverrideAllowed")
320
335
  def block_override_allowed(self) -> Optional[pulumi.Input[bool]]:
321
336
  """
322
- Allow the blocked setting of an individual port to override the setting in the portgroup.
337
+ Allow the port shutdown
338
+ policy to be overridden on an individual port.
323
339
  """
324
340
  return pulumi.get(self, "block_override_allowed")
325
341
 
@@ -515,7 +531,8 @@ class DistributedPortGroupArgs:
515
531
  @pulumi.getter(name="livePortMovingAllowed")
516
532
  def live_port_moving_allowed(self) -> Optional[pulumi.Input[bool]]:
517
533
  """
518
- Allow a live port to be moved in and out of the portgroup.
534
+ Allow a port in this port group to be
535
+ moved to another port group while it is connected.
519
536
  """
520
537
  return pulumi.get(self, "live_port_moving_allowed")
521
538
 
@@ -551,7 +568,9 @@ class DistributedPortGroupArgs:
551
568
  @pulumi.getter(name="netflowOverrideAllowed")
552
569
  def netflow_override_allowed(self) -> Optional[pulumi.Input[bool]]:
553
570
  """
554
- Allow the enabling or disabling of Netflow on a port, contrary to the policy in the portgroup.
571
+ Allow the
572
+ [Netflow policy][netflow-policy] on this port group to be overridden on an
573
+ individual port.
555
574
  """
556
575
  return pulumi.get(self, "netflow_override_allowed")
557
576
 
@@ -577,7 +596,8 @@ class DistributedPortGroupArgs:
577
596
  @pulumi.getter(name="networkResourcePoolOverrideAllowed")
578
597
  def network_resource_pool_override_allowed(self) -> Optional[pulumi.Input[bool]]:
579
598
  """
580
- Allow the network resource pool of an individual port to override the setting in the portgroup.
599
+ Allow the network
600
+ resource pool set on this port group to be overridden on an individual port.
581
601
  """
582
602
  return pulumi.get(self, "network_resource_pool_override_allowed")
583
603
 
@@ -614,7 +634,8 @@ class DistributedPortGroupArgs:
614
634
  @pulumi.getter(name="portConfigResetAtDisconnect")
615
635
  def port_config_reset_at_disconnect(self) -> Optional[pulumi.Input[bool]]:
616
636
  """
617
- Reset the setting of any ports in this portgroup back to the default setting when the port disconnects.
637
+ Reset a port's settings to the
638
+ settings defined on this port group policy when the port disconnects.
618
639
  """
619
640
  return pulumi.get(self, "port_config_reset_at_disconnect")
620
641
 
@@ -654,7 +675,9 @@ class DistributedPortGroupArgs:
654
675
  @pulumi.getter(name="securityPolicyOverrideAllowed")
655
676
  def security_policy_override_allowed(self) -> Optional[pulumi.Input[bool]]:
656
677
  """
657
- Allow security policy settings on a port to override those on the portgroup.
678
+ Allow the
679
+ [security policy settings][sec-policy-settings] defined in this port group
680
+ policy to be overridden on an individual port.
658
681
  """
659
682
  return pulumi.get(self, "security_policy_override_allowed")
660
683
 
@@ -666,7 +689,9 @@ class DistributedPortGroupArgs:
666
689
  @pulumi.getter(name="shapingOverrideAllowed")
667
690
  def shaping_override_allowed(self) -> Optional[pulumi.Input[bool]]:
668
691
  """
669
- Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
692
+ Allow the
693
+ [traffic shaping options][traffic-shaping-settings] on this port group policy
694
+ to be overridden on an individual port.
670
695
  """
671
696
  return pulumi.get(self, "shaping_override_allowed")
672
697
 
@@ -715,7 +740,8 @@ class DistributedPortGroupArgs:
715
740
  @pulumi.getter(name="trafficFilterOverrideAllowed")
716
741
  def traffic_filter_override_allowed(self) -> Optional[pulumi.Input[bool]]:
717
742
  """
718
- Allow any filter policies set on the individual port to override those in the portgroup.
743
+ Allow any traffic filters on
744
+ this port group to be overridden on an individual port.
719
745
  """
720
746
  return pulumi.get(self, "traffic_filter_override_allowed")
721
747
 
@@ -753,7 +779,9 @@ class DistributedPortGroupArgs:
753
779
  @pulumi.getter(name="uplinkTeamingOverrideAllowed")
754
780
  def uplink_teaming_override_allowed(self) -> Optional[pulumi.Input[bool]]:
755
781
  """
756
- Allow the uplink teaming policies on a port to override those on the portgroup.
782
+ Allow the
783
+ [uplink teaming options][uplink-teaming-settings] on this port group to be
784
+ overridden on an individual port.
757
785
  """
758
786
  return pulumi.get(self, "uplink_teaming_override_allowed")
759
787
 
@@ -777,7 +805,9 @@ class DistributedPortGroupArgs:
777
805
  @pulumi.getter(name="vlanOverrideAllowed")
778
806
  def vlan_override_allowed(self) -> Optional[pulumi.Input[bool]]:
779
807
  """
780
- Allow the VLAN configuration on a port to override those on the portgroup.
808
+ Allow the
809
+ [VLAN settings][vlan-settings] on this port group to be overridden on an
810
+ individual port.
781
811
  """
782
812
  return pulumi.get(self, "vlan_override_allowed")
783
813
 
@@ -863,7 +893,8 @@ class _DistributedPortGroupState:
863
893
  may lead to errors when the port count grows past the amount specified. If you
864
894
  specify `number_of_ports`, you may wish to set `auto_expand` to `false`.
865
895
  :param pulumi.Input[bool] block_all_ports: Indicates whether to block all ports by default.
866
- :param pulumi.Input[bool] block_override_allowed: Allow the blocked setting of an individual port to override the setting in the portgroup.
896
+ :param pulumi.Input[bool] block_override_allowed: Allow the port shutdown
897
+ policy to be overridden on an individual port.
867
898
  :param pulumi.Input[bool] check_beacon: Enable beacon probing on the ports this policy applies to.
868
899
  :param pulumi.Input[str] config_version: The current version of the port group configuration,
869
900
  incremented by subsequent updates to the port group.
@@ -888,38 +919,52 @@ class _DistributedPortGroupState:
888
919
  :param pulumi.Input[str] key: The generated UUID of the port group.
889
920
  :param pulumi.Input[bool] lacp_enabled: Whether or not to enable LACP on all uplink ports.
890
921
  :param pulumi.Input[str] lacp_mode: The uplink LACP mode to use. Can be one of active or passive.
891
- :param pulumi.Input[bool] live_port_moving_allowed: Allow a live port to be moved in and out of the portgroup.
922
+ :param pulumi.Input[bool] live_port_moving_allowed: Allow a port in this port group to be
923
+ moved to another port group while it is connected.
892
924
  :param pulumi.Input[str] name: The name of the port group.
893
925
  :param pulumi.Input[bool] netflow_enabled: Indicates whether to enable netflow on all ports.
894
- :param pulumi.Input[bool] netflow_override_allowed: Allow the enabling or disabling of Netflow on a port, contrary to the policy in the portgroup.
926
+ :param pulumi.Input[bool] netflow_override_allowed: Allow the
927
+ [Netflow policy][netflow-policy] on this port group to be overridden on an
928
+ individual port.
895
929
  :param pulumi.Input[str] network_resource_pool_key: The key of a network resource pool
896
930
  to associate with this port group. The default is `-1`, which implies no
897
931
  association.
898
- :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network resource pool of an individual port to override the setting in the portgroup.
932
+ :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network
933
+ resource pool set on this port group to be overridden on an individual port.
899
934
  :param pulumi.Input[bool] notify_switches: If true, the teaming policy will notify the broadcast network of a NIC failover, triggering cache updates.
900
935
  :param pulumi.Input[int] number_of_ports: The number of ports available on this port
901
936
  group. Cannot be decreased below the amount of used ports on the port group.
902
- :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset the setting of any ports in this portgroup back to the default setting when the port disconnects.
937
+ :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset a port's settings to the
938
+ settings defined on this port group policy when the port disconnects.
903
939
  :param pulumi.Input[str] port_name_format: An optional formatting policy for naming of
904
940
  the ports in this port group. See the `portNameFormat` attribute listed
905
941
  [here][ext-vsphere-portname-format] for details on the format syntax.
906
942
 
907
943
  [ext-vsphere-portname-format]: https://vdc-download.vmware.com/vmwb-repository/dcr-public/b50dcbbf-051d-4204-a3e7-e1b618c1e384/538cf2ec-b34f-4bae-a332-3820ef9e7773/vim.dvs.DistributedVirtualPortgroup.ConfigInfo.html#portNameFormat
908
944
  :param pulumi.Input[int] port_private_secondary_vlan_id: The secondary VLAN ID for this port.
909
- :param pulumi.Input[bool] security_policy_override_allowed: Allow security policy settings on a port to override those on the portgroup.
910
- :param pulumi.Input[bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
945
+ :param pulumi.Input[bool] security_policy_override_allowed: Allow the
946
+ [security policy settings][sec-policy-settings] defined in this port group
947
+ policy to be overridden on an individual port.
948
+ :param pulumi.Input[bool] shaping_override_allowed: Allow the
949
+ [traffic shaping options][traffic-shaping-settings] on this port group policy
950
+ to be overridden on an individual port.
911
951
  :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
912
952
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag IDs to apply to this object.
913
953
  :param pulumi.Input[str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
914
954
  failover_explicit, or loadbalance_loadbased.
915
- :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
955
+ :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any traffic filters on
956
+ this port group to be overridden on an individual port.
916
957
  :param pulumi.Input[bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
917
958
  forwarded done by the switch.
918
959
  :param pulumi.Input[str] type: The port group type. Can be one of `earlyBinding` (static
919
960
  binding) or `ephemeral`. Default: `earlyBinding`.
920
- :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
961
+ :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the
962
+ [uplink teaming options][uplink-teaming-settings] on this port group to be
963
+ overridden on an individual port.
921
964
  :param pulumi.Input[int] vlan_id: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
922
- :param pulumi.Input[bool] vlan_override_allowed: Allow the VLAN configuration on a port to override those on the portgroup.
965
+ :param pulumi.Input[bool] vlan_override_allowed: Allow the
966
+ [VLAN settings][vlan-settings] on this port group to be overridden on an
967
+ individual port.
923
968
  :param pulumi.Input[Sequence[pulumi.Input['DistributedPortGroupVlanRangeArgs']]] vlan_ranges: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
924
969
  """
925
970
  if active_uplinks is not None:
@@ -1101,7 +1146,8 @@ class _DistributedPortGroupState:
1101
1146
  @pulumi.getter(name="blockOverrideAllowed")
1102
1147
  def block_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1103
1148
  """
1104
- Allow the blocked setting of an individual port to override the setting in the portgroup.
1149
+ Allow the port shutdown
1150
+ policy to be overridden on an individual port.
1105
1151
  """
1106
1152
  return pulumi.get(self, "block_override_allowed")
1107
1153
 
@@ -1335,7 +1381,8 @@ class _DistributedPortGroupState:
1335
1381
  @pulumi.getter(name="livePortMovingAllowed")
1336
1382
  def live_port_moving_allowed(self) -> Optional[pulumi.Input[bool]]:
1337
1383
  """
1338
- Allow a live port to be moved in and out of the portgroup.
1384
+ Allow a port in this port group to be
1385
+ moved to another port group while it is connected.
1339
1386
  """
1340
1387
  return pulumi.get(self, "live_port_moving_allowed")
1341
1388
 
@@ -1371,7 +1418,9 @@ class _DistributedPortGroupState:
1371
1418
  @pulumi.getter(name="netflowOverrideAllowed")
1372
1419
  def netflow_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1373
1420
  """
1374
- Allow the enabling or disabling of Netflow on a port, contrary to the policy in the portgroup.
1421
+ Allow the
1422
+ [Netflow policy][netflow-policy] on this port group to be overridden on an
1423
+ individual port.
1375
1424
  """
1376
1425
  return pulumi.get(self, "netflow_override_allowed")
1377
1426
 
@@ -1397,7 +1446,8 @@ class _DistributedPortGroupState:
1397
1446
  @pulumi.getter(name="networkResourcePoolOverrideAllowed")
1398
1447
  def network_resource_pool_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1399
1448
  """
1400
- Allow the network resource pool of an individual port to override the setting in the portgroup.
1449
+ Allow the network
1450
+ resource pool set on this port group to be overridden on an individual port.
1401
1451
  """
1402
1452
  return pulumi.get(self, "network_resource_pool_override_allowed")
1403
1453
 
@@ -1434,7 +1484,8 @@ class _DistributedPortGroupState:
1434
1484
  @pulumi.getter(name="portConfigResetAtDisconnect")
1435
1485
  def port_config_reset_at_disconnect(self) -> Optional[pulumi.Input[bool]]:
1436
1486
  """
1437
- Reset the setting of any ports in this portgroup back to the default setting when the port disconnects.
1487
+ Reset a port's settings to the
1488
+ settings defined on this port group policy when the port disconnects.
1438
1489
  """
1439
1490
  return pulumi.get(self, "port_config_reset_at_disconnect")
1440
1491
 
@@ -1474,7 +1525,9 @@ class _DistributedPortGroupState:
1474
1525
  @pulumi.getter(name="securityPolicyOverrideAllowed")
1475
1526
  def security_policy_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1476
1527
  """
1477
- Allow security policy settings on a port to override those on the portgroup.
1528
+ Allow the
1529
+ [security policy settings][sec-policy-settings] defined in this port group
1530
+ policy to be overridden on an individual port.
1478
1531
  """
1479
1532
  return pulumi.get(self, "security_policy_override_allowed")
1480
1533
 
@@ -1486,7 +1539,9 @@ class _DistributedPortGroupState:
1486
1539
  @pulumi.getter(name="shapingOverrideAllowed")
1487
1540
  def shaping_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1488
1541
  """
1489
- Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
1542
+ Allow the
1543
+ [traffic shaping options][traffic-shaping-settings] on this port group policy
1544
+ to be overridden on an individual port.
1490
1545
  """
1491
1546
  return pulumi.get(self, "shaping_override_allowed")
1492
1547
 
@@ -1535,7 +1590,8 @@ class _DistributedPortGroupState:
1535
1590
  @pulumi.getter(name="trafficFilterOverrideAllowed")
1536
1591
  def traffic_filter_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1537
1592
  """
1538
- Allow any filter policies set on the individual port to override those in the portgroup.
1593
+ Allow any traffic filters on
1594
+ this port group to be overridden on an individual port.
1539
1595
  """
1540
1596
  return pulumi.get(self, "traffic_filter_override_allowed")
1541
1597
 
@@ -1573,7 +1629,9 @@ class _DistributedPortGroupState:
1573
1629
  @pulumi.getter(name="uplinkTeamingOverrideAllowed")
1574
1630
  def uplink_teaming_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1575
1631
  """
1576
- Allow the uplink teaming policies on a port to override those on the portgroup.
1632
+ Allow the
1633
+ [uplink teaming options][uplink-teaming-settings] on this port group to be
1634
+ overridden on an individual port.
1577
1635
  """
1578
1636
  return pulumi.get(self, "uplink_teaming_override_allowed")
1579
1637
 
@@ -1597,7 +1655,9 @@ class _DistributedPortGroupState:
1597
1655
  @pulumi.getter(name="vlanOverrideAllowed")
1598
1656
  def vlan_override_allowed(self) -> Optional[pulumi.Input[bool]]:
1599
1657
  """
1600
- Allow the VLAN configuration on a port to override those on the portgroup.
1658
+ Allow the
1659
+ [VLAN settings][vlan-settings] on this port group to be overridden on an
1660
+ individual port.
1601
1661
  """
1602
1662
  return pulumi.get(self, "vlan_override_allowed")
1603
1663
 
@@ -1686,7 +1746,8 @@ class DistributedPortGroup(pulumi.CustomResource):
1686
1746
  may lead to errors when the port count grows past the amount specified. If you
1687
1747
  specify `number_of_ports`, you may wish to set `auto_expand` to `false`.
1688
1748
  :param pulumi.Input[bool] block_all_ports: Indicates whether to block all ports by default.
1689
- :param pulumi.Input[bool] block_override_allowed: Allow the blocked setting of an individual port to override the setting in the portgroup.
1749
+ :param pulumi.Input[bool] block_override_allowed: Allow the port shutdown
1750
+ policy to be overridden on an individual port.
1690
1751
  :param pulumi.Input[bool] check_beacon: Enable beacon probing on the ports this policy applies to.
1691
1752
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] custom_attributes: Map of custom attribute ids to attribute
1692
1753
  value string to set for port group.
@@ -1708,38 +1769,52 @@ class DistributedPortGroup(pulumi.CustomResource):
1708
1769
  :param pulumi.Input[int] ingress_shaping_peak_bandwidth: The peak ingress bandwidth during bursts in bits per second if ingress traffic shaping is enabled on the port.
1709
1770
  :param pulumi.Input[bool] lacp_enabled: Whether or not to enable LACP on all uplink ports.
1710
1771
  :param pulumi.Input[str] lacp_mode: The uplink LACP mode to use. Can be one of active or passive.
1711
- :param pulumi.Input[bool] live_port_moving_allowed: Allow a live port to be moved in and out of the portgroup.
1772
+ :param pulumi.Input[bool] live_port_moving_allowed: Allow a port in this port group to be
1773
+ moved to another port group while it is connected.
1712
1774
  :param pulumi.Input[str] name: The name of the port group.
1713
1775
  :param pulumi.Input[bool] netflow_enabled: Indicates whether to enable netflow on all ports.
1714
- :param pulumi.Input[bool] netflow_override_allowed: Allow the enabling or disabling of Netflow on a port, contrary to the policy in the portgroup.
1776
+ :param pulumi.Input[bool] netflow_override_allowed: Allow the
1777
+ [Netflow policy][netflow-policy] on this port group to be overridden on an
1778
+ individual port.
1715
1779
  :param pulumi.Input[str] network_resource_pool_key: The key of a network resource pool
1716
1780
  to associate with this port group. The default is `-1`, which implies no
1717
1781
  association.
1718
- :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network resource pool of an individual port to override the setting in the portgroup.
1782
+ :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network
1783
+ resource pool set on this port group to be overridden on an individual port.
1719
1784
  :param pulumi.Input[bool] notify_switches: If true, the teaming policy will notify the broadcast network of a NIC failover, triggering cache updates.
1720
1785
  :param pulumi.Input[int] number_of_ports: The number of ports available on this port
1721
1786
  group. Cannot be decreased below the amount of used ports on the port group.
1722
- :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset the setting of any ports in this portgroup back to the default setting when the port disconnects.
1787
+ :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset a port's settings to the
1788
+ settings defined on this port group policy when the port disconnects.
1723
1789
  :param pulumi.Input[str] port_name_format: An optional formatting policy for naming of
1724
1790
  the ports in this port group. See the `portNameFormat` attribute listed
1725
1791
  [here][ext-vsphere-portname-format] for details on the format syntax.
1726
1792
 
1727
1793
  [ext-vsphere-portname-format]: https://vdc-download.vmware.com/vmwb-repository/dcr-public/b50dcbbf-051d-4204-a3e7-e1b618c1e384/538cf2ec-b34f-4bae-a332-3820ef9e7773/vim.dvs.DistributedVirtualPortgroup.ConfigInfo.html#portNameFormat
1728
1794
  :param pulumi.Input[int] port_private_secondary_vlan_id: The secondary VLAN ID for this port.
1729
- :param pulumi.Input[bool] security_policy_override_allowed: Allow security policy settings on a port to override those on the portgroup.
1730
- :param pulumi.Input[bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
1795
+ :param pulumi.Input[bool] security_policy_override_allowed: Allow the
1796
+ [security policy settings][sec-policy-settings] defined in this port group
1797
+ policy to be overridden on an individual port.
1798
+ :param pulumi.Input[bool] shaping_override_allowed: Allow the
1799
+ [traffic shaping options][traffic-shaping-settings] on this port group policy
1800
+ to be overridden on an individual port.
1731
1801
  :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
1732
1802
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag IDs to apply to this object.
1733
1803
  :param pulumi.Input[str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
1734
1804
  failover_explicit, or loadbalance_loadbased.
1735
- :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
1805
+ :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any traffic filters on
1806
+ this port group to be overridden on an individual port.
1736
1807
  :param pulumi.Input[bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
1737
1808
  forwarded done by the switch.
1738
1809
  :param pulumi.Input[str] type: The port group type. Can be one of `earlyBinding` (static
1739
1810
  binding) or `ephemeral`. Default: `earlyBinding`.
1740
- :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
1811
+ :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the
1812
+ [uplink teaming options][uplink-teaming-settings] on this port group to be
1813
+ overridden on an individual port.
1741
1814
  :param pulumi.Input[int] vlan_id: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
1742
- :param pulumi.Input[bool] vlan_override_allowed: Allow the VLAN configuration on a port to override those on the portgroup.
1815
+ :param pulumi.Input[bool] vlan_override_allowed: Allow the
1816
+ [VLAN settings][vlan-settings] on this port group to be overridden on an
1817
+ individual port.
1743
1818
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DistributedPortGroupVlanRangeArgs']]]] vlan_ranges: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
1744
1819
  """
1745
1820
  ...
@@ -1947,7 +2022,8 @@ class DistributedPortGroup(pulumi.CustomResource):
1947
2022
  may lead to errors when the port count grows past the amount specified. If you
1948
2023
  specify `number_of_ports`, you may wish to set `auto_expand` to `false`.
1949
2024
  :param pulumi.Input[bool] block_all_ports: Indicates whether to block all ports by default.
1950
- :param pulumi.Input[bool] block_override_allowed: Allow the blocked setting of an individual port to override the setting in the portgroup.
2025
+ :param pulumi.Input[bool] block_override_allowed: Allow the port shutdown
2026
+ policy to be overridden on an individual port.
1951
2027
  :param pulumi.Input[bool] check_beacon: Enable beacon probing on the ports this policy applies to.
1952
2028
  :param pulumi.Input[str] config_version: The current version of the port group configuration,
1953
2029
  incremented by subsequent updates to the port group.
@@ -1972,38 +2048,52 @@ class DistributedPortGroup(pulumi.CustomResource):
1972
2048
  :param pulumi.Input[str] key: The generated UUID of the port group.
1973
2049
  :param pulumi.Input[bool] lacp_enabled: Whether or not to enable LACP on all uplink ports.
1974
2050
  :param pulumi.Input[str] lacp_mode: The uplink LACP mode to use. Can be one of active or passive.
1975
- :param pulumi.Input[bool] live_port_moving_allowed: Allow a live port to be moved in and out of the portgroup.
2051
+ :param pulumi.Input[bool] live_port_moving_allowed: Allow a port in this port group to be
2052
+ moved to another port group while it is connected.
1976
2053
  :param pulumi.Input[str] name: The name of the port group.
1977
2054
  :param pulumi.Input[bool] netflow_enabled: Indicates whether to enable netflow on all ports.
1978
- :param pulumi.Input[bool] netflow_override_allowed: Allow the enabling or disabling of Netflow on a port, contrary to the policy in the portgroup.
2055
+ :param pulumi.Input[bool] netflow_override_allowed: Allow the
2056
+ [Netflow policy][netflow-policy] on this port group to be overridden on an
2057
+ individual port.
1979
2058
  :param pulumi.Input[str] network_resource_pool_key: The key of a network resource pool
1980
2059
  to associate with this port group. The default is `-1`, which implies no
1981
2060
  association.
1982
- :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network resource pool of an individual port to override the setting in the portgroup.
2061
+ :param pulumi.Input[bool] network_resource_pool_override_allowed: Allow the network
2062
+ resource pool set on this port group to be overridden on an individual port.
1983
2063
  :param pulumi.Input[bool] notify_switches: If true, the teaming policy will notify the broadcast network of a NIC failover, triggering cache updates.
1984
2064
  :param pulumi.Input[int] number_of_ports: The number of ports available on this port
1985
2065
  group. Cannot be decreased below the amount of used ports on the port group.
1986
- :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset the setting of any ports in this portgroup back to the default setting when the port disconnects.
2066
+ :param pulumi.Input[bool] port_config_reset_at_disconnect: Reset a port's settings to the
2067
+ settings defined on this port group policy when the port disconnects.
1987
2068
  :param pulumi.Input[str] port_name_format: An optional formatting policy for naming of
1988
2069
  the ports in this port group. See the `portNameFormat` attribute listed
1989
2070
  [here][ext-vsphere-portname-format] for details on the format syntax.
1990
2071
 
1991
2072
  [ext-vsphere-portname-format]: https://vdc-download.vmware.com/vmwb-repository/dcr-public/b50dcbbf-051d-4204-a3e7-e1b618c1e384/538cf2ec-b34f-4bae-a332-3820ef9e7773/vim.dvs.DistributedVirtualPortgroup.ConfigInfo.html#portNameFormat
1992
2073
  :param pulumi.Input[int] port_private_secondary_vlan_id: The secondary VLAN ID for this port.
1993
- :param pulumi.Input[bool] security_policy_override_allowed: Allow security policy settings on a port to override those on the portgroup.
1994
- :param pulumi.Input[bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
2074
+ :param pulumi.Input[bool] security_policy_override_allowed: Allow the
2075
+ [security policy settings][sec-policy-settings] defined in this port group
2076
+ policy to be overridden on an individual port.
2077
+ :param pulumi.Input[bool] shaping_override_allowed: Allow the
2078
+ [traffic shaping options][traffic-shaping-settings] on this port group policy
2079
+ to be overridden on an individual port.
1995
2080
  :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
1996
2081
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag IDs to apply to this object.
1997
2082
  :param pulumi.Input[str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
1998
2083
  failover_explicit, or loadbalance_loadbased.
1999
- :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
2084
+ :param pulumi.Input[bool] traffic_filter_override_allowed: Allow any traffic filters on
2085
+ this port group to be overridden on an individual port.
2000
2086
  :param pulumi.Input[bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
2001
2087
  forwarded done by the switch.
2002
2088
  :param pulumi.Input[str] type: The port group type. Can be one of `earlyBinding` (static
2003
2089
  binding) or `ephemeral`. Default: `earlyBinding`.
2004
- :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
2090
+ :param pulumi.Input[bool] uplink_teaming_override_allowed: Allow the
2091
+ [uplink teaming options][uplink-teaming-settings] on this port group to be
2092
+ overridden on an individual port.
2005
2093
  :param pulumi.Input[int] vlan_id: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
2006
- :param pulumi.Input[bool] vlan_override_allowed: Allow the VLAN configuration on a port to override those on the portgroup.
2094
+ :param pulumi.Input[bool] vlan_override_allowed: Allow the
2095
+ [VLAN settings][vlan-settings] on this port group to be overridden on an
2096
+ individual port.
2007
2097
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DistributedPortGroupVlanRangeArgs']]]] vlan_ranges: The VLAN ID for single VLAN mode. 0 denotes no VLAN.
2008
2098
  """
2009
2099
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -2118,7 +2208,8 @@ class DistributedPortGroup(pulumi.CustomResource):
2118
2208
  @pulumi.getter(name="blockOverrideAllowed")
2119
2209
  def block_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2120
2210
  """
2121
- Allow the blocked setting of an individual port to override the setting in the portgroup.
2211
+ Allow the port shutdown
2212
+ policy to be overridden on an individual port.
2122
2213
  """
2123
2214
  return pulumi.get(self, "block_override_allowed")
2124
2215
 
@@ -2276,7 +2367,8 @@ class DistributedPortGroup(pulumi.CustomResource):
2276
2367
  @pulumi.getter(name="livePortMovingAllowed")
2277
2368
  def live_port_moving_allowed(self) -> pulumi.Output[Optional[bool]]:
2278
2369
  """
2279
- Allow a live port to be moved in and out of the portgroup.
2370
+ Allow a port in this port group to be
2371
+ moved to another port group while it is connected.
2280
2372
  """
2281
2373
  return pulumi.get(self, "live_port_moving_allowed")
2282
2374
 
@@ -2300,7 +2392,9 @@ class DistributedPortGroup(pulumi.CustomResource):
2300
2392
  @pulumi.getter(name="netflowOverrideAllowed")
2301
2393
  def netflow_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2302
2394
  """
2303
- Allow the enabling or disabling of Netflow on a port, contrary to the policy in the portgroup.
2395
+ Allow the
2396
+ [Netflow policy][netflow-policy] on this port group to be overridden on an
2397
+ individual port.
2304
2398
  """
2305
2399
  return pulumi.get(self, "netflow_override_allowed")
2306
2400
 
@@ -2318,7 +2412,8 @@ class DistributedPortGroup(pulumi.CustomResource):
2318
2412
  @pulumi.getter(name="networkResourcePoolOverrideAllowed")
2319
2413
  def network_resource_pool_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2320
2414
  """
2321
- Allow the network resource pool of an individual port to override the setting in the portgroup.
2415
+ Allow the network
2416
+ resource pool set on this port group to be overridden on an individual port.
2322
2417
  """
2323
2418
  return pulumi.get(self, "network_resource_pool_override_allowed")
2324
2419
 
@@ -2343,7 +2438,8 @@ class DistributedPortGroup(pulumi.CustomResource):
2343
2438
  @pulumi.getter(name="portConfigResetAtDisconnect")
2344
2439
  def port_config_reset_at_disconnect(self) -> pulumi.Output[Optional[bool]]:
2345
2440
  """
2346
- Reset the setting of any ports in this portgroup back to the default setting when the port disconnects.
2441
+ Reset a port's settings to the
2442
+ settings defined on this port group policy when the port disconnects.
2347
2443
  """
2348
2444
  return pulumi.get(self, "port_config_reset_at_disconnect")
2349
2445
 
@@ -2371,7 +2467,9 @@ class DistributedPortGroup(pulumi.CustomResource):
2371
2467
  @pulumi.getter(name="securityPolicyOverrideAllowed")
2372
2468
  def security_policy_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2373
2469
  """
2374
- Allow security policy settings on a port to override those on the portgroup.
2470
+ Allow the
2471
+ [security policy settings][sec-policy-settings] defined in this port group
2472
+ policy to be overridden on an individual port.
2375
2473
  """
2376
2474
  return pulumi.get(self, "security_policy_override_allowed")
2377
2475
 
@@ -2379,7 +2477,9 @@ class DistributedPortGroup(pulumi.CustomResource):
2379
2477
  @pulumi.getter(name="shapingOverrideAllowed")
2380
2478
  def shaping_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2381
2479
  """
2382
- Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
2480
+ Allow the
2481
+ [traffic shaping options][traffic-shaping-settings] on this port group policy
2482
+ to be overridden on an individual port.
2383
2483
  """
2384
2484
  return pulumi.get(self, "shaping_override_allowed")
2385
2485
 
@@ -2412,7 +2512,8 @@ class DistributedPortGroup(pulumi.CustomResource):
2412
2512
  @pulumi.getter(name="trafficFilterOverrideAllowed")
2413
2513
  def traffic_filter_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2414
2514
  """
2415
- Allow any filter policies set on the individual port to override those in the portgroup.
2515
+ Allow any traffic filters on
2516
+ this port group to be overridden on an individual port.
2416
2517
  """
2417
2518
  return pulumi.get(self, "traffic_filter_override_allowed")
2418
2519
 
@@ -2438,7 +2539,9 @@ class DistributedPortGroup(pulumi.CustomResource):
2438
2539
  @pulumi.getter(name="uplinkTeamingOverrideAllowed")
2439
2540
  def uplink_teaming_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2440
2541
  """
2441
- Allow the uplink teaming policies on a port to override those on the portgroup.
2542
+ Allow the
2543
+ [uplink teaming options][uplink-teaming-settings] on this port group to be
2544
+ overridden on an individual port.
2442
2545
  """
2443
2546
  return pulumi.get(self, "uplink_teaming_override_allowed")
2444
2547
 
@@ -2454,7 +2557,9 @@ class DistributedPortGroup(pulumi.CustomResource):
2454
2557
  @pulumi.getter(name="vlanOverrideAllowed")
2455
2558
  def vlan_override_allowed(self) -> pulumi.Output[Optional[bool]]:
2456
2559
  """
2457
- Allow the VLAN configuration on a port to override those on the portgroup.
2560
+ Allow the
2561
+ [VLAN settings][vlan-settings] on this port group to be overridden on an
2562
+ individual port.
2458
2563
  """
2459
2564
  return pulumi.get(self, "vlan_override_allowed")
2460
2565