pulumi-vsphere 4.13.0a1737527662__py3-none-any.whl → 4.13.1__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 (31) hide show
  1. pulumi_vsphere/__init__.py +9 -0
  2. pulumi_vsphere/_inputs.py +3 -3
  3. pulumi_vsphere/compute_cluster.py +4 -4
  4. pulumi_vsphere/compute_cluster_vm_host_rule.py +124 -0
  5. pulumi_vsphere/custom_attribute.py +2 -2
  6. pulumi_vsphere/datastore_cluster.py +2 -2
  7. pulumi_vsphere/distributed_port_group.py +4 -53
  8. pulumi_vsphere/distributed_virtual_switch.py +11 -11
  9. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +293 -0
  10. pulumi_vsphere/dpm_host_override.py +2 -2
  11. pulumi_vsphere/drs_vm_override.py +96 -2
  12. pulumi_vsphere/get_resource_pool.py +2 -2
  13. pulumi_vsphere/get_virtual_machine.py +22 -3
  14. pulumi_vsphere/ha_vm_override.py +2 -2
  15. pulumi_vsphere/host_port_group.py +2 -2
  16. pulumi_vsphere/host_virtual_switch.py +98 -2
  17. pulumi_vsphere/outputs.py +2 -2
  18. pulumi_vsphere/pulumi-plugin.json +1 -1
  19. pulumi_vsphere/storage_drs_vm_override.py +2 -2
  20. pulumi_vsphere/supervisor.py +98 -2
  21. pulumi_vsphere/tag.py +2 -2
  22. pulumi_vsphere/tag_category.py +2 -2
  23. pulumi_vsphere/vapp_container.py +2 -2
  24. pulumi_vsphere/vapp_entity.py +2 -2
  25. pulumi_vsphere/virtual_disk.py +7 -7
  26. pulumi_vsphere/virtual_machine.py +34 -0
  27. pulumi_vsphere/virtual_machine_snapshot.py +4 -4
  28. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/METADATA +1 -1
  29. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/RECORD +31 -30
  30. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/WHEEL +0 -0
  31. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/top_level.txt +0 -0
@@ -70,6 +70,7 @@ class VirtualMachineArgs:
70
70
  network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input['VirtualMachineNetworkInterfaceArgs']]]] = None,
71
71
  num_cores_per_socket: Optional[pulumi.Input[int]] = None,
72
72
  num_cpus: Optional[pulumi.Input[int]] = None,
73
+ nvme_controller_count: Optional[pulumi.Input[int]] = None,
73
74
  ovf_deploy: Optional[pulumi.Input['VirtualMachineOvfDeployArgs']] = None,
74
75
  pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
75
76
  poweron_timeout: Optional[pulumi.Input[int]] = None,
@@ -285,6 +286,8 @@ class VirtualMachineArgs:
285
286
  pulumi.set(__self__, "num_cores_per_socket", num_cores_per_socket)
286
287
  if num_cpus is not None:
287
288
  pulumi.set(__self__, "num_cpus", num_cpus)
289
+ if nvme_controller_count is not None:
290
+ pulumi.set(__self__, "nvme_controller_count", nvme_controller_count)
288
291
  if ovf_deploy is not None:
289
292
  pulumi.set(__self__, "ovf_deploy", ovf_deploy)
290
293
  if pci_device_ids is not None:
@@ -934,6 +937,15 @@ class VirtualMachineArgs:
934
937
  def num_cpus(self, value: Optional[pulumi.Input[int]]):
935
938
  pulumi.set(self, "num_cpus", value)
936
939
 
940
+ @property
941
+ @pulumi.getter(name="nvmeControllerCount")
942
+ def nvme_controller_count(self) -> Optional[pulumi.Input[int]]:
943
+ return pulumi.get(self, "nvme_controller_count")
944
+
945
+ @nvme_controller_count.setter
946
+ def nvme_controller_count(self, value: Optional[pulumi.Input[int]]):
947
+ pulumi.set(self, "nvme_controller_count", value)
948
+
937
949
  @property
938
950
  @pulumi.getter(name="ovfDeploy")
939
951
  def ovf_deploy(self) -> Optional[pulumi.Input['VirtualMachineOvfDeployArgs']]:
@@ -1315,6 +1327,7 @@ class _VirtualMachineState:
1315
1327
  network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input['VirtualMachineNetworkInterfaceArgs']]]] = None,
1316
1328
  num_cores_per_socket: Optional[pulumi.Input[int]] = None,
1317
1329
  num_cpus: Optional[pulumi.Input[int]] = None,
1330
+ nvme_controller_count: Optional[pulumi.Input[int]] = None,
1318
1331
  ovf_deploy: Optional[pulumi.Input['VirtualMachineOvfDeployArgs']] = None,
1319
1332
  pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1320
1333
  power_state: Optional[pulumi.Input[str]] = None,
@@ -1556,6 +1569,8 @@ class _VirtualMachineState:
1556
1569
  pulumi.set(__self__, "num_cores_per_socket", num_cores_per_socket)
1557
1570
  if num_cpus is not None:
1558
1571
  pulumi.set(__self__, "num_cpus", num_cpus)
1572
+ if nvme_controller_count is not None:
1573
+ pulumi.set(__self__, "nvme_controller_count", nvme_controller_count)
1559
1574
  if ovf_deploy is not None:
1560
1575
  pulumi.set(__self__, "ovf_deploy", ovf_deploy)
1561
1576
  if pci_device_ids is not None:
@@ -2267,6 +2282,15 @@ class _VirtualMachineState:
2267
2282
  def num_cpus(self, value: Optional[pulumi.Input[int]]):
2268
2283
  pulumi.set(self, "num_cpus", value)
2269
2284
 
2285
+ @property
2286
+ @pulumi.getter(name="nvmeControllerCount")
2287
+ def nvme_controller_count(self) -> Optional[pulumi.Input[int]]:
2288
+ return pulumi.get(self, "nvme_controller_count")
2289
+
2290
+ @nvme_controller_count.setter
2291
+ def nvme_controller_count(self, value: Optional[pulumi.Input[int]]):
2292
+ pulumi.set(self, "nvme_controller_count", value)
2293
+
2270
2294
  @property
2271
2295
  @pulumi.getter(name="ovfDeploy")
2272
2296
  def ovf_deploy(self) -> Optional[pulumi.Input['VirtualMachineOvfDeployArgs']]:
@@ -2726,6 +2750,7 @@ class VirtualMachine(pulumi.CustomResource):
2726
2750
  network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VirtualMachineNetworkInterfaceArgs', 'VirtualMachineNetworkInterfaceArgsDict']]]]] = None,
2727
2751
  num_cores_per_socket: Optional[pulumi.Input[int]] = None,
2728
2752
  num_cpus: Optional[pulumi.Input[int]] = None,
2753
+ nvme_controller_count: Optional[pulumi.Input[int]] = None,
2729
2754
  ovf_deploy: Optional[pulumi.Input[Union['VirtualMachineOvfDeployArgs', 'VirtualMachineOvfDeployArgsDict']]] = None,
2730
2755
  pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2731
2756
  poweron_timeout: Optional[pulumi.Input[int]] = None,
@@ -2965,6 +2990,7 @@ class VirtualMachine(pulumi.CustomResource):
2965
2990
  network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VirtualMachineNetworkInterfaceArgs', 'VirtualMachineNetworkInterfaceArgsDict']]]]] = None,
2966
2991
  num_cores_per_socket: Optional[pulumi.Input[int]] = None,
2967
2992
  num_cpus: Optional[pulumi.Input[int]] = None,
2993
+ nvme_controller_count: Optional[pulumi.Input[int]] = None,
2968
2994
  ovf_deploy: Optional[pulumi.Input[Union['VirtualMachineOvfDeployArgs', 'VirtualMachineOvfDeployArgsDict']]] = None,
2969
2995
  pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2970
2996
  poweron_timeout: Optional[pulumi.Input[int]] = None,
@@ -3050,6 +3076,7 @@ class VirtualMachine(pulumi.CustomResource):
3050
3076
  __props__.__dict__["network_interfaces"] = network_interfaces
3051
3077
  __props__.__dict__["num_cores_per_socket"] = num_cores_per_socket
3052
3078
  __props__.__dict__["num_cpus"] = num_cpus
3079
+ __props__.__dict__["nvme_controller_count"] = nvme_controller_count
3053
3080
  __props__.__dict__["ovf_deploy"] = ovf_deploy
3054
3081
  __props__.__dict__["pci_device_ids"] = pci_device_ids
3055
3082
  __props__.__dict__["poweron_timeout"] = poweron_timeout
@@ -3154,6 +3181,7 @@ class VirtualMachine(pulumi.CustomResource):
3154
3181
  network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VirtualMachineNetworkInterfaceArgs', 'VirtualMachineNetworkInterfaceArgsDict']]]]] = None,
3155
3182
  num_cores_per_socket: Optional[pulumi.Input[int]] = None,
3156
3183
  num_cpus: Optional[pulumi.Input[int]] = None,
3184
+ nvme_controller_count: Optional[pulumi.Input[int]] = None,
3157
3185
  ovf_deploy: Optional[pulumi.Input[Union['VirtualMachineOvfDeployArgs', 'VirtualMachineOvfDeployArgsDict']]] = None,
3158
3186
  pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3159
3187
  power_state: Optional[pulumi.Input[str]] = None,
@@ -3351,6 +3379,7 @@ class VirtualMachine(pulumi.CustomResource):
3351
3379
  __props__.__dict__["network_interfaces"] = network_interfaces
3352
3380
  __props__.__dict__["num_cores_per_socket"] = num_cores_per_socket
3353
3381
  __props__.__dict__["num_cpus"] = num_cpus
3382
+ __props__.__dict__["nvme_controller_count"] = nvme_controller_count
3354
3383
  __props__.__dict__["ovf_deploy"] = ovf_deploy
3355
3384
  __props__.__dict__["pci_device_ids"] = pci_device_ids
3356
3385
  __props__.__dict__["power_state"] = power_state
@@ -3817,6 +3846,11 @@ class VirtualMachine(pulumi.CustomResource):
3817
3846
  """
3818
3847
  return pulumi.get(self, "num_cpus")
3819
3848
 
3849
+ @property
3850
+ @pulumi.getter(name="nvmeControllerCount")
3851
+ def nvme_controller_count(self) -> pulumi.Output[Optional[int]]:
3852
+ return pulumi.get(self, "nvme_controller_count")
3853
+
3820
3854
  @property
3821
3855
  @pulumi.getter(name="ovfDeploy")
3822
3856
  def ovf_deploy(self) -> pulumi.Output[Optional['outputs.VirtualMachineOvfDeploy']]:
@@ -295,7 +295,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
295
295
  For more information on managing snapshots and how they work in VMware, see
296
296
  [here][ext-vm-snapshot-management].
297
297
 
298
- [ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-esxi-host-client/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
298
+ [ext-vm-snapshot-management]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/managing-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/using-snapshots-to-manage-virtual-machines-vSphereSingleHostManagementVMwareHostClient.html
299
299
 
300
300
  > **NOTE:** A snapshot in VMware differs from traditional disk snapshots, and
301
301
  can contain the actual running state of the virtual machine, data for all disks
@@ -309,7 +309,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
309
309
  NOT recommend using them as as backup feature. For more information on the
310
310
  limitation of virtual machine snapshots, see [here][ext-vm-snap-limitations].
311
311
 
312
- [ext-vm-snap-limitations]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-53F65726-A23B-4CF0-A7D5-48E584B88613.html
312
+ [ext-vm-snap-limitations]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration-guide-8-0/managing-virtual-machinesvsphere-vm-admin/using-snapshots-to-manage-virtual-machinesvsphere-vm-admin/snapshot-file-names-and-descriptionvsphere-vm-admin.html
313
313
 
314
314
  ## Example Usage
315
315
 
@@ -356,7 +356,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
356
356
  For more information on managing snapshots and how they work in VMware, see
357
357
  [here][ext-vm-snapshot-management].
358
358
 
359
- [ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-esxi-host-client/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
359
+ [ext-vm-snapshot-management]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/managing-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/using-snapshots-to-manage-virtual-machines-vSphereSingleHostManagementVMwareHostClient.html
360
360
 
361
361
  > **NOTE:** A snapshot in VMware differs from traditional disk snapshots, and
362
362
  can contain the actual running state of the virtual machine, data for all disks
@@ -370,7 +370,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
370
370
  NOT recommend using them as as backup feature. For more information on the
371
371
  limitation of virtual machine snapshots, see [here][ext-vm-snap-limitations].
372
372
 
373
- [ext-vm-snap-limitations]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-53F65726-A23B-4CF0-A7D5-48E584B88613.html
373
+ [ext-vm-snap-limitations]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration-guide-8-0/managing-virtual-machinesvsphere-vm-admin/using-snapshots-to-manage-virtual-machinesvsphere-vm-admin/snapshot-file-names-and-descriptionvsphere-vm-admin.html
374
374
 
375
375
  ## Example Usage
376
376
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_vsphere
3
- Version: 4.13.0a1737527662
3
+ Version: 4.13.1
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,23 +1,24 @@
1
- pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
2
- pulumi_vsphere/_inputs.py,sha256=VWAbDbP1egZtqNOBm5Gd9LXq0HTR_KLa_BMfzvARnzQ,186475
1
+ pulumi_vsphere/__init__.py,sha256=KVp2dIQCjsdCzu2ArfhmqUN6hMjU9HffF_u18Ek3A_c,11115
2
+ pulumi_vsphere/_inputs.py,sha256=PBs1a-df_1CaI2uPDltcjsgCbNSag4cl32CscKGyIW4,186499
3
3
  pulumi_vsphere/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
4
- pulumi_vsphere/compute_cluster.py,sha256=nC43gSRf-Aznzmq_yxt5hGlI1nlwz91mimNK_RR9V-c,232890
4
+ pulumi_vsphere/compute_cluster.py,sha256=gr2ZuPNBmNzwNrWQ0XDw8in75jsZ-tngGeH8ZQiaBPM,232860
5
5
  pulumi_vsphere/compute_cluster_host_group.py,sha256=2pUMyC9r0vQS11yLxdcFIyQq4POf8VQmqMsgt8mDQN0,15605
6
6
  pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=YUrv5Ro7_p9qNqrDPZLTHaa0fEt_SppTPMmLm1dHnA4,25709
7
7
  pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=BPhVHEzDWJRi0S0zo5p-RbOuP-yMI9wDmEXX7dCC2I4,18642
8
8
  pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=hBTX8zYk7B0BoYUXNmj5Zk6uDY4P10p5G1LDElzEhjk,29673
9
9
  pulumi_vsphere/compute_cluster_vm_group.py,sha256=3oNzZ6VNvDsVBYFHfWUt0x5SbxMIph8pBbrJO4lRZcY,23007
10
- pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=RFsz1MW6aGxR4W0jE3iePqm5od_6MrJymx4o58KAUbc,26978
10
+ pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=sHbddJDpFcfAMzdvNSwxWsMrtiyTUkg91uf16dDVExw,32204
11
11
  pulumi_vsphere/content_library.py,sha256=XW1jRVE1Oxt6ZkKD8FHpJlmdNA7MgjEjx2w176iTWy0,19738
12
12
  pulumi_vsphere/content_library_item.py,sha256=HEw0sOVm7tL6QMTmBBDqHhZRKmFYXAa_5_P6U0zktZM,21094
13
- pulumi_vsphere/custom_attribute.py,sha256=dd-TSTZBhZRd4kIMNawGvpqgFvp0CeWNQbesdNTJqn8,11759
13
+ pulumi_vsphere/custom_attribute.py,sha256=MGTvQNSZYxJdWG3cjlmyP24QS3FkROPoWAhLYs2xXgY,11917
14
14
  pulumi_vsphere/datacenter.py,sha256=Kilc1gkC7VJXM3sC0Htsu-v4Dv_vHlqjNWCvjlJLGDQ,18960
15
- pulumi_vsphere/datastore_cluster.py,sha256=RqdQ-Nq_ZabTpUvntNWu396num8oxf3uGD6wXibP1qg,84720
15
+ pulumi_vsphere/datastore_cluster.py,sha256=8hHjV5A3bIZcYFRpSIOhg2VZs_DQm-8pjLj6EvDy-Xw,84744
16
16
  pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=lapOmmiyy8KHGfNdw-Fp5FAKD5B0r-jUQHADWjt4V1E,23466
17
- pulumi_vsphere/distributed_port_group.py,sha256=YGNGa6r99ZO90wqRN6CNlLBICtd60a8uBcc-1M4DdFw,144747
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=onWoWCXlBojscjuQ7KP4eu4f89JGQtEB8wQX__5OaXs,258390
19
- pulumi_vsphere/dpm_host_override.py,sha256=a-dOR21PIROpSGnaHEJYviVXznE7JtRg8Tvoa215_24,17703
20
- pulumi_vsphere/drs_vm_override.py,sha256=hu0UMrNEoj9QQWiElIxCv_viyLbProf5uNr24G6y07s,19013
17
+ pulumi_vsphere/distributed_port_group.py,sha256=zyPiYD7GeLKzpqNDfo4klauPbSGC3woxmOGDmQ_Lak4,142052
18
+ pulumi_vsphere/distributed_virtual_switch.py,sha256=VeJNMsyIqL6qA14nAlmJk5iy43rkLiCVuQN5FXD19B0,258365
19
+ pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py,sha256=4iuFdJh9NDtbr_cYoauWfVQRB9gnhtiz8tQoMjNH0Io,14656
20
+ pulumi_vsphere/dpm_host_override.py,sha256=XfobJD3nZEl5xaiHwTxbhcmOvE9-R1d2P1MKo-IYHpk,17797
21
+ pulumi_vsphere/drs_vm_override.py,sha256=K8Pih766KJUScejVirvN9D_wKf2WtVq8WDl_WkUId08,22749
21
22
  pulumi_vsphere/entity_permissions.py,sha256=z4PvbMWmQUXx_sK3bQHGp_FHXVHzedT4uh2ojdsjQ8o,13156
22
23
  pulumi_vsphere/file.py,sha256=5nLX9atJuEC5bqbvsGd4CCV_hIve4J24qyezmrYcnV4,23571
23
24
  pulumi_vsphere/folder.py,sha256=NiIjlAuM_ytWE9eE4bmr0VYS5b6pfm8ZHVkQHnDIuic,29476
@@ -43,44 +44,44 @@ pulumi_vsphere/get_license.py,sha256=LWdUaNV77ip3f_FE5OVs0fYjPw_SgEeBS5U_6HHMdBM
43
44
  pulumi_vsphere/get_network.py,sha256=MMk9NPF7GNKEVre3qodSqv03CbCb6MwoUKAFZ2bpc-M,9810
44
45
  pulumi_vsphere/get_ovf_vm_template.py,sha256=422NQaoICHIHB2q4GeQTld1WaUJ2LSp1Gk55X8Ucv5I,29180
45
46
  pulumi_vsphere/get_policy.py,sha256=6r39F1A82BZbcK8Rw1I6mhTcyU9FUkpFRQvppPcUy5w,3998
46
- pulumi_vsphere/get_resource_pool.py,sha256=RbRega10PB4mIOzqsg80PPLxEPNKHVi-YfKJ7epHowQ,7967
47
+ pulumi_vsphere/get_resource_pool.py,sha256=HrQ5KUjEroAG4B4SWnW8pfY0I-CT-CHJH6PP_eOAG5w,7981
47
48
  pulumi_vsphere/get_role.py,sha256=r0hfeZprzETIUhlh3DNZAlNI8R1g4YXwQ0_kgoBzw6s,6078
48
49
  pulumi_vsphere/get_tag.py,sha256=ku33TbhXPFpwh21_cc4az6BJJOxAfCzZt3u4dsXhjXw,5543
49
50
  pulumi_vsphere/get_tag_category.py,sha256=gactlr1XDyR-6FuPhRDhv98qvb5dUoH-Rptd_-na0sI,5814
50
51
  pulumi_vsphere/get_vapp_container.py,sha256=08PrtkYMwBCyjJtUkgg4iGSNU1ViUqhjge3vnS2pLDo,5176
51
- pulumi_vsphere/get_virtual_machine.py,sha256=8-fFhiOakfEXui1HBIUPpnY5osfZ7DEDzpLboE3c-_k,67958
52
+ pulumi_vsphere/get_virtual_machine.py,sha256=EjvOHfPgNGsx3Tqp6SlfsK9WE-AYonU2j14xfp9NNaI,69316
52
53
  pulumi_vsphere/get_vmfs_disks.py,sha256=vO8Xo_E3FHL5gEnATVGwxdlyj0bbANPc2nnpD_QehFw,7551
53
54
  pulumi_vsphere/guest_os_customization.py,sha256=0raXcrdKGs5ZjwOYndtD6yRTub4nWWjOaXI-MMnqhcY,17127
54
- pulumi_vsphere/ha_vm_override.py,sha256=Lvu7onjeQWliq_ONQIr9MFwDy4b8zGCZkQ2w0ggjZEI,59134
55
+ pulumi_vsphere/ha_vm_override.py,sha256=1EHf0-rdpHsfaqIaPO4ddIA-WJ-PtZtRkYPjvc0xSL0,59092
55
56
  pulumi_vsphere/host.py,sha256=ztACxMQSacO8sE4og6vtkr8ehWz7zYbMiEGzaYXQNUU,50913
56
- pulumi_vsphere/host_port_group.py,sha256=11PeLX7X2BbIZqOqNa0p089Hwhmfe79JlpvYnhNUe6w,57428
57
- pulumi_vsphere/host_virtual_switch.py,sha256=MYNQ9Fv0XCbhn62fA0Gw-963D_xATYkUQtOCly4k61E,59955
57
+ pulumi_vsphere/host_port_group.py,sha256=rpYA-a9j2m75sC386FcP2VoNqqkuAPFuiDb4Jt4GVPM,57434
58
+ pulumi_vsphere/host_virtual_switch.py,sha256=Oqccjp0w_duYBU4CO0PynuMlhHX6FYLIMyVZ9iIN4lg,63109
58
59
  pulumi_vsphere/license.py,sha256=DwsJQehrx_QetnhEotAXj9uMGN6s52Ex62seIN79WOc,12196
59
60
  pulumi_vsphere/nas_datastore.py,sha256=CyB6l1bs6Lg28ZSXZOm63SAhaWC72PV0I1JgqbjNPe4,50328
60
61
  pulumi_vsphere/offline_software_depot.py,sha256=O4VuQf4h2gobA55ipUN5N--o4-mPTakVX1Xpe6E4ek0,7553
61
- pulumi_vsphere/outputs.py,sha256=Tj7mYV7BMCl_XT1uOwpULNy-J6A9EbCTmmigWCHbQ7g,158375
62
+ pulumi_vsphere/outputs.py,sha256=SxZJgA56rn9RLiglb9BYss_Cpqh4fDT_VVuTMpsb0Zk,158391
62
63
  pulumi_vsphere/provider.py,sha256=ebBbKo9SR-1kQc5iyRLFK9rtQhWlI_u-nAZrEFC83zA,20437
63
- pulumi_vsphere/pulumi-plugin.json,sha256=NyMEfl1e0iohkAnly7ANhib_pPAS4WTIiHij1Q1lO7o,84
64
+ pulumi_vsphere/pulumi-plugin.json,sha256=1yCzqpA0vWMmc8QHt1py2T_9GXckTv8qzhCjiPE-81Q,67
64
65
  pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
66
  pulumi_vsphere/resource_pool.py,sha256=EoVpNGqrDYXjP7Zyg12-rGOJDav9BW4Z05GqLIEBsEY,43639
66
67
  pulumi_vsphere/role.py,sha256=7AvmMTWG_J07ePZEu810mBVtVF1Vcndh0C8K5dn9CI8,9394
67
- pulumi_vsphere/storage_drs_vm_override.py,sha256=MCP1RH74V9cVOtSMUA08DvZ8lAX3U19Gxqz4-TkQWA0,25746
68
- pulumi_vsphere/supervisor.py,sha256=Kv6lXlK-lqO-uOTpJCfNXS_lNW60DMIxOqhR3-N2RG4,47094
69
- pulumi_vsphere/tag.py,sha256=ACyCpYeEW_iyhosN8UcDYkzgwvq67g55v8patQa-1Ik,15167
70
- pulumi_vsphere/tag_category.py,sha256=hfmCV_kprfnlgLD-6fjDcZNTt6-cuZFSgxc2TQbTQg0,17800
71
- pulumi_vsphere/vapp_container.py,sha256=9hU9i-yf-TqqkCxIbcqSkYHaisHDQyI-aWQ5P-vJjzM,54219
72
- pulumi_vsphere/vapp_entity.py,sha256=MdjmOZkG-amjGbAk_lnbSPJYhssZDSVSixeZt5fLw4A,34903
73
- pulumi_vsphere/virtual_disk.py,sha256=A56NN7b1Bzm2MW5DG-SNBiJsxY2_I5ZqiRR1mquhSHU,32133
74
- pulumi_vsphere/virtual_machine.py,sha256=6s5Tk64qsbnZITe5WOaWKpgtM2jOB_YMbo53HVkl1GA,223341
68
+ pulumi_vsphere/storage_drs_vm_override.py,sha256=p8bgeV0UR1XiON2VZhIB0NEi0l_c2tIjR65mE3DCIPY,25770
69
+ pulumi_vsphere/supervisor.py,sha256=aeOLgagpbmOtUCII7e34OHGOR6Jzt8Z2G4NLbXozppQ,51910
70
+ pulumi_vsphere/tag.py,sha256=XVt0ZJrGVESLpEfEOyI1kCcdSdTNcrBH2OHbG3nAD8k,15117
71
+ pulumi_vsphere/tag_category.py,sha256=4E2kcz3QSEFrT4j52ubmE_aKACmJrLvbjfSOeqPg_Zs,17750
72
+ pulumi_vsphere/vapp_container.py,sha256=ZH6kUaPEgfmG4kgE5wvMQHOc0UuiBEsopGMOXq79-18,54413
73
+ pulumi_vsphere/vapp_entity.py,sha256=k2EfP_VhF63iehYUxMf-E37SshhrDsSDGZ4NaiYD1YM,34861
74
+ pulumi_vsphere/virtual_disk.py,sha256=cNOEKC5uGcFp7Z5ggDMpVagcQZYTa66MQbHwiMx9YCY,34674
75
+ pulumi_vsphere/virtual_machine.py,sha256=d3580v7aRn0uxkhsFMciHAJMFi9jk8kWsilZFclYWtY,225018
75
76
  pulumi_vsphere/virtual_machine_class.py,sha256=lkJgYH2TEguJscKPbDPq5B9I0uVi5PD3K9FhMF4mxV8,17337
76
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=YuZAbiD0Pu48BGifXpGYzmEKzZsNsmQOB-6fmeINIdA,24086
77
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=iqExU_STU4OIUwBcUToWOhfTgfpSph28Bm-WNzYUpns,24968
77
78
  pulumi_vsphere/vm_storage_policy.py,sha256=YyV9B6CVh23AoH-VxJ9lwZy78I63NbTSW6xWn-iYK00,20183
78
79
  pulumi_vsphere/vmfs_datastore.py,sha256=sXzgqOY4I4UQAs7V3ENUW5tsLD_64m_xKi64W7_tMTw,45348
79
80
  pulumi_vsphere/vnic.py,sha256=e6nihrNo_9qeRT4n0qBf3Rm29xrpFYr9KtIBy-VB_Y0,30891
80
81
  pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
81
82
  pulumi_vsphere/config/__init__.pyi,sha256=iEdb3b8LpA1hgxsdfzIl9TB79_koUKrlg5KHtM-7xDg,1525
82
83
  pulumi_vsphere/config/vars.py,sha256=qYPNSppleMGJaxbz3VnPRGlln--OcnHmvlXJIXq6t20,3384
83
- pulumi_vsphere-4.13.0a1737527662.dist-info/METADATA,sha256=jWmWZM9zqWyhSQXtNdLUjG5f6uMSYEFJeIJYZKSWkOE,5021
84
- pulumi_vsphere-4.13.0a1737527662.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
85
- pulumi_vsphere-4.13.0a1737527662.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
- pulumi_vsphere-4.13.0a1737527662.dist-info/RECORD,,
84
+ pulumi_vsphere-4.13.1.dist-info/METADATA,sha256=ecqoCm1drUhSul9IOgmTGFQF1FsFpV9tw8MwLkBMRLQ,5010
85
+ pulumi_vsphere-4.13.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
86
+ pulumi_vsphere-4.13.1.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
87
+ pulumi_vsphere-4.13.1.dist-info/RECORD,,