pulumi-vsphere 4.10.0a1710160860__tar.gz → 4.13.0a1736836157__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.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/PKG-INFO +5 -4
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/__init__.py +30 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/_inputs.py +1816 -277
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/_utilities.py +41 -5
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/compute_cluster.py +937 -1488
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/compute_cluster_host_group.py +67 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/compute_cluster_vm_affinity_rule.py +69 -34
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +41 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/compute_cluster_vm_dependency_rule.py +205 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/compute_cluster_vm_group.py +198 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/compute_cluster_vm_host_rule.py +73 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/config/__init__.pyi +5 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/config/vars.py +5 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/content_library.py +113 -12
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/content_library_item.py +143 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/custom_attribute.py +77 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/datacenter.py +48 -40
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/datastore_cluster.py +217 -366
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +159 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/distributed_port_group.py +416 -189
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/distributed_virtual_switch.py +571 -830
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/dpm_host_override.py +63 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/drs_vm_override.py +67 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/entity_permissions.py +64 -38
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/file.py +21 -24
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/folder.py +148 -30
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_compute_cluster.py +16 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_compute_cluster_host_group.py +36 -25
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_content_library.py +23 -15
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_content_library_item.py +29 -13
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_custom_attribute.py +14 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_datacenter.py +30 -12
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_datastore.py +44 -12
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_datastore_cluster.py +31 -10
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere/get_datastore_stats.py +208 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_distributed_virtual_switch.py +18 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_dynamic.py +35 -25
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_folder.py +23 -11
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_guest_os_customization.py +26 -52
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_host.py +16 -9
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere/get_host_base_images.py +104 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_host_pci_device.py +28 -19
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_host_thumbprint.py +41 -25
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere/get_host_vgpu_profile.py +195 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_license.py +20 -10
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_network.py +80 -24
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_ovf_vm_template.py +56 -5
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_policy.py +13 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_resource_pool.py +29 -23
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_role.py +23 -13
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_tag.py +16 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_tag_category.py +16 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_vapp_container.py +15 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_virtual_machine.py +233 -48
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/get_vmfs_disks.py +18 -9
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/guest_os_customization.py +60 -5
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/ha_vm_override.py +352 -380
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/host.py +244 -64
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/host_port_group.py +27 -24
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/host_virtual_switch.py +209 -289
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/license.py +5 -32
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/nas_datastore.py +74 -9
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere/offline_software_depot.py +185 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/outputs.py +774 -256
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/provider.py +7 -6
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere/pulumi-plugin.json +5 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/resource_pool.py +168 -411
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/role.py +33 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/storage_drs_vm_override.py +133 -2
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere/supervisor.py +967 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/tag.py +159 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/tag_category.py +83 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/vapp_container.py +163 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/vapp_entity.py +147 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/virtual_disk.py +123 -36
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/virtual_machine.py +759 -829
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere/virtual_machine_class.py +447 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/virtual_machine_snapshot.py +13 -12
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/vm_storage_policy.py +120 -127
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/vmfs_datastore.py +271 -2
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/vnic.py +104 -105
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere.egg-info/PKG-INFO +5 -4
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere.egg-info/SOURCES.txt +6 -0
- pulumi_vsphere-4.13.0a1736836157/pulumi_vsphere.egg-info/requires.txt +6 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pyproject.toml +3 -3
- pulumi_vsphere-4.10.0a1710160860/pulumi_vsphere/pulumi-plugin.json +0 -4
- pulumi_vsphere-4.10.0a1710160860/pulumi_vsphere.egg-info/requires.txt +0 -3
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/README.md +0 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/config/__init__.py +0 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/py.typed +0 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere.egg-info/dependency_links.txt +0 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere.egg-info/top_level.txt +0 -0
- {pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/setup.cfg +0 -0
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: pulumi_vsphere
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.13.0a1736836157
|
|
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.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
|
[](https://github.com/pulumi/pulumi-vsphere/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
{pulumi_vsphere-4.10.0a1710160860 → pulumi_vsphere-4.13.0a1736836157}/pulumi_vsphere/__init__.py
RENAMED
|
@@ -33,13 +33,16 @@ from .get_custom_attribute import *
|
|
|
33
33
|
from .get_datacenter import *
|
|
34
34
|
from .get_datastore import *
|
|
35
35
|
from .get_datastore_cluster import *
|
|
36
|
+
from .get_datastore_stats import *
|
|
36
37
|
from .get_distributed_virtual_switch import *
|
|
37
38
|
from .get_dynamic import *
|
|
38
39
|
from .get_folder import *
|
|
39
40
|
from .get_guest_os_customization import *
|
|
40
41
|
from .get_host import *
|
|
42
|
+
from .get_host_base_images import *
|
|
41
43
|
from .get_host_pci_device import *
|
|
42
44
|
from .get_host_thumbprint import *
|
|
45
|
+
from .get_host_vgpu_profile import *
|
|
43
46
|
from .get_license import *
|
|
44
47
|
from .get_network import *
|
|
45
48
|
from .get_ovf_vm_template import *
|
|
@@ -58,16 +61,19 @@ from .host_port_group import *
|
|
|
58
61
|
from .host_virtual_switch import *
|
|
59
62
|
from .license import *
|
|
60
63
|
from .nas_datastore import *
|
|
64
|
+
from .offline_software_depot import *
|
|
61
65
|
from .provider import *
|
|
62
66
|
from .resource_pool import *
|
|
63
67
|
from .role import *
|
|
64
68
|
from .storage_drs_vm_override import *
|
|
69
|
+
from .supervisor import *
|
|
65
70
|
from .tag import *
|
|
66
71
|
from .tag_category import *
|
|
67
72
|
from .vapp_container import *
|
|
68
73
|
from .vapp_entity import *
|
|
69
74
|
from .virtual_disk import *
|
|
70
75
|
from .virtual_machine import *
|
|
76
|
+
from .virtual_machine_class import *
|
|
71
77
|
from .virtual_machine_snapshot import *
|
|
72
78
|
from .vm_storage_policy import *
|
|
73
79
|
from .vmfs_datastore import *
|
|
@@ -301,6 +307,14 @@ _utilities.register(
|
|
|
301
307
|
"vsphere:index/nasDatastore:NasDatastore": "NasDatastore"
|
|
302
308
|
}
|
|
303
309
|
},
|
|
310
|
+
{
|
|
311
|
+
"pkg": "vsphere",
|
|
312
|
+
"mod": "index/offlineSoftwareDepot",
|
|
313
|
+
"fqn": "pulumi_vsphere",
|
|
314
|
+
"classes": {
|
|
315
|
+
"vsphere:index/offlineSoftwareDepot:OfflineSoftwareDepot": "OfflineSoftwareDepot"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
304
318
|
{
|
|
305
319
|
"pkg": "vsphere",
|
|
306
320
|
"mod": "index/resourcePool",
|
|
@@ -325,6 +339,14 @@ _utilities.register(
|
|
|
325
339
|
"vsphere:index/storageDrsVmOverride:StorageDrsVmOverride": "StorageDrsVmOverride"
|
|
326
340
|
}
|
|
327
341
|
},
|
|
342
|
+
{
|
|
343
|
+
"pkg": "vsphere",
|
|
344
|
+
"mod": "index/supervisor",
|
|
345
|
+
"fqn": "pulumi_vsphere",
|
|
346
|
+
"classes": {
|
|
347
|
+
"vsphere:index/supervisor:Supervisor": "Supervisor"
|
|
348
|
+
}
|
|
349
|
+
},
|
|
328
350
|
{
|
|
329
351
|
"pkg": "vsphere",
|
|
330
352
|
"mod": "index/tag",
|
|
@@ -373,6 +395,14 @@ _utilities.register(
|
|
|
373
395
|
"vsphere:index/virtualMachine:VirtualMachine": "VirtualMachine"
|
|
374
396
|
}
|
|
375
397
|
},
|
|
398
|
+
{
|
|
399
|
+
"pkg": "vsphere",
|
|
400
|
+
"mod": "index/virtualMachineClass",
|
|
401
|
+
"fqn": "pulumi_vsphere",
|
|
402
|
+
"classes": {
|
|
403
|
+
"vsphere:index/virtualMachineClass:VirtualMachineClass": "VirtualMachineClass"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
376
406
|
{
|
|
377
407
|
"pkg": "vsphere",
|
|
378
408
|
"mod": "index/virtualMachineSnapshot",
|