pulumi-vsphere 4.10.1__py3-none-any.whl → 4.10.2a1720054582__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 (47) hide show
  1. pulumi_vsphere/__init__.py +28 -0
  2. pulumi_vsphere/_inputs.py +470 -6
  3. pulumi_vsphere/_utilities.py +35 -0
  4. pulumi_vsphere/compute_cluster.py +47 -0
  5. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +0 -4
  6. pulumi_vsphere/datacenter.py +7 -28
  7. pulumi_vsphere/datastore_cluster.py +0 -14
  8. pulumi_vsphere/distributed_port_group.py +56 -7
  9. pulumi_vsphere/distributed_virtual_switch.py +7 -28
  10. pulumi_vsphere/entity_permissions.py +56 -35
  11. pulumi_vsphere/folder.py +7 -28
  12. pulumi_vsphere/get_compute_cluster_host_group.py +18 -16
  13. pulumi_vsphere/get_content_library.py +10 -6
  14. pulumi_vsphere/get_content_library_item.py +12 -8
  15. pulumi_vsphere/get_datastore.py +9 -9
  16. pulumi_vsphere/get_datastore_stats.py +34 -32
  17. pulumi_vsphere/get_dynamic.py +14 -12
  18. pulumi_vsphere/get_folder.py +10 -2
  19. pulumi_vsphere/get_guest_os_customization.py +8 -43
  20. pulumi_vsphere/get_host_base_images.py +97 -0
  21. pulumi_vsphere/get_host_pci_device.py +4 -2
  22. pulumi_vsphere/get_host_thumbprint.py +12 -12
  23. pulumi_vsphere/get_host_vgpu_profile.py +4 -2
  24. pulumi_vsphere/get_license.py +2 -1
  25. pulumi_vsphere/get_network.py +14 -14
  26. pulumi_vsphere/get_resource_pool.py +12 -8
  27. pulumi_vsphere/get_role.py +4 -4
  28. pulumi_vsphere/get_virtual_machine.py +58 -33
  29. pulumi_vsphere/guest_os_customization.py +4 -4
  30. pulumi_vsphere/nas_datastore.py +7 -7
  31. pulumi_vsphere/offline_software_depot.py +180 -0
  32. pulumi_vsphere/outputs.py +495 -40
  33. pulumi_vsphere/provider.py +2 -6
  34. pulumi_vsphere/pulumi-plugin.json +2 -1
  35. pulumi_vsphere/resource_pool.py +2 -2
  36. pulumi_vsphere/supervisor.py +962 -0
  37. pulumi_vsphere/virtual_disk.py +10 -16
  38. pulumi_vsphere/virtual_machine.py +2 -2
  39. pulumi_vsphere/virtual_machine_class.py +442 -0
  40. pulumi_vsphere/virtual_machine_snapshot.py +2 -2
  41. pulumi_vsphere/vm_storage_policy.py +2 -2
  42. pulumi_vsphere/vnic.py +61 -65
  43. {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2a1720054582.dist-info}/METADATA +1 -1
  44. pulumi_vsphere-4.10.2a1720054582.dist-info/RECORD +86 -0
  45. {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2a1720054582.dist-info}/WHEEL +1 -1
  46. pulumi_vsphere-4.10.1.dist-info/RECORD +0 -82
  47. {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2a1720054582.dist-info}/top_level.txt +0 -0
@@ -196,10 +196,8 @@ class ProviderArgs:
196
196
 
197
197
  @property
198
198
  @pulumi.getter(name="vcenterServer")
199
+ @_utilities.deprecated("""This field has been renamed to vsphere_server.""")
199
200
  def vcenter_server(self) -> Optional[pulumi.Input[str]]:
200
- warnings.warn("""This field has been renamed to vsphere_server.""", DeprecationWarning)
201
- pulumi.log.warn("""vcenter_server is deprecated: This field has been renamed to vsphere_server.""")
202
-
203
201
  return pulumi.get(self, "vcenter_server")
204
202
 
205
203
  @vcenter_server.setter
@@ -413,10 +411,8 @@ class Provider(pulumi.ProviderResource):
413
411
 
414
412
  @property
415
413
  @pulumi.getter(name="vcenterServer")
414
+ @_utilities.deprecated("""This field has been renamed to vsphere_server.""")
416
415
  def vcenter_server(self) -> pulumi.Output[Optional[str]]:
417
- warnings.warn("""This field has been renamed to vsphere_server.""", DeprecationWarning)
418
- pulumi.log.warn("""vcenter_server is deprecated: This field has been renamed to vsphere_server.""")
419
-
420
416
  return pulumi.get(self, "vcenter_server")
421
417
 
422
418
  @property
@@ -1,4 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
- "name": "vsphere"
3
+ "name": "vsphere",
4
+ "version": "4.10.2-alpha.1720054582"
4
5
  }
@@ -650,7 +650,7 @@ class ResourcePool(pulumi.CustomResource):
650
650
  For more information on vSphere resource pools, please refer to the
651
651
  [product documentation][ref-vsphere-resource_pools].
652
652
 
653
- [ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.resmgmt.doc/GUID-60077B40-66FF-4625-934A-641703ED7601.html
653
+ [ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
654
654
 
655
655
  ## Example Usage
656
656
 
@@ -772,7 +772,7 @@ class ResourcePool(pulumi.CustomResource):
772
772
  For more information on vSphere resource pools, please refer to the
773
773
  [product documentation][ref-vsphere-resource_pools].
774
774
 
775
- [ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.resmgmt.doc/GUID-60077B40-66FF-4625-934A-641703ED7601.html
775
+ [ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
776
776
 
777
777
  ## Example Usage
778
778