pulumi-vsphere 4.11.4a1728462562__py3-none-any.whl → 4.12.0__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.
- pulumi_vsphere/_inputs.py +1135 -6
- pulumi_vsphere/_utilities.py +1 -1
- pulumi_vsphere/compute_cluster.py +5 -0
- pulumi_vsphere/compute_cluster_host_group.py +5 -0
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +5 -0
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +5 -0
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py +5 -0
- pulumi_vsphere/compute_cluster_vm_group.py +5 -0
- pulumi_vsphere/compute_cluster_vm_host_rule.py +5 -0
- pulumi_vsphere/config/__init__.pyi +5 -0
- pulumi_vsphere/config/vars.py +5 -0
- pulumi_vsphere/content_library.py +5 -0
- pulumi_vsphere/content_library_item.py +5 -0
- pulumi_vsphere/custom_attribute.py +5 -0
- pulumi_vsphere/datacenter.py +5 -0
- pulumi_vsphere/datastore_cluster.py +5 -0
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +5 -0
- pulumi_vsphere/distributed_port_group.py +5 -0
- pulumi_vsphere/distributed_virtual_switch.py +5 -0
- pulumi_vsphere/dpm_host_override.py +5 -0
- pulumi_vsphere/drs_vm_override.py +5 -0
- pulumi_vsphere/entity_permissions.py +5 -0
- pulumi_vsphere/file.py +5 -0
- pulumi_vsphere/folder.py +5 -0
- pulumi_vsphere/get_compute_cluster.py +15 -4
- pulumi_vsphere/get_compute_cluster_host_group.py +15 -4
- pulumi_vsphere/get_content_library.py +12 -4
- pulumi_vsphere/get_content_library_item.py +16 -4
- pulumi_vsphere/get_custom_attribute.py +13 -4
- pulumi_vsphere/get_datacenter.py +29 -7
- pulumi_vsphere/get_datastore.py +16 -4
- pulumi_vsphere/get_datastore_cluster.py +30 -5
- pulumi_vsphere/get_datastore_stats.py +16 -4
- pulumi_vsphere/get_distributed_virtual_switch.py +15 -4
- pulumi_vsphere/get_dynamic.py +16 -4
- pulumi_vsphere/get_folder.py +12 -4
- pulumi_vsphere/get_guest_os_customization.py +17 -4
- pulumi_vsphere/get_host.py +15 -4
- pulumi_vsphere/get_host_base_images.py +11 -4
- pulumi_vsphere/get_host_pci_device.py +19 -4
- pulumi_vsphere/get_host_thumbprint.py +16 -4
- pulumi_vsphere/get_host_vgpu_profile.py +15 -4
- pulumi_vsphere/get_license.py +17 -4
- pulumi_vsphere/get_network.py +65 -5
- pulumi_vsphere/get_ovf_vm_template.py +55 -4
- pulumi_vsphere/get_policy.py +12 -4
- pulumi_vsphere/get_resource_pool.py +14 -4
- pulumi_vsphere/get_role.py +18 -4
- pulumi_vsphere/get_tag.py +15 -4
- pulumi_vsphere/get_tag_category.py +15 -4
- pulumi_vsphere/get_vapp_container.py +14 -4
- pulumi_vsphere/get_virtual_machine.py +145 -5
- pulumi_vsphere/get_vmfs_disks.py +17 -4
- pulumi_vsphere/guest_os_customization.py +5 -0
- pulumi_vsphere/ha_vm_override.py +5 -0
- pulumi_vsphere/host.py +5 -0
- pulumi_vsphere/host_port_group.py +5 -0
- pulumi_vsphere/host_virtual_switch.py +5 -0
- pulumi_vsphere/license.py +5 -0
- pulumi_vsphere/nas_datastore.py +5 -0
- pulumi_vsphere/offline_software_depot.py +5 -0
- pulumi_vsphere/outputs.py +45 -0
- pulumi_vsphere/provider.py +5 -0
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/resource_pool.py +5 -0
- pulumi_vsphere/role.py +5 -0
- pulumi_vsphere/storage_drs_vm_override.py +5 -0
- pulumi_vsphere/supervisor.py +5 -0
- pulumi_vsphere/tag.py +5 -0
- pulumi_vsphere/tag_category.py +5 -0
- pulumi_vsphere/vapp_container.py +5 -0
- pulumi_vsphere/vapp_entity.py +5 -0
- pulumi_vsphere/virtual_disk.py +5 -0
- pulumi_vsphere/virtual_machine.py +52 -0
- pulumi_vsphere/virtual_machine_class.py +5 -0
- pulumi_vsphere/virtual_machine_snapshot.py +5 -0
- pulumi_vsphere/vm_storage_policy.py +5 -0
- pulumi_vsphere/vmfs_datastore.py +5 -0
- pulumi_vsphere/vnic.py +5 -0
- {pulumi_vsphere-4.11.4a1728462562.dist-info → pulumi_vsphere-4.12.0.dist-info}/METADATA +3 -2
- pulumi_vsphere-4.12.0.dist-info/RECORD +86 -0
- {pulumi_vsphere-4.11.4a1728462562.dist-info → pulumi_vsphere-4.12.0.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.11.4a1728462562.dist-info/RECORD +0 -86
- {pulumi_vsphere-4.11.4a1728462562.dist-info → pulumi_vsphere-4.12.0.dist-info}/top_level.txt +0 -0
|
@@ -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 *
|
|
@@ -87,6 +92,7 @@ class VirtualMachineArgs:
|
|
|
87
92
|
tools_upgrade_policy: Optional[pulumi.Input[str]] = None,
|
|
88
93
|
vapp: Optional[pulumi.Input['VirtualMachineVappArgs']] = None,
|
|
89
94
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
95
|
+
vtpm: Optional[pulumi.Input['VirtualMachineVtpmArgs']] = None,
|
|
90
96
|
vvtd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
91
97
|
wait_for_guest_ip_timeout: Optional[pulumi.Input[int]] = None,
|
|
92
98
|
wait_for_guest_net_routable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -172,6 +178,7 @@ class VirtualMachineArgs:
|
|
|
172
178
|
:param pulumi.Input[str] tools_upgrade_policy: Set the upgrade policy for VMware Tools. Can be one of `manual` or `upgradeAtPowerCycle`.
|
|
173
179
|
:param pulumi.Input['VirtualMachineVappArgs'] vapp: vApp configuration data for this virtual machine. Can be used to provide configuration data for OVF images.
|
|
174
180
|
:param pulumi.Input[bool] vbs_enabled: Flag to specify if Virtualization-based security is enabled for this virtual machine.
|
|
181
|
+
:param pulumi.Input['VirtualMachineVtpmArgs'] vtpm: A specification for a virtual Trusted Platform Module (TPM) device on the virtual machine.
|
|
175
182
|
:param pulumi.Input[bool] vvtd_enabled: Flag to specify if I/O MMU virtualization, also called Intel Virtualization Technology for Directed I/O (VT-d) and AMD
|
|
176
183
|
I/O Virtualization (AMD-Vi or IOMMU), is enabled.
|
|
177
184
|
:param pulumi.Input[int] wait_for_guest_ip_timeout: The amount of time, in minutes, to wait for an available IP address on this virtual machine. A value less than 1
|
|
@@ -322,6 +329,8 @@ class VirtualMachineArgs:
|
|
|
322
329
|
pulumi.set(__self__, "vapp", vapp)
|
|
323
330
|
if vbs_enabled is not None:
|
|
324
331
|
pulumi.set(__self__, "vbs_enabled", vbs_enabled)
|
|
332
|
+
if vtpm is not None:
|
|
333
|
+
pulumi.set(__self__, "vtpm", vtpm)
|
|
325
334
|
if vvtd_enabled is not None:
|
|
326
335
|
pulumi.set(__self__, "vvtd_enabled", vvtd_enabled)
|
|
327
336
|
if wait_for_guest_ip_timeout is not None:
|
|
@@ -1185,6 +1194,18 @@ class VirtualMachineArgs:
|
|
|
1185
1194
|
def vbs_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
1186
1195
|
pulumi.set(self, "vbs_enabled", value)
|
|
1187
1196
|
|
|
1197
|
+
@property
|
|
1198
|
+
@pulumi.getter
|
|
1199
|
+
def vtpm(self) -> Optional[pulumi.Input['VirtualMachineVtpmArgs']]:
|
|
1200
|
+
"""
|
|
1201
|
+
A specification for a virtual Trusted Platform Module (TPM) device on the virtual machine.
|
|
1202
|
+
"""
|
|
1203
|
+
return pulumi.get(self, "vtpm")
|
|
1204
|
+
|
|
1205
|
+
@vtpm.setter
|
|
1206
|
+
def vtpm(self, value: Optional[pulumi.Input['VirtualMachineVtpmArgs']]):
|
|
1207
|
+
pulumi.set(self, "vtpm", value)
|
|
1208
|
+
|
|
1188
1209
|
@property
|
|
1189
1210
|
@pulumi.getter(name="vvtdEnabled")
|
|
1190
1211
|
def vvtd_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -1323,6 +1344,7 @@ class _VirtualMachineState:
|
|
|
1323
1344
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
1324
1345
|
vmware_tools_status: Optional[pulumi.Input[str]] = None,
|
|
1325
1346
|
vmx_path: Optional[pulumi.Input[str]] = None,
|
|
1347
|
+
vtpm: Optional[pulumi.Input['VirtualMachineVtpmArgs']] = None,
|
|
1326
1348
|
vvtd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
1327
1349
|
wait_for_guest_ip_timeout: Optional[pulumi.Input[int]] = None,
|
|
1328
1350
|
wait_for_guest_net_routable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -1418,6 +1440,7 @@ class _VirtualMachineState:
|
|
|
1418
1440
|
:param pulumi.Input[bool] vbs_enabled: Flag to specify if Virtualization-based security is enabled for this virtual machine.
|
|
1419
1441
|
:param pulumi.Input[str] vmware_tools_status: The state of VMware Tools in the guest. This will determine the proper course of action for some device operations.
|
|
1420
1442
|
:param pulumi.Input[str] vmx_path: The path of the virtual machine configuration file on the datastore in which the virtual machine is placed.
|
|
1443
|
+
:param pulumi.Input['VirtualMachineVtpmArgs'] vtpm: A specification for a virtual Trusted Platform Module (TPM) device on the virtual machine.
|
|
1421
1444
|
:param pulumi.Input[bool] vvtd_enabled: Flag to specify if I/O MMU virtualization, also called Intel Virtualization Technology for Directed I/O (VT-d) and AMD
|
|
1422
1445
|
I/O Virtualization (AMD-Vi or IOMMU), is enabled.
|
|
1423
1446
|
:param pulumi.Input[int] wait_for_guest_ip_timeout: The amount of time, in minutes, to wait for an available IP address on this virtual machine. A value less than 1
|
|
@@ -1591,6 +1614,8 @@ class _VirtualMachineState:
|
|
|
1591
1614
|
pulumi.set(__self__, "vmware_tools_status", vmware_tools_status)
|
|
1592
1615
|
if vmx_path is not None:
|
|
1593
1616
|
pulumi.set(__self__, "vmx_path", vmx_path)
|
|
1617
|
+
if vtpm is not None:
|
|
1618
|
+
pulumi.set(__self__, "vtpm", vtpm)
|
|
1594
1619
|
if vvtd_enabled is not None:
|
|
1595
1620
|
pulumi.set(__self__, "vvtd_enabled", vvtd_enabled)
|
|
1596
1621
|
if wait_for_guest_ip_timeout is not None:
|
|
@@ -2583,6 +2608,18 @@ class _VirtualMachineState:
|
|
|
2583
2608
|
def vmx_path(self, value: Optional[pulumi.Input[str]]):
|
|
2584
2609
|
pulumi.set(self, "vmx_path", value)
|
|
2585
2610
|
|
|
2611
|
+
@property
|
|
2612
|
+
@pulumi.getter
|
|
2613
|
+
def vtpm(self) -> Optional[pulumi.Input['VirtualMachineVtpmArgs']]:
|
|
2614
|
+
"""
|
|
2615
|
+
A specification for a virtual Trusted Platform Module (TPM) device on the virtual machine.
|
|
2616
|
+
"""
|
|
2617
|
+
return pulumi.get(self, "vtpm")
|
|
2618
|
+
|
|
2619
|
+
@vtpm.setter
|
|
2620
|
+
def vtpm(self, value: Optional[pulumi.Input['VirtualMachineVtpmArgs']]):
|
|
2621
|
+
pulumi.set(self, "vtpm", value)
|
|
2622
|
+
|
|
2586
2623
|
@property
|
|
2587
2624
|
@pulumi.getter(name="vvtdEnabled")
|
|
2588
2625
|
def vvtd_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -2712,6 +2749,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2712
2749
|
tools_upgrade_policy: Optional[pulumi.Input[str]] = None,
|
|
2713
2750
|
vapp: Optional[pulumi.Input[Union['VirtualMachineVappArgs', 'VirtualMachineVappArgsDict']]] = None,
|
|
2714
2751
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2752
|
+
vtpm: Optional[pulumi.Input[Union['VirtualMachineVtpmArgs', 'VirtualMachineVtpmArgsDict']]] = None,
|
|
2715
2753
|
vvtd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2716
2754
|
wait_for_guest_ip_timeout: Optional[pulumi.Input[int]] = None,
|
|
2717
2755
|
wait_for_guest_net_routable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -2823,6 +2861,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2823
2861
|
:param pulumi.Input[str] tools_upgrade_policy: Set the upgrade policy for VMware Tools. Can be one of `manual` or `upgradeAtPowerCycle`.
|
|
2824
2862
|
:param pulumi.Input[Union['VirtualMachineVappArgs', 'VirtualMachineVappArgsDict']] vapp: vApp configuration data for this virtual machine. Can be used to provide configuration data for OVF images.
|
|
2825
2863
|
:param pulumi.Input[bool] vbs_enabled: Flag to specify if Virtualization-based security is enabled for this virtual machine.
|
|
2864
|
+
:param pulumi.Input[Union['VirtualMachineVtpmArgs', 'VirtualMachineVtpmArgsDict']] vtpm: A specification for a virtual Trusted Platform Module (TPM) device on the virtual machine.
|
|
2826
2865
|
:param pulumi.Input[bool] vvtd_enabled: Flag to specify if I/O MMU virtualization, also called Intel Virtualization Technology for Directed I/O (VT-d) and AMD
|
|
2827
2866
|
I/O Virtualization (AMD-Vi or IOMMU), is enabled.
|
|
2828
2867
|
:param pulumi.Input[int] wait_for_guest_ip_timeout: The amount of time, in minutes, to wait for an available IP address on this virtual machine. A value less than 1
|
|
@@ -2949,6 +2988,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2949
2988
|
tools_upgrade_policy: Optional[pulumi.Input[str]] = None,
|
|
2950
2989
|
vapp: Optional[pulumi.Input[Union['VirtualMachineVappArgs', 'VirtualMachineVappArgsDict']]] = None,
|
|
2951
2990
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2991
|
+
vtpm: Optional[pulumi.Input[Union['VirtualMachineVtpmArgs', 'VirtualMachineVtpmArgsDict']]] = None,
|
|
2952
2992
|
vvtd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2953
2993
|
wait_for_guest_ip_timeout: Optional[pulumi.Input[int]] = None,
|
|
2954
2994
|
wait_for_guest_net_routable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -3035,6 +3075,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3035
3075
|
__props__.__dict__["tools_upgrade_policy"] = tools_upgrade_policy
|
|
3036
3076
|
__props__.__dict__["vapp"] = vapp
|
|
3037
3077
|
__props__.__dict__["vbs_enabled"] = vbs_enabled
|
|
3078
|
+
__props__.__dict__["vtpm"] = vtpm
|
|
3038
3079
|
__props__.__dict__["vvtd_enabled"] = vvtd_enabled
|
|
3039
3080
|
__props__.__dict__["wait_for_guest_ip_timeout"] = wait_for_guest_ip_timeout
|
|
3040
3081
|
__props__.__dict__["wait_for_guest_net_routable"] = wait_for_guest_net_routable
|
|
@@ -3142,6 +3183,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3142
3183
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3143
3184
|
vmware_tools_status: Optional[pulumi.Input[str]] = None,
|
|
3144
3185
|
vmx_path: Optional[pulumi.Input[str]] = None,
|
|
3186
|
+
vtpm: Optional[pulumi.Input[Union['VirtualMachineVtpmArgs', 'VirtualMachineVtpmArgsDict']]] = None,
|
|
3145
3187
|
vvtd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3146
3188
|
wait_for_guest_ip_timeout: Optional[pulumi.Input[int]] = None,
|
|
3147
3189
|
wait_for_guest_net_routable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -3242,6 +3284,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3242
3284
|
:param pulumi.Input[bool] vbs_enabled: Flag to specify if Virtualization-based security is enabled for this virtual machine.
|
|
3243
3285
|
:param pulumi.Input[str] vmware_tools_status: The state of VMware Tools in the guest. This will determine the proper course of action for some device operations.
|
|
3244
3286
|
:param pulumi.Input[str] vmx_path: The path of the virtual machine configuration file on the datastore in which the virtual machine is placed.
|
|
3287
|
+
:param pulumi.Input[Union['VirtualMachineVtpmArgs', 'VirtualMachineVtpmArgsDict']] vtpm: A specification for a virtual Trusted Platform Module (TPM) device on the virtual machine.
|
|
3245
3288
|
:param pulumi.Input[bool] vvtd_enabled: Flag to specify if I/O MMU virtualization, also called Intel Virtualization Technology for Directed I/O (VT-d) and AMD
|
|
3246
3289
|
I/O Virtualization (AMD-Vi or IOMMU), is enabled.
|
|
3247
3290
|
:param pulumi.Input[int] wait_for_guest_ip_timeout: The amount of time, in minutes, to wait for an available IP address on this virtual machine. A value less than 1
|
|
@@ -3337,6 +3380,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3337
3380
|
__props__.__dict__["vbs_enabled"] = vbs_enabled
|
|
3338
3381
|
__props__.__dict__["vmware_tools_status"] = vmware_tools_status
|
|
3339
3382
|
__props__.__dict__["vmx_path"] = vmx_path
|
|
3383
|
+
__props__.__dict__["vtpm"] = vtpm
|
|
3340
3384
|
__props__.__dict__["vvtd_enabled"] = vvtd_enabled
|
|
3341
3385
|
__props__.__dict__["wait_for_guest_ip_timeout"] = wait_for_guest_ip_timeout
|
|
3342
3386
|
__props__.__dict__["wait_for_guest_net_routable"] = wait_for_guest_net_routable
|
|
@@ -3998,6 +4042,14 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3998
4042
|
"""
|
|
3999
4043
|
return pulumi.get(self, "vmx_path")
|
|
4000
4044
|
|
|
4045
|
+
@property
|
|
4046
|
+
@pulumi.getter
|
|
4047
|
+
def vtpm(self) -> pulumi.Output[Optional['outputs.VirtualMachineVtpm']]:
|
|
4048
|
+
"""
|
|
4049
|
+
A specification for a virtual Trusted Platform Module (TPM) device on the virtual machine.
|
|
4050
|
+
"""
|
|
4051
|
+
return pulumi.get(self, "vtpm")
|
|
4052
|
+
|
|
4001
4053
|
@property
|
|
4002
4054
|
@pulumi.getter(name="vvtdEnabled")
|
|
4003
4055
|
def vvtd_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
@@ -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 *
|
pulumi_vsphere/vmfs_datastore.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__ = ['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.
|
|
3
|
+
Version: 4.12.0
|
|
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.
|
|
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
|
[](https://github.com/pulumi/pulumi-vsphere/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
|
|
2
|
+
pulumi_vsphere/_inputs.py,sha256=VWAbDbP1egZtqNOBm5Gd9LXq0HTR_KLa_BMfzvARnzQ,186475
|
|
3
|
+
pulumi_vsphere/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
|
+
pulumi_vsphere/compute_cluster.py,sha256=nC43gSRf-Aznzmq_yxt5hGlI1nlwz91mimNK_RR9V-c,232890
|
|
5
|
+
pulumi_vsphere/compute_cluster_host_group.py,sha256=2pUMyC9r0vQS11yLxdcFIyQq4POf8VQmqMsgt8mDQN0,15605
|
|
6
|
+
pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=YUrv5Ro7_p9qNqrDPZLTHaa0fEt_SppTPMmLm1dHnA4,25709
|
|
7
|
+
pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=BPhVHEzDWJRi0S0zo5p-RbOuP-yMI9wDmEXX7dCC2I4,18642
|
|
8
|
+
pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=hBTX8zYk7B0BoYUXNmj5Zk6uDY4P10p5G1LDElzEhjk,29673
|
|
9
|
+
pulumi_vsphere/compute_cluster_vm_group.py,sha256=3oNzZ6VNvDsVBYFHfWUt0x5SbxMIph8pBbrJO4lRZcY,23007
|
|
10
|
+
pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=RFsz1MW6aGxR4W0jE3iePqm5od_6MrJymx4o58KAUbc,26978
|
|
11
|
+
pulumi_vsphere/content_library.py,sha256=XW1jRVE1Oxt6ZkKD8FHpJlmdNA7MgjEjx2w176iTWy0,19738
|
|
12
|
+
pulumi_vsphere/content_library_item.py,sha256=HEw0sOVm7tL6QMTmBBDqHhZRKmFYXAa_5_P6U0zktZM,21094
|
|
13
|
+
pulumi_vsphere/custom_attribute.py,sha256=dd-TSTZBhZRd4kIMNawGvpqgFvp0CeWNQbesdNTJqn8,11759
|
|
14
|
+
pulumi_vsphere/datacenter.py,sha256=Kilc1gkC7VJXM3sC0Htsu-v4Dv_vHlqjNWCvjlJLGDQ,18960
|
|
15
|
+
pulumi_vsphere/datastore_cluster.py,sha256=RqdQ-Nq_ZabTpUvntNWu396num8oxf3uGD6wXibP1qg,84720
|
|
16
|
+
pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=lapOmmiyy8KHGfNdw-Fp5FAKD5B0r-jUQHADWjt4V1E,23466
|
|
17
|
+
pulumi_vsphere/distributed_port_group.py,sha256=YGNGa6r99ZO90wqRN6CNlLBICtd60a8uBcc-1M4DdFw,144747
|
|
18
|
+
pulumi_vsphere/distributed_virtual_switch.py,sha256=onWoWCXlBojscjuQ7KP4eu4f89JGQtEB8wQX__5OaXs,258390
|
|
19
|
+
pulumi_vsphere/dpm_host_override.py,sha256=a-dOR21PIROpSGnaHEJYviVXznE7JtRg8Tvoa215_24,17703
|
|
20
|
+
pulumi_vsphere/drs_vm_override.py,sha256=hu0UMrNEoj9QQWiElIxCv_viyLbProf5uNr24G6y07s,19013
|
|
21
|
+
pulumi_vsphere/entity_permissions.py,sha256=z4PvbMWmQUXx_sK3bQHGp_FHXVHzedT4uh2ojdsjQ8o,13156
|
|
22
|
+
pulumi_vsphere/file.py,sha256=5nLX9atJuEC5bqbvsGd4CCV_hIve4J24qyezmrYcnV4,23571
|
|
23
|
+
pulumi_vsphere/folder.py,sha256=NiIjlAuM_ytWE9eE4bmr0VYS5b6pfm8ZHVkQHnDIuic,29476
|
|
24
|
+
pulumi_vsphere/get_compute_cluster.py,sha256=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=JEHjtMKuaO2V2RgYIi9zLLIa9imJYk_sVKhEJqTyzYM,5322
|
|
30
|
+
pulumi_vsphere/get_datastore.py,sha256=UYdOgFwdIThPzVzbODS5N2_mSPSdIjL11Sd65pLvJbE,6709
|
|
31
|
+
pulumi_vsphere/get_datastore_cluster.py,sha256=9kDlxTbOgaUk8kbDF2Jow7xiHJegkpeVO30nI3DpMH0,6425
|
|
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=El2CyEwFoXSye9r7m3AnYGMMA7helOpzoUo_MqyqfZU,9769
|
|
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=IIWDG2TOWMRQJGmE-9AKE0TNDeYrFzHiFkt7u_f1FzI,67917
|
|
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=Tj7mYV7BMCl_XT1uOwpULNy-J6A9EbCTmmigWCHbQ7g,158375
|
|
62
|
+
pulumi_vsphere/provider.py,sha256=ebBbKo9SR-1kQc5iyRLFK9rtQhWlI_u-nAZrEFC83zA,20437
|
|
63
|
+
pulumi_vsphere/pulumi-plugin.json,sha256=yNy49o-QbF_0uHZdt0VpwQ7oupyd8H8bLFBsD5JBuKQ,67
|
|
64
|
+
pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
+
pulumi_vsphere/resource_pool.py,sha256=EoVpNGqrDYXjP7Zyg12-rGOJDav9BW4Z05GqLIEBsEY,43639
|
|
66
|
+
pulumi_vsphere/role.py,sha256=7AvmMTWG_J07ePZEu810mBVtVF1Vcndh0C8K5dn9CI8,9394
|
|
67
|
+
pulumi_vsphere/storage_drs_vm_override.py,sha256=MCP1RH74V9cVOtSMUA08DvZ8lAX3U19Gxqz4-TkQWA0,25746
|
|
68
|
+
pulumi_vsphere/supervisor.py,sha256=Kv6lXlK-lqO-uOTpJCfNXS_lNW60DMIxOqhR3-N2RG4,47094
|
|
69
|
+
pulumi_vsphere/tag.py,sha256=ACyCpYeEW_iyhosN8UcDYkzgwvq67g55v8patQa-1Ik,15167
|
|
70
|
+
pulumi_vsphere/tag_category.py,sha256=hfmCV_kprfnlgLD-6fjDcZNTt6-cuZFSgxc2TQbTQg0,17800
|
|
71
|
+
pulumi_vsphere/vapp_container.py,sha256=9hU9i-yf-TqqkCxIbcqSkYHaisHDQyI-aWQ5P-vJjzM,54219
|
|
72
|
+
pulumi_vsphere/vapp_entity.py,sha256=MdjmOZkG-amjGbAk_lnbSPJYhssZDSVSixeZt5fLw4A,34903
|
|
73
|
+
pulumi_vsphere/virtual_disk.py,sha256=A56NN7b1Bzm2MW5DG-SNBiJsxY2_I5ZqiRR1mquhSHU,32133
|
|
74
|
+
pulumi_vsphere/virtual_machine.py,sha256=6s5Tk64qsbnZITe5WOaWKpgtM2jOB_YMbo53HVkl1GA,223341
|
|
75
|
+
pulumi_vsphere/virtual_machine_class.py,sha256=lkJgYH2TEguJscKPbDPq5B9I0uVi5PD3K9FhMF4mxV8,17337
|
|
76
|
+
pulumi_vsphere/virtual_machine_snapshot.py,sha256=YuZAbiD0Pu48BGifXpGYzmEKzZsNsmQOB-6fmeINIdA,24086
|
|
77
|
+
pulumi_vsphere/vm_storage_policy.py,sha256=YyV9B6CVh23AoH-VxJ9lwZy78I63NbTSW6xWn-iYK00,20183
|
|
78
|
+
pulumi_vsphere/vmfs_datastore.py,sha256=sXzgqOY4I4UQAs7V3ENUW5tsLD_64m_xKi64W7_tMTw,45348
|
|
79
|
+
pulumi_vsphere/vnic.py,sha256=e6nihrNo_9qeRT4n0qBf3Rm29xrpFYr9KtIBy-VB_Y0,30891
|
|
80
|
+
pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
81
|
+
pulumi_vsphere/config/__init__.pyi,sha256=iEdb3b8LpA1hgxsdfzIl9TB79_koUKrlg5KHtM-7xDg,1525
|
|
82
|
+
pulumi_vsphere/config/vars.py,sha256=qYPNSppleMGJaxbz3VnPRGlln--OcnHmvlXJIXq6t20,3384
|
|
83
|
+
pulumi_vsphere-4.12.0.dist-info/METADATA,sha256=3XsexrDv1zBIJeECK1sLYpngvBz3Pi0K3q2SIsZuakU,5015
|
|
84
|
+
pulumi_vsphere-4.12.0.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
85
|
+
pulumi_vsphere-4.12.0.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
86
|
+
pulumi_vsphere-4.12.0.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=bEvN06jn0lHNKQWbGKKUJKPmIBQKj_H0am99nsYb6uE,5371
|
|
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=EYrHIS7ylVlGB6oITxvWh_P74CrjD9AIn_Of7HNoUIo,50739
|
|
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=rVBmKifEnmqa4DXsth7IzPlIzBiRGZB83iDUvNpzfaE,84
|
|
64
|
-
pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
-
pulumi_vsphere/resource_pool.py,sha256=sCVdzRkwCc4776TrMBb23eQajfsT0Pmvi3mK9NBoeRk,43465
|
|
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=T6oPRpY0qd7NWlkzwcsA5OINA0k5CDvoW6P4RyA-yBc,220661
|
|
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.11.4a1728462562.dist-info/METADATA,sha256=UPtahbVf5OdqJ7DwttdozMH9WkYxe2Y3SV1COcyeblE,4958
|
|
84
|
-
pulumi_vsphere-4.11.4a1728462562.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
85
|
-
pulumi_vsphere-4.11.4a1728462562.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
86
|
-
pulumi_vsphere-4.11.4a1728462562.dist-info/RECORD,,
|
{pulumi_vsphere-4.11.4a1728462562.dist-info → pulumi_vsphere-4.12.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|