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.
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/PKG-INFO +5 -4
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/__init__.py +21 -1
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/_inputs.py +4642 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/_utilities.py +15 -10
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster.py +1417 -1496
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_host_group.py +191 -55
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_affinity_rule.py +131 -103
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +133 -89
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_dependency_rule.py +314 -106
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/compute_cluster_vm_group.py +502 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/compute_cluster_vm_host_rule.py +323 -123
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/config/__init__.py +2 -1
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/config/__init__.pyi +7 -2
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/config/vars.py +20 -15
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/configuration_profile.py +286 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/content_library.py +177 -71
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/content_library_item.py +532 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/custom_attribute.py +118 -38
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/datacenter.py +99 -83
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/datastore_cluster.py +594 -479
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +537 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/distributed_port_group.py +1092 -874
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/distributed_virtual_switch.py +1869 -1640
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +294 -0
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/dpm_host_override.py +499 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/drs_vm_override.py +236 -72
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/entity_permissions.py +50 -44
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/file.py +153 -162
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/folder.py +233 -89
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_compute_cluster.py +34 -23
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_compute_cluster_host_group.py +36 -29
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/get_configuration_profile.py +145 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_content_library.py +23 -15
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_content_library_item.py +39 -27
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_custom_attribute.py +26 -17
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datacenter.py +40 -18
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datastore.py +39 -27
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datastore_cluster.py +47 -22
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_datastore_stats.py +39 -31
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_distributed_virtual_switch.py +34 -23
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_dynamic.py +39 -31
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/get_folder.py +249 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_guest_os_customization.py +92 -26
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host.py +34 -23
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_base_images.py +18 -11
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_pci_device.py +50 -35
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_thumbprint.py +55 -35
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_host_vgpu_profile.py +33 -22
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_license.py +44 -29
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/get_network.py +282 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_ovf_vm_template.py +182 -131
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_policy.py +23 -15
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_resource_pool.py +93 -32
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_role.py +45 -31
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_tag.py +34 -23
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_tag_category.py +32 -21
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_vapp_container.py +31 -21
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_virtual_machine.py +432 -273
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/get_vmfs_disks.py +42 -29
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/guest_os_customization.py +107 -101
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/ha_vm_override.py +969 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/host.py +513 -258
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/host_port_group.py +342 -347
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/host_virtual_switch.py +538 -391
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/license.py +130 -84
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/nas_datastore.py +391 -263
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/offline_software_depot.py +33 -23
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/outputs.py +1110 -951
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/provider.py +170 -146
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/pulumi-plugin.json +1 -1
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/resource_pool.py +329 -271
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/role.py +79 -47
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/storage_drs_vm_override.py +225 -89
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/supervisor.py +363 -261
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/tag.py +414 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/tag_category.py +158 -72
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vapp_container.py +425 -259
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vapp_entity.py +324 -174
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/virtual_disk.py +238 -140
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere/virtual_machine.py +4018 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/virtual_machine_class.py +114 -108
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/virtual_machine_snapshot.py +131 -125
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vm_storage_policy.py +110 -104
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vmfs_datastore.py +460 -186
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/vnic.py +194 -178
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/PKG-INFO +5 -4
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/SOURCES.txt +3 -0
- pulumi_vsphere-4.17.0a1765953866/pulumi_vsphere.egg-info/requires.txt +6 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pyproject.toml +3 -3
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/_inputs.py +0 -3433
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/compute_cluster_vm_group.py +0 -301
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/content_library_item.py +0 -386
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +0 -375
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/dpm_host_override.py +0 -349
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/get_folder.py +0 -119
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/get_network.py +0 -171
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/ha_vm_override.py +0 -887
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/tag.py +0 -252
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere/virtual_machine.py +0 -3990
- pulumi_vsphere-4.11.0a1720768633/pulumi_vsphere.egg-info/requires.txt +0 -3
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/README.md +0 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/py.typed +0 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/dependency_links.txt +0 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere.egg-info/top_level.txt +0 -0
- {pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/setup.cfg +0 -0
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_vsphere
|
|
3
|
-
Version: 4.
|
|
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.
|
|
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.
|
|
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
|
[](https://github.com/pulumi/pulumi-vsphere/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
{pulumi_vsphere-4.11.0a1720768633 → pulumi_vsphere-4.17.0a1765953866}/pulumi_vsphere/__init__.py
RENAMED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
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",
|