pulumi-vsphere 4.13.0a1737095214__py3-none-any.whl → 4.13.0a1737580962__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 (30) 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/tag.py +2 -2
  21. pulumi_vsphere/tag_category.py +2 -2
  22. pulumi_vsphere/vapp_container.py +2 -2
  23. pulumi_vsphere/vapp_entity.py +2 -2
  24. pulumi_vsphere/virtual_disk.py +7 -7
  25. pulumi_vsphere/virtual_machine.py +34 -0
  26. pulumi_vsphere/virtual_machine_snapshot.py +4 -4
  27. {pulumi_vsphere-4.13.0a1737095214.dist-info → pulumi_vsphere-4.13.0a1737580962.dist-info}/METADATA +1 -1
  28. {pulumi_vsphere-4.13.0a1737095214.dist-info → pulumi_vsphere-4.13.0a1737580962.dist-info}/RECORD +30 -29
  29. {pulumi_vsphere-4.13.0a1737095214.dist-info → pulumi_vsphere-4.13.0a1737580962.dist-info}/WHEEL +0 -0
  30. {pulumi_vsphere-4.13.0a1737095214.dist-info → pulumi_vsphere-4.13.0a1737580962.dist-info}/top_level.txt +0 -0
@@ -777,10 +777,58 @@ class HostVirtualSwitch(pulumi.CustomResource):
777
777
  For an overview on vSphere networking concepts, see [this
778
778
  page][ref-vsphere-net-concepts].
779
779
 
780
- [ref-vsphere-net-concepts]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.networking.doc/GUID-2B11DBB8-CB3C-4AFF-8885-EFEA0FC562F4.html
780
+ [ref-vsphere-net-concepts]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking-8-0/introduction-to-vsphere-networking.html
781
781
 
782
782
  ## Example Usage
783
783
 
784
+ ### Create a virtual switch with one active and one standby NIC
785
+
786
+ ```python
787
+ import pulumi
788
+ import pulumi_vsphere as vsphere
789
+
790
+ datacenter = vsphere.get_datacenter(name="dc-01")
791
+ host = vsphere.get_host(name="esxi-01.example.com",
792
+ datacenter_id=datacenter.id)
793
+ switch = vsphere.HostVirtualSwitch("switch",
794
+ name="vSwitchTest",
795
+ host_system_id=host.id,
796
+ network_adapters=[
797
+ "vmnic0",
798
+ "vmnic1",
799
+ ],
800
+ active_nics=["vmnic0"],
801
+ standby_nics=["vmnic1"])
802
+ ```
803
+
804
+ ### Create a virtual switch with extra networking policy options
805
+
806
+ ```python
807
+ import pulumi
808
+ import pulumi_vsphere as vsphere
809
+
810
+ datacenter = vsphere.get_datacenter(name="dc-01")
811
+ host = vsphere.get_host(name="esxi-01.example.com",
812
+ datacenter_id=datacenter.id)
813
+ switch = vsphere.HostVirtualSwitch("switch",
814
+ name="vSwitchTest",
815
+ host_system_id=host.id,
816
+ network_adapters=[
817
+ "vmnic0",
818
+ "vmnic1",
819
+ ],
820
+ active_nics=["vmnic0"],
821
+ standby_nics=["vmnic1"],
822
+ teaming_policy="failover_explicit",
823
+ allow_promiscuous=False,
824
+ allow_forged_transmits=False,
825
+ allow_mac_changes=False,
826
+ shaping_enabled=True,
827
+ shaping_average_bandwidth=50000000,
828
+ shaping_peak_bandwidth=100000000,
829
+ shaping_burst_size=1000000000)
830
+ ```
831
+
784
832
  ## Import
785
833
 
786
834
  An existing vSwitch can be imported into this resource by its ID.
@@ -850,10 +898,58 @@ class HostVirtualSwitch(pulumi.CustomResource):
850
898
  For an overview on vSphere networking concepts, see [this
851
899
  page][ref-vsphere-net-concepts].
852
900
 
853
- [ref-vsphere-net-concepts]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.networking.doc/GUID-2B11DBB8-CB3C-4AFF-8885-EFEA0FC562F4.html
901
+ [ref-vsphere-net-concepts]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking-8-0/introduction-to-vsphere-networking.html
854
902
 
855
903
  ## Example Usage
856
904
 
905
+ ### Create a virtual switch with one active and one standby NIC
906
+
907
+ ```python
908
+ import pulumi
909
+ import pulumi_vsphere as vsphere
910
+
911
+ datacenter = vsphere.get_datacenter(name="dc-01")
912
+ host = vsphere.get_host(name="esxi-01.example.com",
913
+ datacenter_id=datacenter.id)
914
+ switch = vsphere.HostVirtualSwitch("switch",
915
+ name="vSwitchTest",
916
+ host_system_id=host.id,
917
+ network_adapters=[
918
+ "vmnic0",
919
+ "vmnic1",
920
+ ],
921
+ active_nics=["vmnic0"],
922
+ standby_nics=["vmnic1"])
923
+ ```
924
+
925
+ ### Create a virtual switch with extra networking policy options
926
+
927
+ ```python
928
+ import pulumi
929
+ import pulumi_vsphere as vsphere
930
+
931
+ datacenter = vsphere.get_datacenter(name="dc-01")
932
+ host = vsphere.get_host(name="esxi-01.example.com",
933
+ datacenter_id=datacenter.id)
934
+ switch = vsphere.HostVirtualSwitch("switch",
935
+ name="vSwitchTest",
936
+ host_system_id=host.id,
937
+ network_adapters=[
938
+ "vmnic0",
939
+ "vmnic1",
940
+ ],
941
+ active_nics=["vmnic0"],
942
+ standby_nics=["vmnic1"],
943
+ teaming_policy="failover_explicit",
944
+ allow_promiscuous=False,
945
+ allow_forged_transmits=False,
946
+ allow_mac_changes=False,
947
+ shaping_enabled=True,
948
+ shaping_average_bandwidth=50000000,
949
+ shaping_peak_bandwidth=100000000,
950
+ shaping_burst_size=1000000000)
951
+ ```
952
+
857
953
  ## Import
858
954
 
859
955
  An existing vSwitch can be imported into this resource by its ID.
pulumi_vsphere/outputs.py CHANGED
@@ -2682,7 +2682,7 @@ class VirtualMachineDisk(dict):
2682
2682
  """
2683
2683
  :param str label: A unique label for this disk.
2684
2684
  :param bool attach: If this is true, the disk is attached instead of created. Implies keep_on_remove.
2685
- :param str controller_type: The type of controller the disk should be connected to. Must be 'scsi', 'sata', or 'ide'.
2685
+ :param str controller_type: The type of controller the disk should be connected to. Must be 'scsi', 'sata', 'nvme', or 'ide'.
2686
2686
  :param str datastore_id: The datastore ID for this virtual disk, if different than the virtual machine.
2687
2687
  :param str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
2688
2688
  :param str disk_mode: The mode of this this virtual disk for purposes of writes and snapshotting. Can be one of append, independent_nonpersistent, independent_persistent, nonpersistent, persistent, or undoable.
@@ -2764,7 +2764,7 @@ class VirtualMachineDisk(dict):
2764
2764
  @pulumi.getter(name="controllerType")
2765
2765
  def controller_type(self) -> Optional[str]:
2766
2766
  """
2767
- The type of controller the disk should be connected to. Must be 'scsi', 'sata', or 'ide'.
2767
+ The type of controller the disk should be connected to. Must be 'scsi', 'sata', 'nvme', or 'ide'.
2768
2768
  """
2769
2769
  return pulumi.get(self, "controller_type")
2770
2770
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "vsphere",
4
- "version": "4.13.0-alpha.1737095214"
4
+ "version": "4.13.0-alpha.1737580962"
5
5
  }
@@ -259,7 +259,7 @@ class StorageDrsVmOverride(pulumi.CustomResource):
259
259
  For more information on vSphere datastore clusters and Storage DRS, see [this
260
260
  page][ref-vsphere-datastore-clusters].
261
261
 
262
- [ref-vsphere-datastore-clusters]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-598DF695-107E-406B-9C95-0AF961FC227A.html
262
+ [ref-vsphere-datastore-clusters]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-resource-management-8-0/creating-a-datastore-cluster.html
263
263
 
264
264
  ## Example Usage
265
265
 
@@ -350,7 +350,7 @@ class StorageDrsVmOverride(pulumi.CustomResource):
350
350
  For more information on vSphere datastore clusters and Storage DRS, see [this
351
351
  page][ref-vsphere-datastore-clusters].
352
352
 
353
- [ref-vsphere-datastore-clusters]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-598DF695-107E-406B-9C95-0AF961FC227A.html
353
+ [ref-vsphere-datastore-clusters]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-resource-management-8-0/creating-a-datastore-cluster.html
354
354
 
355
355
  ## Example Usage
356
356
 
pulumi_vsphere/tag.py CHANGED
@@ -151,7 +151,7 @@ class Tag(pulumi.CustomResource):
151
151
 
152
152
  For more information about tags, click [here][ext-tags-general].
153
153
 
154
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
154
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
155
155
 
156
156
  ## Example Usage
157
157
 
@@ -243,7 +243,7 @@ class Tag(pulumi.CustomResource):
243
243
 
244
244
  For more information about tags, click [here][ext-tags-general].
245
245
 
246
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
246
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
247
247
 
248
248
  ## Example Usage
249
249
 
@@ -207,7 +207,7 @@ class TagCategory(pulumi.CustomResource):
207
207
 
208
208
  For more information about tags, click [here][ext-tags-general].
209
209
 
210
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
210
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
211
211
 
212
212
  ## Example Usage
213
213
 
@@ -268,7 +268,7 @@ class TagCategory(pulumi.CustomResource):
268
268
 
269
269
  For more information about tags, click [here][ext-tags-general].
270
270
 
271
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
271
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
272
272
 
273
273
  ## Example Usage
274
274
 
@@ -650,7 +650,7 @@ class VappContainer(pulumi.CustomResource):
650
650
 
651
651
  For more information on vSphere vApps, see the VMware vSphere [product documentation][ref-vsphere-vapp].
652
652
 
653
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-E6E9D2A9-D358-4996-9BC7-F8D9D9645290.html
653
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration-guide-8-0/managing-multi-tiered-applications-with-vsphere-vapp-in-the-vsphere-web-clientvsphere-vm-admin.html
654
654
 
655
655
  ## Basic Example
656
656
 
@@ -782,7 +782,7 @@ class VappContainer(pulumi.CustomResource):
782
782
 
783
783
  For more information on vSphere vApps, see the VMware vSphere [product documentation][ref-vsphere-vapp].
784
784
 
785
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-E6E9D2A9-D358-4996-9BC7-F8D9D9645290.html
785
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration-guide-8-0/managing-multi-tiered-applications-with-vsphere-vapp-in-the-vsphere-web-clientvsphere-vm-admin.html
786
786
 
787
787
  ## Basic Example
788
788
 
@@ -417,7 +417,7 @@ class VappEntity(pulumi.CustomResource):
417
417
  For more information on vSphere vApps, see [this
418
418
  page][ref-vsphere-vapp].
419
419
 
420
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-2A95EBB8-1779-40FA-B4FB-4D0845750879.html
420
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/create-a-vapp-h5-and-flex.html
421
421
 
422
422
  ## Example Usage
423
423
 
@@ -519,7 +519,7 @@ class VappEntity(pulumi.CustomResource):
519
519
  For more information on vSphere vApps, see [this
520
520
  page][ref-vsphere-vapp].
521
521
 
522
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-2A95EBB8-1779-40FA-B4FB-4D0845750879.html
522
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/create-a-vapp-h5-and-flex.html
523
523
 
524
524
  ## Example Usage
525
525
 
@@ -59,7 +59,7 @@ class VirtualDiskArgs:
59
59
  information on what each kind of disk provisioning policy means, click
60
60
  [here][docs-vmware-vm-disk-provisioning].
61
61
 
62
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
62
+ [docs-vmware-vm-disk-provisioning]: 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/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
63
63
  """
64
64
  pulumi.set(__self__, "datastore", datastore)
65
65
  pulumi.set(__self__, "size", size)
@@ -178,7 +178,7 @@ class VirtualDiskArgs:
178
178
  information on what each kind of disk provisioning policy means, click
179
179
  [here][docs-vmware-vm-disk-provisioning].
180
180
 
181
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
181
+ [docs-vmware-vm-disk-provisioning]: 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/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
182
182
  """
183
183
  return pulumi.get(self, "type")
184
184
 
@@ -228,7 +228,7 @@ class _VirtualDiskState:
228
228
  information on what each kind of disk provisioning policy means, click
229
229
  [here][docs-vmware-vm-disk-provisioning].
230
230
 
231
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
231
+ [docs-vmware-vm-disk-provisioning]: 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/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
232
232
  :param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
233
233
  be created. This needs to end in `.vmdk`.
234
234
  """
@@ -339,7 +339,7 @@ class _VirtualDiskState:
339
339
  information on what each kind of disk provisioning policy means, click
340
340
  [here][docs-vmware-vm-disk-provisioning].
341
341
 
342
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
342
+ [docs-vmware-vm-disk-provisioning]: 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/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
343
343
  """
344
344
  return pulumi.get(self, "type")
345
345
 
@@ -444,7 +444,7 @@ class VirtualDisk(pulumi.CustomResource):
444
444
  information on what each kind of disk provisioning policy means, click
445
445
  [here][docs-vmware-vm-disk-provisioning].
446
446
 
447
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
447
+ [docs-vmware-vm-disk-provisioning]: 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/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
448
448
  :param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
449
449
  be created. This needs to end in `.vmdk`.
450
450
  """
@@ -590,7 +590,7 @@ class VirtualDisk(pulumi.CustomResource):
590
590
  information on what each kind of disk provisioning policy means, click
591
591
  [here][docs-vmware-vm-disk-provisioning].
592
592
 
593
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
593
+ [docs-vmware-vm-disk-provisioning]: 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/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
594
594
  :param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
595
595
  be created. This needs to end in `.vmdk`.
596
596
  """
@@ -676,7 +676,7 @@ class VirtualDisk(pulumi.CustomResource):
676
676
  information on what each kind of disk provisioning policy means, click
677
677
  [here][docs-vmware-vm-disk-provisioning].
678
678
 
679
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
679
+ [docs-vmware-vm-disk-provisioning]: 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/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
680
680
  """
681
681
  return pulumi.get(self, "type")
682
682
 
@@ -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.0a1737095214
3
+ Version: 4.13.0a1737580962
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=x0te0bDMK9wpuBu5bsyM1bKMXgSRgzLX2dIQIE4Y9kw,84
64
+ pulumi_vsphere/pulumi-plugin.json,sha256=KDgvRL4VIY5e35pQT0tvfQAZWpuus9udlNFgG5bBiag,84
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/storage_drs_vm_override.py,sha256=p8bgeV0UR1XiON2VZhIB0NEi0l_c2tIjR65mE3DCIPY,25770
68
69
  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
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.0a1737095214.dist-info/METADATA,sha256=klldBSouzmLEl4GJeDdOcqIqDGttDOCkGWmk-Xm4_AQ,5021
84
- pulumi_vsphere-4.13.0a1737095214.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
85
- pulumi_vsphere-4.13.0a1737095214.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
- pulumi_vsphere-4.13.0a1737095214.dist-info/RECORD,,
84
+ pulumi_vsphere-4.13.0a1737580962.dist-info/METADATA,sha256=t7tuuFdSEA8meLah356ujXpscJABJwFj6tBzrJzhi1Q,5021
85
+ pulumi_vsphere-4.13.0a1737580962.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
86
+ pulumi_vsphere-4.13.0a1737580962.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
87
+ pulumi_vsphere-4.13.0a1737580962.dist-info/RECORD,,