pulumi-vsphere 4.11.0a1715064046__py3-none-any.whl → 4.11.0a1715307640__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.
- pulumi_vsphere/virtual_machine.py +0 -89
- {pulumi_vsphere-4.11.0a1715064046.dist-info → pulumi_vsphere-4.11.0a1715307640.dist-info}/METADATA +1 -1
- {pulumi_vsphere-4.11.0a1715064046.dist-info → pulumi_vsphere-4.11.0a1715307640.dist-info}/RECORD +5 -5
- {pulumi_vsphere-4.11.0a1715064046.dist-info → pulumi_vsphere-4.11.0a1715307640.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.11.0a1715064046.dist-info → pulumi_vsphere-4.11.0a1715307640.dist-info}/top_level.txt +0 -0
|
@@ -129,9 +129,6 @@ class VirtualMachineArgs:
|
|
|
129
129
|
:param pulumi.Input[int] hardware_version: The hardware version for the virtual machine.
|
|
130
130
|
:param pulumi.Input[str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
131
131
|
:param pulumi.Input[str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
132
|
-
:param pulumi.Input[int] ide_controller_count: The number of IDE controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
133
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
134
|
-
controllers.
|
|
135
132
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
136
133
|
:param pulumi.Input[str] latency_sensitivity: Controls the scheduling delay of the virtual machine. Use a higher sensitivity for applications that require lower
|
|
137
134
|
latency, such as VOIP, media player applications, or applications that require frequent access to mouse or keyboard
|
|
@@ -162,13 +159,7 @@ class VirtualMachineArgs:
|
|
|
162
159
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_reboot: Enable the run of scripts before guest operating system reboot when VMware Tools is installed.
|
|
163
160
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_shutdown: Enable the run of scripts before guest operating system shutdown when VMware Tools is installed.
|
|
164
161
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_standby: Enable the run of scripts before guest operating system standby when VMware Tools is installed.
|
|
165
|
-
:param pulumi.Input[int] sata_controller_count: The number of SATA controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
166
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
167
|
-
controllers.
|
|
168
162
|
:param pulumi.Input[str] scsi_bus_sharing: Mode for sharing the SCSI bus. The modes are physicalSharing, virtualSharing, and noSharing.
|
|
169
|
-
:param pulumi.Input[int] scsi_controller_count: The number of SCSI controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
170
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
171
|
-
controllers.
|
|
172
163
|
:param pulumi.Input[str] scsi_type: The type of SCSI bus this virtual machine will have. Can be one of lsilogic, lsilogic-sas or pvscsi.
|
|
173
164
|
:param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for shutdown when making necessary updates to the virtual machine.
|
|
174
165
|
:param pulumi.Input[str] storage_policy_id: The ID of the storage policy to assign to the virtual machine home directory.
|
|
@@ -742,11 +733,6 @@ class VirtualMachineArgs:
|
|
|
742
733
|
@property
|
|
743
734
|
@pulumi.getter(name="ideControllerCount")
|
|
744
735
|
def ide_controller_count(self) -> Optional[pulumi.Input[int]]:
|
|
745
|
-
"""
|
|
746
|
-
The number of IDE controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
747
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
748
|
-
controllers.
|
|
749
|
-
"""
|
|
750
736
|
return pulumi.get(self, "ide_controller_count")
|
|
751
737
|
|
|
752
738
|
@ide_controller_count.setter
|
|
@@ -1050,11 +1036,6 @@ class VirtualMachineArgs:
|
|
|
1050
1036
|
@property
|
|
1051
1037
|
@pulumi.getter(name="sataControllerCount")
|
|
1052
1038
|
def sata_controller_count(self) -> Optional[pulumi.Input[int]]:
|
|
1053
|
-
"""
|
|
1054
|
-
The number of SATA controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
1055
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
1056
|
-
controllers.
|
|
1057
|
-
"""
|
|
1058
1039
|
return pulumi.get(self, "sata_controller_count")
|
|
1059
1040
|
|
|
1060
1041
|
@sata_controller_count.setter
|
|
@@ -1076,11 +1057,6 @@ class VirtualMachineArgs:
|
|
|
1076
1057
|
@property
|
|
1077
1058
|
@pulumi.getter(name="scsiControllerCount")
|
|
1078
1059
|
def scsi_controller_count(self) -> Optional[pulumi.Input[int]]:
|
|
1079
|
-
"""
|
|
1080
|
-
The number of SCSI controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
1081
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
1082
|
-
controllers.
|
|
1083
|
-
"""
|
|
1084
1060
|
return pulumi.get(self, "scsi_controller_count")
|
|
1085
1061
|
|
|
1086
1062
|
@scsi_controller_count.setter
|
|
@@ -1391,9 +1367,6 @@ class _VirtualMachineState:
|
|
|
1391
1367
|
:param pulumi.Input[int] hardware_version: The hardware version for the virtual machine.
|
|
1392
1368
|
:param pulumi.Input[str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
1393
1369
|
:param pulumi.Input[str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
1394
|
-
:param pulumi.Input[int] ide_controller_count: The number of IDE controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
1395
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
1396
|
-
controllers.
|
|
1397
1370
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
1398
1371
|
:param pulumi.Input[bool] imported: Indicates if the virtual machine resource has been imported, or if the state has been migrated from a previous version of the resource. It influences the behavior of the first post-import apply operation. See the section on importing below.
|
|
1399
1372
|
:param pulumi.Input[str] latency_sensitivity: Controls the scheduling delay of the virtual machine. Use a higher sensitivity for applications that require lower
|
|
@@ -1421,7 +1394,6 @@ class _VirtualMachineState:
|
|
|
1421
1394
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pci_device_ids: A list of PCI passthrough devices
|
|
1422
1395
|
:param pulumi.Input[str] power_state: A computed value for the current power state of the virtual machine. One of `on`, `off`, or `suspended`.
|
|
1423
1396
|
:param pulumi.Input[int] poweron_timeout: The amount of time, in seconds, that we will be trying to power on a VM
|
|
1424
|
-
:param pulumi.Input[bool] reboot_required: Value internal to Terraform used to determine if a configuration set change requires a reboot.
|
|
1425
1397
|
:param pulumi.Input[str] replace_trigger: Triggers replacement of resource whenever it changes.
|
|
1426
1398
|
:param pulumi.Input[str] resource_pool_id: The ID of a resource pool to put the virtual machine in.
|
|
1427
1399
|
:param pulumi.Input[bool] run_tools_scripts_after_power_on: Enable the run of scripts after virtual machine power-on when VMware Tools is installed.
|
|
@@ -1429,13 +1401,7 @@ class _VirtualMachineState:
|
|
|
1429
1401
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_reboot: Enable the run of scripts before guest operating system reboot when VMware Tools is installed.
|
|
1430
1402
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_shutdown: Enable the run of scripts before guest operating system shutdown when VMware Tools is installed.
|
|
1431
1403
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_standby: Enable the run of scripts before guest operating system standby when VMware Tools is installed.
|
|
1432
|
-
:param pulumi.Input[int] sata_controller_count: The number of SATA controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
1433
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
1434
|
-
controllers.
|
|
1435
1404
|
:param pulumi.Input[str] scsi_bus_sharing: Mode for sharing the SCSI bus. The modes are physicalSharing, virtualSharing, and noSharing.
|
|
1436
|
-
:param pulumi.Input[int] scsi_controller_count: The number of SCSI controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
1437
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
1438
|
-
controllers.
|
|
1439
1405
|
:param pulumi.Input[str] scsi_type: The type of SCSI bus this virtual machine will have. Can be one of lsilogic, lsilogic-sas or pvscsi.
|
|
1440
1406
|
:param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for shutdown when making necessary updates to the virtual machine.
|
|
1441
1407
|
:param pulumi.Input[str] storage_policy_id: The ID of the storage policy to assign to the virtual machine home directory.
|
|
@@ -2060,11 +2026,6 @@ class _VirtualMachineState:
|
|
|
2060
2026
|
@property
|
|
2061
2027
|
@pulumi.getter(name="ideControllerCount")
|
|
2062
2028
|
def ide_controller_count(self) -> Optional[pulumi.Input[int]]:
|
|
2063
|
-
"""
|
|
2064
|
-
The number of IDE controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
2065
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
2066
|
-
controllers.
|
|
2067
|
-
"""
|
|
2068
2029
|
return pulumi.get(self, "ide_controller_count")
|
|
2069
2030
|
|
|
2070
2031
|
@ide_controller_count.setter
|
|
@@ -2332,9 +2293,6 @@ class _VirtualMachineState:
|
|
|
2332
2293
|
@property
|
|
2333
2294
|
@pulumi.getter(name="rebootRequired")
|
|
2334
2295
|
def reboot_required(self) -> Optional[pulumi.Input[bool]]:
|
|
2335
|
-
"""
|
|
2336
|
-
Value internal to Terraform used to determine if a configuration set change requires a reboot.
|
|
2337
|
-
"""
|
|
2338
2296
|
return pulumi.get(self, "reboot_required")
|
|
2339
2297
|
|
|
2340
2298
|
@reboot_required.setter
|
|
@@ -2428,11 +2386,6 @@ class _VirtualMachineState:
|
|
|
2428
2386
|
@property
|
|
2429
2387
|
@pulumi.getter(name="sataControllerCount")
|
|
2430
2388
|
def sata_controller_count(self) -> Optional[pulumi.Input[int]]:
|
|
2431
|
-
"""
|
|
2432
|
-
The number of SATA controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
2433
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
2434
|
-
controllers.
|
|
2435
|
-
"""
|
|
2436
2389
|
return pulumi.get(self, "sata_controller_count")
|
|
2437
2390
|
|
|
2438
2391
|
@sata_controller_count.setter
|
|
@@ -2454,11 +2407,6 @@ class _VirtualMachineState:
|
|
|
2454
2407
|
@property
|
|
2455
2408
|
@pulumi.getter(name="scsiControllerCount")
|
|
2456
2409
|
def scsi_controller_count(self) -> Optional[pulumi.Input[int]]:
|
|
2457
|
-
"""
|
|
2458
|
-
The number of SCSI controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
2459
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
2460
|
-
controllers.
|
|
2461
|
-
"""
|
|
2462
2410
|
return pulumi.get(self, "scsi_controller_count")
|
|
2463
2411
|
|
|
2464
2412
|
@scsi_controller_count.setter
|
|
@@ -2808,9 +2756,6 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2808
2756
|
:param pulumi.Input[int] hardware_version: The hardware version for the virtual machine.
|
|
2809
2757
|
:param pulumi.Input[str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
2810
2758
|
:param pulumi.Input[str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
2811
|
-
:param pulumi.Input[int] ide_controller_count: The number of IDE controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
2812
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
2813
|
-
controllers.
|
|
2814
2759
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
2815
2760
|
:param pulumi.Input[str] latency_sensitivity: Controls the scheduling delay of the virtual machine. Use a higher sensitivity for applications that require lower
|
|
2816
2761
|
latency, such as VOIP, media player applications, or applications that require frequent access to mouse or keyboard
|
|
@@ -2842,13 +2787,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2842
2787
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_reboot: Enable the run of scripts before guest operating system reboot when VMware Tools is installed.
|
|
2843
2788
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_shutdown: Enable the run of scripts before guest operating system shutdown when VMware Tools is installed.
|
|
2844
2789
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_standby: Enable the run of scripts before guest operating system standby when VMware Tools is installed.
|
|
2845
|
-
:param pulumi.Input[int] sata_controller_count: The number of SATA controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
2846
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
2847
|
-
controllers.
|
|
2848
2790
|
:param pulumi.Input[str] scsi_bus_sharing: Mode for sharing the SCSI bus. The modes are physicalSharing, virtualSharing, and noSharing.
|
|
2849
|
-
:param pulumi.Input[int] scsi_controller_count: The number of SCSI controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
2850
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
2851
|
-
controllers.
|
|
2852
2791
|
:param pulumi.Input[str] scsi_type: The type of SCSI bus this virtual machine will have. Can be one of lsilogic, lsilogic-sas or pvscsi.
|
|
2853
2792
|
:param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for shutdown when making necessary updates to the virtual machine.
|
|
2854
2793
|
:param pulumi.Input[str] storage_policy_id: The ID of the storage policy to assign to the virtual machine home directory.
|
|
@@ -3206,9 +3145,6 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3206
3145
|
:param pulumi.Input[int] hardware_version: The hardware version for the virtual machine.
|
|
3207
3146
|
:param pulumi.Input[str] host_system_id: The ID of an optional host system to pin the virtual machine to.
|
|
3208
3147
|
:param pulumi.Input[str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
3209
|
-
:param pulumi.Input[int] ide_controller_count: The number of IDE controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
3210
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
3211
|
-
controllers.
|
|
3212
3148
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_guest_ips: List of IP addresses and CIDR networks to ignore while waiting for an IP
|
|
3213
3149
|
:param pulumi.Input[bool] imported: Indicates if the virtual machine resource has been imported, or if the state has been migrated from a previous version of the resource. It influences the behavior of the first post-import apply operation. See the section on importing below.
|
|
3214
3150
|
:param pulumi.Input[str] latency_sensitivity: Controls the scheduling delay of the virtual machine. Use a higher sensitivity for applications that require lower
|
|
@@ -3236,7 +3172,6 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3236
3172
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pci_device_ids: A list of PCI passthrough devices
|
|
3237
3173
|
:param pulumi.Input[str] power_state: A computed value for the current power state of the virtual machine. One of `on`, `off`, or `suspended`.
|
|
3238
3174
|
:param pulumi.Input[int] poweron_timeout: The amount of time, in seconds, that we will be trying to power on a VM
|
|
3239
|
-
:param pulumi.Input[bool] reboot_required: Value internal to Terraform used to determine if a configuration set change requires a reboot.
|
|
3240
3175
|
:param pulumi.Input[str] replace_trigger: Triggers replacement of resource whenever it changes.
|
|
3241
3176
|
:param pulumi.Input[str] resource_pool_id: The ID of a resource pool to put the virtual machine in.
|
|
3242
3177
|
:param pulumi.Input[bool] run_tools_scripts_after_power_on: Enable the run of scripts after virtual machine power-on when VMware Tools is installed.
|
|
@@ -3244,13 +3179,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3244
3179
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_reboot: Enable the run of scripts before guest operating system reboot when VMware Tools is installed.
|
|
3245
3180
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_shutdown: Enable the run of scripts before guest operating system shutdown when VMware Tools is installed.
|
|
3246
3181
|
:param pulumi.Input[bool] run_tools_scripts_before_guest_standby: Enable the run of scripts before guest operating system standby when VMware Tools is installed.
|
|
3247
|
-
:param pulumi.Input[int] sata_controller_count: The number of SATA controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
3248
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
3249
|
-
controllers.
|
|
3250
3182
|
:param pulumi.Input[str] scsi_bus_sharing: Mode for sharing the SCSI bus. The modes are physicalSharing, virtualSharing, and noSharing.
|
|
3251
|
-
:param pulumi.Input[int] scsi_controller_count: The number of SCSI controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
3252
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
3253
|
-
controllers.
|
|
3254
3183
|
:param pulumi.Input[str] scsi_type: The type of SCSI bus this virtual machine will have. Can be one of lsilogic, lsilogic-sas or pvscsi.
|
|
3255
3184
|
:param pulumi.Input[int] shutdown_wait_timeout: The amount of time, in minutes, to wait for shutdown when making necessary updates to the virtual machine.
|
|
3256
3185
|
:param pulumi.Input[str] storage_policy_id: The ID of the storage policy to assign to the virtual machine home directory.
|
|
@@ -3654,11 +3583,6 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3654
3583
|
@property
|
|
3655
3584
|
@pulumi.getter(name="ideControllerCount")
|
|
3656
3585
|
def ide_controller_count(self) -> pulumi.Output[Optional[int]]:
|
|
3657
|
-
"""
|
|
3658
|
-
The number of IDE controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
3659
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
3660
|
-
controllers.
|
|
3661
|
-
"""
|
|
3662
3586
|
return pulumi.get(self, "ide_controller_count")
|
|
3663
3587
|
|
|
3664
3588
|
@property
|
|
@@ -3838,9 +3762,6 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3838
3762
|
@property
|
|
3839
3763
|
@pulumi.getter(name="rebootRequired")
|
|
3840
3764
|
def reboot_required(self) -> pulumi.Output[bool]:
|
|
3841
|
-
"""
|
|
3842
|
-
Value internal to Terraform used to determine if a configuration set change requires a reboot.
|
|
3843
|
-
"""
|
|
3844
3765
|
return pulumi.get(self, "reboot_required")
|
|
3845
3766
|
|
|
3846
3767
|
@property
|
|
@@ -3902,11 +3823,6 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3902
3823
|
@property
|
|
3903
3824
|
@pulumi.getter(name="sataControllerCount")
|
|
3904
3825
|
def sata_controller_count(self) -> pulumi.Output[Optional[int]]:
|
|
3905
|
-
"""
|
|
3906
|
-
The number of SATA controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
3907
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
3908
|
-
controllers.
|
|
3909
|
-
"""
|
|
3910
3826
|
return pulumi.get(self, "sata_controller_count")
|
|
3911
3827
|
|
|
3912
3828
|
@property
|
|
@@ -3920,11 +3836,6 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3920
3836
|
@property
|
|
3921
3837
|
@pulumi.getter(name="scsiControllerCount")
|
|
3922
3838
|
def scsi_controller_count(self) -> pulumi.Output[Optional[int]]:
|
|
3923
|
-
"""
|
|
3924
|
-
The number of SCSI controllers that Terraform manages on this virtual machine. This directly affects the amount of disks
|
|
3925
|
-
you can add to the virtual machine and the maximum disk unit number. Note that lowering this value does not remove
|
|
3926
|
-
controllers.
|
|
3927
|
-
"""
|
|
3928
3839
|
return pulumi.get(self, "scsi_controller_count")
|
|
3929
3840
|
|
|
3930
3841
|
@property
|
{pulumi_vsphere-4.11.0a1715064046.dist-info → pulumi_vsphere-4.11.0a1715307640.dist-info}/RECORD
RENAMED
|
@@ -68,7 +68,7 @@ pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ
|
|
|
68
68
|
pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
|
|
69
69
|
pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
|
|
70
70
|
pulumi_vsphere/virtual_disk.py,sha256=wFycNUG7WdYogDgWDRc5zP1u9n2afPtQOUiX_987ito,28633
|
|
71
|
-
pulumi_vsphere/virtual_machine.py,sha256=
|
|
71
|
+
pulumi_vsphere/virtual_machine.py,sha256=it5F-ML0tRVEsXti0MNLi6eqoUvSYlNVot1tt23IA2U,214932
|
|
72
72
|
pulumi_vsphere/virtual_machine_snapshot.py,sha256=znCP8B7dt2lvsEa7nTzzqACttXjQNKWNjxCZGjThYNs,23926
|
|
73
73
|
pulumi_vsphere/vm_storage_policy.py,sha256=IgoanyDCih8ALdG-wdewI9KvrYfSiew1Z7Xhb3SSqwA,20198
|
|
74
74
|
pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
|
|
@@ -76,7 +76,7 @@ pulumi_vsphere/vnic.py,sha256=uaj0DqvKOflKM4Sb_W6F3TCp1uikL8WhGxWCu4907aw,30503
|
|
|
76
76
|
pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
77
77
|
pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
|
|
78
78
|
pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
|
|
79
|
-
pulumi_vsphere-4.11.
|
|
80
|
-
pulumi_vsphere-4.11.
|
|
81
|
-
pulumi_vsphere-4.11.
|
|
82
|
-
pulumi_vsphere-4.11.
|
|
79
|
+
pulumi_vsphere-4.11.0a1715307640.dist-info/METADATA,sha256=tfTli9n3aaWahtMny4pBOhIZub3gVpdASW4HzQ58VIk,4958
|
|
80
|
+
pulumi_vsphere-4.11.0a1715307640.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
81
|
+
pulumi_vsphere-4.11.0a1715307640.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
82
|
+
pulumi_vsphere-4.11.0a1715307640.dist-info/RECORD,,
|
{pulumi_vsphere-4.11.0a1715064046.dist-info → pulumi_vsphere-4.11.0a1715307640.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|