pulumi-vsphere 4.10.0a1710245029__tar.gz → 4.13.0a1736849827__tar.gz

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 (93) hide show
  1. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/PKG-INFO +5 -4
  2. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/__init__.py +28 -0
  3. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/_inputs.py +1816 -277
  4. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/_utilities.py +41 -5
  5. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/compute_cluster.py +937 -1488
  6. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/compute_cluster_host_group.py +67 -2
  7. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/compute_cluster_vm_affinity_rule.py +69 -34
  8. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +41 -2
  9. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/compute_cluster_vm_dependency_rule.py +205 -2
  10. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/compute_cluster_vm_group.py +198 -2
  11. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/compute_cluster_vm_host_rule.py +73 -2
  12. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/config/__init__.pyi +5 -0
  13. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/config/vars.py +5 -0
  14. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/content_library.py +113 -12
  15. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/content_library_item.py +143 -2
  16. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/custom_attribute.py +77 -2
  17. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/datacenter.py +48 -40
  18. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/datastore_cluster.py +217 -366
  19. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +159 -2
  20. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/distributed_port_group.py +416 -189
  21. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/distributed_virtual_switch.py +571 -830
  22. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/dpm_host_override.py +63 -2
  23. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/drs_vm_override.py +67 -2
  24. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/entity_permissions.py +64 -38
  25. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/file.py +21 -24
  26. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/folder.py +148 -30
  27. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_compute_cluster.py +16 -9
  28. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_compute_cluster_host_group.py +36 -25
  29. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_content_library.py +23 -15
  30. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_content_library_item.py +29 -13
  31. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_custom_attribute.py +14 -9
  32. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_datacenter.py +30 -12
  33. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_datastore.py +29 -21
  34. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_datastore_cluster.py +31 -10
  35. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_datastore_stats.py +63 -57
  36. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_distributed_virtual_switch.py +18 -9
  37. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_dynamic.py +35 -25
  38. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_folder.py +23 -11
  39. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_guest_os_customization.py +26 -52
  40. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_host.py +16 -9
  41. pulumi_vsphere-4.13.0a1736849827/pulumi_vsphere/get_host_base_images.py +104 -0
  42. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_host_pci_device.py +28 -19
  43. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_host_thumbprint.py +41 -25
  44. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_host_vgpu_profile.py +20 -15
  45. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_license.py +20 -10
  46. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_network.py +80 -24
  47. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_ovf_vm_template.py +56 -5
  48. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_policy.py +13 -9
  49. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_resource_pool.py +29 -23
  50. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_role.py +23 -13
  51. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_tag.py +16 -9
  52. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_tag_category.py +16 -9
  53. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_vapp_container.py +15 -9
  54. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_virtual_machine.py +205 -48
  55. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/get_vmfs_disks.py +18 -9
  56. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/guest_os_customization.py +60 -5
  57. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/ha_vm_override.py +352 -380
  58. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/host.py +244 -64
  59. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/host_port_group.py +27 -24
  60. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/host_virtual_switch.py +209 -289
  61. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/license.py +5 -32
  62. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/nas_datastore.py +74 -9
  63. pulumi_vsphere-4.13.0a1736849827/pulumi_vsphere/offline_software_depot.py +185 -0
  64. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/outputs.py +717 -270
  65. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/provider.py +7 -6
  66. pulumi_vsphere-4.13.0a1736849827/pulumi_vsphere/pulumi-plugin.json +5 -0
  67. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/resource_pool.py +168 -411
  68. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/role.py +33 -2
  69. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/storage_drs_vm_override.py +133 -2
  70. pulumi_vsphere-4.13.0a1736849827/pulumi_vsphere/supervisor.py +967 -0
  71. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/tag.py +159 -2
  72. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/tag_category.py +83 -2
  73. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/vapp_container.py +163 -2
  74. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/vapp_entity.py +147 -2
  75. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/virtual_disk.py +123 -36
  76. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/virtual_machine.py +698 -829
  77. pulumi_vsphere-4.13.0a1736849827/pulumi_vsphere/virtual_machine_class.py +447 -0
  78. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/virtual_machine_snapshot.py +13 -12
  79. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/vm_storage_policy.py +120 -127
  80. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/vmfs_datastore.py +271 -2
  81. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/vnic.py +104 -105
  82. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere.egg-info/PKG-INFO +5 -4
  83. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere.egg-info/SOURCES.txt +4 -0
  84. pulumi_vsphere-4.13.0a1736849827/pulumi_vsphere.egg-info/requires.txt +6 -0
  85. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pyproject.toml +3 -3
  86. pulumi_vsphere-4.10.0a1710245029/pulumi_vsphere/pulumi-plugin.json +0 -4
  87. pulumi_vsphere-4.10.0a1710245029/pulumi_vsphere.egg-info/requires.txt +0 -3
  88. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/README.md +0 -0
  89. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/config/__init__.py +0 -0
  90. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere/py.typed +0 -0
  91. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere.egg-info/dependency_links.txt +0 -0
  92. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/pulumi_vsphere.egg-info/top_level.txt +0 -0
  93. {pulumi_vsphere-4.10.0a1710245029 → pulumi_vsphere-4.13.0a1736849827}/setup.cfg +0 -0
@@ -1,16 +1,17 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: pulumi_vsphere
3
- Version: 4.10.0a1710245029
3
+ Version: 4.13.0a1736849827
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-vsphere
8
8
  Keywords: pulumi,vsphere
9
- Requires-Python: >=3.8
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.0.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.142.0
13
13
  Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
15
 
15
16
  [![Actions Status](https://github.com/pulumi/pulumi-vsphere/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-vsphere/actions)
16
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -39,6 +39,7 @@ from .get_dynamic import *
39
39
  from .get_folder import *
40
40
  from .get_guest_os_customization import *
41
41
  from .get_host import *
42
+ from .get_host_base_images import *
42
43
  from .get_host_pci_device import *
43
44
  from .get_host_thumbprint import *
44
45
  from .get_host_vgpu_profile import *
@@ -60,16 +61,19 @@ from .host_port_group import *
60
61
  from .host_virtual_switch import *
61
62
  from .license import *
62
63
  from .nas_datastore import *
64
+ from .offline_software_depot import *
63
65
  from .provider import *
64
66
  from .resource_pool import *
65
67
  from .role import *
66
68
  from .storage_drs_vm_override import *
69
+ from .supervisor import *
67
70
  from .tag import *
68
71
  from .tag_category import *
69
72
  from .vapp_container import *
70
73
  from .vapp_entity import *
71
74
  from .virtual_disk import *
72
75
  from .virtual_machine import *
76
+ from .virtual_machine_class import *
73
77
  from .virtual_machine_snapshot import *
74
78
  from .vm_storage_policy import *
75
79
  from .vmfs_datastore import *
@@ -303,6 +307,14 @@ _utilities.register(
303
307
  "vsphere:index/nasDatastore:NasDatastore": "NasDatastore"
304
308
  }
305
309
  },
310
+ {
311
+ "pkg": "vsphere",
312
+ "mod": "index/offlineSoftwareDepot",
313
+ "fqn": "pulumi_vsphere",
314
+ "classes": {
315
+ "vsphere:index/offlineSoftwareDepot:OfflineSoftwareDepot": "OfflineSoftwareDepot"
316
+ }
317
+ },
306
318
  {
307
319
  "pkg": "vsphere",
308
320
  "mod": "index/resourcePool",
@@ -327,6 +339,14 @@ _utilities.register(
327
339
  "vsphere:index/storageDrsVmOverride:StorageDrsVmOverride": "StorageDrsVmOverride"
328
340
  }
329
341
  },
342
+ {
343
+ "pkg": "vsphere",
344
+ "mod": "index/supervisor",
345
+ "fqn": "pulumi_vsphere",
346
+ "classes": {
347
+ "vsphere:index/supervisor:Supervisor": "Supervisor"
348
+ }
349
+ },
330
350
  {
331
351
  "pkg": "vsphere",
332
352
  "mod": "index/tag",
@@ -375,6 +395,14 @@ _utilities.register(
375
395
  "vsphere:index/virtualMachine:VirtualMachine": "VirtualMachine"
376
396
  }
377
397
  },
398
+ {
399
+ "pkg": "vsphere",
400
+ "mod": "index/virtualMachineClass",
401
+ "fqn": "pulumi_vsphere",
402
+ "classes": {
403
+ "vsphere:index/virtualMachineClass:VirtualMachineClass": "VirtualMachineClass"
404
+ }
405
+ },
378
406
  {
379
407
  "pkg": "vsphere",
380
408
  "mod": "index/virtualMachineSnapshot",