pulumi-vsphere 4.16.0a1753339697__py3-none-any.whl → 4.16.0a1753512455__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 (86) hide show
  1. pulumi_vsphere/__init__.py +1 -1
  2. pulumi_vsphere/_inputs.py +1171 -1172
  3. pulumi_vsphere/compute_cluster.py +1127 -1128
  4. pulumi_vsphere/compute_cluster_host_group.py +52 -53
  5. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +86 -87
  6. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +86 -87
  7. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +103 -104
  8. pulumi_vsphere/compute_cluster_vm_group.py +52 -53
  9. pulumi_vsphere/compute_cluster_vm_host_rule.py +120 -121
  10. pulumi_vsphere/config/__init__.py +1 -1
  11. pulumi_vsphere/config/__init__.pyi +1 -2
  12. pulumi_vsphere/config/vars.py +14 -15
  13. pulumi_vsphere/content_library.py +58 -59
  14. pulumi_vsphere/content_library_item.py +103 -104
  15. pulumi_vsphere/custom_attribute.py +35 -36
  16. pulumi_vsphere/datacenter.py +78 -79
  17. pulumi_vsphere/datastore_cluster.py +426 -427
  18. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +86 -87
  19. pulumi_vsphere/distributed_port_group.py +787 -788
  20. pulumi_vsphere/distributed_virtual_switch.py +1566 -1567
  21. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +69 -70
  22. pulumi_vsphere/dpm_host_override.py +69 -70
  23. pulumi_vsphere/drs_vm_override.py +69 -70
  24. pulumi_vsphere/entity_permissions.py +38 -39
  25. pulumi_vsphere/file.py +120 -121
  26. pulumi_vsphere/folder.py +86 -87
  27. pulumi_vsphere/get_compute_cluster.py +17 -18
  28. pulumi_vsphere/get_compute_cluster_host_group.py +17 -18
  29. pulumi_vsphere/get_content_library.py +9 -10
  30. pulumi_vsphere/get_content_library_item.py +21 -22
  31. pulumi_vsphere/get_custom_attribute.py +11 -12
  32. pulumi_vsphere/get_datacenter.py +11 -12
  33. pulumi_vsphere/get_datastore.py +21 -22
  34. pulumi_vsphere/get_datastore_cluster.py +17 -18
  35. pulumi_vsphere/get_datastore_stats.py +21 -22
  36. pulumi_vsphere/get_distributed_virtual_switch.py +17 -18
  37. pulumi_vsphere/get_dynamic.py +21 -22
  38. pulumi_vsphere/get_folder.py +9 -10
  39. pulumi_vsphere/get_guest_os_customization.py +18 -19
  40. pulumi_vsphere/get_host.py +17 -18
  41. pulumi_vsphere/get_host_base_images.py +5 -6
  42. pulumi_vsphere/get_host_pci_device.py +29 -30
  43. pulumi_vsphere/get_host_thumbprint.py +21 -22
  44. pulumi_vsphere/get_host_vgpu_profile.py +16 -17
  45. pulumi_vsphere/get_license.py +19 -20
  46. pulumi_vsphere/get_network.py +42 -43
  47. pulumi_vsphere/get_ovf_vm_template.py +121 -122
  48. pulumi_vsphere/get_policy.py +9 -10
  49. pulumi_vsphere/get_resource_pool.py +21 -22
  50. pulumi_vsphere/get_role.py +25 -26
  51. pulumi_vsphere/get_tag.py +17 -18
  52. pulumi_vsphere/get_tag_category.py +15 -16
  53. pulumi_vsphere/get_vapp_container.py +15 -16
  54. pulumi_vsphere/get_virtual_machine.py +272 -273
  55. pulumi_vsphere/get_vmfs_disks.py +23 -24
  56. pulumi_vsphere/guest_os_customization.py +73 -74
  57. pulumi_vsphere/ha_vm_override.py +256 -257
  58. pulumi_vsphere/host.py +242 -243
  59. pulumi_vsphere/host_port_group.py +310 -311
  60. pulumi_vsphere/host_virtual_switch.py +358 -359
  61. pulumi_vsphere/license.py +71 -72
  62. pulumi_vsphere/nas_datastore.py +260 -261
  63. pulumi_vsphere/offline_software_depot.py +20 -21
  64. pulumi_vsphere/outputs.py +981 -982
  65. pulumi_vsphere/provider.py +120 -121
  66. pulumi_vsphere/pulumi-plugin.json +1 -1
  67. pulumi_vsphere/resource_pool.py +256 -257
  68. pulumi_vsphere/role.py +44 -45
  69. pulumi_vsphere/storage_drs_vm_override.py +86 -87
  70. pulumi_vsphere/supervisor.py +206 -207
  71. pulumi_vsphere/tag.py +52 -53
  72. pulumi_vsphere/tag_category.py +69 -70
  73. pulumi_vsphere/vapp_container.py +256 -257
  74. pulumi_vsphere/vapp_entity.py +171 -172
  75. pulumi_vsphere/virtual_disk.py +120 -121
  76. pulumi_vsphere/virtual_machine.py +1293 -1294
  77. pulumi_vsphere/virtual_machine_class.py +103 -104
  78. pulumi_vsphere/virtual_machine_snapshot.py +120 -121
  79. pulumi_vsphere/vm_storage_policy.py +38 -39
  80. pulumi_vsphere/vmfs_datastore.py +183 -184
  81. pulumi_vsphere/vnic.py +143 -144
  82. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753512455.dist-info}/METADATA +1 -1
  83. pulumi_vsphere-4.16.0a1753512455.dist-info/RECORD +87 -0
  84. pulumi_vsphere-4.16.0a1753339697.dist-info/RECORD +0 -87
  85. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753512455.dist-info}/WHEEL +0 -0
  86. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753512455.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,87 @@
1
+ pulumi_vsphere/__init__.py,sha256=rcjwaW8uH1sekGxFRBWc2iQGErBUoZGlNXpKfPFsfGY,11126
2
+ pulumi_vsphere/_inputs.py,sha256=uZ1oL7Ktgihs__rZN1NzeImR19yF14slggMrjiPOn7M,198058
3
+ pulumi_vsphere/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
+ pulumi_vsphere/compute_cluster.py,sha256=zxKgcfrpKyJzbaShaeZT7sRzbQCgZYqL9n_rbnnigKE,244279
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/content_library.py,sha256=DYFbYyjrNjvFg46_cZqVclVAEAxUo0Dast1X4AvQQ80,20527
12
+ pulumi_vsphere/content_library_item.py,sha256=1NlkZAQqNcJmya79IFTE4HLpar6WL_nriDTNw6GAqpI,22341
13
+ pulumi_vsphere/custom_attribute.py,sha256=lT2z-e1-OZB7awBI9ehpso3GZhK-AG4c2FWJ226p5a8,12478
14
+ pulumi_vsphere/datacenter.py,sha256=u4iH_KFZ6JGMvbs3MwhqsBi6PkMM2-p170L8sFJDuuk,19787
15
+ pulumi_vsphere/datastore_cluster.py,sha256=zNIdlvwD32agudADyL-hg3oiDnTanyN7fYdVb6rWVX8,92477
16
+ pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=tVZeS-mc8iJ5dnf6ddQP_EYXxjh6X1s6OMUAUJk07lc,24575
17
+ pulumi_vsphere/distributed_port_group.py,sha256=XDEDwnr4CEOCLXyiKnYao8ISs6JKm2oNcLeGtJMLqVM,150143
18
+ pulumi_vsphere/distributed_virtual_switch.py,sha256=txtbCDqZfqm8pgzNq8hUQ2sb_FPPQ0AExoYGcMh9vig,274254
19
+ pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py,sha256=Zov-m4CSBCErQRuSO45bHvIGucSzChOm1OVhhThWJWc,15445
20
+ pulumi_vsphere/dpm_host_override.py,sha256=rWvxew-E9_TYNin9Jrin17KT32mZZht7hKr8VjB479k,22168
21
+ pulumi_vsphere/drs_vm_override.py,sha256=oyOr--TMqo6QAbA1xuxQvBH9rZH7iWwtMdvSdEW1HMM,23646
22
+ pulumi_vsphere/entity_permissions.py,sha256=TaMu2tyoxjh7EB0lsJGBbr4cK8rBRgtF67gSmAHHVR8,13597
23
+ pulumi_vsphere/file.py,sha256=hwalcwPhvlrEJVF0zVeEDRxf9FZb6YU4Nm4ZOnXU3U8,23591
24
+ pulumi_vsphere/folder.py,sha256=olNrsWiL6y8Zn0XgYXg2yIicn70dSJtFmy256hKGlTI,30617
25
+ pulumi_vsphere/get_compute_cluster.py,sha256=LHZq9jDgg2FOkA2wBjeeODN1OC1zhQhtrtJI5qp0htk,6933
26
+ pulumi_vsphere/get_compute_cluster_host_group.py,sha256=ajVegB_V3uGKdRm1mom0JT-exZrj0AvmXhoLXPLMfHA,6864
27
+ pulumi_vsphere/get_content_library.py,sha256=ln4t9DMz-V87ZJGHxqMoBQlTfli6J2lRE0jnPZ2wXIo,3911
28
+ pulumi_vsphere/get_content_library_item.py,sha256=xg_mOQCUY0uvTdhfEX04DzNQoHt4il-oqiROCAXhTAk,5505
29
+ pulumi_vsphere/get_custom_attribute.py,sha256=VP1qLQdsrEqSFMIh3Qww9iaJ5mOevq2YAzYrtmhr3B0,5129
30
+ pulumi_vsphere/get_datacenter.py,sha256=DAnlOob2fATtBZ8_UPaZ548P2pdqQUt0gdhG-ikS2fs,5462
31
+ pulumi_vsphere/get_datastore.py,sha256=dcOmew92kDlH_FZ9oVJviR5pn01czTwoWbDV601kQyg,6949
32
+ pulumi_vsphere/get_datastore_cluster.py,sha256=vxo88r5_FoOOVzsdSLSqDxsNQ8AiT-OaVULFbnwts18,6624
33
+ pulumi_vsphere/get_datastore_stats.py,sha256=uhSMV2rAJhLTGtTVVGdnd2QVuH8FUIeDc4p4kHEQB_s,8393
34
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=c6fE7McVKAlvfqlCUhlmDMaOkOzr4lqvjRpedMSD6ic,7869
35
+ pulumi_vsphere/get_dynamic.py,sha256=g7EfXgikOaLeiyKSZboFrOnbp3MU7mOmAceDpST5Qms,6754
36
+ pulumi_vsphere/get_folder.py,sha256=TTwVd6b8HezMEZYVFAjOZbteyUfOhPNkaD5GPRP1RuI,11479
37
+ pulumi_vsphere/get_guest_os_customization.py,sha256=Z08Wp47zxGVtdXjJVli-jAhfQ_uWs5L_-s8Evw49xY0,6881
38
+ pulumi_vsphere/get_host.py,sha256=AyOXxYqg04TTmnNrFqrkfEuYUR61fPLz6MefqMGGFZI,6107
39
+ pulumi_vsphere/get_host_base_images.py,sha256=nOZHSfoqTmIZlCdHwHysuzqOSs6yZPy5Ydksr46BFqk,3550
40
+ pulumi_vsphere/get_host_pci_device.py,sha256=oqb1zSBOOXpb4tEWw4fwx7TpnpuAU2jGKDB7aLLbgMM,8845
41
+ pulumi_vsphere/get_host_thumbprint.py,sha256=HriFlovrl0aizEQfU6xFoHuOIYNJIEnb1TfWf-5sx-k,6344
42
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=PFgmWNk7hOBRVO_sE4iG3G32UEdLJJ8R3SyEteIT6OU,7291
43
+ pulumi_vsphere/get_license.py,sha256=dosfs1LYDrIoTPHPFtCdBf0p-HExy_KpjMmakXwno8E,6312
44
+ pulumi_vsphere/get_network.py,sha256=2CWrK0mzuQPKA0spilVzQ1znRmKlL6tEYAKCr7JbkvA,13024
45
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=oV5OhPxdBNh1aV5pOz1X8tZpH3vygvwfESNLlc0EPeA,30399
46
+ pulumi_vsphere/get_policy.py,sha256=WHG6VLFNjnHtvldrif7mnBPhX8IXkNzFGv_HWlpzV18,4077
47
+ pulumi_vsphere/get_resource_pool.py,sha256=h_IFTni-pHGo_Hq7KeaRkAxn7CHC9txe19sxa1CR3_A,10547
48
+ pulumi_vsphere/get_role.py,sha256=hxE939tS7JKzM5hVkYIs6EHDX4diwvODEbLFnKBucgY,6317
49
+ pulumi_vsphere/get_tag.py,sha256=xY-pnsJZzifPmwdSpZj38LF_PZyeqK5dWY7QEiJz7Gg,5702
50
+ pulumi_vsphere/get_tag_category.py,sha256=7bw5zEQWt6IThGe59aJF2aMawFjtTVkKriLQRpVnh8U,5953
51
+ pulumi_vsphere/get_vapp_container.py,sha256=GA_JVvHN4K6Jwo45xL6VvnfaZ0dJhP7JgwgximvvVgs,5315
52
+ pulumi_vsphere/get_virtual_machine.py,sha256=3ghhDtB_lZ8OWJITuaE3FPkQMp5YGu93xTM5-CmtiTc,72025
53
+ pulumi_vsphere/get_vmfs_disks.py,sha256=LDTxMatopBF_zyHZpEcVVvqPJjj7UT_cnKeYctpYAzo,7770
54
+ pulumi_vsphere/guest_os_customization.py,sha256=cQ41GzWMN5mW5kbmg8DUaF9q-UhQneoFqX4WE1gi-Gw,17924
55
+ pulumi_vsphere/ha_vm_override.py,sha256=itP6f91FRmlsWvyDqq5ZMx10-1VXK8bzmefMH-mw_UQ,61857
56
+ pulumi_vsphere/host.py,sha256=CRG_H2zdhWTfpqu--x5lcvYZwfX1mpa4mCsoaOk6FB4,55146
57
+ pulumi_vsphere/host_port_group.py,sha256=wZm83DNJJp6nxxikKDEWJu6EdtDuWCdT9lBPMsbWhNA,60587
58
+ pulumi_vsphere/host_virtual_switch.py,sha256=xaYich-T6YF8SgOGU0AS-lF5B_vwdUxJK9uVeVGCU_I,66904
59
+ pulumi_vsphere/license.py,sha256=512wbtrQ-zs5CePyn9R7bydqB3LC02kVOwWDCX7Q6ts,13894
60
+ pulumi_vsphere/nas_datastore.py,sha256=XtcRQ9ntYe_JIyspwi3uSF5spZmB9vLtzvpdsaLgwm8,55239
61
+ pulumi_vsphere/offline_software_depot.py,sha256=4xxOrCrubrGej9q8sdPTUcW8wMRc_sIE3dcqcm4Tjug,7850
62
+ pulumi_vsphere/outputs.py,sha256=SU_VgZBgnItVnueVGSXNBmzbkWj5jQMLAgLoX5XzlTI,169218
63
+ pulumi_vsphere/provider.py,sha256=uYzp9Vta1Aa8R0IDuNQ1aHYuKzy30-n2B6lUzPAKI3U,22488
64
+ pulumi_vsphere/pulumi-plugin.json,sha256=y32Fdipykijj2kftXD1LjAsOrwXiagYm5-esjuZ5OB0,84
65
+ pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ pulumi_vsphere/resource_pool.py,sha256=0iW1GbAiGb5E6hxUHn6Rz9bEklEo186LzLrJIKk613Q,59396
67
+ pulumi_vsphere/role.py,sha256=07ONK7EAsNAbeCmslTA6zG-U6RLjh0AMjaukAgBlaRU,9869
68
+ pulumi_vsphere/storage_drs_vm_override.py,sha256=d6VVJkaD_bb3W6lxL7DfJFLGzygA99osYT6VncqzNro,26851
69
+ pulumi_vsphere/supervisor.py,sha256=h7ThUo61OVboRRuaN42WdtuWD3d-yZ-u7KTBdPeOut0,54017
70
+ pulumi_vsphere/tag.py,sha256=83QcHUmG4bpO6MZuyLGFIdLjN4EOKtFrwYz-YK3oy5s,15824
71
+ pulumi_vsphere/tag_category.py,sha256=qOdAJxj57PgO0lBRb6CTK1EBa6oedrsbOl7I5qlIUXA,18643
72
+ pulumi_vsphere/vapp_container.py,sha256=zsyGwM1Tw7ef7V8ZKnLJf6kn5vIYVD2P-vRcZnIHdUo,57180
73
+ pulumi_vsphere/vapp_entity.py,sha256=WtLRuwtnpxryX7Hg2JnM4_rzr05jVoYNEdiSeqT00dw,36772
74
+ pulumi_vsphere/virtual_disk.py,sha256=uranqbkec6s-xIPcgMz6Nrtk5_mOn5GiCco-WmeZWB4,36077
75
+ pulumi_vsphere/virtual_machine.py,sha256=UW48zQHay1H1ayIt_1fImIIq_emRpgBOWUcJw6lOrGk,238007
76
+ pulumi_vsphere/virtual_machine_class.py,sha256=saUsQh_3bVRAvoY7Y-FUYi_tkqcvqolGS9l2ZyK__L0,18432
77
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=12brP8F244x-JqmBKr5h1EFn4DJt4btiRZu2dIW3bWg,26239
78
+ pulumi_vsphere/vm_storage_policy.py,sha256=hIVxYzYThUMp9xPWLLnUASHhIjrPBCclR34fLLXNlOA,20620
79
+ pulumi_vsphere/vmfs_datastore.py,sha256=-O8bMZWiVXsE3X-H8ElTDAa7RdeWoDb1cnrUf-SkzTE,47385
80
+ pulumi_vsphere/vnic.py,sha256=qWW6kJptAoOpt8Ucch7bxrS5J2qYCpxbEShYU3Ovpys,32356
81
+ pulumi_vsphere/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
82
+ pulumi_vsphere/config/__init__.pyi,sha256=xIQJB8zGk5myF9nf2LJUefPcxQjWODo2zQFJMlXkb6Y,1524
83
+ pulumi_vsphere/config/vars.py,sha256=6lv8iDJ0T9-298m4Kg2oIQIeA-E-PrRu8jAgaZ6b0LU,3513
84
+ pulumi_vsphere-4.16.0a1753512455.dist-info/METADATA,sha256=PF53fcdHtDcl1uj0UtI5oW5vNM_ZNzu1BQJwsAShq9s,5024
85
+ pulumi_vsphere-4.16.0a1753512455.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
86
+ pulumi_vsphere-4.16.0a1753512455.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
87
+ pulumi_vsphere-4.16.0a1753512455.dist-info/RECORD,,
@@ -1,87 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=w1tJ5pGzjHejBN2jn7a_OWts6otuzRu7Xpsxx82fhvw,11113
2
- pulumi_vsphere/_inputs.py,sha256=TiC01eQow04mtUaiKai3wMhJOxf18VFP6FJ4ZI29dXw,195083
3
- pulumi_vsphere/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
- pulumi_vsphere/compute_cluster.py,sha256=WA_7SksHKka-A8wDxyz6hTinA5FnyVQeenZLVoR8qdc,241271
5
- pulumi_vsphere/compute_cluster_host_group.py,sha256=82e7vEUGlH1ssB3o1kt6zTPs_QGRspEzq8WULzTJmrE,18805
6
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=RrReXUEiIHejRswuW0pu3eU8vmV91HjwHgz4Ktg3suk,26431
7
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=ZCbK6GuT5d1i1QCG7vpVy_CeH7PlPPCw7ddvoqdQGAY,19526
8
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=SuQm8VcPIuxq96zTE7fG1BvOSmL6O8G6PNGAP7-zBhA,30679
9
- pulumi_vsphere/compute_cluster_vm_group.py,sha256=PpDUGcOazhVyl-UMZZOkC5w5fAo9bebkWaEgoaPE4y8,23617
10
- pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=kqnvhp3auTUwbDH81IhUncns-khuzxbTW6cqXQzY2PI,33324
11
- pulumi_vsphere/content_library.py,sha256=FRPDCoUURd1IibFrUrxCMcWiA8sUrNrSvfJiQFP0LSI,20334
12
- pulumi_vsphere/content_library_item.py,sha256=Vyz3L5ov2sTWGQKQzkx_MiRn3NXiuU4gUPk68y89_0k,22076
13
- pulumi_vsphere/custom_attribute.py,sha256=eBT2uALOLAK9_h2_TiSeHOKXWZAqe9JtncW7hFnuH6g,12389
14
- pulumi_vsphere/datacenter.py,sha256=CBrMJUPWi2sCJcJREMP9FLwqYMEo_MOx_-ckMjttyeI,19583
15
- pulumi_vsphere/datastore_cluster.py,sha256=WHB1JbB1n4I5Yjax7NfX99zctqwYezD2S-hcGDjHKv4,91376
16
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=ATw3U3SQHyq8GNDGWtrGW4ZLx-JYnRiTNUl70r6WWLw,24354
17
- pulumi_vsphere/distributed_port_group.py,sha256=dW2acZsA7hMQ4Kw6HacDUPV3VFtOcPiFrlaqZRER0hw,148078
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=yyLEic-3N2LlhqKUGgjeXE7N4PH1m1wlp50HZg9leLY,270132
19
- pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py,sha256=y_rUq-NMAG4HTmqGMUHmfTcGcp-nOofdmyBSW5ctPqE,15268
20
- pulumi_vsphere/dpm_host_override.py,sha256=Yx5dNyT_UERzAWxkDhLZZgXokDWfqxKBnNhPpGbRVnw,21991
21
- pulumi_vsphere/drs_vm_override.py,sha256=O1kzG9FOpVHt2XMoybLSMTJ4dfgTclcnuE2wGanaWLY,23469
22
- pulumi_vsphere/entity_permissions.py,sha256=s7We2GENvzF0_9XQZ5VBe1Xwl9Z4YkGzl1XPYl5w8TI,13478
23
- pulumi_vsphere/file.py,sha256=bDj6FcOr9mBN9_Py-LFCF0-W4VvP4vAK_0INCTMxxog,23282
24
- pulumi_vsphere/folder.py,sha256=3nFpKRDoyhfPuM-q0mMaS41NYRIJBfQ9f983i6WuJ5s,30396
25
- pulumi_vsphere/get_compute_cluster.py,sha256=M7SCSI5hIHiWrfII782QjuMRtXn2sIeyepmFqbWzVUU,6880
26
- pulumi_vsphere/get_compute_cluster_host_group.py,sha256=gSjynRAP-ZtBcUWr8mVBcO2jKZnvfyTOzNKM1AhcV88,6811
27
- pulumi_vsphere/get_content_library.py,sha256=V1qf6Ll_7hseqzjguGETrbT-U2YNiiBrhW9rR2LW1Dg,3884
28
- pulumi_vsphere/get_content_library_item.py,sha256=g0nOu77-vLYufVgjUQqyHXjzeVvx_XvzJMkly6rUUm0,5448
29
- pulumi_vsphere/get_custom_attribute.py,sha256=8j2T6aAZzl0v8oUqdmIUsuNTCMax3WH0e36q7-Kco4A,5091
30
- pulumi_vsphere/get_datacenter.py,sha256=yNRXpTkCquK3kQbegDPTDRGOTpTeC7MZm1zRrBp8xg4,5424
31
- pulumi_vsphere/get_datastore.py,sha256=8UDfVeSgVeyiTCLwH06-H00BmykU_oNOx9JGx_Y1dws,6892
32
- pulumi_vsphere/get_datastore_cluster.py,sha256=E9q8Tl1jzP-KPO6Yjr283oSYIvtYNRtOoooCRgHGAx8,6571
33
- pulumi_vsphere/get_datastore_stats.py,sha256=TwDcKhQkKycSW-Yk5GJ2sCiqkiBJzUv7-Cq42lPdjz8,8336
34
- pulumi_vsphere/get_distributed_virtual_switch.py,sha256=JSkG_a83cEqB_IvjNrlImG2R0nZ7yXt4-g2uHvNbJI0,7816
35
- pulumi_vsphere/get_dynamic.py,sha256=8SYUumM_nq8kg7uV3QHRI1dh6l37i6qfI-2bG_NPsUY,6697
36
- pulumi_vsphere/get_folder.py,sha256=hW0kyZ7aJjS5ujiuH3ddIaGdobHTCdKgYgN569LOZtg,11452
37
- pulumi_vsphere/get_guest_os_customization.py,sha256=F2-qVfqSzZHc7QFjiOBni0MWupqtCyy1rM8vpRQ05J0,6800
38
- pulumi_vsphere/get_host.py,sha256=KjanVvdXqG1CuX3UIKiIt33ETC6979EjDbDBER1L6uE,6054
39
- pulumi_vsphere/get_host_base_images.py,sha256=FuDVUcHnqrLek3BRri7xSfFN3_UxxkYg9NCetQ5Bvnw,3527
40
- pulumi_vsphere/get_host_pci_device.py,sha256=YYeg_ogdWzPu4PcBuNZcWQMhB0kS8Yqt-yKCimkS_oI,8762
41
- pulumi_vsphere/get_host_thumbprint.py,sha256=79pxpHstukh6P-l1U4Bc8pV7i16zp10Qv9CNzqUBm0E,6287
42
- pulumi_vsphere/get_host_vgpu_profile.py,sha256=-BKpciweuxy9fhk7p-r8dILrGUaJQ9yp0TxqXtG_iOw,7239
43
- pulumi_vsphere/get_license.py,sha256=zhCkNSiBWWNFWAY1hhMk3V0jea3EXRuWauV7nohn7D8,6230
44
- pulumi_vsphere/get_network.py,sha256=LNlevRJKswKKEW4Dpasis6nH0tkEzKomcyq01GgbaTU,12901
45
- pulumi_vsphere/get_ovf_vm_template.py,sha256=ABTO_gYgsjYOpRFN2rrm5u-oALZLOdz1To6lQI5vIdQ,29990
46
- pulumi_vsphere/get_policy.py,sha256=MhPgQDEuzIkmSAvOW79NmFUf8nrhOZrVZMVj8wCyK4Q,4050
47
- pulumi_vsphere/get_resource_pool.py,sha256=V7CdXotOQcrTQApcSz8zg7-fjAAO4C4g3djrMbUGtV8,10490
48
- pulumi_vsphere/get_role.py,sha256=Z3PtzOl6Sr4Aw7jhzIbBL4GjoHAaZlIqyT5Z2h5DrhE,6247
49
- pulumi_vsphere/get_tag.py,sha256=SyfWFCAQIjcm79zxU-tQTDE3YDyuWY3491gbqVRTvs8,5649
50
- pulumi_vsphere/get_tag_category.py,sha256=tUlTz78NkNQldBZqNFagsd5vO91KscDdcc7l_nEjHYg,5893
51
- pulumi_vsphere/get_vapp_container.py,sha256=TkDV6hnZny91Gihux8CO2xF9siza8E4lBPXSKC6SGwQ,5273
52
- pulumi_vsphere/get_virtual_machine.py,sha256=PhEHdbmKQ82txWG45YnCQCVntd4I2YpwLR8OUbGKD6g,71141
53
- pulumi_vsphere/get_vmfs_disks.py,sha256=LvY0J_oTTlnt3ZCHze82KHJSCKGa4BrupPIgiUmA_nc,7702
54
- pulumi_vsphere/guest_os_customization.py,sha256=fnb-OlffKsGBexS2AA1XzMc4FPPoMWbUT0bOfRmHA1E,17707
55
- pulumi_vsphere/ha_vm_override.py,sha256=faS3H-S6V6YmtUCu43yNFfxzBu_Krer7U7AXSUrti5s,61196
56
- pulumi_vsphere/host.py,sha256=hNuS87s9xmbAb4kvIQ2XxCDoiRVRiaISNwzI6CNz9Pc,54499
57
- pulumi_vsphere/host_port_group.py,sha256=OCKOj_DmCD047J8eA1lxJdUR1TT9DbF-0qnU7FFJu1E,59764
58
- pulumi_vsphere/host_virtual_switch.py,sha256=x02Th5qglQU39HPOKHbCFLPHXeVD0JIwUp1fSbY40hM,65979
59
- pulumi_vsphere/license.py,sha256=I2dpzcfiFHWBg8xIobSimAcivtaiAvNv2RsvMAck_EU,13697
60
- pulumi_vsphere/nas_datastore.py,sha256=TtkzyOwklQMxqA6urYmqBSDXsBbDhLYRG0owmRqIyCY,54538
61
- pulumi_vsphere/offline_software_depot.py,sha256=lSGClvuqSUfiddzK0ihxN9LPqaKkzF2WT-xhvzqPmUQ,7785
62
- pulumi_vsphere/outputs.py,sha256=G-W9itCxE0Qe2wQ6GXEYA-y-AECJ_sh8CcYlguQnJGU,165997
63
- pulumi_vsphere/provider.py,sha256=2KZA8wnKak5G_ggEPsCRYOg9Nydld7gG4Iy8-lYUBmE,22170
64
- pulumi_vsphere/pulumi-plugin.json,sha256=juyNLu8jYekP883dOaeAkx4KUfCeR8EDdMUuXHp-j3k,84
65
- pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- pulumi_vsphere/resource_pool.py,sha256=3zCx0d4oZ7Y0ZqA1FlSJNSdInTZKzqisW625uVuQkrg,58735
67
- pulumi_vsphere/role.py,sha256=6E_bASXSF_lz8-IVkT-1zuDtnbIHhltq41pozWR9zYI,9753
68
- pulumi_vsphere/storage_drs_vm_override.py,sha256=Q5AzysHRsDIz1Ho3vNrvkioiZXjMVtYiARUCk1SGar0,26630
69
- pulumi_vsphere/supervisor.py,sha256=a9-eusnuzUNJhsuazfMd-Yad3JzTEOU6r4umIKN6o2U,53352
70
- pulumi_vsphere/tag.py,sha256=Hp9ny14S7ZGwpR9_9VRimc9sfI3zWTvEwRxH2_eFPJw,15691
71
- pulumi_vsphere/tag_category.py,sha256=I8ExHYzSRn-J6LTc4Wo85-ahRqTvmTvu1s2ACiPq61o,18466
72
- pulumi_vsphere/vapp_container.py,sha256=8H_YGXAO_L8dEi2imvJgJnBUnjWgRg9nh1a7SP3oxMg,56519
73
- pulumi_vsphere/vapp_entity.py,sha256=AiKMKZNck95pHOeBmj27Ni2WhiqH5msm2qMy5O0FpDg,36331
74
- pulumi_vsphere/virtual_disk.py,sha256=WVEfmuB0Ye31mMXHrImBV5CJMG_M4v82oVdRIV4IX0g,35768
75
- pulumi_vsphere/virtual_machine.py,sha256=d3pyPiYZwt7IQLv2xNbMf-imdHiY-XigGtbqqo0JvhM,234437
76
- pulumi_vsphere/virtual_machine_class.py,sha256=N1ixxO8VCXTJ8FyQY2Wq_cxO0YvULNTS48DWHdoEcQw,18167
77
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=hOI8GYmniBFVa9OUsqO8wu5OySPWqH3Y-G4EfaDCSkQ,25930
78
- pulumi_vsphere/vm_storage_policy.py,sha256=_fn83Chp3nJwJYC0j3WQ2Hm1qdRnLR9szndxJl5Cky8,20501
79
- pulumi_vsphere/vmfs_datastore.py,sha256=Fxk73J3lSg2ooIiHbY2Z_DrS6YQAWcciEzONnTMCYOc,46887
80
- pulumi_vsphere/vnic.py,sha256=LbtMzDi0Xtonyc9wjxzWtyDUnJlBzBRGxweEKOEYU2k,31943
81
- pulumi_vsphere/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
82
- pulumi_vsphere/config/__init__.pyi,sha256=gfqTwyIF6B56penDtAtbtz4xXBVBw62r8Gj7NL_YIIs,1523
83
- pulumi_vsphere/config/vars.py,sha256=c0e3Sbs6PG52_-6j6GLlJ4xbhwvuzHmccJTQnhKJIyY,3382
84
- pulumi_vsphere-4.16.0a1753339697.dist-info/METADATA,sha256=drEgmWSoNfZZmlRV7y4f3ThUN9tMWXhPd6QneKpkNDM,5024
85
- pulumi_vsphere-4.16.0a1753339697.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
86
- pulumi_vsphere-4.16.0a1753339697.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
87
- pulumi_vsphere-4.16.0a1753339697.dist-info/RECORD,,