pulumi-vsphere 4.12.0a1728368031__py3-none-any.whl → 4.12.0a1729059233__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 (84) hide show
  1. pulumi_vsphere/_inputs.py +1061 -0
  2. pulumi_vsphere/_utilities.py +1 -1
  3. pulumi_vsphere/compute_cluster.py +5 -0
  4. pulumi_vsphere/compute_cluster_host_group.py +5 -0
  5. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +5 -0
  6. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +5 -0
  7. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +5 -0
  8. pulumi_vsphere/compute_cluster_vm_group.py +5 -0
  9. pulumi_vsphere/compute_cluster_vm_host_rule.py +5 -0
  10. pulumi_vsphere/config/__init__.pyi +5 -0
  11. pulumi_vsphere/config/vars.py +5 -0
  12. pulumi_vsphere/content_library.py +5 -0
  13. pulumi_vsphere/content_library_item.py +5 -0
  14. pulumi_vsphere/custom_attribute.py +5 -0
  15. pulumi_vsphere/datacenter.py +5 -0
  16. pulumi_vsphere/datastore_cluster.py +5 -0
  17. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +5 -0
  18. pulumi_vsphere/distributed_port_group.py +5 -0
  19. pulumi_vsphere/distributed_virtual_switch.py +5 -0
  20. pulumi_vsphere/dpm_host_override.py +5 -0
  21. pulumi_vsphere/drs_vm_override.py +5 -0
  22. pulumi_vsphere/entity_permissions.py +5 -0
  23. pulumi_vsphere/file.py +5 -0
  24. pulumi_vsphere/folder.py +5 -0
  25. pulumi_vsphere/get_compute_cluster.py +15 -4
  26. pulumi_vsphere/get_compute_cluster_host_group.py +15 -4
  27. pulumi_vsphere/get_content_library.py +12 -4
  28. pulumi_vsphere/get_content_library_item.py +16 -4
  29. pulumi_vsphere/get_custom_attribute.py +13 -4
  30. pulumi_vsphere/get_datacenter.py +12 -4
  31. pulumi_vsphere/get_datastore.py +16 -4
  32. pulumi_vsphere/get_datastore_cluster.py +14 -4
  33. pulumi_vsphere/get_datastore_stats.py +16 -4
  34. pulumi_vsphere/get_distributed_virtual_switch.py +15 -4
  35. pulumi_vsphere/get_dynamic.py +16 -4
  36. pulumi_vsphere/get_folder.py +12 -4
  37. pulumi_vsphere/get_guest_os_customization.py +17 -4
  38. pulumi_vsphere/get_host.py +15 -4
  39. pulumi_vsphere/get_host_base_images.py +11 -4
  40. pulumi_vsphere/get_host_pci_device.py +19 -4
  41. pulumi_vsphere/get_host_thumbprint.py +34 -14
  42. pulumi_vsphere/get_host_vgpu_profile.py +15 -4
  43. pulumi_vsphere/get_license.py +17 -4
  44. pulumi_vsphere/get_network.py +17 -4
  45. pulumi_vsphere/get_ovf_vm_template.py +55 -4
  46. pulumi_vsphere/get_policy.py +12 -4
  47. pulumi_vsphere/get_resource_pool.py +14 -4
  48. pulumi_vsphere/get_role.py +18 -4
  49. pulumi_vsphere/get_tag.py +15 -4
  50. pulumi_vsphere/get_tag_category.py +15 -4
  51. pulumi_vsphere/get_vapp_container.py +14 -4
  52. pulumi_vsphere/get_virtual_machine.py +130 -4
  53. pulumi_vsphere/get_vmfs_disks.py +17 -4
  54. pulumi_vsphere/guest_os_customization.py +5 -0
  55. pulumi_vsphere/ha_vm_override.py +5 -0
  56. pulumi_vsphere/host.py +19 -14
  57. pulumi_vsphere/host_port_group.py +5 -0
  58. pulumi_vsphere/host_virtual_switch.py +5 -0
  59. pulumi_vsphere/license.py +5 -0
  60. pulumi_vsphere/nas_datastore.py +5 -0
  61. pulumi_vsphere/offline_software_depot.py +5 -0
  62. pulumi_vsphere/outputs.py +5 -0
  63. pulumi_vsphere/provider.py +5 -0
  64. pulumi_vsphere/pulumi-plugin.json +1 -1
  65. pulumi_vsphere/resource_pool.py +168 -425
  66. pulumi_vsphere/role.py +5 -0
  67. pulumi_vsphere/storage_drs_vm_override.py +5 -0
  68. pulumi_vsphere/supervisor.py +5 -0
  69. pulumi_vsphere/tag.py +5 -0
  70. pulumi_vsphere/tag_category.py +5 -0
  71. pulumi_vsphere/vapp_container.py +5 -0
  72. pulumi_vsphere/vapp_entity.py +5 -0
  73. pulumi_vsphere/virtual_disk.py +5 -0
  74. pulumi_vsphere/virtual_machine.py +7 -2
  75. pulumi_vsphere/virtual_machine_class.py +5 -0
  76. pulumi_vsphere/virtual_machine_snapshot.py +5 -0
  77. pulumi_vsphere/vm_storage_policy.py +5 -0
  78. pulumi_vsphere/vmfs_datastore.py +5 -0
  79. pulumi_vsphere/vnic.py +5 -0
  80. {pulumi_vsphere-4.12.0a1728368031.dist-info → pulumi_vsphere-4.12.0a1729059233.dist-info}/METADATA +3 -2
  81. pulumi_vsphere-4.12.0a1729059233.dist-info/RECORD +86 -0
  82. pulumi_vsphere-4.12.0a1728368031.dist-info/RECORD +0 -86
  83. {pulumi_vsphere-4.12.0a1728368031.dist-info → pulumi_vsphere-4.12.0a1729059233.dist-info}/WHEEL +0 -0
  84. {pulumi_vsphere-4.12.0a1728368031.dist-info → pulumi_vsphere-4.12.0a1729059233.dist-info}/top_level.txt +0 -0
pulumi_vsphere/role.py CHANGED
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['RoleArgs', 'Role']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['StorageDrsVmOverrideArgs', 'StorageDrsVmOverride']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
12
17
  from ._inputs import *
pulumi_vsphere/tag.py CHANGED
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['TagArgs', 'Tag']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['TagCategoryArgs', 'TagCategory']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['VappContainerArgs', 'VappContainer']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['VappEntityArgs', 'VappEntity']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['VirtualDiskArgs', 'VirtualDisk']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
12
17
  from ._inputs import *
@@ -2726,7 +2731,7 @@ class VirtualMachine(pulumi.CustomResource):
2726
2731
 
2727
2732
  The following requirements apply to import:
2728
2733
 
2729
- * The disks must have a [`label`](#label) argument assigned in a convention matching `diskN`, starting with disk number 0, based on each virtual disk order on the SCSI bus. As an example, a disk on SCSI controller `0` with a unit number of `0` would be labeled as `disk0`, a disk on the same controller with a unit number of `1` would be `disk1`, but the next disk, which is on SCSI controller `1` with a unit number of `0`, still becomes `disk2`.
2734
+ * The disks must have a [`label`](#label) argument assigned in a convention matching `Hard Disk`, starting with disk number 0, based on each virtual disk order on the SCSI bus. As an example, a disk on SCSI controller `0` with a unit number of `0` would be labeled as `Hard Disk 0`, a disk on the same controller with a unit number of `1` would be `Hard Disk 1`, but the next disk, which is on SCSI controller `1` with a unit number of `0`, still becomes `Hard Disk 2`.
2730
2735
 
2731
2736
  * Disks are always imported with [`keep_on_remove`](#keep_on_remove) enabled until the first `pulumi up` run which will remove the setting for known disks. This process safeguards against naming or accounting mistakes in the disk configuration.
2732
2737
 
@@ -2847,7 +2852,7 @@ class VirtualMachine(pulumi.CustomResource):
2847
2852
 
2848
2853
  The following requirements apply to import:
2849
2854
 
2850
- * The disks must have a [`label`](#label) argument assigned in a convention matching `diskN`, starting with disk number 0, based on each virtual disk order on the SCSI bus. As an example, a disk on SCSI controller `0` with a unit number of `0` would be labeled as `disk0`, a disk on the same controller with a unit number of `1` would be `disk1`, but the next disk, which is on SCSI controller `1` with a unit number of `0`, still becomes `disk2`.
2855
+ * The disks must have a [`label`](#label) argument assigned in a convention matching `Hard Disk`, starting with disk number 0, based on each virtual disk order on the SCSI bus. As an example, a disk on SCSI controller `0` with a unit number of `0` would be labeled as `Hard Disk 0`, a disk on the same controller with a unit number of `1` would be `Hard Disk 1`, but the next disk, which is on SCSI controller `1` with a unit number of `0`, still becomes `Hard Disk 2`.
2851
2856
 
2852
2857
  * Disks are always imported with [`keep_on_remove`](#keep_on_remove) enabled until the first `pulumi up` run which will remove the setting for known disks. This process safeguards against naming or accounting mistakes in the disk configuration.
2853
2858
 
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['VirtualMachineClassArgs', 'VirtualMachineClass']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['VirtualMachineSnapshotArgs', 'VirtualMachineSnapshot']
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
12
17
  from ._inputs import *
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['VmfsDatastoreArgs', 'VmfsDatastore']
pulumi_vsphere/vnic.py CHANGED
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
12
17
  from ._inputs import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_vsphere
3
- Version: 4.12.0a1728368031
3
+ Version: 4.12.0a1729059233
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -9,8 +9,9 @@ Keywords: pulumi,vsphere
9
9
  Requires-Python: >=3.8
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver >=0.2.1
12
- Requires-Dist: pulumi <4.0.0,>=3.0.0
12
+ Requires-Dist: pulumi <4.0.0,>=3.136.0
13
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=Rx3S0DaG1pQdkHfDIrWyeB01V1ZNc_lt5nca9lUb5aU,183775
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=oaLinQa06PI7BNQ4MbE-s5jT5RLtayTqxPK17NW7vl0,6733
25
+ pulumi_vsphere/get_compute_cluster_host_group.py,sha256=Y-GnalPP-Ugz5Mb0lG0htyrXcgvmO53f-WAWhq52KHI,6936
26
+ pulumi_vsphere/get_content_library.py,sha256=Qt8BAfivtOZDJu8A8rdCDeEm1h0M6npKPfGf7P2M6Xc,3791
27
+ pulumi_vsphere/get_content_library_item.py,sha256=42ljrLFH_AqFps06_-EVcFdn6wlYjqX1b7bFlcu52BI,5265
28
+ pulumi_vsphere/get_custom_attribute.py,sha256=HJFOEOnTR8kcuFRLDRXiOo-297iOS2UD8MEiwyjHRTg,4989
29
+ pulumi_vsphere/get_datacenter.py,sha256=jpnozO6bGIhzbZc3IXfP7GUmchshROcM_dhIRhRzWLs,4627
30
+ pulumi_vsphere/get_datastore.py,sha256=UYdOgFwdIThPzVzbODS5N2_mSPSdIjL11Sd65pLvJbE,6709
31
+ pulumi_vsphere/get_datastore_cluster.py,sha256=EjiUVTOzp6LWWTL3j7AvjLIxpxHLO4XQ7JZ1-eyYEjY,5828
32
+ pulumi_vsphere/get_datastore_stats.py,sha256=vT8wVLxu-upvLyIIZNBJnKzec4nzjMLLGS6_74ttcfs,8425
33
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=MRIEkO7_b7MSKaKQAfjjqNvFREWqkrRAHyVXUf_w9kY,7669
34
+ pulumi_vsphere/get_dynamic.py,sha256=qs9VnA66oqFDjZCDN8-1iTaA0N57IUv90vo9bcqOgSc,6750
35
+ pulumi_vsphere/get_folder.py,sha256=vq3eHsZKQY-ZYtLD7Pch4JpCO2Xj6AMAdqkJHwKNAg4,4531
36
+ pulumi_vsphere/get_guest_os_customization.py,sha256=PudWu3m-RrDJPvSdswSpMQjvN2MmW797qNn5M7jHIIc,6155
37
+ pulumi_vsphere/get_host.py,sha256=AKHrKw0YrWe-WAPkY4Te0nmpFMe8uluoR-GxD_1FtGI,5907
38
+ pulumi_vsphere/get_host_base_images.py,sha256=j9YmKDy3GyYCnxMxxwnp2wQOkErDQ1janLy3p8zS3eE,3470
39
+ pulumi_vsphere/get_host_pci_device.py,sha256=rt3bIXfYS4_mqq1-HkmUcY1-GurotqGq8RxKZ6caPlE,8525
40
+ pulumi_vsphere/get_host_thumbprint.py,sha256=tTQCMskcJ8OcvP22TueoAIet2J3QTJ2_ExDoMcxYUcA,6104
41
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=mXYEc4lmyricDsRJAPCFhN-p7xw4C9s6tjfuakPPsI8,7101
42
+ pulumi_vsphere/get_license.py,sha256=13TxVgQLj0htKVI-4NhBbUS3Hzm6t7NaHdFCGEqh8rU,6083
43
+ pulumi_vsphere/get_network.py,sha256=TDeyWPV_NM4P_gdVqzzhjX7so-FGOcTnRifqCaTPqEQ,8005
44
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=AKSzlYHqC0VGVyaTNbM2tx1LqBnH7YdCwky53-_Hgv4,29139
45
+ pulumi_vsphere/get_policy.py,sha256=6WOqQiVKDghL6bchOPPRoRwiwo6E9q-OimCn5jzf7rI,3957
46
+ pulumi_vsphere/get_resource_pool.py,sha256=KhszMivarwVeorFAbs65FzR_FRKyT70IrZHrUkeI6lU,7926
47
+ pulumi_vsphere/get_role.py,sha256=pUG53pKCHdkDO5-q9o9w5mBikoUJCDIRq-c9rEUyZDM,6037
48
+ pulumi_vsphere/get_tag.py,sha256=l-QcqIxkIHmBimRMSuu-iTPlKeVKibrdwdecNPYfIhI,5502
49
+ pulumi_vsphere/get_tag_category.py,sha256=KTqgtnayt588RAjvH4FrArSJ9u3CWjS4Xa2wQd9d8HU,5773
50
+ pulumi_vsphere/get_vapp_container.py,sha256=y61jvZ1LvVTqOLb-aBFLwjSSshN_4URTBTXbm389RsU,5135
51
+ pulumi_vsphere/get_virtual_machine.py,sha256=Zk_9ItbIoMC9LFb_cNu8H1a_rLm20JDNMlmu5Kblngw,67395
52
+ pulumi_vsphere/get_vmfs_disks.py,sha256=NHHao8HWF2mnzZKZ0WoTbUOsrdMeS4ivp-hWtAritxU,7510
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=LVPJlAlUREWF6x-KjLtWlDg_6mdw3fa94nksYXiYw_g,156768
62
+ pulumi_vsphere/provider.py,sha256=ebBbKo9SR-1kQc5iyRLFK9rtQhWlI_u-nAZrEFC83zA,20437
63
+ pulumi_vsphere/pulumi-plugin.json,sha256=oLOYhVBr6hivrvNoGR_LH0uduKq-r5cx1qvtgeuRE_g,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=1-u9YQ8NgzMtGr4SDOVRNiOCo-QuQIDt3v1dMrQ-_hM,220835
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.12.0a1729059233.dist-info/METADATA,sha256=dgsqCS-dW4VgqYrKEfVZIw8blVF3103Imz9BXmq5fpM,5026
84
+ pulumi_vsphere-4.12.0a1729059233.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
85
+ pulumi_vsphere-4.12.0a1729059233.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
+ pulumi_vsphere-4.12.0a1729059233.dist-info/RECORD,,
@@ -1,86 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
2
- pulumi_vsphere/_inputs.py,sha256=47uwlKCjl3fK0iCTYTup7EGLjtaR_TToxdHcMb4o2ew,143694
3
- pulumi_vsphere/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
4
- pulumi_vsphere/compute_cluster.py,sha256=u65Hyy_WJKnj2_BXHLp9j8Lw0CMvcpa3zEgqYSHdf38,232716
5
- pulumi_vsphere/compute_cluster_host_group.py,sha256=b3gyqeZWetgBhWehUzZgj02yoUUit2oa9hX6au42dn0,15431
6
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=liYQVbUtw_3BzAQ0n19HCQPUdrRGYzjlYueJcOHmJ1A,25535
7
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=xeqUCWzZ2wMONXoj9ECnwYO-dou7hM5G9ITELF8Y__0,18468
8
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=2AobfglNRwch72fiFrfQxDT0FG2uEU8VppzsRfy0Qmc,29499
9
- pulumi_vsphere/compute_cluster_vm_group.py,sha256=0uMAzkOXwpvmdY-6bleb4DecWLz2biAOpS7hwH8zHR4,22833
10
- pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=64lyVLL3zJyq3QKV7Z84-N9X8KQLuCXvEsJt_CMcXPA,26804
11
- pulumi_vsphere/content_library.py,sha256=oZlBiZc6B7VPuGD1nOIVYgqDUhaU6Sknvk2XFU0vKm8,19564
12
- pulumi_vsphere/content_library_item.py,sha256=MN5KpWc7g_FxGTQF-SLtvngj6DTMhTyWNpbjPPO3v74,20920
13
- pulumi_vsphere/custom_attribute.py,sha256=QvJldsEIRk0--ue9BPVE67suq1iUjMcUKvixxG5mSww,11585
14
- pulumi_vsphere/datacenter.py,sha256=fL-LEgD6NhxVjWlU1NdTtt3xkwDiLFvC21dvIq7Lbqs,18786
15
- pulumi_vsphere/datastore_cluster.py,sha256=TVB7P9o33ksdk1jC92OUpYyJOW0XIpZoA6qKSO3rIb8,84546
16
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=oYhEoMpYeHyI3fvYpttkXOJH1ofDTdIZP3RkDflQKSo,23292
17
- pulumi_vsphere/distributed_port_group.py,sha256=T7Ahzp2atMZWfmQ1lH0YT3VD36GZpwZx-VUllmYiobw,144573
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=RwVnJSISxrLRke49hGXD5saOau_Tfnp2a7-NxOCy784,258216
19
- pulumi_vsphere/dpm_host_override.py,sha256=FB0TeuYUWG_Z58hisrijcO3lQxyUmna39YihR_wM1uY,17529
20
- pulumi_vsphere/drs_vm_override.py,sha256=dA-3ToS9vhdL3RoAEQo88KOOdbupUcfxqJgeN4sTVm0,18839
21
- pulumi_vsphere/entity_permissions.py,sha256=ChtuPTQkJcPRzew0-8s5oKGWJwiEjGRWpL3JlBGUChQ,12982
22
- pulumi_vsphere/file.py,sha256=uJeBCHJ2IXJO6Dj5vYeZvkYaHNNoWhkQ6PzmWVwkRIE,23397
23
- pulumi_vsphere/folder.py,sha256=NBn-LIkYxlODwq70AhL1sOWra88Wpmqz2KQCcyhOK08,29302
24
- pulumi_vsphere/get_compute_cluster.py,sha256=nBgxOLhF9RV5vGGwgCxeNCyVNKr_tQi44VnaBhBbX1M,5997
25
- pulumi_vsphere/get_compute_cluster_host_group.py,sha256=lVEx1zAjsVsN64Q-d81kKnDNnFJQ4nBQbxVBXaqkH9Q,6158
26
- pulumi_vsphere/get_content_library.py,sha256=OvtzMI4plfMyPnHrTV39BFJ4OQDmkQRif7vnW9HPGoE,3236
27
- pulumi_vsphere/get_content_library_item.py,sha256=pxYlJl6sTUulRxDL21CmFrWs3PfItrkooQF1aKHDykw,4526
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=1Y7S8iTxJSEwcVXvS-vpjQLWC2aT22H0GfX8kTvur9c,5979
31
- pulumi_vsphere/get_datastore_cluster.py,sha256=4nkwUsNLdqWIoxYhiFzkFoYjr4zyOf-5UToK_0vbELg,5157
32
- pulumi_vsphere/get_datastore_stats.py,sha256=GmG8O3j-wXzS4iveHFdF2E3SiMY7g8zFHcoBQDD5DH0,7646
33
- pulumi_vsphere/get_distributed_virtual_switch.py,sha256=icwEpCtIYmPBXvT_3M_dHV0fjwPzbR7cQWQtN-75F0c,6922
34
- pulumi_vsphere/get_dynamic.py,sha256=CdhKrE8AwkRIgWwlvtcfCKy9awzC-zr1LqU7WdQogu4,6030
35
- pulumi_vsphere/get_folder.py,sha256=rkdRDdJGuZpbcuA1PIVYr90vSTZIk26L-FCSql1H7rE,3999
36
- pulumi_vsphere/get_guest_os_customization.py,sha256=inPUaDfJiThL6BfWVMqWHcVnOCbDd0aBTWbHMaS3Dus,5288
37
- pulumi_vsphere/get_host.py,sha256=aZ-2kism0hoSyeCGALJr759ILDrk2ohDskmexXRwSb8,5200
38
- pulumi_vsphere/get_host_base_images.py,sha256=3DqvJWpPTjOgi2PiQMTaCBxMFdvXUZYH883VwCWPBSE,2936
39
- pulumi_vsphere/get_host_pci_device.py,sha256=fp5WacjO3RBLrE16D6s23hkuN4je0KaNld9N8pX6Fos,7634
40
- pulumi_vsphere/get_host_thumbprint.py,sha256=MjZDDUPSzOhicLmslzATnk8hKPu2wDA3St4vr5PnUxk,4963
41
- pulumi_vsphere/get_host_vgpu_profile.py,sha256=4y8v6Zj8IhqrAQVhwtM-tZ1blVNFmCOBiI4VenUSu3c,6370
42
- pulumi_vsphere/get_license.py,sha256=QOSDZXEch29tPPs2-Ja7fWFG5t53f3amLTRhuNjwrFY,5266
43
- pulumi_vsphere/get_network.py,sha256=_w0wCBVKFsNdVAA3Ps-VX8F3KOCtQ_1tjcZ7rU8EY2Q,7133
44
- pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
45
- pulumi_vsphere/get_policy.py,sha256=ntQk22TpTCHRg4X5aYx4-oTfxyofEqfywYmFHmCF-II,3425
46
- pulumi_vsphere/get_resource_pool.py,sha256=9NGv83oYMVaG66UIiUtlA-bY2XQFQ-5EYBQTKqBusYs,7267
47
- pulumi_vsphere/get_role.py,sha256=N7ITzqIrfczeEG9t8wT7cl045u-TCQfOmOi_uzXbA1w,5211
48
- pulumi_vsphere/get_tag.py,sha256=NJIo7J9NsSr0SxCScu7QrNn41dWVc5vXAcIQN5VmAj8,4816
49
- pulumi_vsphere/get_tag_category.py,sha256=R-kLcRAuATkFp8PPKt01OGp8lpmceKnRf9lEn_ZJzUk,5034
50
- pulumi_vsphere/get_vapp_container.py,sha256=1OUABHMT3qFbSQRqFBCQNltmuo_OF983GJR09vnJUsY,4473
51
- pulumi_vsphere/get_virtual_machine.py,sha256=7cbdpbCgsLtWSkzmPdzOhlnILjAN5_cOb0UBnDKYG70,59209
52
- pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
53
- pulumi_vsphere/guest_os_customization.py,sha256=McMmuw-0x6IDTkxshaESAMf9_MMuQ4n930zcrT4Nmfs,16953
54
- pulumi_vsphere/ha_vm_override.py,sha256=UZspbf3M20j1Fbu5fdptx_NpdEBulIaHrkpURCar3q4,58960
55
- pulumi_vsphere/host.py,sha256=zUCCyihjTbvkCFOl6Y2OXcfcciyX1uu8e_-GUUumGis,50725
56
- pulumi_vsphere/host_port_group.py,sha256=q5chiwNimulkRECM5qdSWewVYPd9RzGe2xS576UgF2E,57254
57
- pulumi_vsphere/host_virtual_switch.py,sha256=rLUkgWWTSMWNA7KeBAEyspxwb25D26utJNxubnDXgRY,59781
58
- pulumi_vsphere/license.py,sha256=4IhaSHnAjOFSlSKu4AYGcbraULzzTRASs29wB7nw7aU,12022
59
- pulumi_vsphere/nas_datastore.py,sha256=xId9ePpVFiztOfGMEAgGTV-wJtn7UE4EL5f74N-55ww,50154
60
- pulumi_vsphere/offline_software_depot.py,sha256=9NvticI3dlQeZZ-Z_TwT7Jo-qa2GwhfZG4reQM3Xl3U,7379
61
- pulumi_vsphere/outputs.py,sha256=tMsheiyMRU8KoTIz05uauvgdEJYmRxTownfIq6UsvCY,156594
62
- pulumi_vsphere/provider.py,sha256=8H6ulcRQh7CAH67BvSthuiqAV0nAVjssl3aFk2xb2ME,20263
63
- pulumi_vsphere/pulumi-plugin.json,sha256=yub3OLELQk1hzhuLQ3m5P7zenhCRTv_7ba1i_Cq8qGo,84
64
- pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- pulumi_vsphere/resource_pool.py,sha256=nvRCtanec4g_6cW2-sodjs5g0Dco26KRL4PpzDh6D5g,54253
66
- pulumi_vsphere/role.py,sha256=PAc894OGeluKsWLq5LUKJs-u9BVTbhZdMBTg0NThj9I,9220
67
- pulumi_vsphere/storage_drs_vm_override.py,sha256=z4r66Qo83oUf8t_yrVpvHbg-pH_wunxhb66xFUnOSho,25572
68
- pulumi_vsphere/supervisor.py,sha256=6RWOhweDtZxeVUYkcWKG-WIt3FboOIYl4a5zadmtof4,46920
69
- pulumi_vsphere/tag.py,sha256=I5fx3iBmdtrEbKBUqe0mNY-geDvCvqlWCsASKWVlu0U,14993
70
- pulumi_vsphere/tag_category.py,sha256=txXKWBJgkvmlVSZaUPnqFGC0wFvikQQBsF-O06SNUvE,17626
71
- pulumi_vsphere/vapp_container.py,sha256=wLy4pDh4D2PhWiN3e4nlfm2GuixbhGhqUJ81o_9zSLs,54045
72
- pulumi_vsphere/vapp_entity.py,sha256=NPRObAsLaM0AGPXZBKC_xgNcexxrT8IqDabM3yvUSq4,34729
73
- pulumi_vsphere/virtual_disk.py,sha256=74Zd4wcvpYont-7OOiQUXTSsn0Tqbgq7gER4fTD4aOo,31959
74
- pulumi_vsphere/virtual_machine.py,sha256=EMov9Lbt5i3_5iVHPCxWo0H3CA4tZznXU9AW3O2h1bo,220617
75
- pulumi_vsphere/virtual_machine_class.py,sha256=ZQY09IV6uI24zYoBBOMbmccyO6bQYPai6LBi6b1e74Y,17163
76
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=wkVXW19WAVE281qnofn4TBbhoa4CfhVN6YLMDhrm2Ek,23912
77
- pulumi_vsphere/vm_storage_policy.py,sha256=WHgz3BpuplQez-ISXWR9jRnfqX6F3PULJsr1gDV0TJ0,20009
78
- pulumi_vsphere/vmfs_datastore.py,sha256=7uN89k1pOCM2PW8iigpv2AtqsLBHaUKTxii-YG3_Mgs,45174
79
- pulumi_vsphere/vnic.py,sha256=3XXYU7j-zhpd0AL76LBPHyfN7LK1exFc9cPfAp2C3U4,30717
80
- pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
81
- pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
82
- pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
83
- pulumi_vsphere-4.12.0a1728368031.dist-info/METADATA,sha256=94yjYLBi2w-vGfdkAxTX98GE4V7XQ1PshdJY6CnJImg,4958
84
- pulumi_vsphere-4.12.0a1728368031.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
85
- pulumi_vsphere-4.12.0a1728368031.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
- pulumi_vsphere-4.12.0a1728368031.dist-info/RECORD,,