pulumi-vsphere 4.8.0a1697162932__py3-none-any.whl → 4.9.0__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.
Files changed (77) hide show
  1. pulumi_vsphere/__init__.py +10 -0
  2. pulumi_vsphere/_inputs.py +801 -569
  3. pulumi_vsphere/compute_cluster.py +287 -419
  4. pulumi_vsphere/compute_cluster_host_group.py +7 -37
  5. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +11 -49
  6. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +11 -49
  7. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +13 -55
  8. pulumi_vsphere/compute_cluster_vm_group.py +7 -37
  9. pulumi_vsphere/compute_cluster_vm_host_rule.py +15 -61
  10. pulumi_vsphere/config/__init__.pyi +73 -0
  11. pulumi_vsphere/config/vars.py +1 -1
  12. pulumi_vsphere/content_library.py +11 -59
  13. pulumi_vsphere/content_library_item.py +13 -55
  14. pulumi_vsphere/custom_attribute.py +5 -31
  15. pulumi_vsphere/datacenter.py +10 -46
  16. pulumi_vsphere/datastore_cluster.py +51 -169
  17. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +11 -49
  18. pulumi_vsphere/distributed_port_group.py +95 -301
  19. pulumi_vsphere/distributed_virtual_switch.py +190 -586
  20. pulumi_vsphere/dpm_host_override.py +9 -43
  21. pulumi_vsphere/drs_vm_override.py +9 -43
  22. pulumi_vsphere/entity_permissions.py +7 -37
  23. pulumi_vsphere/file.py +15 -61
  24. pulumi_vsphere/folder.py +11 -49
  25. pulumi_vsphere/get_compute_cluster.py +1 -1
  26. pulumi_vsphere/get_compute_cluster_host_group.py +1 -1
  27. pulumi_vsphere/get_content_library.py +1 -1
  28. pulumi_vsphere/get_content_library_item.py +1 -1
  29. pulumi_vsphere/get_custom_attribute.py +1 -1
  30. pulumi_vsphere/get_datacenter.py +1 -1
  31. pulumi_vsphere/get_datastore.py +1 -1
  32. pulumi_vsphere/get_datastore_cluster.py +1 -1
  33. pulumi_vsphere/get_distributed_virtual_switch.py +1 -1
  34. pulumi_vsphere/get_dynamic.py +1 -1
  35. pulumi_vsphere/get_folder.py +1 -1
  36. pulumi_vsphere/get_guest_os_customization.py +173 -0
  37. pulumi_vsphere/get_host.py +1 -1
  38. pulumi_vsphere/get_host_pci_device.py +1 -1
  39. pulumi_vsphere/get_host_thumbprint.py +1 -1
  40. pulumi_vsphere/get_license.py +1 -1
  41. pulumi_vsphere/get_network.py +1 -1
  42. pulumi_vsphere/get_ovf_vm_template.py +1 -1
  43. pulumi_vsphere/get_policy.py +1 -1
  44. pulumi_vsphere/get_resource_pool.py +1 -1
  45. pulumi_vsphere/get_role.py +1 -1
  46. pulumi_vsphere/get_tag.py +1 -1
  47. pulumi_vsphere/get_tag_category.py +1 -1
  48. pulumi_vsphere/get_vapp_container.py +1 -1
  49. pulumi_vsphere/get_virtual_machine.py +1 -1
  50. pulumi_vsphere/get_vmfs_disks.py +1 -1
  51. pulumi_vsphere/guest_os_customization.py +350 -0
  52. pulumi_vsphere/ha_vm_override.py +31 -109
  53. pulumi_vsphere/host.py +29 -103
  54. pulumi_vsphere/host_port_group.py +38 -130
  55. pulumi_vsphere/host_virtual_switch.py +43 -145
  56. pulumi_vsphere/license.py +9 -43
  57. pulumi_vsphere/nas_datastore.py +31 -109
  58. pulumi_vsphere/outputs.py +1071 -656
  59. pulumi_vsphere/provider.py +14 -51
  60. pulumi_vsphere/resource_pool.py +31 -109
  61. pulumi_vsphere/role.py +6 -34
  62. pulumi_vsphere/storage_drs_vm_override.py +11 -49
  63. pulumi_vsphere/tag.py +7 -37
  64. pulumi_vsphere/tag_category.py +9 -43
  65. pulumi_vsphere/vapp_container.py +31 -109
  66. pulumi_vsphere/vapp_entity.py +21 -79
  67. pulumi_vsphere/virtual_disk.py +15 -61
  68. pulumi_vsphere/virtual_machine.py +160 -511
  69. pulumi_vsphere/virtual_machine_snapshot.py +15 -61
  70. pulumi_vsphere/vm_storage_policy.py +7 -37
  71. pulumi_vsphere/vmfs_datastore.py +22 -82
  72. pulumi_vsphere/vnic.py +21 -89
  73. {pulumi_vsphere-4.8.0a1697162932.dist-info → pulumi_vsphere-4.9.0.dist-info}/METADATA +1 -1
  74. pulumi_vsphere-4.9.0.dist-info/RECORD +80 -0
  75. {pulumi_vsphere-4.8.0a1697162932.dist-info → pulumi_vsphere-4.9.0.dist-info}/WHEEL +1 -1
  76. pulumi_vsphere-4.8.0a1697162932.dist-info/RECORD +0 -77
  77. {pulumi_vsphere-4.8.0a1697162932.dist-info → pulumi_vsphere-4.9.0.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,7 @@ from .get_datastore_cluster import *
36
36
  from .get_distributed_virtual_switch import *
37
37
  from .get_dynamic import *
38
38
  from .get_folder import *
39
+ from .get_guest_os_customization import *
39
40
  from .get_host import *
40
41
  from .get_host_pci_device import *
41
42
  from .get_host_thumbprint import *
@@ -50,6 +51,7 @@ from .get_tag_category import *
50
51
  from .get_vapp_container import *
51
52
  from .get_virtual_machine import *
52
53
  from .get_vmfs_disks import *
54
+ from .guest_os_customization import *
53
55
  from .ha_vm_override import *
54
56
  from .host import *
55
57
  from .host_port_group import *
@@ -243,6 +245,14 @@ _utilities.register(
243
245
  "vsphere:index/folder:Folder": "Folder"
244
246
  }
245
247
  },
248
+ {
249
+ "pkg": "vsphere",
250
+ "mod": "index/guestOsCustomization",
251
+ "fqn": "pulumi_vsphere",
252
+ "classes": {
253
+ "vsphere:index/guestOsCustomization:GuestOsCustomization": "GuestOsCustomization"
254
+ }
255
+ },
246
256
  {
247
257
  "pkg": "vsphere",
248
258
  "mod": "index/haVmOverride",