pulumi-vsphere 4.13.2__tar.gz → 4.17.0a1766212783__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.
Files changed (96) hide show
  1. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/PKG-INFO +3 -3
  2. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/__init__.py +12 -2
  3. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/_inputs.py +1172 -1173
  4. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/_utilities.py +1 -1
  5. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/compute_cluster.py +1226 -1485
  6. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/compute_cluster_host_group.py +124 -54
  7. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/compute_cluster_vm_affinity_rule.py +88 -88
  8. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +92 -88
  9. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/compute_cluster_vm_dependency_rule.py +109 -105
  10. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/compute_cluster_vm_group.py +58 -54
  11. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/compute_cluster_vm_host_rule.py +126 -122
  12. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/config/__init__.py +2 -2
  13. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/config/__init__.pyi +2 -3
  14. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/config/vars.py +15 -16
  15. pulumi_vsphere-4.17.0a1766212783/pulumi_vsphere/configuration_profile.py +286 -0
  16. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/content_library.py +64 -60
  17. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/content_library_item.py +109 -105
  18. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/custom_attribute.py +41 -37
  19. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/datacenter.py +80 -80
  20. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/datastore_cluster.py +531 -478
  21. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +92 -88
  22. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/distributed_port_group.py +802 -819
  23. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/distributed_virtual_switch.py +1590 -1621
  24. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +71 -71
  25. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/dpm_host_override.py +159 -71
  26. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/drs_vm_override.py +75 -71
  27. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/entity_permissions.py +40 -40
  28. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/file.py +148 -163
  29. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/folder.py +104 -100
  30. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_compute_cluster.py +18 -19
  31. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_compute_cluster_host_group.py +18 -23
  32. pulumi_vsphere-4.17.0a1766212783/pulumi_vsphere/get_configuration_profile.py +145 -0
  33. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_content_library.py +10 -11
  34. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_content_library_item.py +22 -23
  35. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_custom_attribute.py +12 -13
  36. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_datacenter.py +12 -13
  37. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_datastore.py +22 -23
  38. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_datastore_cluster.py +19 -20
  39. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_datastore_stats.py +22 -27
  40. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_distributed_virtual_switch.py +18 -19
  41. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_dynamic.py +22 -27
  42. pulumi_vsphere-4.17.0a1766212783/pulumi_vsphere/get_folder.py +249 -0
  43. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_guest_os_customization.py +74 -22
  44. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_host.py +18 -19
  45. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_host_base_images.py +6 -7
  46. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_host_pci_device.py +30 -31
  47. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_host_thumbprint.py +22 -23
  48. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_host_vgpu_profile.py +17 -18
  49. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_license.py +26 -25
  50. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_network.py +80 -30
  51. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_ovf_vm_template.py +126 -127
  52. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_policy.py +10 -11
  53. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_resource_pool.py +77 -27
  54. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_role.py +26 -27
  55. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_tag.py +18 -19
  56. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_tag_category.py +16 -17
  57. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_vapp_container.py +16 -17
  58. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_virtual_machine.py +273 -274
  59. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/get_vmfs_disks.py +24 -25
  60. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/guest_os_customization.py +75 -75
  61. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/ha_vm_override.py +295 -375
  62. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/host.py +304 -250
  63. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/host_port_group.py +321 -342
  64. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/host_virtual_switch.py +373 -390
  65. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/license.py +125 -85
  66. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/nas_datastore.py +324 -262
  67. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/offline_software_depot.py +26 -22
  68. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/outputs.py +1003 -971
  69. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/provider.py +165 -147
  70. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/pulumi-plugin.json +1 -1
  71. pulumi_vsphere-4.17.0a1766212783/pulumi_vsphere/resource_pool.py +1197 -0
  72. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/role.py +46 -46
  73. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/storage_drs_vm_override.py +92 -88
  74. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/supervisor.py +210 -210
  75. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/tag.py +58 -54
  76. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/tag_category.py +75 -71
  77. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/vapp_container.py +262 -258
  78. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/vapp_entity.py +177 -173
  79. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/virtual_disk.py +130 -126
  80. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/virtual_machine.py +1339 -1444
  81. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/virtual_machine_class.py +109 -109
  82. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/virtual_machine_snapshot.py +122 -122
  83. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/vm_storage_policy.py +40 -40
  84. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/vmfs_datastore.py +189 -185
  85. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/vnic.py +145 -145
  86. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere.egg-info/PKG-INFO +3 -3
  87. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere.egg-info/SOURCES.txt +2 -0
  88. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere.egg-info/requires.txt +2 -2
  89. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pyproject.toml +2 -2
  90. pulumi_vsphere-4.13.2/pulumi_vsphere/get_folder.py +0 -128
  91. pulumi_vsphere-4.13.2/pulumi_vsphere/resource_pool.py +0 -871
  92. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/README.md +0 -0
  93. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere/py.typed +0 -0
  94. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere.egg-info/dependency_links.txt +0 -0
  95. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/pulumi_vsphere.egg-info/top_level.txt +0 -0
  96. {pulumi_vsphere-4.13.2 → pulumi_vsphere-4.17.0a1766212783}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_vsphere
3
- Version: 4.13.2
3
+ Version: 4.17.0a1766212783
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -9,9 +9,9 @@ Keywords: pulumi,vsphere
9
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.142.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
- Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
15
 
16
16
  [![Actions Status](https://github.com/pulumi/pulumi-vsphere/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-vsphere/actions)
17
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -1,8 +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
5
+ import builtins as _builtins
6
6
  from . import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members:
@@ -13,6 +13,7 @@ from .compute_cluster_vm_anti_affinity_rule import *
13
13
  from .compute_cluster_vm_dependency_rule import *
14
14
  from .compute_cluster_vm_group import *
15
15
  from .compute_cluster_vm_host_rule import *
16
+ from .configuration_profile import *
16
17
  from .content_library import *
17
18
  from .content_library_item import *
18
19
  from .custom_attribute import *
@@ -29,6 +30,7 @@ from .file import *
29
30
  from .folder import *
30
31
  from .get_compute_cluster import *
31
32
  from .get_compute_cluster_host_group import *
33
+ from .get_configuration_profile import *
32
34
  from .get_content_library import *
33
35
  from .get_content_library_item import *
34
36
  from .get_custom_attribute import *
@@ -149,6 +151,14 @@ _utilities.register(
149
151
  "vsphere:index/computeClusterVmHostRule:ComputeClusterVmHostRule": "ComputeClusterVmHostRule"
150
152
  }
151
153
  },
154
+ {
155
+ "pkg": "vsphere",
156
+ "mod": "index/configurationProfile",
157
+ "fqn": "pulumi_vsphere",
158
+ "classes": {
159
+ "vsphere:index/configurationProfile:ConfigurationProfile": "ConfigurationProfile"
160
+ }
161
+ },
152
162
  {
153
163
  "pkg": "vsphere",
154
164
  "mod": "index/contentLibrary",