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,16 +1,17 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pulumi_vsphere
3
- Version: 4.10.0a1709017641
3
+ Version: 4.17.0a1763710194
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.165.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions<5,>=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,89 @@
1
+ pulumi_vsphere/__init__.py,sha256=MA-Bp4GKDTf_B14h58DE59EP0Aswr4vJw1F4A9FRsXo,11401
2
+ pulumi_vsphere/_inputs.py,sha256=uZ1oL7Ktgihs__rZN1NzeImR19yF14slggMrjiPOn7M,198058
3
+ pulumi_vsphere/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
+ pulumi_vsphere/compute_cluster.py,sha256=SfDsyO4eTxIxRV25aNnxg87lZ8Bfvpdvko_xjOFzYwo,241171
5
+ pulumi_vsphere/compute_cluster_host_group.py,sha256=nAQCdQlfpFS6eDaZ-jRhSkeIndwkiFnY-3hXV_hrupU,18938
6
+ pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=XOF0ALSu-awNTT0Z-3m9CU6fRaqWB0d08fp-CaY0arA,26652
7
+ pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=ayOsi9_C6UFQRhm53GnJHQ_np-Fb-mkInLMukq7LKME,19747
8
+ pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=Qc3oc0CxZBfXfJcErIIuIj2QlX8yu2Ii4acfoVhJg6E,30944
9
+ pulumi_vsphere/compute_cluster_vm_group.py,sha256=7JB2aSYyEUPJNFMGBNsmy99Zez58d11OkDZkgg3IZX4,23750
10
+ pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=YLgckwOSU60FJXATEqeqx19J1tVrIP3U0ftXAtBTGBA,33633
11
+ pulumi_vsphere/configuration_profile.py,sha256=pX1VfETA6SZxc0vTEY_yjMYwnI9Wa2RJB_xGl4O_8EU,13583
12
+ pulumi_vsphere/content_library.py,sha256=DYFbYyjrNjvFg46_cZqVclVAEAxUo0Dast1X4AvQQ80,20527
13
+ pulumi_vsphere/content_library_item.py,sha256=1NlkZAQqNcJmya79IFTE4HLpar6WL_nriDTNw6GAqpI,22341
14
+ pulumi_vsphere/custom_attribute.py,sha256=lT2z-e1-OZB7awBI9ehpso3GZhK-AG4c2FWJ226p5a8,12478
15
+ pulumi_vsphere/datacenter.py,sha256=u4iH_KFZ6JGMvbs3MwhqsBi6PkMM2-p170L8sFJDuuk,19787
16
+ pulumi_vsphere/datastore_cluster.py,sha256=JBFTdUrsx59bxygrXd3vek07xe3hRulUZKNJ1UhfQmA,92057
17
+ pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=tVZeS-mc8iJ5dnf6ddQP_EYXxjh6X1s6OMUAUJk07lc,24575
18
+ pulumi_vsphere/distributed_port_group.py,sha256=fXtrDVYzyqj_XIwxA1M5K5pJbx9FO8KsU_vrDJpabQo,149891
19
+ pulumi_vsphere/distributed_virtual_switch.py,sha256=e3MVmxkJGIVYqprgnqS3rRL0aEwmUUkV3boqcuv5Arg,273834
20
+ pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py,sha256=Zov-m4CSBCErQRuSO45bHvIGucSzChOm1OVhhThWJWc,15445
21
+ pulumi_vsphere/dpm_host_override.py,sha256=rWvxew-E9_TYNin9Jrin17KT32mZZht7hKr8VjB479k,22168
22
+ pulumi_vsphere/drs_vm_override.py,sha256=oyOr--TMqo6QAbA1xuxQvBH9rZH7iWwtMdvSdEW1HMM,23646
23
+ pulumi_vsphere/entity_permissions.py,sha256=TaMu2tyoxjh7EB0lsJGBbr4cK8rBRgtF67gSmAHHVR8,13597
24
+ pulumi_vsphere/file.py,sha256=hwalcwPhvlrEJVF0zVeEDRxf9FZb6YU4Nm4ZOnXU3U8,23591
25
+ pulumi_vsphere/folder.py,sha256=olNrsWiL6y8Zn0XgYXg2yIicn70dSJtFmy256hKGlTI,30617
26
+ pulumi_vsphere/get_compute_cluster.py,sha256=LHZq9jDgg2FOkA2wBjeeODN1OC1zhQhtrtJI5qp0htk,6933
27
+ pulumi_vsphere/get_compute_cluster_host_group.py,sha256=ajVegB_V3uGKdRm1mom0JT-exZrj0AvmXhoLXPLMfHA,6864
28
+ pulumi_vsphere/get_configuration_profile.py,sha256=eFEkOOBlsW0uHR7p-_w9uvizbJRVxuy-WdAyarcrfrA,5588
29
+ pulumi_vsphere/get_content_library.py,sha256=ln4t9DMz-V87ZJGHxqMoBQlTfli6J2lRE0jnPZ2wXIo,3911
30
+ pulumi_vsphere/get_content_library_item.py,sha256=xg_mOQCUY0uvTdhfEX04DzNQoHt4il-oqiROCAXhTAk,5505
31
+ pulumi_vsphere/get_custom_attribute.py,sha256=VP1qLQdsrEqSFMIh3Qww9iaJ5mOevq2YAzYrtmhr3B0,5129
32
+ pulumi_vsphere/get_datacenter.py,sha256=DAnlOob2fATtBZ8_UPaZ548P2pdqQUt0gdhG-ikS2fs,5462
33
+ pulumi_vsphere/get_datastore.py,sha256=dcOmew92kDlH_FZ9oVJviR5pn01czTwoWbDV601kQyg,6949
34
+ pulumi_vsphere/get_datastore_cluster.py,sha256=vxo88r5_FoOOVzsdSLSqDxsNQ8AiT-OaVULFbnwts18,6624
35
+ pulumi_vsphere/get_datastore_stats.py,sha256=uhSMV2rAJhLTGtTVVGdnd2QVuH8FUIeDc4p4kHEQB_s,8393
36
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=c6fE7McVKAlvfqlCUhlmDMaOkOzr4lqvjRpedMSD6ic,7869
37
+ pulumi_vsphere/get_dynamic.py,sha256=g7EfXgikOaLeiyKSZboFrOnbp3MU7mOmAceDpST5Qms,6754
38
+ pulumi_vsphere/get_folder.py,sha256=TTwVd6b8HezMEZYVFAjOZbteyUfOhPNkaD5GPRP1RuI,11479
39
+ pulumi_vsphere/get_guest_os_customization.py,sha256=89R3h9RCMFFGoR07W2X_CajbkLWUVh4g1NFHJtB4jeY,7821
40
+ pulumi_vsphere/get_host.py,sha256=AyOXxYqg04TTmnNrFqrkfEuYUR61fPLz6MefqMGGFZI,6107
41
+ pulumi_vsphere/get_host_base_images.py,sha256=nOZHSfoqTmIZlCdHwHysuzqOSs6yZPy5Ydksr46BFqk,3550
42
+ pulumi_vsphere/get_host_pci_device.py,sha256=oqb1zSBOOXpb4tEWw4fwx7TpnpuAU2jGKDB7aLLbgMM,8845
43
+ pulumi_vsphere/get_host_thumbprint.py,sha256=HriFlovrl0aizEQfU6xFoHuOIYNJIEnb1TfWf-5sx-k,6344
44
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=PFgmWNk7hOBRVO_sE4iG3G32UEdLJJ8R3SyEteIT6OU,7291
45
+ pulumi_vsphere/get_license.py,sha256=dosfs1LYDrIoTPHPFtCdBf0p-HExy_KpjMmakXwno8E,6312
46
+ pulumi_vsphere/get_network.py,sha256=2CWrK0mzuQPKA0spilVzQ1znRmKlL6tEYAKCr7JbkvA,13024
47
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=cWam1_GL9AOWQ7vJOrq6VOa5rU_sYqJqMFVF9pSdzN4,30367
48
+ pulumi_vsphere/get_policy.py,sha256=WHG6VLFNjnHtvldrif7mnBPhX8IXkNzFGv_HWlpzV18,4077
49
+ pulumi_vsphere/get_resource_pool.py,sha256=h_IFTni-pHGo_Hq7KeaRkAxn7CHC9txe19sxa1CR3_A,10547
50
+ pulumi_vsphere/get_role.py,sha256=hxE939tS7JKzM5hVkYIs6EHDX4diwvODEbLFnKBucgY,6317
51
+ pulumi_vsphere/get_tag.py,sha256=xY-pnsJZzifPmwdSpZj38LF_PZyeqK5dWY7QEiJz7Gg,5702
52
+ pulumi_vsphere/get_tag_category.py,sha256=7bw5zEQWt6IThGe59aJF2aMawFjtTVkKriLQRpVnh8U,5953
53
+ pulumi_vsphere/get_vapp_container.py,sha256=GA_JVvHN4K6Jwo45xL6VvnfaZ0dJhP7JgwgximvvVgs,5315
54
+ pulumi_vsphere/get_virtual_machine.py,sha256=3ghhDtB_lZ8OWJITuaE3FPkQMp5YGu93xTM5-CmtiTc,72025
55
+ pulumi_vsphere/get_vmfs_disks.py,sha256=LDTxMatopBF_zyHZpEcVVvqPJjj7UT_cnKeYctpYAzo,7770
56
+ pulumi_vsphere/guest_os_customization.py,sha256=cQ41GzWMN5mW5kbmg8DUaF9q-UhQneoFqX4WE1gi-Gw,17924
57
+ pulumi_vsphere/ha_vm_override.py,sha256=2uv3UqSjKLMMA9zfBx0UnzES5NINUMgQ7zPQC2if41c,60849
58
+ pulumi_vsphere/host.py,sha256=CRG_H2zdhWTfpqu--x5lcvYZwfX1mpa4mCsoaOk6FB4,55146
59
+ pulumi_vsphere/host_port_group.py,sha256=mOW92YefhMItz5NmZ-qggt8bsA-3FVLjA8H-TxuDYqY,60335
60
+ pulumi_vsphere/host_virtual_switch.py,sha256=HFuhJDBEuuWz0jiZ4IbMBlasWPfULu1WUKd-ammEdU4,66652
61
+ pulumi_vsphere/license.py,sha256=512wbtrQ-zs5CePyn9R7bydqB3LC02kVOwWDCX7Q6ts,13894
62
+ pulumi_vsphere/nas_datastore.py,sha256=XtcRQ9ntYe_JIyspwi3uSF5spZmB9vLtzvpdsaLgwm8,55239
63
+ pulumi_vsphere/offline_software_depot.py,sha256=4xxOrCrubrGej9q8sdPTUcW8wMRc_sIE3dcqcm4Tjug,7850
64
+ pulumi_vsphere/outputs.py,sha256=SU_VgZBgnItVnueVGSXNBmzbkWj5jQMLAgLoX5XzlTI,169218
65
+ pulumi_vsphere/provider.py,sha256=uYzp9Vta1Aa8R0IDuNQ1aHYuKzy30-n2B6lUzPAKI3U,22488
66
+ pulumi_vsphere/pulumi-plugin.json,sha256=B02FqPedtxKXtojo_LS6tLRq4QP6lb7TRcUqFmRmI34,84
67
+ pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ pulumi_vsphere/resource_pool.py,sha256=0iW1GbAiGb5E6hxUHn6Rz9bEklEo186LzLrJIKk613Q,59396
69
+ pulumi_vsphere/role.py,sha256=07ONK7EAsNAbeCmslTA6zG-U6RLjh0AMjaukAgBlaRU,9869
70
+ pulumi_vsphere/storage_drs_vm_override.py,sha256=d6VVJkaD_bb3W6lxL7DfJFLGzygA99osYT6VncqzNro,26851
71
+ pulumi_vsphere/supervisor.py,sha256=h7ThUo61OVboRRuaN42WdtuWD3d-yZ-u7KTBdPeOut0,54017
72
+ pulumi_vsphere/tag.py,sha256=83QcHUmG4bpO6MZuyLGFIdLjN4EOKtFrwYz-YK3oy5s,15824
73
+ pulumi_vsphere/tag_category.py,sha256=qOdAJxj57PgO0lBRb6CTK1EBa6oedrsbOl7I5qlIUXA,18643
74
+ pulumi_vsphere/vapp_container.py,sha256=zsyGwM1Tw7ef7V8ZKnLJf6kn5vIYVD2P-vRcZnIHdUo,57180
75
+ pulumi_vsphere/vapp_entity.py,sha256=WtLRuwtnpxryX7Hg2JnM4_rzr05jVoYNEdiSeqT00dw,36772
76
+ pulumi_vsphere/virtual_disk.py,sha256=eWuc1ESCuP2Q8780Ez8a0zp1iR5Huo_9HWwyQ9-hE9c,36033
77
+ pulumi_vsphere/virtual_machine.py,sha256=v8dDiIstM2aSun8tjiGjtIeSDfpdiMxVNlNpyL1R-24,237125
78
+ pulumi_vsphere/virtual_machine_class.py,sha256=saUsQh_3bVRAvoY7Y-FUYi_tkqcvqolGS9l2ZyK__L0,18432
79
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=12brP8F244x-JqmBKr5h1EFn4DJt4btiRZu2dIW3bWg,26239
80
+ pulumi_vsphere/vm_storage_policy.py,sha256=hIVxYzYThUMp9xPWLLnUASHhIjrPBCclR34fLLXNlOA,20620
81
+ pulumi_vsphere/vmfs_datastore.py,sha256=-O8bMZWiVXsE3X-H8ElTDAa7RdeWoDb1cnrUf-SkzTE,47385
82
+ pulumi_vsphere/vnic.py,sha256=qWW6kJptAoOpt8Ucch7bxrS5J2qYCpxbEShYU3Ovpys,32356
83
+ pulumi_vsphere/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
84
+ pulumi_vsphere/config/__init__.pyi,sha256=xIQJB8zGk5myF9nf2LJUefPcxQjWODo2zQFJMlXkb6Y,1524
85
+ pulumi_vsphere/config/vars.py,sha256=6lv8iDJ0T9-298m4Kg2oIQIeA-E-PrRu8jAgaZ6b0LU,3513
86
+ pulumi_vsphere-4.17.0a1763710194.dist-info/METADATA,sha256=QxCfoz4Z0irbr8GNu3P_H76Ge51H43aJ9epX3BdDqlo,5024
87
+ pulumi_vsphere-4.17.0a1763710194.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
88
+ pulumi_vsphere-4.17.0a1763710194.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
89
+ pulumi_vsphere-4.17.0a1763710194.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,80 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=xBaRYczCs89aNw7E1pgL2cbTi-SvZWMeC-hFOdRgbBU,10042
2
- pulumi_vsphere/_inputs.py,sha256=J0tKaDZh17s8WUyNEVsb5dRgkcA_3bzf72DDfQLT0nk,136728
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=AIrFi1HSRjGLPpXeJ1-r36rn04ULHG9njnBz0KT3rDI,24459
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=1eeFOC1HTPbwFN7pJazRbVsczNnss2ti-2Z6k2Ot9Z8,18866
15
- pulumi_vsphere/datastore_cluster.py,sha256=wAgIfzbH5Jyb3F2MsrOzM5OR_mVI0I6nAexPmpgP_qo,90156
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=m2JFMSlSJeewuzhyxIGCkzvkVA7F6B_Im-LbDeG4VcM,263381
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=uRJ8hqlZlxA-HdJVw8R9bBzDMaMVuXZMThqbxmq4S48,23387
23
- pulumi_vsphere/folder.py,sha256=wCsVzpLVQn5tbx0kn4hKNUBxQpalVn9ydGemsbz_MLc,25630
24
- pulumi_vsphere/get_compute_cluster.py,sha256=nBgxOLhF9RV5vGGwgCxeNCyVNKr_tQi44VnaBhBbX1M,5997
25
- pulumi_vsphere/get_compute_cluster_host_group.py,sha256=8g7QKyRxba4DMvYGofeceClttS1Bb80poPG-Z_MvotM,6126
26
- pulumi_vsphere/get_content_library.py,sha256=r1v63MViQ-uXD92M81VCWv-6dzpmB82AHjDytMR6x6I,3218
27
- pulumi_vsphere/get_content_library_item.py,sha256=-yztx7VLc3cyG8nwjZ4iA4QbwvVGgL6K81YHOrYHJ4U,4496
28
- pulumi_vsphere/get_custom_attribute.py,sha256=skM0hjQmPyYCQdEgXjbofu9Ulez4ylw9jQKb9g3Zz2I,4354
29
- pulumi_vsphere/get_datacenter.py,sha256=sfXiHyHNnm9S-bUpcbaGw1ei7ZMNJ1-s_lV6Z7B0UH4,4083
30
- pulumi_vsphere/get_datastore.py,sha256=Xnn4PGHpg5fDLoE_nc9RUJEUfq1SVfPWaSZA69ceZC4,4738
31
- pulumi_vsphere/get_datastore_cluster.py,sha256=4nkwUsNLdqWIoxYhiFzkFoYjr4zyOf-5UToK_0vbELg,5157
32
- pulumi_vsphere/get_distributed_virtual_switch.py,sha256=AZETu5b9qlmE-GuDkYQrVVjFH9-eUNMYpNhIs2uRw2Q,6874
33
- pulumi_vsphere/get_dynamic.py,sha256=3Yq0IaaIVrwXRn3eNL8fs6SJAfwGnpstLna8RaTxYn0,6102
34
- pulumi_vsphere/get_folder.py,sha256=7g9DRvEFP2WEudM8PEZFApsCpgKLzABYEqo4ixznkGA,3625
35
- pulumi_vsphere/get_guest_os_customization.py,sha256=IWLONiIdg-z06VbYAVL-fBBoQjRiVw7NQVa4DNf32ck,6370
36
- pulumi_vsphere/get_host.py,sha256=aZ-2kism0hoSyeCGALJr759ILDrk2ohDskmexXRwSb8,5200
37
- pulumi_vsphere/get_host_pci_device.py,sha256=WC3BBX78ub723kzaIZLaJwLBUIwnacBK_09A_GXokB8,6998
38
- pulumi_vsphere/get_host_thumbprint.py,sha256=Xj4plQOyPh5QXBFZFQFhR8VULbuozkWISNDuCdCizhM,4963
39
- pulumi_vsphere/get_license.py,sha256=NPtNrjcdrDFODRrd6gFnFo9IgVlGOocwrUW24r71lI4,5258
40
- pulumi_vsphere/get_network.py,sha256=bm8QyrAhHs32jZnfwpqMOiSV8Pmyr03DqTMEOMGo-NI,7133
41
- pulumi_vsphere/get_ovf_vm_template.py,sha256=UWfVGHsBhPQGZuMcWkKQfA69Mlt3DKkZHNQJHLo6WDo,32673
42
- pulumi_vsphere/get_policy.py,sha256=ntQk22TpTCHRg4X5aYx4-oTfxyofEqfywYmFHmCF-II,3425
43
- pulumi_vsphere/get_resource_pool.py,sha256=ou_Y9jHg2uOChpY3H8G-p47T6tWSorttZTn1bxv1jSs,7315
44
- pulumi_vsphere/get_role.py,sha256=XpjnMAWOVCp9-L8HUkEi5q7KKnQVtbl4jbLG2_XHWPM,5211
45
- pulumi_vsphere/get_tag.py,sha256=NJIo7J9NsSr0SxCScu7QrNn41dWVc5vXAcIQN5VmAj8,4816
46
- pulumi_vsphere/get_tag_category.py,sha256=R-kLcRAuATkFp8PPKt01OGp8lpmceKnRf9lEn_ZJzUk,5034
47
- pulumi_vsphere/get_vapp_container.py,sha256=1OUABHMT3qFbSQRqFBCQNltmuo_OF983GJR09vnJUsY,4473
48
- pulumi_vsphere/get_virtual_machine.py,sha256=oy9Is4aGs6aqQypiZkspw8LR_yXxxckEN2ds-eMMNS0,56393
49
- pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
50
- pulumi_vsphere/guest_os_customization.py,sha256=HB-qrGxduUJH_cUpKyLbnmmV-HOBqJWesV4lWTLdETk,15360
51
- pulumi_vsphere/ha_vm_override.py,sha256=gGQd5NMeFDznmfLTQvuXuVM5JT_ZAmQRxwuVEDe_FxI,58963
52
- pulumi_vsphere/host.py,sha256=GE8n_8M9U2yDg2rs51OF4C6yVXMI5M_3mBGlXgooDzo,45915
53
- pulumi_vsphere/host_port_group.py,sha256=We936uvvGqvSJL7P9QN_LVK4P8kGsnJ4k49St8eTf44,56784
54
- pulumi_vsphere/host_virtual_switch.py,sha256=gj2BcglObvCxe4tkIze0OxW2xnGDDOhWKUc2Qbz99eQ,61643
55
- pulumi_vsphere/license.py,sha256=sZe1qoj0I2n1xeN3IGUtaUsQgEs1Z7ZL_0oUQHYscrc,12752
56
- pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
57
- pulumi_vsphere/outputs.py,sha256=-o0A_C9r_3-BilpwdIvEoSyahTtoHqff2egugAwDMPk,148166
58
- pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
59
- pulumi_vsphere/pulumi-plugin.json,sha256=GPkzWdIfUGLp-CeSzzIZ8ksrThmeZnOYMcpaT3JCpTU,44
60
- pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- pulumi_vsphere/resource_pool.py,sha256=VA8c9hMVWlRxtebZc-59K7rHbV0Le21Ya6vrPNSqUaE,54091
62
- pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
63
- pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
64
- pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
65
- pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
66
- pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
67
- pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
68
- pulumi_vsphere/virtual_disk.py,sha256=kWAUojQyOg9zFj_sYAjz0O_FtSWmwfDzeCOdTWelNZ0,28723
69
- pulumi_vsphere/virtual_machine.py,sha256=1QW-vuE4CpK9GCLY5HsQXRsVAdmlcGJttHc9Rb3bXnc,268912
70
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=g0AzO6liCR_b-b7DcpbccfQbfmUC43GfMXHzQOP8S1I,23926
71
- pulumi_vsphere/vm_storage_policy.py,sha256=eOo2OlZ5tyiL0LvvmZj6TdQ7D1gt43lkFcfLwhvtCzQ,20958
72
- pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
73
- pulumi_vsphere/vnic.py,sha256=TJ8UHG0JgaW_TCjaiNdmdRz621FSqsdV0sNG1Em5hLQ,30381
74
- pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
75
- pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
76
- pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
77
- pulumi_vsphere-4.10.0a1709017641.dist-info/METADATA,sha256=BCYr-tq65xHZ5bKlOstWRdiFiA7ncZ1aPXQC5YDvErk,4958
78
- pulumi_vsphere-4.10.0a1709017641.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
79
- pulumi_vsphere-4.10.0a1709017641.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
80
- pulumi_vsphere-4.10.0a1709017641.dist-info/RECORD,,