pulumi-vsphere 4.10.0a1709017641__py3-none-any.whl → 4.17.0a1763710194__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.

Files changed (89) hide show
  1. pulumi_vsphere/__init__.py +51 -1
  2. pulumi_vsphere/_inputs.py +2568 -1025
  3. pulumi_vsphere/_utilities.py +50 -10
  4. pulumi_vsphere/compute_cluster.py +1564 -2373
  5. pulumi_vsphere/compute_cluster_host_group.py +191 -55
  6. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +157 -113
  7. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +133 -89
  8. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +314 -106
  9. pulumi_vsphere/compute_cluster_vm_group.py +256 -55
  10. pulumi_vsphere/compute_cluster_vm_host_rule.py +323 -123
  11. pulumi_vsphere/config/__init__.py +2 -1
  12. pulumi_vsphere/config/__init__.pyi +7 -2
  13. pulumi_vsphere/config/vars.py +20 -15
  14. pulumi_vsphere/configuration_profile.py +286 -0
  15. pulumi_vsphere/content_library.py +177 -71
  16. pulumi_vsphere/content_library_item.py +252 -106
  17. pulumi_vsphere/custom_attribute.py +118 -38
  18. pulumi_vsphere/datacenter.py +128 -107
  19. pulumi_vsphere/datastore_cluster.py +636 -731
  20. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +251 -89
  21. pulumi_vsphere/distributed_port_group.py +1129 -967
  22. pulumi_vsphere/distributed_virtual_switch.py +1971 -2239
  23. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +294 -0
  24. pulumi_vsphere/dpm_host_override.py +222 -72
  25. pulumi_vsphere/drs_vm_override.py +236 -72
  26. pulumi_vsphere/entity_permissions.py +96 -69
  27. pulumi_vsphere/file.py +173 -178
  28. pulumi_vsphere/folder.py +236 -113
  29. pulumi_vsphere/get_compute_cluster.py +34 -23
  30. pulumi_vsphere/get_compute_cluster_host_group.py +52 -41
  31. pulumi_vsphere/get_configuration_profile.py +145 -0
  32. pulumi_vsphere/get_content_library.py +33 -21
  33. pulumi_vsphere/get_content_library_item.py +47 -31
  34. pulumi_vsphere/get_custom_attribute.py +26 -17
  35. pulumi_vsphere/get_datacenter.py +40 -18
  36. pulumi_vsphere/get_datastore.py +60 -24
  37. pulumi_vsphere/get_datastore_cluster.py +47 -22
  38. pulumi_vsphere/get_datastore_stats.py +204 -0
  39. pulumi_vsphere/get_distributed_virtual_switch.py +36 -23
  40. pulumi_vsphere/get_dynamic.py +55 -45
  41. pulumi_vsphere/get_folder.py +163 -25
  42. pulumi_vsphere/get_guest_os_customization.py +68 -37
  43. pulumi_vsphere/get_host.py +34 -23
  44. pulumi_vsphere/get_host_base_images.py +104 -0
  45. pulumi_vsphere/get_host_pci_device.py +78 -35
  46. pulumi_vsphere/get_host_thumbprint.py +58 -38
  47. pulumi_vsphere/get_host_vgpu_profile.py +195 -0
  48. pulumi_vsphere/get_license.py +44 -28
  49. pulumi_vsphere/get_network.py +157 -46
  50. pulumi_vsphere/get_ovf_vm_template.py +184 -301
  51. pulumi_vsphere/get_policy.py +23 -15
  52. pulumi_vsphere/get_resource_pool.py +107 -40
  53. pulumi_vsphere/get_role.py +49 -35
  54. pulumi_vsphere/get_tag.py +34 -23
  55. pulumi_vsphere/get_tag_category.py +32 -21
  56. pulumi_vsphere/get_vapp_container.py +31 -21
  57. pulumi_vsphere/get_virtual_machine.py +499 -287
  58. pulumi_vsphere/get_vmfs_disks.py +42 -29
  59. pulumi_vsphere/guest_os_customization.py +135 -79
  60. pulumi_vsphere/ha_vm_override.py +470 -577
  61. pulumi_vsphere/host.py +515 -262
  62. pulumi_vsphere/host_port_group.py +352 -355
  63. pulumi_vsphere/host_virtual_switch.py +580 -580
  64. pulumi_vsphere/license.py +110 -92
  65. pulumi_vsphere/nas_datastore.py +398 -270
  66. pulumi_vsphere/offline_software_depot.py +190 -0
  67. pulumi_vsphere/outputs.py +1582 -1027
  68. pulumi_vsphere/provider.py +172 -152
  69. pulumi_vsphere/pulumi-plugin.json +2 -1
  70. pulumi_vsphere/resource_pool.py +357 -273
  71. pulumi_vsphere/role.py +79 -47
  72. pulumi_vsphere/storage_drs_vm_override.py +225 -89
  73. pulumi_vsphere/supervisor.py +1064 -0
  74. pulumi_vsphere/tag.py +217 -55
  75. pulumi_vsphere/tag_category.py +158 -72
  76. pulumi_vsphere/vapp_container.py +425 -259
  77. pulumi_vsphere/vapp_entity.py +324 -174
  78. pulumi_vsphere/virtual_disk.py +245 -153
  79. pulumi_vsphere/virtual_machine.py +1696 -1836
  80. pulumi_vsphere/virtual_machine_class.py +448 -0
  81. pulumi_vsphere/virtual_machine_snapshot.py +137 -131
  82. pulumi_vsphere/vm_storage_policy.py +160 -154
  83. pulumi_vsphere/vmfs_datastore.py +460 -186
  84. pulumi_vsphere/vnic.py +249 -231
  85. {pulumi_vsphere-4.10.0a1709017641.dist-info → pulumi_vsphere-4.17.0a1763710194.dist-info}/METADATA +7 -6
  86. pulumi_vsphere-4.17.0a1763710194.dist-info/RECORD +89 -0
  87. {pulumi_vsphere-4.10.0a1709017641.dist-info → pulumi_vsphere-4.17.0a1763710194.dist-info}/WHEEL +1 -1
  88. pulumi_vsphere-4.10.0a1709017641.dist-info/RECORD +0 -80
  89. {pulumi_vsphere-4.10.0a1709017641.dist-info → pulumi_vsphere-4.17.0a1763710194.dist-info}/top_level.txt +0 -0
@@ -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,19 +30,23 @@ 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 *
33
37
  from .get_datacenter import *
34
38
  from .get_datastore import *
35
39
  from .get_datastore_cluster import *
40
+ from .get_datastore_stats import *
36
41
  from .get_distributed_virtual_switch import *
37
42
  from .get_dynamic import *
38
43
  from .get_folder import *
39
44
  from .get_guest_os_customization import *
40
45
  from .get_host import *
46
+ from .get_host_base_images import *
41
47
  from .get_host_pci_device import *
42
48
  from .get_host_thumbprint import *
49
+ from .get_host_vgpu_profile import *
43
50
  from .get_license import *
44
51
  from .get_network import *
45
52
  from .get_ovf_vm_template import *
@@ -58,16 +65,19 @@ from .host_port_group import *
58
65
  from .host_virtual_switch import *
59
66
  from .license import *
60
67
  from .nas_datastore import *
68
+ from .offline_software_depot import *
61
69
  from .provider import *
62
70
  from .resource_pool import *
63
71
  from .role import *
64
72
  from .storage_drs_vm_override import *
73
+ from .supervisor import *
65
74
  from .tag import *
66
75
  from .tag_category import *
67
76
  from .vapp_container import *
68
77
  from .vapp_entity import *
69
78
  from .virtual_disk import *
70
79
  from .virtual_machine import *
80
+ from .virtual_machine_class import *
71
81
  from .virtual_machine_snapshot import *
72
82
  from .vm_storage_policy import *
73
83
  from .vmfs_datastore import *
@@ -141,6 +151,14 @@ _utilities.register(
141
151
  "vsphere:index/computeClusterVmHostRule:ComputeClusterVmHostRule": "ComputeClusterVmHostRule"
142
152
  }
143
153
  },
154
+ {
155
+ "pkg": "vsphere",
156
+ "mod": "index/configurationProfile",
157
+ "fqn": "pulumi_vsphere",
158
+ "classes": {
159
+ "vsphere:index/configurationProfile:ConfigurationProfile": "ConfigurationProfile"
160
+ }
161
+ },
144
162
  {
145
163
  "pkg": "vsphere",
146
164
  "mod": "index/contentLibrary",
@@ -205,6 +223,14 @@ _utilities.register(
205
223
  "vsphere:index/distributedVirtualSwitch:DistributedVirtualSwitch": "DistributedVirtualSwitch"
206
224
  }
207
225
  },
226
+ {
227
+ "pkg": "vsphere",
228
+ "mod": "index/distributedVirtualSwitchPvlanMapping",
229
+ "fqn": "pulumi_vsphere",
230
+ "classes": {
231
+ "vsphere:index/distributedVirtualSwitchPvlanMapping:DistributedVirtualSwitchPvlanMapping": "DistributedVirtualSwitchPvlanMapping"
232
+ }
233
+ },
208
234
  {
209
235
  "pkg": "vsphere",
210
236
  "mod": "index/dpmHostOverride",
@@ -301,6 +327,14 @@ _utilities.register(
301
327
  "vsphere:index/nasDatastore:NasDatastore": "NasDatastore"
302
328
  }
303
329
  },
330
+ {
331
+ "pkg": "vsphere",
332
+ "mod": "index/offlineSoftwareDepot",
333
+ "fqn": "pulumi_vsphere",
334
+ "classes": {
335
+ "vsphere:index/offlineSoftwareDepot:OfflineSoftwareDepot": "OfflineSoftwareDepot"
336
+ }
337
+ },
304
338
  {
305
339
  "pkg": "vsphere",
306
340
  "mod": "index/resourcePool",
@@ -325,6 +359,14 @@ _utilities.register(
325
359
  "vsphere:index/storageDrsVmOverride:StorageDrsVmOverride": "StorageDrsVmOverride"
326
360
  }
327
361
  },
362
+ {
363
+ "pkg": "vsphere",
364
+ "mod": "index/supervisor",
365
+ "fqn": "pulumi_vsphere",
366
+ "classes": {
367
+ "vsphere:index/supervisor:Supervisor": "Supervisor"
368
+ }
369
+ },
328
370
  {
329
371
  "pkg": "vsphere",
330
372
  "mod": "index/tag",
@@ -373,6 +415,14 @@ _utilities.register(
373
415
  "vsphere:index/virtualMachine:VirtualMachine": "VirtualMachine"
374
416
  }
375
417
  },
418
+ {
419
+ "pkg": "vsphere",
420
+ "mod": "index/virtualMachineClass",
421
+ "fqn": "pulumi_vsphere",
422
+ "classes": {
423
+ "vsphere:index/virtualMachineClass:VirtualMachineClass": "VirtualMachineClass"
424
+ }
425
+ },
376
426
  {
377
427
  "pkg": "vsphere",
378
428
  "mod": "index/virtualMachineSnapshot",