pulumi-vsphere 4.10.0a1709368772__py3-none-any.whl → 4.10.0a1710245029__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 (48) hide show
  1. pulumi_vsphere/__init__.py +2 -0
  2. pulumi_vsphere/_inputs.py +4 -0
  3. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +8 -0
  4. pulumi_vsphere/datacenter.py +12 -0
  5. pulumi_vsphere/datastore_cluster.py +7 -7
  6. pulumi_vsphere/distributed_virtual_switch.py +28 -7
  7. pulumi_vsphere/file.py +12 -0
  8. pulumi_vsphere/get_compute_cluster.py +4 -0
  9. pulumi_vsphere/get_compute_cluster_host_group.py +4 -0
  10. pulumi_vsphere/get_content_library.py +4 -0
  11. pulumi_vsphere/get_custom_attribute.py +4 -0
  12. pulumi_vsphere/get_datacenter.py +4 -0
  13. pulumi_vsphere/get_datastore.py +31 -3
  14. pulumi_vsphere/get_datastore_cluster.py +4 -0
  15. pulumi_vsphere/get_datastore_stats.py +202 -0
  16. pulumi_vsphere/get_distributed_virtual_switch.py +4 -0
  17. pulumi_vsphere/get_dynamic.py +4 -0
  18. pulumi_vsphere/get_folder.py +4 -0
  19. pulumi_vsphere/get_guest_os_customization.py +4 -0
  20. pulumi_vsphere/get_host.py +4 -0
  21. pulumi_vsphere/get_host_pci_device.py +34 -0
  22. pulumi_vsphere/get_host_thumbprint.py +4 -0
  23. pulumi_vsphere/get_host_vgpu_profile.py +190 -0
  24. pulumi_vsphere/get_license.py +4 -0
  25. pulumi_vsphere/get_network.py +4 -0
  26. pulumi_vsphere/get_ovf_vm_template.py +0 -168
  27. pulumi_vsphere/get_policy.py +4 -0
  28. pulumi_vsphere/get_resource_pool.py +10 -0
  29. pulumi_vsphere/get_role.py +4 -0
  30. pulumi_vsphere/get_tag.py +4 -0
  31. pulumi_vsphere/get_tag_category.py +4 -0
  32. pulumi_vsphere/get_vapp_container.py +4 -0
  33. pulumi_vsphere/get_virtual_machine.py +37 -1
  34. pulumi_vsphere/get_vmfs_disks.py +4 -0
  35. pulumi_vsphere/host.py +18 -0
  36. pulumi_vsphere/host_port_group.py +14 -0
  37. pulumi_vsphere/license.py +4 -0
  38. pulumi_vsphere/outputs.py +75 -0
  39. pulumi_vsphere/resource_pool.py +12 -12
  40. pulumi_vsphere/virtual_machine.py +75 -14
  41. pulumi_vsphere/virtual_machine_snapshot.py +4 -0
  42. pulumi_vsphere/vm_storage_policy.py +12 -0
  43. pulumi_vsphere/vnic.py +18 -0
  44. {pulumi_vsphere-4.10.0a1709368772.dist-info → pulumi_vsphere-4.10.0a1710245029.dist-info}/METADATA +1 -1
  45. pulumi_vsphere-4.10.0a1710245029.dist-info/RECORD +82 -0
  46. {pulumi_vsphere-4.10.0a1709368772.dist-info → pulumi_vsphere-4.10.0a1710245029.dist-info}/WHEEL +1 -1
  47. pulumi_vsphere-4.10.0a1709368772.dist-info/RECORD +0 -80
  48. {pulumi_vsphere-4.10.0a1709368772.dist-info → pulumi_vsphere-4.10.0a1710245029.dist-info}/top_level.txt +0 -0
@@ -56,6 +56,7 @@ class VirtualMachineArgs:
56
56
  memory_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
57
57
  memory_limit: Optional[pulumi.Input[int]] = None,
58
58
  memory_reservation: Optional[pulumi.Input[int]] = None,
59
+ memory_reservation_locked_to_max: Optional[pulumi.Input[bool]] = None,
59
60
  memory_share_count: Optional[pulumi.Input[int]] = None,
60
61
  memory_share_level: Optional[pulumi.Input[str]] = None,
61
62
  migrate_wait_timeout: Optional[pulumi.Input[int]] = None,
@@ -161,6 +162,9 @@ class VirtualMachineArgs:
161
162
  [vmware-kb-2008405]: https://kb.vmware.com/s/article/2008405
162
163
  :param pulumi.Input[int] memory_limit: The maximum amount of memory (in MB) that th virtual machine can consume, regardless of available resources. The default is no limit.
163
164
  :param pulumi.Input[int] memory_reservation: The amount of memory (in MB) that the virtual machine is guaranteed. The default is no reservation.
165
+ :param pulumi.Input[bool] memory_reservation_locked_to_max: If set true, memory resource reservation for this virtual machine will always be equal to the virtual machine's memory
166
+ size;increases in memory size will be rejected when a corresponding reservation increase is not possible. This feature
167
+ may only be enabled if it is currently possible to reserve all of the virtual machine's memory.
164
168
  :param pulumi.Input[int] memory_share_count: The number of memory shares allocated to the virtual machine when the `memory_share_level` is `custom`.
165
169
  :param pulumi.Input[str] memory_share_level: The allocation level for the virtual machine memory resources. One of `high`, `low`, `normal`, or `custom`. Default: `custom`.
166
170
  :param pulumi.Input[int] migrate_wait_timeout: The amount of time, in minutes, to wait for a virtual machine migration to complete before failing. Default: `10` minutes. See the section on virtual machine migration for more information.
@@ -176,7 +180,7 @@ class VirtualMachineArgs:
176
180
  :param pulumi.Input[int] poweron_timeout: The amount of time, in seconds, that we will be trying to power on a VM
177
181
  :param pulumi.Input[str] replace_trigger: Triggers replacement of resource whenever it changes.
178
182
 
179
- For example, `replace_trigger = sha256(format("%s-%s",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
183
+ For example, `replace_trigger = sha256(format("%!s(MISSING)-%!s(MISSING)",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
180
184
  :param pulumi.Input[bool] run_tools_scripts_after_power_on: Enable post-power-on scripts to run when VMware Tools is installed. Default: `true`.
181
185
  :param pulumi.Input[bool] run_tools_scripts_after_resume: Enable ost-resume scripts to run when VMware Tools is installed. Default: `true`.
182
186
  :param pulumi.Input[bool] run_tools_scripts_before_guest_reboot: Enable pre-reboot scripts to run when VMware Tools is installed. Default: `false`.
@@ -193,7 +197,7 @@ class VirtualMachineArgs:
193
197
  :param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for a graceful guest shutdown when making necessary updates to the virtual machine. If `force_power_off` is set to `true`, the virtual machine will be forced to power-off after the timeout, otherwise an error is returned. Default: `3` minutes.
194
198
  :param pulumi.Input[str] storage_policy_id: The UUID of the storage policy to assign to the virtual disk.
195
199
  :param pulumi.Input[str] swap_placement_policy: The swap file placement policy for the virtual machine. One of `inherit`, `hostLocal`, or `vmDirectory`. Default: `inherit`.
196
- :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `false`.
200
+ :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `true`.
197
201
  :param pulumi.Input[bool] sync_time_with_host_periodically: Enable the guest operating system to periodically synchronize its clock with the host. Requires vSphere 7.0 Update 1 and later. On previous versions, setting `sync_time_with_host` is will enable periodic synchronization. Requires VMware Tools to be installed. Default: `false`.
198
202
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource. Please refer to the `Tag` resource for more information on applying tags to virtual machine resources.
199
203
 
@@ -285,6 +289,8 @@ class VirtualMachineArgs:
285
289
  pulumi.set(__self__, "memory_limit", memory_limit)
286
290
  if memory_reservation is not None:
287
291
  pulumi.set(__self__, "memory_reservation", memory_reservation)
292
+ if memory_reservation_locked_to_max is not None:
293
+ pulumi.set(__self__, "memory_reservation_locked_to_max", memory_reservation_locked_to_max)
288
294
  if memory_share_count is not None:
289
295
  pulumi.set(__self__, "memory_share_count", memory_share_count)
290
296
  if memory_share_level is not None:
@@ -863,6 +869,20 @@ class VirtualMachineArgs:
863
869
  def memory_reservation(self, value: Optional[pulumi.Input[int]]):
864
870
  pulumi.set(self, "memory_reservation", value)
865
871
 
872
+ @property
873
+ @pulumi.getter(name="memoryReservationLockedToMax")
874
+ def memory_reservation_locked_to_max(self) -> Optional[pulumi.Input[bool]]:
875
+ """
876
+ If set true, memory resource reservation for this virtual machine will always be equal to the virtual machine's memory
877
+ size;increases in memory size will be rejected when a corresponding reservation increase is not possible. This feature
878
+ may only be enabled if it is currently possible to reserve all of the virtual machine's memory.
879
+ """
880
+ return pulumi.get(self, "memory_reservation_locked_to_max")
881
+
882
+ @memory_reservation_locked_to_max.setter
883
+ def memory_reservation_locked_to_max(self, value: Optional[pulumi.Input[bool]]):
884
+ pulumi.set(self, "memory_reservation_locked_to_max", value)
885
+
866
886
  @property
867
887
  @pulumi.getter(name="memoryShareCount")
868
888
  def memory_share_count(self) -> Optional[pulumi.Input[int]]:
@@ -1003,7 +1023,7 @@ class VirtualMachineArgs:
1003
1023
  """
1004
1024
  Triggers replacement of resource whenever it changes.
1005
1025
 
1006
- For example, `replace_trigger = sha256(format("%s-%s",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
1026
+ For example, `replace_trigger = sha256(format("%!s(MISSING)-%!s(MISSING)",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
1007
1027
  """
1008
1028
  return pulumi.get(self, "replace_trigger")
1009
1029
 
@@ -1163,7 +1183,7 @@ class VirtualMachineArgs:
1163
1183
  @pulumi.getter(name="syncTimeWithHost")
1164
1184
  def sync_time_with_host(self) -> Optional[pulumi.Input[bool]]:
1165
1185
  """
1166
- Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `false`.
1186
+ Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `true`.
1167
1187
  """
1168
1188
  return pulumi.get(self, "sync_time_with_host")
1169
1189
 
@@ -1328,6 +1348,7 @@ class _VirtualMachineState:
1328
1348
  memory_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
1329
1349
  memory_limit: Optional[pulumi.Input[int]] = None,
1330
1350
  memory_reservation: Optional[pulumi.Input[int]] = None,
1351
+ memory_reservation_locked_to_max: Optional[pulumi.Input[bool]] = None,
1331
1352
  memory_share_count: Optional[pulumi.Input[int]] = None,
1332
1353
  memory_share_level: Optional[pulumi.Input[str]] = None,
1333
1354
  migrate_wait_timeout: Optional[pulumi.Input[int]] = None,
@@ -1442,6 +1463,9 @@ class _VirtualMachineState:
1442
1463
  [vmware-kb-2008405]: https://kb.vmware.com/s/article/2008405
1443
1464
  :param pulumi.Input[int] memory_limit: The maximum amount of memory (in MB) that th virtual machine can consume, regardless of available resources. The default is no limit.
1444
1465
  :param pulumi.Input[int] memory_reservation: The amount of memory (in MB) that the virtual machine is guaranteed. The default is no reservation.
1466
+ :param pulumi.Input[bool] memory_reservation_locked_to_max: If set true, memory resource reservation for this virtual machine will always be equal to the virtual machine's memory
1467
+ size;increases in memory size will be rejected when a corresponding reservation increase is not possible. This feature
1468
+ may only be enabled if it is currently possible to reserve all of the virtual machine's memory.
1445
1469
  :param pulumi.Input[int] memory_share_count: The number of memory shares allocated to the virtual machine when the `memory_share_level` is `custom`.
1446
1470
  :param pulumi.Input[str] memory_share_level: The allocation level for the virtual machine memory resources. One of `high`, `low`, `normal`, or `custom`. Default: `custom`.
1447
1471
  :param pulumi.Input[int] migrate_wait_timeout: The amount of time, in minutes, to wait for a virtual machine migration to complete before failing. Default: `10` minutes. See the section on virtual machine migration for more information.
@@ -1460,7 +1484,7 @@ class _VirtualMachineState:
1460
1484
  :param pulumi.Input[bool] reboot_required: Value internal to Terraform used to determine if a configuration set change requires a reboot.
1461
1485
  :param pulumi.Input[str] replace_trigger: Triggers replacement of resource whenever it changes.
1462
1486
 
1463
- For example, `replace_trigger = sha256(format("%s-%s",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
1487
+ For example, `replace_trigger = sha256(format("%!s(MISSING)-%!s(MISSING)",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
1464
1488
  :param pulumi.Input[str] resource_pool_id: The managed object reference ID of the resource pool in which to place the virtual machine. See the Virtual Machine Migration section for more information on modifying this value.
1465
1489
 
1466
1490
  > **NOTE:** All clusters and standalone hosts have a default root resource pool. This resource argument does not directly accept the cluster or standalone host resource. For more information, see the section on specifying the Root Resource Pool in the `ResourcePool` data source documentation on using the root resource pool.
@@ -1480,7 +1504,7 @@ class _VirtualMachineState:
1480
1504
  :param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for a graceful guest shutdown when making necessary updates to the virtual machine. If `force_power_off` is set to `true`, the virtual machine will be forced to power-off after the timeout, otherwise an error is returned. Default: `3` minutes.
1481
1505
  :param pulumi.Input[str] storage_policy_id: The UUID of the storage policy to assign to the virtual disk.
1482
1506
  :param pulumi.Input[str] swap_placement_policy: The swap file placement policy for the virtual machine. One of `inherit`, `hostLocal`, or `vmDirectory`. Default: `inherit`.
1483
- :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `false`.
1507
+ :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `true`.
1484
1508
  :param pulumi.Input[bool] sync_time_with_host_periodically: Enable the guest operating system to periodically synchronize its clock with the host. Requires vSphere 7.0 Update 1 and later. On previous versions, setting `sync_time_with_host` is will enable periodic synchronization. Requires VMware Tools to be installed. Default: `false`.
1485
1509
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource. Please refer to the `Tag` resource for more information on applying tags to virtual machine resources.
1486
1510
 
@@ -1583,6 +1607,8 @@ class _VirtualMachineState:
1583
1607
  pulumi.set(__self__, "memory_limit", memory_limit)
1584
1608
  if memory_reservation is not None:
1585
1609
  pulumi.set(__self__, "memory_reservation", memory_reservation)
1610
+ if memory_reservation_locked_to_max is not None:
1611
+ pulumi.set(__self__, "memory_reservation_locked_to_max", memory_reservation_locked_to_max)
1586
1612
  if memory_share_count is not None:
1587
1613
  pulumi.set(__self__, "memory_share_count", memory_share_count)
1588
1614
  if memory_share_level is not None:
@@ -2211,6 +2237,20 @@ class _VirtualMachineState:
2211
2237
  def memory_reservation(self, value: Optional[pulumi.Input[int]]):
2212
2238
  pulumi.set(self, "memory_reservation", value)
2213
2239
 
2240
+ @property
2241
+ @pulumi.getter(name="memoryReservationLockedToMax")
2242
+ def memory_reservation_locked_to_max(self) -> Optional[pulumi.Input[bool]]:
2243
+ """
2244
+ If set true, memory resource reservation for this virtual machine will always be equal to the virtual machine's memory
2245
+ size;increases in memory size will be rejected when a corresponding reservation increase is not possible. This feature
2246
+ may only be enabled if it is currently possible to reserve all of the virtual machine's memory.
2247
+ """
2248
+ return pulumi.get(self, "memory_reservation_locked_to_max")
2249
+
2250
+ @memory_reservation_locked_to_max.setter
2251
+ def memory_reservation_locked_to_max(self, value: Optional[pulumi.Input[bool]]):
2252
+ pulumi.set(self, "memory_reservation_locked_to_max", value)
2253
+
2214
2254
  @property
2215
2255
  @pulumi.getter(name="memoryShareCount")
2216
2256
  def memory_share_count(self) -> Optional[pulumi.Input[int]]:
@@ -2387,7 +2427,7 @@ class _VirtualMachineState:
2387
2427
  """
2388
2428
  Triggers replacement of resource whenever it changes.
2389
2429
 
2390
- For example, `replace_trigger = sha256(format("%s-%s",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
2430
+ For example, `replace_trigger = sha256(format("%!s(MISSING)-%!s(MISSING)",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
2391
2431
  """
2392
2432
  return pulumi.get(self, "replace_trigger")
2393
2433
 
@@ -2561,7 +2601,7 @@ class _VirtualMachineState:
2561
2601
  @pulumi.getter(name="syncTimeWithHost")
2562
2602
  def sync_time_with_host(self) -> Optional[pulumi.Input[bool]]:
2563
2603
  """
2564
- Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `false`.
2604
+ Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `true`.
2565
2605
  """
2566
2606
  return pulumi.get(self, "sync_time_with_host")
2567
2607
 
@@ -2772,6 +2812,7 @@ class VirtualMachine(pulumi.CustomResource):
2772
2812
  memory_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
2773
2813
  memory_limit: Optional[pulumi.Input[int]] = None,
2774
2814
  memory_reservation: Optional[pulumi.Input[int]] = None,
2815
+ memory_reservation_locked_to_max: Optional[pulumi.Input[bool]] = None,
2775
2816
  memory_share_count: Optional[pulumi.Input[int]] = None,
2776
2817
  memory_share_level: Optional[pulumi.Input[str]] = None,
2777
2818
  migrate_wait_timeout: Optional[pulumi.Input[int]] = None,
@@ -2878,6 +2919,9 @@ class VirtualMachine(pulumi.CustomResource):
2878
2919
  [vmware-kb-2008405]: https://kb.vmware.com/s/article/2008405
2879
2920
  :param pulumi.Input[int] memory_limit: The maximum amount of memory (in MB) that th virtual machine can consume, regardless of available resources. The default is no limit.
2880
2921
  :param pulumi.Input[int] memory_reservation: The amount of memory (in MB) that the virtual machine is guaranteed. The default is no reservation.
2922
+ :param pulumi.Input[bool] memory_reservation_locked_to_max: If set true, memory resource reservation for this virtual machine will always be equal to the virtual machine's memory
2923
+ size;increases in memory size will be rejected when a corresponding reservation increase is not possible. This feature
2924
+ may only be enabled if it is currently possible to reserve all of the virtual machine's memory.
2881
2925
  :param pulumi.Input[int] memory_share_count: The number of memory shares allocated to the virtual machine when the `memory_share_level` is `custom`.
2882
2926
  :param pulumi.Input[str] memory_share_level: The allocation level for the virtual machine memory resources. One of `high`, `low`, `normal`, or `custom`. Default: `custom`.
2883
2927
  :param pulumi.Input[int] migrate_wait_timeout: The amount of time, in minutes, to wait for a virtual machine migration to complete before failing. Default: `10` minutes. See the section on virtual machine migration for more information.
@@ -2893,7 +2937,7 @@ class VirtualMachine(pulumi.CustomResource):
2893
2937
  :param pulumi.Input[int] poweron_timeout: The amount of time, in seconds, that we will be trying to power on a VM
2894
2938
  :param pulumi.Input[str] replace_trigger: Triggers replacement of resource whenever it changes.
2895
2939
 
2896
- For example, `replace_trigger = sha256(format("%s-%s",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
2940
+ For example, `replace_trigger = sha256(format("%!s(MISSING)-%!s(MISSING)",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
2897
2941
  :param pulumi.Input[str] resource_pool_id: The managed object reference ID of the resource pool in which to place the virtual machine. See the Virtual Machine Migration section for more information on modifying this value.
2898
2942
 
2899
2943
  > **NOTE:** All clusters and standalone hosts have a default root resource pool. This resource argument does not directly accept the cluster or standalone host resource. For more information, see the section on specifying the Root Resource Pool in the `ResourcePool` data source documentation on using the root resource pool.
@@ -2913,7 +2957,7 @@ class VirtualMachine(pulumi.CustomResource):
2913
2957
  :param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for a graceful guest shutdown when making necessary updates to the virtual machine. If `force_power_off` is set to `true`, the virtual machine will be forced to power-off after the timeout, otherwise an error is returned. Default: `3` minutes.
2914
2958
  :param pulumi.Input[str] storage_policy_id: The UUID of the storage policy to assign to the virtual disk.
2915
2959
  :param pulumi.Input[str] swap_placement_policy: The swap file placement policy for the virtual machine. One of `inherit`, `hostLocal`, or `vmDirectory`. Default: `inherit`.
2916
- :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `false`.
2960
+ :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `true`.
2917
2961
  :param pulumi.Input[bool] sync_time_with_host_periodically: Enable the guest operating system to periodically synchronize its clock with the host. Requires vSphere 7.0 Update 1 and later. On previous versions, setting `sync_time_with_host` is will enable periodic synchronization. Requires VMware Tools to be installed. Default: `false`.
2918
2962
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource. Please refer to the `Tag` resource for more information on applying tags to virtual machine resources.
2919
2963
 
@@ -2988,6 +3032,7 @@ class VirtualMachine(pulumi.CustomResource):
2988
3032
  memory_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
2989
3033
  memory_limit: Optional[pulumi.Input[int]] = None,
2990
3034
  memory_reservation: Optional[pulumi.Input[int]] = None,
3035
+ memory_reservation_locked_to_max: Optional[pulumi.Input[bool]] = None,
2991
3036
  memory_share_count: Optional[pulumi.Input[int]] = None,
2992
3037
  memory_share_level: Optional[pulumi.Input[str]] = None,
2993
3038
  migrate_wait_timeout: Optional[pulumi.Input[int]] = None,
@@ -3071,6 +3116,7 @@ class VirtualMachine(pulumi.CustomResource):
3071
3116
  __props__.__dict__["memory_hot_add_enabled"] = memory_hot_add_enabled
3072
3117
  __props__.__dict__["memory_limit"] = memory_limit
3073
3118
  __props__.__dict__["memory_reservation"] = memory_reservation
3119
+ __props__.__dict__["memory_reservation_locked_to_max"] = memory_reservation_locked_to_max
3074
3120
  __props__.__dict__["memory_share_count"] = memory_share_count
3075
3121
  __props__.__dict__["memory_share_level"] = memory_share_level
3076
3122
  __props__.__dict__["migrate_wait_timeout"] = migrate_wait_timeout
@@ -3172,6 +3218,7 @@ class VirtualMachine(pulumi.CustomResource):
3172
3218
  memory_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
3173
3219
  memory_limit: Optional[pulumi.Input[int]] = None,
3174
3220
  memory_reservation: Optional[pulumi.Input[int]] = None,
3221
+ memory_reservation_locked_to_max: Optional[pulumi.Input[bool]] = None,
3175
3222
  memory_share_count: Optional[pulumi.Input[int]] = None,
3176
3223
  memory_share_level: Optional[pulumi.Input[str]] = None,
3177
3224
  migrate_wait_timeout: Optional[pulumi.Input[int]] = None,
@@ -3291,6 +3338,9 @@ class VirtualMachine(pulumi.CustomResource):
3291
3338
  [vmware-kb-2008405]: https://kb.vmware.com/s/article/2008405
3292
3339
  :param pulumi.Input[int] memory_limit: The maximum amount of memory (in MB) that th virtual machine can consume, regardless of available resources. The default is no limit.
3293
3340
  :param pulumi.Input[int] memory_reservation: The amount of memory (in MB) that the virtual machine is guaranteed. The default is no reservation.
3341
+ :param pulumi.Input[bool] memory_reservation_locked_to_max: If set true, memory resource reservation for this virtual machine will always be equal to the virtual machine's memory
3342
+ size;increases in memory size will be rejected when a corresponding reservation increase is not possible. This feature
3343
+ may only be enabled if it is currently possible to reserve all of the virtual machine's memory.
3294
3344
  :param pulumi.Input[int] memory_share_count: The number of memory shares allocated to the virtual machine when the `memory_share_level` is `custom`.
3295
3345
  :param pulumi.Input[str] memory_share_level: The allocation level for the virtual machine memory resources. One of `high`, `low`, `normal`, or `custom`. Default: `custom`.
3296
3346
  :param pulumi.Input[int] migrate_wait_timeout: The amount of time, in minutes, to wait for a virtual machine migration to complete before failing. Default: `10` minutes. See the section on virtual machine migration for more information.
@@ -3309,7 +3359,7 @@ class VirtualMachine(pulumi.CustomResource):
3309
3359
  :param pulumi.Input[bool] reboot_required: Value internal to Terraform used to determine if a configuration set change requires a reboot.
3310
3360
  :param pulumi.Input[str] replace_trigger: Triggers replacement of resource whenever it changes.
3311
3361
 
3312
- For example, `replace_trigger = sha256(format("%s-%s",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
3362
+ For example, `replace_trigger = sha256(format("%!s(MISSING)-%!s(MISSING)",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
3313
3363
  :param pulumi.Input[str] resource_pool_id: The managed object reference ID of the resource pool in which to place the virtual machine. See the Virtual Machine Migration section for more information on modifying this value.
3314
3364
 
3315
3365
  > **NOTE:** All clusters and standalone hosts have a default root resource pool. This resource argument does not directly accept the cluster or standalone host resource. For more information, see the section on specifying the Root Resource Pool in the `ResourcePool` data source documentation on using the root resource pool.
@@ -3329,7 +3379,7 @@ class VirtualMachine(pulumi.CustomResource):
3329
3379
  :param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for a graceful guest shutdown when making necessary updates to the virtual machine. If `force_power_off` is set to `true`, the virtual machine will be forced to power-off after the timeout, otherwise an error is returned. Default: `3` minutes.
3330
3380
  :param pulumi.Input[str] storage_policy_id: The UUID of the storage policy to assign to the virtual disk.
3331
3381
  :param pulumi.Input[str] swap_placement_policy: The swap file placement policy for the virtual machine. One of `inherit`, `hostLocal`, or `vmDirectory`. Default: `inherit`.
3332
- :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `false`.
3382
+ :param pulumi.Input[bool] sync_time_with_host: Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `true`.
3333
3383
  :param pulumi.Input[bool] sync_time_with_host_periodically: Enable the guest operating system to periodically synchronize its clock with the host. Requires vSphere 7.0 Update 1 and later. On previous versions, setting `sync_time_with_host` is will enable periodic synchronization. Requires VMware Tools to be installed. Default: `false`.
3334
3384
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource. Please refer to the `Tag` resource for more information on applying tags to virtual machine resources.
3335
3385
 
@@ -3393,6 +3443,7 @@ class VirtualMachine(pulumi.CustomResource):
3393
3443
  __props__.__dict__["memory_hot_add_enabled"] = memory_hot_add_enabled
3394
3444
  __props__.__dict__["memory_limit"] = memory_limit
3395
3445
  __props__.__dict__["memory_reservation"] = memory_reservation
3446
+ __props__.__dict__["memory_reservation_locked_to_max"] = memory_reservation_locked_to_max
3396
3447
  __props__.__dict__["memory_share_count"] = memory_share_count
3397
3448
  __props__.__dict__["memory_share_level"] = memory_share_level
3398
3449
  __props__.__dict__["migrate_wait_timeout"] = migrate_wait_timeout
@@ -3808,6 +3859,16 @@ class VirtualMachine(pulumi.CustomResource):
3808
3859
  """
3809
3860
  return pulumi.get(self, "memory_reservation")
3810
3861
 
3862
+ @property
3863
+ @pulumi.getter(name="memoryReservationLockedToMax")
3864
+ def memory_reservation_locked_to_max(self) -> pulumi.Output[Optional[bool]]:
3865
+ """
3866
+ If set true, memory resource reservation for this virtual machine will always be equal to the virtual machine's memory
3867
+ size;increases in memory size will be rejected when a corresponding reservation increase is not possible. This feature
3868
+ may only be enabled if it is currently possible to reserve all of the virtual machine's memory.
3869
+ """
3870
+ return pulumi.get(self, "memory_reservation_locked_to_max")
3871
+
3811
3872
  @property
3812
3873
  @pulumi.getter(name="memoryShareCount")
3813
3874
  def memory_share_count(self) -> pulumi.Output[int]:
@@ -3928,7 +3989,7 @@ class VirtualMachine(pulumi.CustomResource):
3928
3989
  """
3929
3990
  Triggers replacement of resource whenever it changes.
3930
3991
 
3931
- For example, `replace_trigger = sha256(format("%s-%s",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
3992
+ For example, `replace_trigger = sha256(format("%!s(MISSING)-%!s(MISSING)",data.template_file.cloud_init_metadata.rendered,data.template_file.cloud_init_userdata.rendered))` will fingerprint the changes in cloud-init metadata and userdata templates. This will enable a replacement of the resource whenever the dependant template renders a new configuration. (Forces a replacement.)
3932
3993
  """
3933
3994
  return pulumi.get(self, "replace_trigger")
3934
3995
 
@@ -4046,7 +4107,7 @@ class VirtualMachine(pulumi.CustomResource):
4046
4107
  @pulumi.getter(name="syncTimeWithHost")
4047
4108
  def sync_time_with_host(self) -> pulumi.Output[Optional[bool]]:
4048
4109
  """
4049
- Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `false`.
4110
+ Enable the guest operating system to synchronization its clock with the host when the virtual machine is powered on or resumed. Requires vSphere 7.0 Update 1 and later. Requires VMware Tools to be installed. Default: `true`.
4050
4111
  """
4051
4112
  return pulumi.get(self, "sync_time_with_host")
4052
4113
 
@@ -308,6 +308,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
308
308
 
309
309
  ## Example Usage
310
310
 
311
+ <!--Start PulumiCodeChooser -->
311
312
  ```python
312
313
  import pulumi
313
314
  import pulumi_vsphere as vsphere
@@ -321,6 +322,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
321
322
  snapshot_name="Snapshot Name",
322
323
  virtual_machine_uuid="9aac5551-a351-4158-8c5c-15a71e8ec5c9")
323
324
  ```
325
+ <!--End PulumiCodeChooser -->
324
326
 
325
327
  :param str resource_name: The name of the resource.
326
328
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -369,6 +371,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
369
371
 
370
372
  ## Example Usage
371
373
 
374
+ <!--Start PulumiCodeChooser -->
372
375
  ```python
373
376
  import pulumi
374
377
  import pulumi_vsphere as vsphere
@@ -382,6 +385,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
382
385
  snapshot_name="Snapshot Name",
383
386
  virtual_machine_uuid="9aac5551-a351-4158-8c5c-15a71e8ec5c9")
384
387
  ```
388
+ <!--End PulumiCodeChooser -->
385
389
 
386
390
  :param str resource_name: The name of the resource.
387
391
  :param VirtualMachineSnapshotArgs args: The arguments to use to populate this resource's properties.
@@ -144,6 +144,7 @@ class VmStoragePolicy(pulumi.CustomResource):
144
144
 
145
145
  In this example, tags are first applied to datastores.
146
146
 
147
+ <!--Start PulumiCodeChooser -->
147
148
  ```python
148
149
  import pulumi
149
150
  import pulumi_vsphere as vsphere
@@ -178,9 +179,11 @@ class VmStoragePolicy(pulumi.CustomResource):
178
179
  "data.vsphere_tag.non_replicated.id",
179
180
  ])
180
181
  ```
182
+ <!--End PulumiCodeChooser -->
181
183
 
182
184
  Next, storage policies are created and `tag_rules` are applied.
183
185
 
186
+ <!--Start PulumiCodeChooser -->
184
187
  ```python
185
188
  import pulumi
186
189
  import pulumi_vsphere as vsphere
@@ -224,9 +227,11 @@ class VmStoragePolicy(pulumi.CustomResource):
224
227
  ),
225
228
  ])
226
229
  ```
230
+ <!--End PulumiCodeChooser -->
227
231
 
228
232
  Lasttly, when creating a virtual machine resource, a storage policy can be specificed to direct virtual machine placement to a datastore which matches the policy's `tags_rules`.
229
233
 
234
+ <!--Start PulumiCodeChooser -->
230
235
  ```python
231
236
  import pulumi
232
237
  import pulumi_vsphere as vsphere
@@ -238,6 +243,7 @@ class VmStoragePolicy(pulumi.CustomResource):
238
243
  dev_vm = vsphere.VirtualMachine("devVm", storage_policy_id=data["vsphere_storage_policy"]["storage_policy"]["dev_silver_nonreplicated"]["id"])
239
244
  # ... other configuration ...
240
245
  ```
246
+ <!--End PulumiCodeChooser -->
241
247
 
242
248
  :param str resource_name: The name of the resource.
243
249
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -262,6 +268,7 @@ class VmStoragePolicy(pulumi.CustomResource):
262
268
 
263
269
  In this example, tags are first applied to datastores.
264
270
 
271
+ <!--Start PulumiCodeChooser -->
265
272
  ```python
266
273
  import pulumi
267
274
  import pulumi_vsphere as vsphere
@@ -296,9 +303,11 @@ class VmStoragePolicy(pulumi.CustomResource):
296
303
  "data.vsphere_tag.non_replicated.id",
297
304
  ])
298
305
  ```
306
+ <!--End PulumiCodeChooser -->
299
307
 
300
308
  Next, storage policies are created and `tag_rules` are applied.
301
309
 
310
+ <!--Start PulumiCodeChooser -->
302
311
  ```python
303
312
  import pulumi
304
313
  import pulumi_vsphere as vsphere
@@ -342,9 +351,11 @@ class VmStoragePolicy(pulumi.CustomResource):
342
351
  ),
343
352
  ])
344
353
  ```
354
+ <!--End PulumiCodeChooser -->
345
355
 
346
356
  Lasttly, when creating a virtual machine resource, a storage policy can be specificed to direct virtual machine placement to a datastore which matches the policy's `tags_rules`.
347
357
 
358
+ <!--Start PulumiCodeChooser -->
348
359
  ```python
349
360
  import pulumi
350
361
  import pulumi_vsphere as vsphere
@@ -356,6 +367,7 @@ class VmStoragePolicy(pulumi.CustomResource):
356
367
  dev_vm = vsphere.VirtualMachine("devVm", storage_policy_id=data["vsphere_storage_policy"]["storage_policy"]["dev_silver_nonreplicated"]["id"])
357
368
  # ... other configuration ...
358
369
  ```
370
+ <!--End PulumiCodeChooser -->
359
371
 
360
372
  :param str resource_name: The name of the resource.
361
373
  :param VmStoragePolicyArgs args: The arguments to use to populate this resource's properties.
pulumi_vsphere/vnic.py CHANGED
@@ -370,8 +370,10 @@ class Vnic(pulumi.CustomResource):
370
370
  ## Example Usage
371
371
 
372
372
  ### S
373
+
373
374
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
374
375
 
376
+ <!--Start PulumiCodeChooser -->
375
377
  ```python
376
378
  import pulumi
377
379
  import pulumi_vsphere as vsphere
@@ -397,8 +399,11 @@ class Vnic(pulumi.CustomResource):
397
399
  ),
398
400
  netstack="vmotion")
399
401
  ```
402
+ <!--End PulumiCodeChooser -->
403
+
400
404
  ### Create a vnic attached to a portgroup using the default TCP/IP stack
401
405
 
406
+ <!--Start PulumiCodeChooser -->
402
407
  ```python
403
408
  import pulumi
404
409
  import pulumi_vsphere as vsphere
@@ -428,6 +433,8 @@ class Vnic(pulumi.CustomResource):
428
433
  "management",
429
434
  ])
430
435
  ```
436
+ <!--End PulumiCodeChooser -->
437
+
431
438
  ## Importing
432
439
 
433
440
  An existing vNic can be [imported][docs-import] into this resource
@@ -435,9 +442,11 @@ class Vnic(pulumi.CustomResource):
435
442
 
436
443
  [docs-import]: /docs/import/index.html
437
444
 
445
+ <!--Start PulumiCodeChooser -->
438
446
  ```python
439
447
  import pulumi
440
448
  ```
449
+ <!--End PulumiCodeChooser -->
441
450
 
442
451
  The above would import the vnic `vmk2` from host with ID `host-123`.
443
452
 
@@ -466,8 +475,10 @@ class Vnic(pulumi.CustomResource):
466
475
  ## Example Usage
467
476
 
468
477
  ### S
478
+
469
479
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
470
480
 
481
+ <!--Start PulumiCodeChooser -->
471
482
  ```python
472
483
  import pulumi
473
484
  import pulumi_vsphere as vsphere
@@ -493,8 +504,11 @@ class Vnic(pulumi.CustomResource):
493
504
  ),
494
505
  netstack="vmotion")
495
506
  ```
507
+ <!--End PulumiCodeChooser -->
508
+
496
509
  ### Create a vnic attached to a portgroup using the default TCP/IP stack
497
510
 
511
+ <!--Start PulumiCodeChooser -->
498
512
  ```python
499
513
  import pulumi
500
514
  import pulumi_vsphere as vsphere
@@ -524,6 +538,8 @@ class Vnic(pulumi.CustomResource):
524
538
  "management",
525
539
  ])
526
540
  ```
541
+ <!--End PulumiCodeChooser -->
542
+
527
543
  ## Importing
528
544
 
529
545
  An existing vNic can be [imported][docs-import] into this resource
@@ -531,9 +547,11 @@ class Vnic(pulumi.CustomResource):
531
547
 
532
548
  [docs-import]: /docs/import/index.html
533
549
 
550
+ <!--Start PulumiCodeChooser -->
534
551
  ```python
535
552
  import pulumi
536
553
  ```
554
+ <!--End PulumiCodeChooser -->
537
555
 
538
556
  The above would import the vnic `vmk2` from host with ID `host-123`.
539
557
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_vsphere
3
- Version: 4.10.0a1709368772
3
+ Version: 4.10.0a1710245029
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,82 @@
1
+ pulumi_vsphere/__init__.py,sha256=D0xUdIG9TzexthoPimJXUxoqiIfxr5H0lOHIAJhhsjE,10114
2
+ pulumi_vsphere/_inputs.py,sha256=n7IWt2LMpbsan_Pw5DPlEWWXolg15HOVJQ1dAIgPKGM,136898
3
+ pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
+ pulumi_vsphere/compute_cluster.py,sha256=8HJuTuH9JIxCMh2WTG7zT7f6JwUy8qScFsr2S8ozkHg,245818
5
+ pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
6
+ pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=tEW7sHDqTawVmI28q1xqprkpoU-fnan1hAeZkOUmNIM,24771
7
+ pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=-5K0E6HRhIWGBKAcMZsqXNFQLWIAhJs07_PKVi-3PBg,17554
8
+ pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=_q1lrkr1pWzl10dGA1PdRSOXibmYvLKBLTdZG0O0YNQ,21613
9
+ pulumi_vsphere/compute_cluster_vm_group.py,sha256=l3gk0qAc9UiX6DpkCZl30L6qmTigu4pGo5O1YBJoatU,13459
10
+ pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=Am9PFFU8PghrdOTRbqJzeFS6nLxgX5Pob-SKqCEaY3k,24422
11
+ pulumi_vsphere/content_library.py,sha256=-3mst76bjX3vq4izMl8pIlZR2B9RjEG3A0VA7jpOfRc,15087
12
+ pulumi_vsphere/content_library_item.py,sha256=qjHPcnsxpNiFOzCPxQXngZXtR1R1RrsqAhdJgpqgZUc,15640
13
+ pulumi_vsphere/custom_attribute.py,sha256=wTuv97G4uXpJ9kv_TaKZc1OYj1e_68c9dAsFc9Ds5nQ,9031
14
+ pulumi_vsphere/datacenter.py,sha256=wz6ZhWNMg88zY21kTSALXAXyG1HBuZfyYGFhHtM--lM,19182
15
+ pulumi_vsphere/datastore_cluster.py,sha256=zTzK-jiRFBc7Cka5T3nAyZW8WJ2wcu3YFQddLhQ1yYo,90219
16
+ pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=8eKwKS9ZYaZICVxjNrNLDDBqBKyQqOJmC_nt0jlqYJY,16842
17
+ pulumi_vsphere/distributed_port_group.py,sha256=LWuv8PgWOo6MRx82QTrpiDAzORv9s6da7qdg3ZyV-KA,134499
18
+ pulumi_vsphere/distributed_virtual_switch.py,sha256=L6Vd4C9N9JRaILTt4Ll-CvQM9SVHhvBZ__61P61osok,264137
19
+ pulumi_vsphere/dpm_host_override.py,sha256=i3eG4PkI3Hi2KodP6OFAGC6QLczmNDRcSIt9MbK7U1Q,15371
20
+ pulumi_vsphere/drs_vm_override.py,sha256=qGlUe9gq9StYW4OHDSZKA03j0ru3Ruvb9SEaVcpHo1c,16657
21
+ pulumi_vsphere/entity_permissions.py,sha256=uPVnBk47c6csM0kQLwJC3Niml9uCTq23KGOfhNyNrrk,12429
22
+ pulumi_vsphere/file.py,sha256=00qPdnT7-00SNMacM8_lGQrEbGSXv9rTC_ERTZHtB3U,23703
23
+ pulumi_vsphere/folder.py,sha256=wCsVzpLVQn5tbx0kn4hKNUBxQpalVn9ydGemsbz_MLc,25630
24
+ pulumi_vsphere/get_compute_cluster.py,sha256=rOCQTRMnHzOz3lCSZOQUQJ80qkXUqkxJPOihH_GxrVk,6137
25
+ pulumi_vsphere/get_compute_cluster_host_group.py,sha256=1vMYBvHD7-b4d6k9wPR_DlRAqjoBMSC-vCjFFvtUpgE,6266
26
+ pulumi_vsphere/get_content_library.py,sha256=zaz3CNzLrJLB5rH0D1zQk5Mi_g_LANjeHfHJDXW9o6k,3358
27
+ pulumi_vsphere/get_content_library_item.py,sha256=-yztx7VLc3cyG8nwjZ4iA4QbwvVGgL6K81YHOrYHJ4U,4496
28
+ pulumi_vsphere/get_custom_attribute.py,sha256=KMIPUXKbqrRMzUFgQ91V6A_qwHttMHIaSSof4KOoD9Q,4494
29
+ pulumi_vsphere/get_datacenter.py,sha256=XjgzHmheL3QNXnywVEoJ7dHZqzR2P-_kmJrfx14tX-k,4223
30
+ pulumi_vsphere/get_datastore.py,sha256=paiKxWPfdEyz7Z9yRAe_wcfMVDVeJH59_ezscPg09_s,6119
31
+ pulumi_vsphere/get_datastore_cluster.py,sha256=U108Z7EMqK4Q-7QYzIAuYSLaZQywdA7HVMT417ppC2E,5297
32
+ pulumi_vsphere/get_datastore_stats.py,sha256=O8FhEGF5NT2mlFnNzgU-v3kxqvQjscPCtia-daF4qA4,7917
33
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=3Y9Z7qhXnUz60I1WGF3g6UUQu_iwqdmZYumZxM6iFVE,7014
34
+ pulumi_vsphere/get_dynamic.py,sha256=4evdnVACuoARVhytaBkXCPOQTJfAhzU63H1dy2MYYL4,6242
35
+ pulumi_vsphere/get_folder.py,sha256=cZn7YUGiNn6sziSiH1_6v-p9LVLxiiiEwXgUnjR93Qk,3765
36
+ pulumi_vsphere/get_guest_os_customization.py,sha256=a-hctk_ltCSfcjAgx_IxqQtOCd-df9a5vZeKXY8mNoU,6510
37
+ pulumi_vsphere/get_host.py,sha256=PBTK0McfwvgkKjuBeZbQWESeBrhbeIL1mafQO5Au0kY,5340
38
+ pulumi_vsphere/get_host_pci_device.py,sha256=47KyrlqKw_mnLK3eaVMbmI8bEGqUye0BVh6YGPO_cWI,7898
39
+ pulumi_vsphere/get_host_thumbprint.py,sha256=9UmtSmyhiewNXW-7cifViECzkU6RXUN0aNcbhOKsf5k,5103
40
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=5LP_PDfY3wXA4zCml3Cz_yANEHPIh0OFoMK9PNJnJhI,6628
41
+ pulumi_vsphere/get_license.py,sha256=2egn7bCzJt6Eul_HWgPTrHpzzfruab3JlPBrNWCWfkc,5398
42
+ pulumi_vsphere/get_network.py,sha256=Cm2IZobXCW_RbyfGJybAqULksx4LUNFg-7oNKEWL0qs,7273
43
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
44
+ pulumi_vsphere/get_policy.py,sha256=RmwMeG08vPnbebfPw4Qyvi60zofxLdx5sHFbH73hFBY,3565
45
+ pulumi_vsphere/get_resource_pool.py,sha256=SybwTomV_rYafuE4Xegm67g1exIHi66_PA-ZzNwz_cE,7597
46
+ pulumi_vsphere/get_role.py,sha256=ZH7ycfvudtiCgmFZV3fJobeitdyFYCrZ0gmli46rFCs,5351
47
+ pulumi_vsphere/get_tag.py,sha256=Cf7jDIln9TEHBrjH9AWWUEFreEA9Z2Anm7umdbBWVlA,4956
48
+ pulumi_vsphere/get_tag_category.py,sha256=vB023_5_viINfklL9-KKhvADQKoY8ZDjTTQVgF2w3-Q,5174
49
+ pulumi_vsphere/get_vapp_container.py,sha256=Ae77fQHwunAm8Ab97wEYqjL-ZmdTuyj8yoE57RU6xzs,4613
50
+ pulumi_vsphere/get_virtual_machine.py,sha256=FsY6V0eKMRXr2JBqFtkdyu1nU9PvVmFsLd30FHhMlJc,58811
51
+ pulumi_vsphere/get_vmfs_disks.py,sha256=ItMOx8cK9l12N4Yc4hQb2Ocuk_hCwb4Ql39QX9Tt1HQ,6857
52
+ pulumi_vsphere/guest_os_customization.py,sha256=HB-qrGxduUJH_cUpKyLbnmmV-HOBqJWesV4lWTLdETk,15360
53
+ pulumi_vsphere/ha_vm_override.py,sha256=gGQd5NMeFDznmfLTQvuXuVM5JT_ZAmQRxwuVEDe_FxI,58963
54
+ pulumi_vsphere/host.py,sha256=jX-4FYaKACBU2OwgK3khdQwDs81bMR5GG-aMlIRaGTg,46389
55
+ pulumi_vsphere/host_port_group.py,sha256=_0k6zNLexAWeaOocfTLZRCWwbsZ5vRbrsceoL1AsWrc,57254
56
+ pulumi_vsphere/host_virtual_switch.py,sha256=gj2BcglObvCxe4tkIze0OxW2xnGDDOhWKUc2Qbz99eQ,61643
57
+ pulumi_vsphere/license.py,sha256=FUrMgYlPCR74DuWahcgZttso7Q2m9kpoKiTb-6IOWy4,12908
58
+ pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
59
+ pulumi_vsphere/outputs.py,sha256=PQWYuK0-fabmFt2L7I7YXrCRJluhu8mvak_KSlGwMJw,151078
60
+ pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
61
+ pulumi_vsphere/pulumi-plugin.json,sha256=GPkzWdIfUGLp-CeSzzIZ8ksrThmeZnOYMcpaT3JCpTU,44
62
+ pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ pulumi_vsphere/resource_pool.py,sha256=h8uuERR45TUAH2-IvtbR1uZfcJq55FyW_ZqET7OVifE,54219
64
+ pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
65
+ pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
66
+ pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
67
+ pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
68
+ pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
69
+ pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
70
+ pulumi_vsphere/virtual_disk.py,sha256=kWAUojQyOg9zFj_sYAjz0O_FtSWmwfDzeCOdTWelNZ0,28723
71
+ pulumi_vsphere/virtual_machine.py,sha256=VzvF0jXEWx_ROG_t8MiIUJqEaJ4lW29uVimFFCbyxP4,273930
72
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=G8-3jJEsViVYhF4v4LSfWSw1ajq3AdaSloMO1rseyww,24082
73
+ pulumi_vsphere/vm_storage_policy.py,sha256=MzAcDxZfj6p25LFT6sS-zho9i_uDXlU6uytttWQyJkg,21426
74
+ pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
75
+ pulumi_vsphere/vnic.py,sha256=upByAXkmwaA7U9VYF2huy2yntN2creeBaFvIoRfee_o,30855
76
+ pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
77
+ pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
78
+ pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
79
+ pulumi_vsphere-4.10.0a1710245029.dist-info/METADATA,sha256=3RNEnksv0PgFg176Gk8du4214EXWfAXO6cUnmnGZ9lg,4958
80
+ pulumi_vsphere-4.10.0a1710245029.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
81
+ pulumi_vsphere-4.10.0a1710245029.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
82
+ pulumi_vsphere-4.10.0a1710245029.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5