pulumi-vsphere 4.11.0a1__py3-none-any.whl → 4.11.0a1710920591__py3-none-any.whl
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/__init__.py +0 -28
- pulumi_vsphere/_inputs.py +230 -554
- pulumi_vsphere/compute_cluster.py +1477 -747
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +16 -28
- pulumi_vsphere/datacenter.py +12 -26
- pulumi_vsphere/datastore_cluster.py +350 -154
- pulumi_vsphere/distributed_port_group.py +175 -70
- pulumi_vsphere/distributed_virtual_switch.py +805 -308
- pulumi_vsphere/file.py +24 -16
- pulumi_vsphere/folder.py +7 -7
- pulumi_vsphere/get_compute_cluster.py +4 -0
- pulumi_vsphere/get_compute_cluster_host_group.py +10 -8
- pulumi_vsphere/get_content_library.py +4 -0
- pulumi_vsphere/get_custom_attribute.py +4 -0
- pulumi_vsphere/get_datacenter.py +4 -0
- pulumi_vsphere/get_datastore.py +4 -0
- pulumi_vsphere/get_datastore_cluster.py +4 -0
- pulumi_vsphere/get_datastore_stats.py +12 -4
- pulumi_vsphere/get_distributed_virtual_switch.py +4 -2
- pulumi_vsphere/get_dynamic.py +8 -4
- pulumi_vsphere/get_folder.py +6 -10
- pulumi_vsphere/get_guest_os_customization.py +4 -0
- pulumi_vsphere/get_host.py +4 -0
- pulumi_vsphere/get_host_pci_device.py +12 -4
- pulumi_vsphere/get_host_thumbprint.py +4 -0
- pulumi_vsphere/get_host_vgpu_profile.py +8 -0
- pulumi_vsphere/get_license.py +4 -0
- pulumi_vsphere/get_network.py +4 -0
- pulumi_vsphere/get_policy.py +4 -0
- pulumi_vsphere/get_resource_pool.py +10 -2
- pulumi_vsphere/get_role.py +4 -0
- pulumi_vsphere/get_tag.py +4 -0
- pulumi_vsphere/get_tag_category.py +4 -0
- pulumi_vsphere/get_vapp_container.py +4 -0
- pulumi_vsphere/get_virtual_machine.py +8 -0
- pulumi_vsphere/get_vmfs_disks.py +4 -0
- pulumi_vsphere/guest_os_customization.py +0 -50
- pulumi_vsphere/ha_vm_override.py +378 -189
- pulumi_vsphere/host.py +20 -0
- pulumi_vsphere/host_port_group.py +24 -12
- pulumi_vsphere/host_virtual_switch.py +287 -140
- pulumi_vsphere/license.py +32 -0
- pulumi_vsphere/outputs.py +230 -543
- pulumi_vsphere/pulumi-plugin.json +1 -2
- pulumi_vsphere/resource_pool.py +22 -48
- pulumi_vsphere/virtual_disk.py +10 -10
- pulumi_vsphere/virtual_machine.py +807 -578
- pulumi_vsphere/virtual_machine_snapshot.py +10 -6
- pulumi_vsphere/vm_storage_policy.py +84 -72
- pulumi_vsphere/vnic.py +20 -8
- {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1710920591.dist-info}/METADATA +1 -1
- pulumi_vsphere-4.11.0a1710920591.dist-info/RECORD +82 -0
- pulumi_vsphere/get_host_base_images.py +0 -97
- pulumi_vsphere/offline_software_depot.py +0 -180
- pulumi_vsphere/supervisor.py +0 -858
- pulumi_vsphere/virtual_machine_class.py +0 -440
- pulumi_vsphere-4.11.0a1.dist-info/RECORD +0 -86
- {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1710920591.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.11.0a1.dist-info → pulumi_vsphere-4.11.0a1710920591.dist-info}/top_level.txt +0 -0
pulumi_vsphere/__init__.py
CHANGED
|
@@ -39,7 +39,6 @@ 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 *
|
|
43
42
|
from .get_host_pci_device import *
|
|
44
43
|
from .get_host_thumbprint import *
|
|
45
44
|
from .get_host_vgpu_profile import *
|
|
@@ -61,19 +60,16 @@ from .host_port_group import *
|
|
|
61
60
|
from .host_virtual_switch import *
|
|
62
61
|
from .license import *
|
|
63
62
|
from .nas_datastore import *
|
|
64
|
-
from .offline_software_depot import *
|
|
65
63
|
from .provider import *
|
|
66
64
|
from .resource_pool import *
|
|
67
65
|
from .role import *
|
|
68
66
|
from .storage_drs_vm_override import *
|
|
69
|
-
from .supervisor import *
|
|
70
67
|
from .tag import *
|
|
71
68
|
from .tag_category import *
|
|
72
69
|
from .vapp_container import *
|
|
73
70
|
from .vapp_entity import *
|
|
74
71
|
from .virtual_disk import *
|
|
75
72
|
from .virtual_machine import *
|
|
76
|
-
from .virtual_machine_class import *
|
|
77
73
|
from .virtual_machine_snapshot import *
|
|
78
74
|
from .vm_storage_policy import *
|
|
79
75
|
from .vmfs_datastore import *
|
|
@@ -307,14 +303,6 @@ _utilities.register(
|
|
|
307
303
|
"vsphere:index/nasDatastore:NasDatastore": "NasDatastore"
|
|
308
304
|
}
|
|
309
305
|
},
|
|
310
|
-
{
|
|
311
|
-
"pkg": "vsphere",
|
|
312
|
-
"mod": "index/offlineSoftwareDepot",
|
|
313
|
-
"fqn": "pulumi_vsphere",
|
|
314
|
-
"classes": {
|
|
315
|
-
"vsphere:index/offlineSoftwareDepot:OfflineSoftwareDepot": "OfflineSoftwareDepot"
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
306
|
{
|
|
319
307
|
"pkg": "vsphere",
|
|
320
308
|
"mod": "index/resourcePool",
|
|
@@ -339,14 +327,6 @@ _utilities.register(
|
|
|
339
327
|
"vsphere:index/storageDrsVmOverride:StorageDrsVmOverride": "StorageDrsVmOverride"
|
|
340
328
|
}
|
|
341
329
|
},
|
|
342
|
-
{
|
|
343
|
-
"pkg": "vsphere",
|
|
344
|
-
"mod": "index/supervisor",
|
|
345
|
-
"fqn": "pulumi_vsphere",
|
|
346
|
-
"classes": {
|
|
347
|
-
"vsphere:index/supervisor:Supervisor": "Supervisor"
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
330
|
{
|
|
351
331
|
"pkg": "vsphere",
|
|
352
332
|
"mod": "index/tag",
|
|
@@ -395,14 +375,6 @@ _utilities.register(
|
|
|
395
375
|
"vsphere:index/virtualMachine:VirtualMachine": "VirtualMachine"
|
|
396
376
|
}
|
|
397
377
|
},
|
|
398
|
-
{
|
|
399
|
-
"pkg": "vsphere",
|
|
400
|
-
"mod": "index/virtualMachineClass",
|
|
401
|
-
"fqn": "pulumi_vsphere",
|
|
402
|
-
"classes": {
|
|
403
|
-
"vsphere:index/virtualMachineClass:VirtualMachineClass": "VirtualMachineClass"
|
|
404
|
-
}
|
|
405
|
-
},
|
|
406
378
|
{
|
|
407
379
|
"pkg": "vsphere",
|
|
408
380
|
"mod": "index/virtualMachineSnapshot",
|