pulumi-vsphere 4.11.0a1720768633__tar.gz → 4.17.0a1765953866__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 (105) hide show
  1. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/PKG-INFO +5 -4
  2. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/__init__.py +21 -1
  3. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/_inputs.py +4642 -0
  4. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/_utilities.py +15 -10
  5. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster.py +1417 -1496
  6. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_host_group.py +191 -55
  7. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_affinity_rule.py +131 -103
  8. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +133 -89
  9. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_dependency_rule.py +314 -106
  10. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/compute_cluster_vm_group.py +502 -0
  11. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_host_rule.py +323 -123
  12. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/config/__init__.py +2 -1
  13. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/config/__init__.pyi +7 -2
  14. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/config/vars.py +20 -15
  15. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/configuration_profile.py +286 -0
  16. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/content_library.py +177 -71
  17. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/content_library_item.py +532 -0
  18. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/custom_attribute.py +118 -38
  19. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/datacenter.py +99 -83
  20. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/datastore_cluster.py +594 -479
  21. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +537 -0
  22. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/distributed_port_group.py +1092 -874
  23. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/distributed_virtual_switch.py +1869 -1640
  24. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +294 -0
  25. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/dpm_host_override.py +499 -0
  26. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/drs_vm_override.py +236 -72
  27. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/entity_permissions.py +50 -44
  28. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/file.py +153 -162
  29. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/folder.py +233 -89
  30. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_compute_cluster.py +34 -23
  31. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_compute_cluster_host_group.py +36 -29
  32. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/get_configuration_profile.py +145 -0
  33. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_content_library.py +23 -15
  34. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_content_library_item.py +39 -27
  35. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_custom_attribute.py +26 -17
  36. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datacenter.py +40 -18
  37. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datastore.py +39 -27
  38. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datastore_cluster.py +47 -22
  39. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datastore_stats.py +39 -31
  40. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_distributed_virtual_switch.py +34 -23
  41. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_dynamic.py +39 -31
  42. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/get_folder.py +249 -0
  43. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_guest_os_customization.py +92 -26
  44. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host.py +34 -23
  45. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_base_images.py +18 -11
  46. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_pci_device.py +50 -35
  47. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_thumbprint.py +55 -35
  48. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_vgpu_profile.py +33 -22
  49. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_license.py +44 -29
  50. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/get_network.py +282 -0
  51. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_ovf_vm_template.py +182 -131
  52. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_policy.py +23 -15
  53. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_resource_pool.py +93 -32
  54. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_role.py +45 -31
  55. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_tag.py +34 -23
  56. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_tag_category.py +32 -21
  57. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_vapp_container.py +31 -21
  58. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_virtual_machine.py +432 -273
  59. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_vmfs_disks.py +42 -29
  60. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/guest_os_customization.py +107 -101
  61. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/ha_vm_override.py +969 -0
  62. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/host.py +513 -258
  63. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/host_port_group.py +342 -347
  64. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/host_virtual_switch.py +538 -391
  65. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/license.py +130 -84
  66. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/nas_datastore.py +391 -263
  67. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/offline_software_depot.py +33 -23
  68. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/outputs.py +1110 -951
  69. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/provider.py +170 -146
  70. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/pulumi-plugin.json +1 -1
  71. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/resource_pool.py +329 -271
  72. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/role.py +79 -47
  73. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/storage_drs_vm_override.py +225 -89
  74. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/supervisor.py +363 -261
  75. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/tag.py +414 -0
  76. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/tag_category.py +158 -72
  77. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vapp_container.py +425 -259
  78. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vapp_entity.py +324 -174
  79. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/virtual_disk.py +238 -140
  80. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/virtual_machine.py +4018 -0
  81. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/virtual_machine_class.py +114 -108
  82. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/virtual_machine_snapshot.py +131 -125
  83. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vm_storage_policy.py +110 -104
  84. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vmfs_datastore.py +460 -186
  85. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vnic.py +194 -178
  86. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/PKG-INFO +5 -4
  87. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/SOURCES.txt +3 -0
  88. pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere.egg-info/requires.txt +6 -0
  89. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pyproject.toml +3 -3
  90. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/_inputs.py +0 -3433
  91. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/compute_cluster_vm_group.py +0 -301
  92. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/content_library_item.py +0 -386
  93. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +0 -375
  94. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/dpm_host_override.py +0 -349
  95. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/get_folder.py +0 -119
  96. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/get_network.py +0 -171
  97. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/ha_vm_override.py +0 -887
  98. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/tag.py +0 -252
  99. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/virtual_machine.py +0 -3990
  100. pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere.egg-info/requires.txt +0 -3
  101. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/README.md +0 -0
  102. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/py.typed +0 -0
  103. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/dependency_links.txt +0 -0
  104. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/top_level.txt +0 -0
  105. {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/setup.cfg +0 -0
@@ -1,16 +1,17 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pulumi_vsphere
3
- Version: 4.11.0a1720768633
3
+ Version: 4.17.0a1765953866
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.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions<5,>=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)
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins as _builtins
5
6
  from . import _utilities
6
7
  import typing
7
8
  # Export this package's modules as members:
@@ -12,6 +13,7 @@ from .compute_cluster_vm_anti_affinity_rule import *
12
13
  from .compute_cluster_vm_dependency_rule import *
13
14
  from .compute_cluster_vm_group import *
14
15
  from .compute_cluster_vm_host_rule import *
16
+ from .configuration_profile import *
15
17
  from .content_library import *
16
18
  from .content_library_item import *
17
19
  from .custom_attribute import *
@@ -20,6 +22,7 @@ from .datastore_cluster import *
20
22
  from .datastore_cluster_vm_anti_affinity_rule import *
21
23
  from .distributed_port_group import *
22
24
  from .distributed_virtual_switch import *
25
+ from .distributed_virtual_switch_pvlan_mapping import *
23
26
  from .dpm_host_override import *
24
27
  from .drs_vm_override import *
25
28
  from .entity_permissions import *
@@ -27,6 +30,7 @@ from .file import *
27
30
  from .folder import *
28
31
  from .get_compute_cluster import *
29
32
  from .get_compute_cluster_host_group import *
33
+ from .get_configuration_profile import *
30
34
  from .get_content_library import *
31
35
  from .get_content_library_item import *
32
36
  from .get_custom_attribute import *
@@ -147,6 +151,14 @@ _utilities.register(
147
151
  "vsphere:index/computeClusterVmHostRule:ComputeClusterVmHostRule": "ComputeClusterVmHostRule"
148
152
  }
149
153
  },
154
+ {
155
+ "pkg": "vsphere",
156
+ "mod": "index/configurationProfile",
157
+ "fqn": "pulumi_vsphere",
158
+ "classes": {
159
+ "vsphere:index/configurationProfile:ConfigurationProfile": "ConfigurationProfile"
160
+ }
161
+ },
150
162
  {
151
163
  "pkg": "vsphere",
152
164
  "mod": "index/contentLibrary",
@@ -211,6 +223,14 @@ _utilities.register(
211
223
  "vsphere:index/distributedVirtualSwitch:DistributedVirtualSwitch": "DistributedVirtualSwitch"
212
224
  }
213
225
  },
226
+ {
227
+ "pkg": "vsphere",
228
+ "mod": "index/distributedVirtualSwitchPvlanMapping",
229
+ "fqn": "pulumi_vsphere",
230
+ "classes": {
231
+ "vsphere:index/distributedVirtualSwitchPvlanMapping:DistributedVirtualSwitchPvlanMapping": "DistributedVirtualSwitchPvlanMapping"
232
+ }
233
+ },
214
234
  {
215
235
  "pkg": "vsphere",
216
236
  "mod": "index/dpmHostOverride",