pulumi-vsphere 4.10.0a1710245029__py3-none-any.whl → 4.13.0a1736849827__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.
Files changed (85) hide show
  1. pulumi_vsphere/__init__.py +28 -0
  2. pulumi_vsphere/_inputs.py +1816 -277
  3. pulumi_vsphere/_utilities.py +41 -5
  4. pulumi_vsphere/compute_cluster.py +937 -1488
  5. pulumi_vsphere/compute_cluster_host_group.py +67 -2
  6. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +69 -34
  7. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +41 -2
  8. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +205 -2
  9. pulumi_vsphere/compute_cluster_vm_group.py +198 -2
  10. pulumi_vsphere/compute_cluster_vm_host_rule.py +73 -2
  11. pulumi_vsphere/config/__init__.pyi +5 -0
  12. pulumi_vsphere/config/vars.py +5 -0
  13. pulumi_vsphere/content_library.py +113 -12
  14. pulumi_vsphere/content_library_item.py +143 -2
  15. pulumi_vsphere/custom_attribute.py +77 -2
  16. pulumi_vsphere/datacenter.py +48 -40
  17. pulumi_vsphere/datastore_cluster.py +217 -366
  18. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +159 -2
  19. pulumi_vsphere/distributed_port_group.py +416 -189
  20. pulumi_vsphere/distributed_virtual_switch.py +571 -830
  21. pulumi_vsphere/dpm_host_override.py +63 -2
  22. pulumi_vsphere/drs_vm_override.py +67 -2
  23. pulumi_vsphere/entity_permissions.py +64 -38
  24. pulumi_vsphere/file.py +21 -24
  25. pulumi_vsphere/folder.py +148 -30
  26. pulumi_vsphere/get_compute_cluster.py +16 -9
  27. pulumi_vsphere/get_compute_cluster_host_group.py +36 -25
  28. pulumi_vsphere/get_content_library.py +23 -15
  29. pulumi_vsphere/get_content_library_item.py +29 -13
  30. pulumi_vsphere/get_custom_attribute.py +14 -9
  31. pulumi_vsphere/get_datacenter.py +30 -12
  32. pulumi_vsphere/get_datastore.py +29 -21
  33. pulumi_vsphere/get_datastore_cluster.py +31 -10
  34. pulumi_vsphere/get_datastore_stats.py +63 -57
  35. pulumi_vsphere/get_distributed_virtual_switch.py +18 -9
  36. pulumi_vsphere/get_dynamic.py +35 -25
  37. pulumi_vsphere/get_folder.py +23 -11
  38. pulumi_vsphere/get_guest_os_customization.py +26 -52
  39. pulumi_vsphere/get_host.py +16 -9
  40. pulumi_vsphere/get_host_base_images.py +104 -0
  41. pulumi_vsphere/get_host_pci_device.py +28 -19
  42. pulumi_vsphere/get_host_thumbprint.py +41 -25
  43. pulumi_vsphere/get_host_vgpu_profile.py +20 -15
  44. pulumi_vsphere/get_license.py +20 -10
  45. pulumi_vsphere/get_network.py +80 -24
  46. pulumi_vsphere/get_ovf_vm_template.py +56 -5
  47. pulumi_vsphere/get_policy.py +13 -9
  48. pulumi_vsphere/get_resource_pool.py +29 -23
  49. pulumi_vsphere/get_role.py +23 -13
  50. pulumi_vsphere/get_tag.py +16 -9
  51. pulumi_vsphere/get_tag_category.py +16 -9
  52. pulumi_vsphere/get_vapp_container.py +15 -9
  53. pulumi_vsphere/get_virtual_machine.py +205 -48
  54. pulumi_vsphere/get_vmfs_disks.py +18 -9
  55. pulumi_vsphere/guest_os_customization.py +60 -5
  56. pulumi_vsphere/ha_vm_override.py +352 -380
  57. pulumi_vsphere/host.py +244 -64
  58. pulumi_vsphere/host_port_group.py +27 -24
  59. pulumi_vsphere/host_virtual_switch.py +209 -289
  60. pulumi_vsphere/license.py +5 -32
  61. pulumi_vsphere/nas_datastore.py +74 -9
  62. pulumi_vsphere/offline_software_depot.py +185 -0
  63. pulumi_vsphere/outputs.py +717 -270
  64. pulumi_vsphere/provider.py +7 -6
  65. pulumi_vsphere/pulumi-plugin.json +2 -1
  66. pulumi_vsphere/resource_pool.py +168 -411
  67. pulumi_vsphere/role.py +33 -2
  68. pulumi_vsphere/storage_drs_vm_override.py +133 -2
  69. pulumi_vsphere/supervisor.py +967 -0
  70. pulumi_vsphere/tag.py +159 -2
  71. pulumi_vsphere/tag_category.py +83 -2
  72. pulumi_vsphere/vapp_container.py +163 -2
  73. pulumi_vsphere/vapp_entity.py +147 -2
  74. pulumi_vsphere/virtual_disk.py +123 -36
  75. pulumi_vsphere/virtual_machine.py +698 -829
  76. pulumi_vsphere/virtual_machine_class.py +447 -0
  77. pulumi_vsphere/virtual_machine_snapshot.py +13 -12
  78. pulumi_vsphere/vm_storage_policy.py +120 -127
  79. pulumi_vsphere/vmfs_datastore.py +271 -2
  80. pulumi_vsphere/vnic.py +104 -105
  81. {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.13.0a1736849827.dist-info}/METADATA +7 -6
  82. pulumi_vsphere-4.13.0a1736849827.dist-info/RECORD +86 -0
  83. {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.13.0a1736849827.dist-info}/WHEEL +1 -1
  84. pulumi_vsphere-4.10.0a1710245029.dist-info/RECORD +0 -82
  85. {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.13.0a1736849827.dist-info}/top_level.txt +0 -0
@@ -1,16 +1,17 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: pulumi_vsphere
3
- Version: 4.10.0a1710245029
3
+ Version: 4.13.0a1736849827
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.8
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
- Requires-Dist: parver >=0.2.1
12
- Requires-Dist: pulumi <4.0.0,>=3.0.0
13
- Requires-Dist: semver >=2.8.1
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.142.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
15
 
15
16
  [![Actions Status](https://github.com/pulumi/pulumi-vsphere/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-vsphere/actions)
16
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,86 @@
1
+ pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
2
+ pulumi_vsphere/_inputs.py,sha256=VWAbDbP1egZtqNOBm5Gd9LXq0HTR_KLa_BMfzvARnzQ,186475
3
+ pulumi_vsphere/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
4
+ pulumi_vsphere/compute_cluster.py,sha256=nC43gSRf-Aznzmq_yxt5hGlI1nlwz91mimNK_RR9V-c,232890
5
+ pulumi_vsphere/compute_cluster_host_group.py,sha256=2pUMyC9r0vQS11yLxdcFIyQq4POf8VQmqMsgt8mDQN0,15605
6
+ pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=YUrv5Ro7_p9qNqrDPZLTHaa0fEt_SppTPMmLm1dHnA4,25709
7
+ pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=BPhVHEzDWJRi0S0zo5p-RbOuP-yMI9wDmEXX7dCC2I4,18642
8
+ pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=hBTX8zYk7B0BoYUXNmj5Zk6uDY4P10p5G1LDElzEhjk,29673
9
+ pulumi_vsphere/compute_cluster_vm_group.py,sha256=3oNzZ6VNvDsVBYFHfWUt0x5SbxMIph8pBbrJO4lRZcY,23007
10
+ pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=RFsz1MW6aGxR4W0jE3iePqm5od_6MrJymx4o58KAUbc,26978
11
+ pulumi_vsphere/content_library.py,sha256=XW1jRVE1Oxt6ZkKD8FHpJlmdNA7MgjEjx2w176iTWy0,19738
12
+ pulumi_vsphere/content_library_item.py,sha256=HEw0sOVm7tL6QMTmBBDqHhZRKmFYXAa_5_P6U0zktZM,21094
13
+ pulumi_vsphere/custom_attribute.py,sha256=dd-TSTZBhZRd4kIMNawGvpqgFvp0CeWNQbesdNTJqn8,11759
14
+ pulumi_vsphere/datacenter.py,sha256=Kilc1gkC7VJXM3sC0Htsu-v4Dv_vHlqjNWCvjlJLGDQ,18960
15
+ pulumi_vsphere/datastore_cluster.py,sha256=RqdQ-Nq_ZabTpUvntNWu396num8oxf3uGD6wXibP1qg,84720
16
+ pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=lapOmmiyy8KHGfNdw-Fp5FAKD5B0r-jUQHADWjt4V1E,23466
17
+ pulumi_vsphere/distributed_port_group.py,sha256=YGNGa6r99ZO90wqRN6CNlLBICtd60a8uBcc-1M4DdFw,144747
18
+ pulumi_vsphere/distributed_virtual_switch.py,sha256=onWoWCXlBojscjuQ7KP4eu4f89JGQtEB8wQX__5OaXs,258390
19
+ pulumi_vsphere/dpm_host_override.py,sha256=a-dOR21PIROpSGnaHEJYviVXznE7JtRg8Tvoa215_24,17703
20
+ pulumi_vsphere/drs_vm_override.py,sha256=hu0UMrNEoj9QQWiElIxCv_viyLbProf5uNr24G6y07s,19013
21
+ pulumi_vsphere/entity_permissions.py,sha256=z4PvbMWmQUXx_sK3bQHGp_FHXVHzedT4uh2ojdsjQ8o,13156
22
+ pulumi_vsphere/file.py,sha256=5nLX9atJuEC5bqbvsGd4CCV_hIve4J24qyezmrYcnV4,23571
23
+ pulumi_vsphere/folder.py,sha256=NiIjlAuM_ytWE9eE4bmr0VYS5b6pfm8ZHVkQHnDIuic,29476
24
+ pulumi_vsphere/get_compute_cluster.py,sha256=7Y-ffM4YGmlagzGdno5Q0zb2owGu68K7NDlOCipi83o,6774
25
+ pulumi_vsphere/get_compute_cluster_host_group.py,sha256=icjgCB70D2eUxLS8DwvF7X0Z6bXW_lQYnZQBakV24IQ,6977
26
+ pulumi_vsphere/get_content_library.py,sha256=fLYqo0QsLIC472fNULiRAQ2pQeY_YDj3lsyRaTPzsQk,3832
27
+ pulumi_vsphere/get_content_library_item.py,sha256=7L-N0OVEcoJpnvXMRjyc4XFX-KyrcThfKq1fyVlqrv0,5306
28
+ pulumi_vsphere/get_custom_attribute.py,sha256=2C9QAeJcim0tbn9vs266-JhpwAPlDM7HxUswi2IVza8,5030
29
+ pulumi_vsphere/get_datacenter.py,sha256=uoSsII-4mBNjsVflES1hcWH5AGU0h3gbkmB1JrFT1hg,5363
30
+ pulumi_vsphere/get_datastore.py,sha256=jlL2HsQxt3txdKl06pZwWv_oIndyGaDUgtNnWtOLmCE,6750
31
+ pulumi_vsphere/get_datastore_cluster.py,sha256=I3nIIK2mSSxspqCVOIk637c0z_BKxvQJoYeNHqPFKp4,6466
32
+ pulumi_vsphere/get_datastore_stats.py,sha256=NOfWKRzENlY1WQmeXTNsW1eDKtRZ8Y3pPlB4ogSTmQ4,8466
33
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=2o7D7ZJXR8fSoDABAHNVeu9O5C1udMu2WwDnGpW5hDQ,7710
34
+ pulumi_vsphere/get_dynamic.py,sha256=4kL9ue93oqUaaAPoVM-MKNnZpr5GOhVFGVe_R9xNXmQ,6791
35
+ pulumi_vsphere/get_folder.py,sha256=YrF6lP9vMuwiAjizw6VJKDChVCdMx4c9UbpWh3y17ZE,4572
36
+ pulumi_vsphere/get_guest_os_customization.py,sha256=M2GrnO08YnQEw8ViGgoMiANtqtWi5sZB8zz3iDXuQTI,6196
37
+ pulumi_vsphere/get_host.py,sha256=096kOTCExeYfCRJi7Bsw0399KZDzDbuPPpuHKskeJyA,5948
38
+ pulumi_vsphere/get_host_base_images.py,sha256=d43IxPNCfr3rwhHm_TbOwO6JgDjBsnOjaya_nV8FTh0,3511
39
+ pulumi_vsphere/get_host_pci_device.py,sha256=PLT7PTk3zycL11cqiO4X2xKgRNh1Ow5Xmz7hcLhty9E,8566
40
+ pulumi_vsphere/get_host_thumbprint.py,sha256=IKPHXoNMFcuGfHMusbFYBwWMfvMkGdMsMgJn1t0d9c0,6145
41
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=PwyNYSz9t8Aa0ktXXjW75CO1JIlwM4U3owoJHzZzw9c,7142
42
+ pulumi_vsphere/get_license.py,sha256=LWdUaNV77ip3f_FE5OVs0fYjPw_SgEeBS5U_6HHMdBM,6124
43
+ pulumi_vsphere/get_network.py,sha256=MMk9NPF7GNKEVre3qodSqv03CbCb6MwoUKAFZ2bpc-M,9810
44
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=422NQaoICHIHB2q4GeQTld1WaUJ2LSp1Gk55X8Ucv5I,29180
45
+ pulumi_vsphere/get_policy.py,sha256=6r39F1A82BZbcK8Rw1I6mhTcyU9FUkpFRQvppPcUy5w,3998
46
+ pulumi_vsphere/get_resource_pool.py,sha256=RbRega10PB4mIOzqsg80PPLxEPNKHVi-YfKJ7epHowQ,7967
47
+ pulumi_vsphere/get_role.py,sha256=r0hfeZprzETIUhlh3DNZAlNI8R1g4YXwQ0_kgoBzw6s,6078
48
+ pulumi_vsphere/get_tag.py,sha256=ku33TbhXPFpwh21_cc4az6BJJOxAfCzZt3u4dsXhjXw,5543
49
+ pulumi_vsphere/get_tag_category.py,sha256=gactlr1XDyR-6FuPhRDhv98qvb5dUoH-Rptd_-na0sI,5814
50
+ pulumi_vsphere/get_vapp_container.py,sha256=08PrtkYMwBCyjJtUkgg4iGSNU1ViUqhjge3vnS2pLDo,5176
51
+ pulumi_vsphere/get_virtual_machine.py,sha256=8-fFhiOakfEXui1HBIUPpnY5osfZ7DEDzpLboE3c-_k,67958
52
+ pulumi_vsphere/get_vmfs_disks.py,sha256=vO8Xo_E3FHL5gEnATVGwxdlyj0bbANPc2nnpD_QehFw,7551
53
+ pulumi_vsphere/guest_os_customization.py,sha256=0raXcrdKGs5ZjwOYndtD6yRTub4nWWjOaXI-MMnqhcY,17127
54
+ pulumi_vsphere/ha_vm_override.py,sha256=Lvu7onjeQWliq_ONQIr9MFwDy4b8zGCZkQ2w0ggjZEI,59134
55
+ pulumi_vsphere/host.py,sha256=ztACxMQSacO8sE4og6vtkr8ehWz7zYbMiEGzaYXQNUU,50913
56
+ pulumi_vsphere/host_port_group.py,sha256=11PeLX7X2BbIZqOqNa0p089Hwhmfe79JlpvYnhNUe6w,57428
57
+ pulumi_vsphere/host_virtual_switch.py,sha256=MYNQ9Fv0XCbhn62fA0Gw-963D_xATYkUQtOCly4k61E,59955
58
+ pulumi_vsphere/license.py,sha256=DwsJQehrx_QetnhEotAXj9uMGN6s52Ex62seIN79WOc,12196
59
+ pulumi_vsphere/nas_datastore.py,sha256=CyB6l1bs6Lg28ZSXZOm63SAhaWC72PV0I1JgqbjNPe4,50328
60
+ pulumi_vsphere/offline_software_depot.py,sha256=O4VuQf4h2gobA55ipUN5N--o4-mPTakVX1Xpe6E4ek0,7553
61
+ pulumi_vsphere/outputs.py,sha256=Tj7mYV7BMCl_XT1uOwpULNy-J6A9EbCTmmigWCHbQ7g,158375
62
+ pulumi_vsphere/provider.py,sha256=ebBbKo9SR-1kQc5iyRLFK9rtQhWlI_u-nAZrEFC83zA,20437
63
+ pulumi_vsphere/pulumi-plugin.json,sha256=-Jx3bP_MRWRKOGrYckvNxPqhccPEzJUJUxtrNxd6NE8,84
64
+ pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ pulumi_vsphere/resource_pool.py,sha256=EoVpNGqrDYXjP7Zyg12-rGOJDav9BW4Z05GqLIEBsEY,43639
66
+ pulumi_vsphere/role.py,sha256=7AvmMTWG_J07ePZEu810mBVtVF1Vcndh0C8K5dn9CI8,9394
67
+ pulumi_vsphere/storage_drs_vm_override.py,sha256=MCP1RH74V9cVOtSMUA08DvZ8lAX3U19Gxqz4-TkQWA0,25746
68
+ pulumi_vsphere/supervisor.py,sha256=Kv6lXlK-lqO-uOTpJCfNXS_lNW60DMIxOqhR3-N2RG4,47094
69
+ pulumi_vsphere/tag.py,sha256=ACyCpYeEW_iyhosN8UcDYkzgwvq67g55v8patQa-1Ik,15167
70
+ pulumi_vsphere/tag_category.py,sha256=hfmCV_kprfnlgLD-6fjDcZNTt6-cuZFSgxc2TQbTQg0,17800
71
+ pulumi_vsphere/vapp_container.py,sha256=9hU9i-yf-TqqkCxIbcqSkYHaisHDQyI-aWQ5P-vJjzM,54219
72
+ pulumi_vsphere/vapp_entity.py,sha256=MdjmOZkG-amjGbAk_lnbSPJYhssZDSVSixeZt5fLw4A,34903
73
+ pulumi_vsphere/virtual_disk.py,sha256=A56NN7b1Bzm2MW5DG-SNBiJsxY2_I5ZqiRR1mquhSHU,32133
74
+ pulumi_vsphere/virtual_machine.py,sha256=6s5Tk64qsbnZITe5WOaWKpgtM2jOB_YMbo53HVkl1GA,223341
75
+ pulumi_vsphere/virtual_machine_class.py,sha256=lkJgYH2TEguJscKPbDPq5B9I0uVi5PD3K9FhMF4mxV8,17337
76
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=YuZAbiD0Pu48BGifXpGYzmEKzZsNsmQOB-6fmeINIdA,24086
77
+ pulumi_vsphere/vm_storage_policy.py,sha256=YyV9B6CVh23AoH-VxJ9lwZy78I63NbTSW6xWn-iYK00,20183
78
+ pulumi_vsphere/vmfs_datastore.py,sha256=sXzgqOY4I4UQAs7V3ENUW5tsLD_64m_xKi64W7_tMTw,45348
79
+ pulumi_vsphere/vnic.py,sha256=e6nihrNo_9qeRT4n0qBf3Rm29xrpFYr9KtIBy-VB_Y0,30891
80
+ pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
81
+ pulumi_vsphere/config/__init__.pyi,sha256=iEdb3b8LpA1hgxsdfzIl9TB79_koUKrlg5KHtM-7xDg,1525
82
+ pulumi_vsphere/config/vars.py,sha256=qYPNSppleMGJaxbz3VnPRGlln--OcnHmvlXJIXq6t20,3384
83
+ pulumi_vsphere-4.13.0a1736849827.dist-info/METADATA,sha256=60Z07tf3NoYMSSW_b3lSCqWuqjYeHDL0I62i6ErpFRA,5021
84
+ pulumi_vsphere-4.13.0a1736849827.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
85
+ pulumi_vsphere-4.13.0a1736849827.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
+ pulumi_vsphere-4.13.0a1736849827.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,82 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=D0xUdIG9TzexthoPimJXUxoqiIfxr5H0lOHIAJhhsjE,10114
2
- pulumi_vsphere/_inputs.py,sha256=n7IWt2LMpbsan_Pw5DPlEWWXolg15HOVJQ1dAIgPKGM,136898
3
- pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_vsphere/compute_cluster.py,sha256=8HJuTuH9JIxCMh2WTG7zT7f6JwUy8qScFsr2S8ozkHg,245818
5
- pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
6
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=tEW7sHDqTawVmI28q1xqprkpoU-fnan1hAeZkOUmNIM,24771
7
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=-5K0E6HRhIWGBKAcMZsqXNFQLWIAhJs07_PKVi-3PBg,17554
8
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=_q1lrkr1pWzl10dGA1PdRSOXibmYvLKBLTdZG0O0YNQ,21613
9
- pulumi_vsphere/compute_cluster_vm_group.py,sha256=l3gk0qAc9UiX6DpkCZl30L6qmTigu4pGo5O1YBJoatU,13459
10
- pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=Am9PFFU8PghrdOTRbqJzeFS6nLxgX5Pob-SKqCEaY3k,24422
11
- pulumi_vsphere/content_library.py,sha256=-3mst76bjX3vq4izMl8pIlZR2B9RjEG3A0VA7jpOfRc,15087
12
- pulumi_vsphere/content_library_item.py,sha256=qjHPcnsxpNiFOzCPxQXngZXtR1R1RrsqAhdJgpqgZUc,15640
13
- pulumi_vsphere/custom_attribute.py,sha256=wTuv97G4uXpJ9kv_TaKZc1OYj1e_68c9dAsFc9Ds5nQ,9031
14
- pulumi_vsphere/datacenter.py,sha256=wz6ZhWNMg88zY21kTSALXAXyG1HBuZfyYGFhHtM--lM,19182
15
- pulumi_vsphere/datastore_cluster.py,sha256=zTzK-jiRFBc7Cka5T3nAyZW8WJ2wcu3YFQddLhQ1yYo,90219
16
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=8eKwKS9ZYaZICVxjNrNLDDBqBKyQqOJmC_nt0jlqYJY,16842
17
- pulumi_vsphere/distributed_port_group.py,sha256=LWuv8PgWOo6MRx82QTrpiDAzORv9s6da7qdg3ZyV-KA,134499
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=L6Vd4C9N9JRaILTt4Ll-CvQM9SVHhvBZ__61P61osok,264137
19
- pulumi_vsphere/dpm_host_override.py,sha256=i3eG4PkI3Hi2KodP6OFAGC6QLczmNDRcSIt9MbK7U1Q,15371
20
- pulumi_vsphere/drs_vm_override.py,sha256=qGlUe9gq9StYW4OHDSZKA03j0ru3Ruvb9SEaVcpHo1c,16657
21
- pulumi_vsphere/entity_permissions.py,sha256=uPVnBk47c6csM0kQLwJC3Niml9uCTq23KGOfhNyNrrk,12429
22
- pulumi_vsphere/file.py,sha256=00qPdnT7-00SNMacM8_lGQrEbGSXv9rTC_ERTZHtB3U,23703
23
- pulumi_vsphere/folder.py,sha256=wCsVzpLVQn5tbx0kn4hKNUBxQpalVn9ydGemsbz_MLc,25630
24
- pulumi_vsphere/get_compute_cluster.py,sha256=rOCQTRMnHzOz3lCSZOQUQJ80qkXUqkxJPOihH_GxrVk,6137
25
- pulumi_vsphere/get_compute_cluster_host_group.py,sha256=1vMYBvHD7-b4d6k9wPR_DlRAqjoBMSC-vCjFFvtUpgE,6266
26
- pulumi_vsphere/get_content_library.py,sha256=zaz3CNzLrJLB5rH0D1zQk5Mi_g_LANjeHfHJDXW9o6k,3358
27
- pulumi_vsphere/get_content_library_item.py,sha256=-yztx7VLc3cyG8nwjZ4iA4QbwvVGgL6K81YHOrYHJ4U,4496
28
- pulumi_vsphere/get_custom_attribute.py,sha256=KMIPUXKbqrRMzUFgQ91V6A_qwHttMHIaSSof4KOoD9Q,4494
29
- pulumi_vsphere/get_datacenter.py,sha256=XjgzHmheL3QNXnywVEoJ7dHZqzR2P-_kmJrfx14tX-k,4223
30
- pulumi_vsphere/get_datastore.py,sha256=paiKxWPfdEyz7Z9yRAe_wcfMVDVeJH59_ezscPg09_s,6119
31
- pulumi_vsphere/get_datastore_cluster.py,sha256=U108Z7EMqK4Q-7QYzIAuYSLaZQywdA7HVMT417ppC2E,5297
32
- pulumi_vsphere/get_datastore_stats.py,sha256=O8FhEGF5NT2mlFnNzgU-v3kxqvQjscPCtia-daF4qA4,7917
33
- pulumi_vsphere/get_distributed_virtual_switch.py,sha256=3Y9Z7qhXnUz60I1WGF3g6UUQu_iwqdmZYumZxM6iFVE,7014
34
- pulumi_vsphere/get_dynamic.py,sha256=4evdnVACuoARVhytaBkXCPOQTJfAhzU63H1dy2MYYL4,6242
35
- pulumi_vsphere/get_folder.py,sha256=cZn7YUGiNn6sziSiH1_6v-p9LVLxiiiEwXgUnjR93Qk,3765
36
- pulumi_vsphere/get_guest_os_customization.py,sha256=a-hctk_ltCSfcjAgx_IxqQtOCd-df9a5vZeKXY8mNoU,6510
37
- pulumi_vsphere/get_host.py,sha256=PBTK0McfwvgkKjuBeZbQWESeBrhbeIL1mafQO5Au0kY,5340
38
- pulumi_vsphere/get_host_pci_device.py,sha256=47KyrlqKw_mnLK3eaVMbmI8bEGqUye0BVh6YGPO_cWI,7898
39
- pulumi_vsphere/get_host_thumbprint.py,sha256=9UmtSmyhiewNXW-7cifViECzkU6RXUN0aNcbhOKsf5k,5103
40
- pulumi_vsphere/get_host_vgpu_profile.py,sha256=5LP_PDfY3wXA4zCml3Cz_yANEHPIh0OFoMK9PNJnJhI,6628
41
- pulumi_vsphere/get_license.py,sha256=2egn7bCzJt6Eul_HWgPTrHpzzfruab3JlPBrNWCWfkc,5398
42
- pulumi_vsphere/get_network.py,sha256=Cm2IZobXCW_RbyfGJybAqULksx4LUNFg-7oNKEWL0qs,7273
43
- pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
44
- pulumi_vsphere/get_policy.py,sha256=RmwMeG08vPnbebfPw4Qyvi60zofxLdx5sHFbH73hFBY,3565
45
- pulumi_vsphere/get_resource_pool.py,sha256=SybwTomV_rYafuE4Xegm67g1exIHi66_PA-ZzNwz_cE,7597
46
- pulumi_vsphere/get_role.py,sha256=ZH7ycfvudtiCgmFZV3fJobeitdyFYCrZ0gmli46rFCs,5351
47
- pulumi_vsphere/get_tag.py,sha256=Cf7jDIln9TEHBrjH9AWWUEFreEA9Z2Anm7umdbBWVlA,4956
48
- pulumi_vsphere/get_tag_category.py,sha256=vB023_5_viINfklL9-KKhvADQKoY8ZDjTTQVgF2w3-Q,5174
49
- pulumi_vsphere/get_vapp_container.py,sha256=Ae77fQHwunAm8Ab97wEYqjL-ZmdTuyj8yoE57RU6xzs,4613
50
- pulumi_vsphere/get_virtual_machine.py,sha256=FsY6V0eKMRXr2JBqFtkdyu1nU9PvVmFsLd30FHhMlJc,58811
51
- pulumi_vsphere/get_vmfs_disks.py,sha256=ItMOx8cK9l12N4Yc4hQb2Ocuk_hCwb4Ql39QX9Tt1HQ,6857
52
- pulumi_vsphere/guest_os_customization.py,sha256=HB-qrGxduUJH_cUpKyLbnmmV-HOBqJWesV4lWTLdETk,15360
53
- pulumi_vsphere/ha_vm_override.py,sha256=gGQd5NMeFDznmfLTQvuXuVM5JT_ZAmQRxwuVEDe_FxI,58963
54
- pulumi_vsphere/host.py,sha256=jX-4FYaKACBU2OwgK3khdQwDs81bMR5GG-aMlIRaGTg,46389
55
- pulumi_vsphere/host_port_group.py,sha256=_0k6zNLexAWeaOocfTLZRCWwbsZ5vRbrsceoL1AsWrc,57254
56
- pulumi_vsphere/host_virtual_switch.py,sha256=gj2BcglObvCxe4tkIze0OxW2xnGDDOhWKUc2Qbz99eQ,61643
57
- pulumi_vsphere/license.py,sha256=FUrMgYlPCR74DuWahcgZttso7Q2m9kpoKiTb-6IOWy4,12908
58
- pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
59
- pulumi_vsphere/outputs.py,sha256=PQWYuK0-fabmFt2L7I7YXrCRJluhu8mvak_KSlGwMJw,151078
60
- pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
61
- pulumi_vsphere/pulumi-plugin.json,sha256=GPkzWdIfUGLp-CeSzzIZ8ksrThmeZnOYMcpaT3JCpTU,44
62
- pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
- pulumi_vsphere/resource_pool.py,sha256=h8uuERR45TUAH2-IvtbR1uZfcJq55FyW_ZqET7OVifE,54219
64
- pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
65
- pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
66
- pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
67
- pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
68
- pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
69
- pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
70
- pulumi_vsphere/virtual_disk.py,sha256=kWAUojQyOg9zFj_sYAjz0O_FtSWmwfDzeCOdTWelNZ0,28723
71
- pulumi_vsphere/virtual_machine.py,sha256=VzvF0jXEWx_ROG_t8MiIUJqEaJ4lW29uVimFFCbyxP4,273930
72
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=G8-3jJEsViVYhF4v4LSfWSw1ajq3AdaSloMO1rseyww,24082
73
- pulumi_vsphere/vm_storage_policy.py,sha256=MzAcDxZfj6p25LFT6sS-zho9i_uDXlU6uytttWQyJkg,21426
74
- pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
75
- pulumi_vsphere/vnic.py,sha256=upByAXkmwaA7U9VYF2huy2yntN2creeBaFvIoRfee_o,30855
76
- pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
77
- pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
78
- pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
79
- pulumi_vsphere-4.10.0a1710245029.dist-info/METADATA,sha256=3RNEnksv0PgFg176Gk8du4214EXWfAXO6cUnmnGZ9lg,4958
80
- pulumi_vsphere-4.10.0a1710245029.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
81
- pulumi_vsphere-4.10.0a1710245029.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
82
- pulumi_vsphere-4.10.0a1710245029.dist-info/RECORD,,