pulumi-vsphere 4.10.0a1709368772__py3-none-any.whl → 4.10.0a1710160860__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 (45) hide show
  1. pulumi_vsphere/_inputs.py +4 -0
  2. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +8 -0
  3. pulumi_vsphere/datacenter.py +12 -0
  4. pulumi_vsphere/datastore_cluster.py +7 -7
  5. pulumi_vsphere/distributed_virtual_switch.py +28 -7
  6. pulumi_vsphere/file.py +12 -0
  7. pulumi_vsphere/get_compute_cluster.py +4 -0
  8. pulumi_vsphere/get_compute_cluster_host_group.py +4 -0
  9. pulumi_vsphere/get_content_library.py +4 -0
  10. pulumi_vsphere/get_custom_attribute.py +4 -0
  11. pulumi_vsphere/get_datacenter.py +4 -0
  12. pulumi_vsphere/get_datastore.py +4 -0
  13. pulumi_vsphere/get_datastore_cluster.py +4 -0
  14. pulumi_vsphere/get_distributed_virtual_switch.py +4 -0
  15. pulumi_vsphere/get_dynamic.py +4 -0
  16. pulumi_vsphere/get_folder.py +4 -0
  17. pulumi_vsphere/get_guest_os_customization.py +4 -0
  18. pulumi_vsphere/get_host.py +4 -0
  19. pulumi_vsphere/get_host_pci_device.py +34 -0
  20. pulumi_vsphere/get_host_thumbprint.py +4 -0
  21. pulumi_vsphere/get_license.py +4 -0
  22. pulumi_vsphere/get_network.py +4 -0
  23. pulumi_vsphere/get_ovf_vm_template.py +0 -168
  24. pulumi_vsphere/get_policy.py +4 -0
  25. pulumi_vsphere/get_resource_pool.py +10 -0
  26. pulumi_vsphere/get_role.py +4 -0
  27. pulumi_vsphere/get_tag.py +4 -0
  28. pulumi_vsphere/get_tag_category.py +4 -0
  29. pulumi_vsphere/get_vapp_container.py +4 -0
  30. pulumi_vsphere/get_virtual_machine.py +8 -0
  31. pulumi_vsphere/get_vmfs_disks.py +4 -0
  32. pulumi_vsphere/host.py +18 -0
  33. pulumi_vsphere/host_port_group.py +14 -0
  34. pulumi_vsphere/license.py +4 -0
  35. pulumi_vsphere/outputs.py +4 -0
  36. pulumi_vsphere/resource_pool.py +12 -12
  37. pulumi_vsphere/virtual_machine.py +7 -7
  38. pulumi_vsphere/virtual_machine_snapshot.py +4 -0
  39. pulumi_vsphere/vm_storage_policy.py +12 -0
  40. pulumi_vsphere/vnic.py +18 -0
  41. {pulumi_vsphere-4.10.0a1709368772.dist-info → pulumi_vsphere-4.10.0a1710160860.dist-info}/METADATA +1 -1
  42. pulumi_vsphere-4.10.0a1710160860.dist-info/RECORD +80 -0
  43. pulumi_vsphere-4.10.0a1709368772.dist-info/RECORD +0 -80
  44. {pulumi_vsphere-4.10.0a1709368772.dist-info → pulumi_vsphere-4.10.0a1710160860.dist-info}/WHEEL +0 -0
  45. {pulumi_vsphere-4.10.0a1709368772.dist-info → pulumi_vsphere-4.10.0a1710160860.dist-info}/top_level.txt +0 -0
pulumi_vsphere/vnic.py CHANGED
@@ -370,8 +370,10 @@ class Vnic(pulumi.CustomResource):
370
370
  ## Example Usage
371
371
 
372
372
  ### S
373
+
373
374
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
374
375
 
376
+ <!--Start PulumiCodeChooser -->
375
377
  ```python
376
378
  import pulumi
377
379
  import pulumi_vsphere as vsphere
@@ -397,8 +399,11 @@ class Vnic(pulumi.CustomResource):
397
399
  ),
398
400
  netstack="vmotion")
399
401
  ```
402
+ <!--End PulumiCodeChooser -->
403
+
400
404
  ### Create a vnic attached to a portgroup using the default TCP/IP stack
401
405
 
406
+ <!--Start PulumiCodeChooser -->
402
407
  ```python
403
408
  import pulumi
404
409
  import pulumi_vsphere as vsphere
@@ -428,6 +433,8 @@ class Vnic(pulumi.CustomResource):
428
433
  "management",
429
434
  ])
430
435
  ```
436
+ <!--End PulumiCodeChooser -->
437
+
431
438
  ## Importing
432
439
 
433
440
  An existing vNic can be [imported][docs-import] into this resource
@@ -435,9 +442,11 @@ class Vnic(pulumi.CustomResource):
435
442
 
436
443
  [docs-import]: /docs/import/index.html
437
444
 
445
+ <!--Start PulumiCodeChooser -->
438
446
  ```python
439
447
  import pulumi
440
448
  ```
449
+ <!--End PulumiCodeChooser -->
441
450
 
442
451
  The above would import the vnic `vmk2` from host with ID `host-123`.
443
452
 
@@ -466,8 +475,10 @@ class Vnic(pulumi.CustomResource):
466
475
  ## Example Usage
467
476
 
468
477
  ### S
478
+
469
479
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
470
480
 
481
+ <!--Start PulumiCodeChooser -->
471
482
  ```python
472
483
  import pulumi
473
484
  import pulumi_vsphere as vsphere
@@ -493,8 +504,11 @@ class Vnic(pulumi.CustomResource):
493
504
  ),
494
505
  netstack="vmotion")
495
506
  ```
507
+ <!--End PulumiCodeChooser -->
508
+
496
509
  ### Create a vnic attached to a portgroup using the default TCP/IP stack
497
510
 
511
+ <!--Start PulumiCodeChooser -->
498
512
  ```python
499
513
  import pulumi
500
514
  import pulumi_vsphere as vsphere
@@ -524,6 +538,8 @@ class Vnic(pulumi.CustomResource):
524
538
  "management",
525
539
  ])
526
540
  ```
541
+ <!--End PulumiCodeChooser -->
542
+
527
543
  ## Importing
528
544
 
529
545
  An existing vNic can be [imported][docs-import] into this resource
@@ -531,9 +547,11 @@ class Vnic(pulumi.CustomResource):
531
547
 
532
548
  [docs-import]: /docs/import/index.html
533
549
 
550
+ <!--Start PulumiCodeChooser -->
534
551
  ```python
535
552
  import pulumi
536
553
  ```
554
+ <!--End PulumiCodeChooser -->
537
555
 
538
556
  The above would import the vnic `vmk2` from host with ID `host-123`.
539
557
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_vsphere
3
- Version: 4.10.0a1709368772
3
+ Version: 4.10.0a1710160860
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,80 @@
1
+ pulumi_vsphere/__init__.py,sha256=xBaRYczCs89aNw7E1pgL2cbTi-SvZWMeC-hFOdRgbBU,10042
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=EI7q1DupczJFnvCvYPiY_VgDcJdpxMAZQRKgKhayCJQ,4878
31
+ pulumi_vsphere/get_datastore_cluster.py,sha256=U108Z7EMqK4Q-7QYzIAuYSLaZQywdA7HVMT417ppC2E,5297
32
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=3Y9Z7qhXnUz60I1WGF3g6UUQu_iwqdmZYumZxM6iFVE,7014
33
+ pulumi_vsphere/get_dynamic.py,sha256=4evdnVACuoARVhytaBkXCPOQTJfAhzU63H1dy2MYYL4,6242
34
+ pulumi_vsphere/get_folder.py,sha256=cZn7YUGiNn6sziSiH1_6v-p9LVLxiiiEwXgUnjR93Qk,3765
35
+ pulumi_vsphere/get_guest_os_customization.py,sha256=a-hctk_ltCSfcjAgx_IxqQtOCd-df9a5vZeKXY8mNoU,6510
36
+ pulumi_vsphere/get_host.py,sha256=PBTK0McfwvgkKjuBeZbQWESeBrhbeIL1mafQO5Au0kY,5340
37
+ pulumi_vsphere/get_host_pci_device.py,sha256=47KyrlqKw_mnLK3eaVMbmI8bEGqUye0BVh6YGPO_cWI,7898
38
+ pulumi_vsphere/get_host_thumbprint.py,sha256=9UmtSmyhiewNXW-7cifViECzkU6RXUN0aNcbhOKsf5k,5103
39
+ pulumi_vsphere/get_license.py,sha256=2egn7bCzJt6Eul_HWgPTrHpzzfruab3JlPBrNWCWfkc,5398
40
+ pulumi_vsphere/get_network.py,sha256=Cm2IZobXCW_RbyfGJybAqULksx4LUNFg-7oNKEWL0qs,7273
41
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
42
+ pulumi_vsphere/get_policy.py,sha256=RmwMeG08vPnbebfPw4Qyvi60zofxLdx5sHFbH73hFBY,3565
43
+ pulumi_vsphere/get_resource_pool.py,sha256=SybwTomV_rYafuE4Xegm67g1exIHi66_PA-ZzNwz_cE,7597
44
+ pulumi_vsphere/get_role.py,sha256=ZH7ycfvudtiCgmFZV3fJobeitdyFYCrZ0gmli46rFCs,5351
45
+ pulumi_vsphere/get_tag.py,sha256=Cf7jDIln9TEHBrjH9AWWUEFreEA9Z2Anm7umdbBWVlA,4956
46
+ pulumi_vsphere/get_tag_category.py,sha256=vB023_5_viINfklL9-KKhvADQKoY8ZDjTTQVgF2w3-Q,5174
47
+ pulumi_vsphere/get_vapp_container.py,sha256=Ae77fQHwunAm8Ab97wEYqjL-ZmdTuyj8yoE57RU6xzs,4613
48
+ pulumi_vsphere/get_virtual_machine.py,sha256=cibRIciJwVJTlxuRrqB10j7Q6ZbpVTROPi97P2QFxAE,56673
49
+ pulumi_vsphere/get_vmfs_disks.py,sha256=ItMOx8cK9l12N4Yc4hQb2Ocuk_hCwb4Ql39QX9Tt1HQ,6857
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=jX-4FYaKACBU2OwgK3khdQwDs81bMR5GG-aMlIRaGTg,46389
53
+ pulumi_vsphere/host_port_group.py,sha256=_0k6zNLexAWeaOocfTLZRCWwbsZ5vRbrsceoL1AsWrc,57254
54
+ pulumi_vsphere/host_virtual_switch.py,sha256=gj2BcglObvCxe4tkIze0OxW2xnGDDOhWKUc2Qbz99eQ,61643
55
+ pulumi_vsphere/license.py,sha256=FUrMgYlPCR74DuWahcgZttso7Q2m9kpoKiTb-6IOWy4,12908
56
+ pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
57
+ pulumi_vsphere/outputs.py,sha256=22Qgk4Z0OQjPUXylM9TmQxWa6zt6KiavpmR5Fkz5SXk,148336
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=h8uuERR45TUAH2-IvtbR1uZfcJq55FyW_ZqET7OVifE,54219
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=_RKL5cx4xHrN5z94kH8A1vNk-T04HIZjxgTmONaCjD8,269052
70
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=G8-3jJEsViVYhF4v4LSfWSw1ajq3AdaSloMO1rseyww,24082
71
+ pulumi_vsphere/vm_storage_policy.py,sha256=MzAcDxZfj6p25LFT6sS-zho9i_uDXlU6uytttWQyJkg,21426
72
+ pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
73
+ pulumi_vsphere/vnic.py,sha256=upByAXkmwaA7U9VYF2huy2yntN2creeBaFvIoRfee_o,30855
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.0a1710160860.dist-info/METADATA,sha256=6cLMfDHI4ATira1NEBcyIjygCXKRxfk9FRZyfSDaakA,4958
78
+ pulumi_vsphere-4.10.0a1710160860.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
79
+ pulumi_vsphere-4.10.0a1710160860.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
80
+ pulumi_vsphere-4.10.0a1710160860.dist-info/RECORD,,
@@ -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.0a1709368772.dist-info/METADATA,sha256=hcWjSaRoSIAOuLYZP0enVawkrvhsrOUi7lHMX9kuc_4,4958
78
- pulumi_vsphere-4.10.0a1709368772.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
79
- pulumi_vsphere-4.10.0a1709368772.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
80
- pulumi_vsphere-4.10.0a1709368772.dist-info/RECORD,,