pulumi-vsphere 4.16.0a1755919665__py3-none-any.whl → 4.17.0a1763072299__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.
- pulumi_vsphere/compute_cluster.py +203 -462
- pulumi_vsphere/datastore_cluster.py +35 -70
- pulumi_vsphere/distributed_port_group.py +21 -42
- pulumi_vsphere/distributed_virtual_switch.py +35 -70
- pulumi_vsphere/get_guest_os_customization.py +34 -0
- pulumi_vsphere/ha_vm_override.py +77 -161
- pulumi_vsphere/host_port_group.py +21 -42
- pulumi_vsphere/host_virtual_switch.py +21 -42
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/virtual_machine.py +91 -196
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/METADATA +1 -1
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/RECORD +14 -14
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/top_level.txt +0 -0
|
@@ -45,12 +45,10 @@ class HostPortGroupArgs:
|
|
|
45
45
|
:param pulumi.Input[_builtins.str] virtual_switch_name: The name of the virtual switch to bind
|
|
46
46
|
this port group to. Forces a new resource if changed.
|
|
47
47
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_nics: List of active network adapters used for load balancing.
|
|
48
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
49
|
-
that of its own.
|
|
48
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
50
49
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
51
50
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
52
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
53
|
-
only.
|
|
51
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
54
52
|
:param pulumi.Input[_builtins.bool] failback: If true, the teaming policy will re-activate failed interfaces higher in precedence when they come back up.
|
|
55
53
|
:param pulumi.Input[_builtins.str] name: The name of the port group. Forces a new resource if
|
|
56
54
|
changed.
|
|
@@ -60,8 +58,7 @@ class HostPortGroupArgs:
|
|
|
60
58
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
61
59
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
62
60
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
63
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
64
|
-
failover_explicit.
|
|
61
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
65
62
|
:param pulumi.Input[_builtins.int] vlan_id: The VLAN ID/trunk mode for this port group. An ID of
|
|
66
63
|
`0` denotes no tagging, an ID of `1`-`4094` tags with the specific ID, and an
|
|
67
64
|
ID of `4095` enables trunk mode, allowing the guest to manage its own
|
|
@@ -142,8 +139,7 @@ class HostPortGroupArgs:
|
|
|
142
139
|
@pulumi.getter(name="allowForgedTransmits")
|
|
143
140
|
def allow_forged_transmits(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
144
141
|
"""
|
|
145
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
146
|
-
that of its own.
|
|
142
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
147
143
|
"""
|
|
148
144
|
return pulumi.get(self, "allow_forged_transmits")
|
|
149
145
|
|
|
@@ -179,8 +175,7 @@ class HostPortGroupArgs:
|
|
|
179
175
|
@pulumi.getter(name="checkBeacon")
|
|
180
176
|
def check_beacon(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
181
177
|
"""
|
|
182
|
-
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
183
|
-
only.
|
|
178
|
+
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
184
179
|
"""
|
|
185
180
|
return pulumi.get(self, "check_beacon")
|
|
186
181
|
|
|
@@ -289,8 +284,7 @@ class HostPortGroupArgs:
|
|
|
289
284
|
@pulumi.getter(name="teamingPolicy")
|
|
290
285
|
def teaming_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
291
286
|
"""
|
|
292
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
293
|
-
failover_explicit.
|
|
287
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
294
288
|
"""
|
|
295
289
|
return pulumi.get(self, "teaming_policy")
|
|
296
290
|
|
|
@@ -340,12 +334,10 @@ class _HostPortGroupState:
|
|
|
340
334
|
"""
|
|
341
335
|
Input properties used for looking up and filtering HostPortGroup resources.
|
|
342
336
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_nics: List of active network adapters used for load balancing.
|
|
343
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
344
|
-
that of its own.
|
|
337
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
345
338
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
346
339
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
347
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
348
|
-
only.
|
|
340
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
349
341
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] computed_policy: A map with a full set of the policy
|
|
350
342
|
options computed from defaults and overrides,
|
|
351
343
|
explaining the effective policy for this port group.
|
|
@@ -362,8 +354,7 @@ class _HostPortGroupState:
|
|
|
362
354
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
363
355
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
364
356
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
365
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
366
|
-
failover_explicit.
|
|
357
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
367
358
|
:param pulumi.Input[_builtins.str] virtual_switch_name: The name of the virtual switch to bind
|
|
368
359
|
this port group to. Forces a new resource if changed.
|
|
369
360
|
:param pulumi.Input[_builtins.int] vlan_id: The VLAN ID/trunk mode for this port group. An ID of
|
|
@@ -428,8 +419,7 @@ class _HostPortGroupState:
|
|
|
428
419
|
@pulumi.getter(name="allowForgedTransmits")
|
|
429
420
|
def allow_forged_transmits(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
430
421
|
"""
|
|
431
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
432
|
-
that of its own.
|
|
422
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
433
423
|
"""
|
|
434
424
|
return pulumi.get(self, "allow_forged_transmits")
|
|
435
425
|
|
|
@@ -465,8 +455,7 @@ class _HostPortGroupState:
|
|
|
465
455
|
@pulumi.getter(name="checkBeacon")
|
|
466
456
|
def check_beacon(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
467
457
|
"""
|
|
468
|
-
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
469
|
-
only.
|
|
458
|
+
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
470
459
|
"""
|
|
471
460
|
return pulumi.get(self, "check_beacon")
|
|
472
461
|
|
|
@@ -626,8 +615,7 @@ class _HostPortGroupState:
|
|
|
626
615
|
@pulumi.getter(name="teamingPolicy")
|
|
627
616
|
def teaming_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
628
617
|
"""
|
|
629
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
630
|
-
failover_explicit.
|
|
618
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
631
619
|
"""
|
|
632
620
|
return pulumi.get(self, "teaming_policy")
|
|
633
621
|
|
|
@@ -771,12 +759,10 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
771
759
|
:param str resource_name: The name of the resource.
|
|
772
760
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
773
761
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_nics: List of active network adapters used for load balancing.
|
|
774
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
775
|
-
that of its own.
|
|
762
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
776
763
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
777
764
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
778
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
779
|
-
only.
|
|
765
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
780
766
|
:param pulumi.Input[_builtins.bool] failback: If true, the teaming policy will re-activate failed interfaces higher in precedence when they come back up.
|
|
781
767
|
:param pulumi.Input[_builtins.str] host_system_id: The managed object ID of
|
|
782
768
|
the host to set the port group up on. Forces a new resource if changed.
|
|
@@ -788,8 +774,7 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
788
774
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
789
775
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
790
776
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
791
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
792
|
-
failover_explicit.
|
|
777
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
793
778
|
:param pulumi.Input[_builtins.str] virtual_switch_name: The name of the virtual switch to bind
|
|
794
779
|
this port group to. Forces a new resource if changed.
|
|
795
780
|
:param pulumi.Input[_builtins.int] vlan_id: The VLAN ID/trunk mode for this port group. An ID of
|
|
@@ -986,12 +971,10 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
986
971
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
987
972
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
988
973
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_nics: List of active network adapters used for load balancing.
|
|
989
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
990
|
-
that of its own.
|
|
974
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
991
975
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
992
976
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
993
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
994
|
-
only.
|
|
977
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
995
978
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] computed_policy: A map with a full set of the policy
|
|
996
979
|
options computed from defaults and overrides,
|
|
997
980
|
explaining the effective policy for this port group.
|
|
@@ -1008,8 +991,7 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
1008
991
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
1009
992
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
1010
993
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
1011
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
1012
|
-
failover_explicit.
|
|
994
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
1013
995
|
:param pulumi.Input[_builtins.str] virtual_switch_name: The name of the virtual switch to bind
|
|
1014
996
|
this port group to. Forces a new resource if changed.
|
|
1015
997
|
:param pulumi.Input[_builtins.int] vlan_id: The VLAN ID/trunk mode for this port group. An ID of
|
|
@@ -1055,8 +1037,7 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
1055
1037
|
@pulumi.getter(name="allowForgedTransmits")
|
|
1056
1038
|
def allow_forged_transmits(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
1057
1039
|
"""
|
|
1058
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
1059
|
-
that of its own.
|
|
1040
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
1060
1041
|
"""
|
|
1061
1042
|
return pulumi.get(self, "allow_forged_transmits")
|
|
1062
1043
|
|
|
@@ -1080,8 +1061,7 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
1080
1061
|
@pulumi.getter(name="checkBeacon")
|
|
1081
1062
|
def check_beacon(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
1082
1063
|
"""
|
|
1083
|
-
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
1084
|
-
only.
|
|
1064
|
+
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
1085
1065
|
"""
|
|
1086
1066
|
return pulumi.get(self, "check_beacon")
|
|
1087
1067
|
|
|
@@ -1189,8 +1169,7 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
1189
1169
|
@pulumi.getter(name="teamingPolicy")
|
|
1190
1170
|
def teaming_policy(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1191
1171
|
"""
|
|
1192
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
1193
|
-
failover_explicit.
|
|
1172
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
1194
1173
|
"""
|
|
1195
1174
|
return pulumi.get(self, "teaming_policy")
|
|
1196
1175
|
|
|
@@ -46,13 +46,11 @@ class HostVirtualSwitchArgs:
|
|
|
46
46
|
:param pulumi.Input[_builtins.str] host_system_id: The managed object ID of
|
|
47
47
|
the host to set the virtual switch up on. Forces a new resource if changed.
|
|
48
48
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] network_adapters: The list of network adapters to bind to this virtual switch.
|
|
49
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
50
|
-
that of its own.
|
|
49
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
51
50
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
52
51
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
53
52
|
:param pulumi.Input[_builtins.int] beacon_interval: Determines how often, in seconds, a beacon should be sent to probe for the validity of a link.
|
|
54
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
55
|
-
only.
|
|
53
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
56
54
|
:param pulumi.Input[_builtins.bool] failback: If true, the teaming policy will re-activate failed interfaces higher in precedence when they come back up.
|
|
57
55
|
:param pulumi.Input[_builtins.str] link_discovery_operation: Whether to advertise or listen for link discovery. Valid values are advertise, both, listen, and none.
|
|
58
56
|
:param pulumi.Input[_builtins.str] link_discovery_protocol: The discovery protocol type. Valid values are cdp and lldp.
|
|
@@ -71,8 +69,7 @@ class HostVirtualSwitchArgs:
|
|
|
71
69
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
72
70
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
73
71
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
74
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
75
|
-
failover_explicit.
|
|
72
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
76
73
|
"""
|
|
77
74
|
pulumi.set(__self__, "active_nics", active_nics)
|
|
78
75
|
pulumi.set(__self__, "host_system_id", host_system_id)
|
|
@@ -155,8 +152,7 @@ class HostVirtualSwitchArgs:
|
|
|
155
152
|
@pulumi.getter(name="allowForgedTransmits")
|
|
156
153
|
def allow_forged_transmits(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
157
154
|
"""
|
|
158
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
159
|
-
that of its own.
|
|
155
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
160
156
|
"""
|
|
161
157
|
return pulumi.get(self, "allow_forged_transmits")
|
|
162
158
|
|
|
@@ -204,8 +200,7 @@ class HostVirtualSwitchArgs:
|
|
|
204
200
|
@pulumi.getter(name="checkBeacon")
|
|
205
201
|
def check_beacon(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
206
202
|
"""
|
|
207
|
-
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
208
|
-
only.
|
|
203
|
+
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
209
204
|
"""
|
|
210
205
|
return pulumi.get(self, "check_beacon")
|
|
211
206
|
|
|
@@ -367,8 +362,7 @@ class HostVirtualSwitchArgs:
|
|
|
367
362
|
@pulumi.getter(name="teamingPolicy")
|
|
368
363
|
def teaming_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
369
364
|
"""
|
|
370
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
371
|
-
failover_explicit.
|
|
365
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
372
366
|
"""
|
|
373
367
|
return pulumi.get(self, "teaming_policy")
|
|
374
368
|
|
|
@@ -404,13 +398,11 @@ class _HostVirtualSwitchState:
|
|
|
404
398
|
"""
|
|
405
399
|
Input properties used for looking up and filtering HostVirtualSwitch resources.
|
|
406
400
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_nics: List of active network adapters used for load balancing.
|
|
407
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
408
|
-
that of its own.
|
|
401
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
409
402
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
410
403
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
411
404
|
:param pulumi.Input[_builtins.int] beacon_interval: Determines how often, in seconds, a beacon should be sent to probe for the validity of a link.
|
|
412
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
413
|
-
only.
|
|
405
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
414
406
|
:param pulumi.Input[_builtins.bool] failback: If true, the teaming policy will re-activate failed interfaces higher in precedence when they come back up.
|
|
415
407
|
:param pulumi.Input[_builtins.str] host_system_id: The managed object ID of
|
|
416
408
|
the host to set the virtual switch up on. Forces a new resource if changed.
|
|
@@ -432,8 +424,7 @@ class _HostVirtualSwitchState:
|
|
|
432
424
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
433
425
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
434
426
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
435
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
436
|
-
failover_explicit.
|
|
427
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
437
428
|
"""
|
|
438
429
|
if active_nics is not None:
|
|
439
430
|
pulumi.set(__self__, "active_nics", active_nics)
|
|
@@ -494,8 +485,7 @@ class _HostVirtualSwitchState:
|
|
|
494
485
|
@pulumi.getter(name="allowForgedTransmits")
|
|
495
486
|
def allow_forged_transmits(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
496
487
|
"""
|
|
497
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
498
|
-
that of its own.
|
|
488
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
499
489
|
"""
|
|
500
490
|
return pulumi.get(self, "allow_forged_transmits")
|
|
501
491
|
|
|
@@ -543,8 +533,7 @@ class _HostVirtualSwitchState:
|
|
|
543
533
|
@pulumi.getter(name="checkBeacon")
|
|
544
534
|
def check_beacon(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
545
535
|
"""
|
|
546
|
-
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
547
|
-
only.
|
|
536
|
+
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
548
537
|
"""
|
|
549
538
|
return pulumi.get(self, "check_beacon")
|
|
550
539
|
|
|
@@ -731,8 +720,7 @@ class _HostVirtualSwitchState:
|
|
|
731
720
|
@pulumi.getter(name="teamingPolicy")
|
|
732
721
|
def teaming_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
733
722
|
"""
|
|
734
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
735
|
-
failover_explicit.
|
|
723
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
736
724
|
"""
|
|
737
725
|
return pulumi.get(self, "teaming_policy")
|
|
738
726
|
|
|
@@ -855,13 +843,11 @@ class HostVirtualSwitch(pulumi.CustomResource):
|
|
|
855
843
|
:param str resource_name: The name of the resource.
|
|
856
844
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
857
845
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_nics: List of active network adapters used for load balancing.
|
|
858
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
859
|
-
that of its own.
|
|
846
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
860
847
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
861
848
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
862
849
|
:param pulumi.Input[_builtins.int] beacon_interval: Determines how often, in seconds, a beacon should be sent to probe for the validity of a link.
|
|
863
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
864
|
-
only.
|
|
850
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
865
851
|
:param pulumi.Input[_builtins.bool] failback: If true, the teaming policy will re-activate failed interfaces higher in precedence when they come back up.
|
|
866
852
|
:param pulumi.Input[_builtins.str] host_system_id: The managed object ID of
|
|
867
853
|
the host to set the virtual switch up on. Forces a new resource if changed.
|
|
@@ -883,8 +869,7 @@ class HostVirtualSwitch(pulumi.CustomResource):
|
|
|
883
869
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
884
870
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
885
871
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
886
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
887
|
-
failover_explicit.
|
|
872
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
888
873
|
"""
|
|
889
874
|
...
|
|
890
875
|
@overload
|
|
@@ -1086,13 +1071,11 @@ class HostVirtualSwitch(pulumi.CustomResource):
|
|
|
1086
1071
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1087
1072
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1088
1073
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_nics: List of active network adapters used for load balancing.
|
|
1089
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
1090
|
-
that of its own.
|
|
1074
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
1091
1075
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
1092
1076
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
1093
1077
|
:param pulumi.Input[_builtins.int] beacon_interval: Determines how often, in seconds, a beacon should be sent to probe for the validity of a link.
|
|
1094
|
-
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
1095
|
-
only.
|
|
1078
|
+
:param pulumi.Input[_builtins.bool] check_beacon: Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
1096
1079
|
:param pulumi.Input[_builtins.bool] failback: If true, the teaming policy will re-activate failed interfaces higher in precedence when they come back up.
|
|
1097
1080
|
:param pulumi.Input[_builtins.str] host_system_id: The managed object ID of
|
|
1098
1081
|
the host to set the virtual switch up on. Forces a new resource if changed.
|
|
@@ -1114,8 +1097,7 @@ class HostVirtualSwitch(pulumi.CustomResource):
|
|
|
1114
1097
|
:param pulumi.Input[_builtins.bool] shaping_enabled: Enable traffic shaping on this virtual switch or port group.
|
|
1115
1098
|
:param pulumi.Input[_builtins.int] shaping_peak_bandwidth: The peak bandwidth during bursts in bits per second if traffic shaping is enabled.
|
|
1116
1099
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_nics: List of standby network adapters used for failover.
|
|
1117
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
1118
|
-
failover_explicit.
|
|
1100
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
1119
1101
|
"""
|
|
1120
1102
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1121
1103
|
|
|
@@ -1156,8 +1138,7 @@ class HostVirtualSwitch(pulumi.CustomResource):
|
|
|
1156
1138
|
@pulumi.getter(name="allowForgedTransmits")
|
|
1157
1139
|
def allow_forged_transmits(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
1158
1140
|
"""
|
|
1159
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
1160
|
-
that of its own.
|
|
1141
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
1161
1142
|
"""
|
|
1162
1143
|
return pulumi.get(self, "allow_forged_transmits")
|
|
1163
1144
|
|
|
@@ -1189,8 +1170,7 @@ class HostVirtualSwitch(pulumi.CustomResource):
|
|
|
1189
1170
|
@pulumi.getter(name="checkBeacon")
|
|
1190
1171
|
def check_beacon(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
1191
1172
|
"""
|
|
1192
|
-
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used
|
|
1193
|
-
only.
|
|
1173
|
+
Enable beacon probing. Requires that the vSwitch has been configured to use a beacon. If disabled, link status is used only.
|
|
1194
1174
|
"""
|
|
1195
1175
|
return pulumi.get(self, "check_beacon")
|
|
1196
1176
|
|
|
@@ -1317,8 +1297,7 @@ class HostVirtualSwitch(pulumi.CustomResource):
|
|
|
1317
1297
|
@pulumi.getter(name="teamingPolicy")
|
|
1318
1298
|
def teaming_policy(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1319
1299
|
"""
|
|
1320
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or
|
|
1321
|
-
failover_explicit.
|
|
1300
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, or failover_explicit.
|
|
1322
1301
|
"""
|
|
1323
1302
|
return pulumi.get(self, "teaming_policy")
|
|
1324
1303
|
|