pulumi-vsphere 4.10.3a1723624830__py3-none-any.whl → 4.11.0a1__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 +6 -12
- pulumi_vsphere/_utilities.py +4 -40
- pulumi_vsphere/compute_cluster.py +20 -20
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +18 -14
- pulumi_vsphere/content_library.py +10 -10
- pulumi_vsphere/datacenter.py +28 -7
- pulumi_vsphere/datastore_cluster.py +14 -0
- pulumi_vsphere/distributed_port_group.py +12 -61
- pulumi_vsphere/distributed_virtual_switch.py +43 -22
- pulumi_vsphere/entity_permissions.py +38 -59
- pulumi_vsphere/folder.py +21 -0
- pulumi_vsphere/get_compute_cluster_host_group.py +16 -18
- pulumi_vsphere/get_content_library.py +6 -10
- pulumi_vsphere/get_content_library_item.py +8 -12
- pulumi_vsphere/get_datastore.py +9 -9
- pulumi_vsphere/get_datastore_stats.py +32 -34
- pulumi_vsphere/get_dynamic.py +12 -14
- pulumi_vsphere/get_guest_os_customization.py +43 -8
- pulumi_vsphere/get_host_base_images.py +6 -6
- pulumi_vsphere/get_host_pci_device.py +2 -4
- pulumi_vsphere/get_host_thumbprint.py +12 -12
- pulumi_vsphere/get_host_vgpu_profile.py +2 -4
- pulumi_vsphere/get_license.py +1 -2
- pulumi_vsphere/get_network.py +14 -14
- pulumi_vsphere/get_resource_pool.py +8 -12
- pulumi_vsphere/get_role.py +4 -4
- pulumi_vsphere/get_virtual_machine.py +35 -60
- pulumi_vsphere/guest_os_customization.py +31 -31
- pulumi_vsphere/host_port_group.py +2 -2
- pulumi_vsphere/nas_datastore.py +7 -7
- pulumi_vsphere/offline_software_depot.py +2 -2
- pulumi_vsphere/outputs.py +40 -48
- pulumi_vsphere/provider.py +6 -2
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/resource_pool.py +2 -2
- pulumi_vsphere/supervisor.py +30 -134
- pulumi_vsphere/virtual_disk.py +30 -38
- pulumi_vsphere/virtual_machine.py +32 -32
- pulumi_vsphere/virtual_machine_class.py +0 -2
- pulumi_vsphere/virtual_machine_snapshot.py +2 -2
- pulumi_vsphere/vm_storage_policy.py +67 -67
- pulumi_vsphere/vnic.py +93 -89
- {pulumi_vsphere-4.10.3a1723624830.dist-info → pulumi_vsphere-4.11.0a1.dist-info}/METADATA +1 -1
- pulumi_vsphere-4.11.0a1.dist-info/RECORD +86 -0
- {pulumi_vsphere-4.10.3a1723624830.dist-info → pulumi_vsphere-4.11.0a1.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.10.3a1723624830.dist-info/RECORD +0 -86
- {pulumi_vsphere-4.10.3a1723624830.dist-info → pulumi_vsphere-4.11.0a1.dist-info}/top_level.txt +0 -0
pulumi_vsphere/virtual_disk.py
CHANGED
|
@@ -25,9 +25,7 @@ class VirtualDiskArgs:
|
|
|
25
25
|
The set of arguments for constructing a VirtualDisk resource.
|
|
26
26
|
:param pulumi.Input[str] datastore: The name of the datastore in which to create the
|
|
27
27
|
disk.
|
|
28
|
-
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
29
|
-
If a disk of a smaller size is required then the original has to be destroyed along with its data and a new one has to be
|
|
30
|
-
created.
|
|
28
|
+
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
31
29
|
:param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
|
|
32
30
|
be created. This needs to end in `.vmdk`.
|
|
33
31
|
:param pulumi.Input[str] adapter_type: The adapter type for this virtual disk. Can be
|
|
@@ -47,14 +45,14 @@ class VirtualDiskArgs:
|
|
|
47
45
|
`create_directories` is enabled will not be deleted when the resource is
|
|
48
46
|
destroyed.
|
|
49
47
|
:param pulumi.Input[str] datacenter: The name of the datacenter in which to create the
|
|
50
|
-
disk. Can be omitted when ESXi or if there is only one datacenter in
|
|
48
|
+
disk. Can be omitted when when ESXi or if there is only one datacenter in
|
|
51
49
|
your infrastructure.
|
|
52
50
|
:param pulumi.Input[str] type: The type of disk to create. Can be one of
|
|
53
51
|
`eagerZeroedThick`, `lazy`, or `thin`. Default: `eagerZeroedThick`. For
|
|
54
52
|
information on what each kind of disk provisioning policy means, click
|
|
55
53
|
[here][docs-vmware-vm-disk-provisioning].
|
|
56
54
|
|
|
57
|
-
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/
|
|
55
|
+
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
|
|
58
56
|
"""
|
|
59
57
|
pulumi.set(__self__, "datastore", datastore)
|
|
60
58
|
pulumi.set(__self__, "size", size)
|
|
@@ -88,9 +86,7 @@ class VirtualDiskArgs:
|
|
|
88
86
|
@pulumi.getter
|
|
89
87
|
def size(self) -> pulumi.Input[int]:
|
|
90
88
|
"""
|
|
91
|
-
Size of the disk (in GB).
|
|
92
|
-
If a disk of a smaller size is required then the original has to be destroyed along with its data and a new one has to be
|
|
93
|
-
created.
|
|
89
|
+
Size of the disk (in GB).
|
|
94
90
|
"""
|
|
95
91
|
return pulumi.get(self, "size")
|
|
96
92
|
|
|
@@ -113,7 +109,6 @@ class VirtualDiskArgs:
|
|
|
113
109
|
|
|
114
110
|
@property
|
|
115
111
|
@pulumi.getter(name="adapterType")
|
|
116
|
-
@_utilities.deprecated("""this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""")
|
|
117
112
|
def adapter_type(self) -> Optional[pulumi.Input[str]]:
|
|
118
113
|
"""
|
|
119
114
|
The adapter type for this virtual disk. Can be
|
|
@@ -126,6 +121,9 @@ class VirtualDiskArgs:
|
|
|
126
121
|
disk controller types. This parameter will be removed in future versions of the
|
|
127
122
|
vSphere provider.
|
|
128
123
|
"""
|
|
124
|
+
warnings.warn("""this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""", DeprecationWarning)
|
|
125
|
+
pulumi.log.warn("""adapter_type is deprecated: this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""")
|
|
126
|
+
|
|
129
127
|
return pulumi.get(self, "adapter_type")
|
|
130
128
|
|
|
131
129
|
@adapter_type.setter
|
|
@@ -155,7 +153,7 @@ class VirtualDiskArgs:
|
|
|
155
153
|
def datacenter(self) -> Optional[pulumi.Input[str]]:
|
|
156
154
|
"""
|
|
157
155
|
The name of the datacenter in which to create the
|
|
158
|
-
disk. Can be omitted when ESXi or if there is only one datacenter in
|
|
156
|
+
disk. Can be omitted when when ESXi or if there is only one datacenter in
|
|
159
157
|
your infrastructure.
|
|
160
158
|
"""
|
|
161
159
|
return pulumi.get(self, "datacenter")
|
|
@@ -173,7 +171,7 @@ class VirtualDiskArgs:
|
|
|
173
171
|
information on what each kind of disk provisioning policy means, click
|
|
174
172
|
[here][docs-vmware-vm-disk-provisioning].
|
|
175
173
|
|
|
176
|
-
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/
|
|
174
|
+
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
|
|
177
175
|
"""
|
|
178
176
|
return pulumi.get(self, "type")
|
|
179
177
|
|
|
@@ -211,19 +209,17 @@ class _VirtualDiskState:
|
|
|
211
209
|
`create_directories` is enabled will not be deleted when the resource is
|
|
212
210
|
destroyed.
|
|
213
211
|
:param pulumi.Input[str] datacenter: The name of the datacenter in which to create the
|
|
214
|
-
disk. Can be omitted when ESXi or if there is only one datacenter in
|
|
212
|
+
disk. Can be omitted when when ESXi or if there is only one datacenter in
|
|
215
213
|
your infrastructure.
|
|
216
214
|
:param pulumi.Input[str] datastore: The name of the datastore in which to create the
|
|
217
215
|
disk.
|
|
218
|
-
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
219
|
-
If a disk of a smaller size is required then the original has to be destroyed along with its data and a new one has to be
|
|
220
|
-
created.
|
|
216
|
+
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
221
217
|
:param pulumi.Input[str] type: The type of disk to create. Can be one of
|
|
222
218
|
`eagerZeroedThick`, `lazy`, or `thin`. Default: `eagerZeroedThick`. For
|
|
223
219
|
information on what each kind of disk provisioning policy means, click
|
|
224
220
|
[here][docs-vmware-vm-disk-provisioning].
|
|
225
221
|
|
|
226
|
-
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/
|
|
222
|
+
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
|
|
227
223
|
:param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
|
|
228
224
|
be created. This needs to end in `.vmdk`.
|
|
229
225
|
"""
|
|
@@ -247,7 +243,6 @@ class _VirtualDiskState:
|
|
|
247
243
|
|
|
248
244
|
@property
|
|
249
245
|
@pulumi.getter(name="adapterType")
|
|
250
|
-
@_utilities.deprecated("""this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""")
|
|
251
246
|
def adapter_type(self) -> Optional[pulumi.Input[str]]:
|
|
252
247
|
"""
|
|
253
248
|
The adapter type for this virtual disk. Can be
|
|
@@ -260,6 +255,9 @@ class _VirtualDiskState:
|
|
|
260
255
|
disk controller types. This parameter will be removed in future versions of the
|
|
261
256
|
vSphere provider.
|
|
262
257
|
"""
|
|
258
|
+
warnings.warn("""this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""", DeprecationWarning)
|
|
259
|
+
pulumi.log.warn("""adapter_type is deprecated: this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""")
|
|
260
|
+
|
|
263
261
|
return pulumi.get(self, "adapter_type")
|
|
264
262
|
|
|
265
263
|
@adapter_type.setter
|
|
@@ -289,7 +287,7 @@ class _VirtualDiskState:
|
|
|
289
287
|
def datacenter(self) -> Optional[pulumi.Input[str]]:
|
|
290
288
|
"""
|
|
291
289
|
The name of the datacenter in which to create the
|
|
292
|
-
disk. Can be omitted when ESXi or if there is only one datacenter in
|
|
290
|
+
disk. Can be omitted when when ESXi or if there is only one datacenter in
|
|
293
291
|
your infrastructure.
|
|
294
292
|
"""
|
|
295
293
|
return pulumi.get(self, "datacenter")
|
|
@@ -315,9 +313,7 @@ class _VirtualDiskState:
|
|
|
315
313
|
@pulumi.getter
|
|
316
314
|
def size(self) -> Optional[pulumi.Input[int]]:
|
|
317
315
|
"""
|
|
318
|
-
Size of the disk (in GB).
|
|
319
|
-
If a disk of a smaller size is required then the original has to be destroyed along with its data and a new one has to be
|
|
320
|
-
created.
|
|
316
|
+
Size of the disk (in GB).
|
|
321
317
|
"""
|
|
322
318
|
return pulumi.get(self, "size")
|
|
323
319
|
|
|
@@ -334,7 +330,7 @@ class _VirtualDiskState:
|
|
|
334
330
|
information on what each kind of disk provisioning policy means, click
|
|
335
331
|
[here][docs-vmware-vm-disk-provisioning].
|
|
336
332
|
|
|
337
|
-
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/
|
|
333
|
+
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
|
|
338
334
|
"""
|
|
339
335
|
return pulumi.get(self, "type")
|
|
340
336
|
|
|
@@ -390,19 +386,17 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
390
386
|
`create_directories` is enabled will not be deleted when the resource is
|
|
391
387
|
destroyed.
|
|
392
388
|
:param pulumi.Input[str] datacenter: The name of the datacenter in which to create the
|
|
393
|
-
disk. Can be omitted when ESXi or if there is only one datacenter in
|
|
389
|
+
disk. Can be omitted when when ESXi or if there is only one datacenter in
|
|
394
390
|
your infrastructure.
|
|
395
391
|
:param pulumi.Input[str] datastore: The name of the datastore in which to create the
|
|
396
392
|
disk.
|
|
397
|
-
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
398
|
-
If a disk of a smaller size is required then the original has to be destroyed along with its data and a new one has to be
|
|
399
|
-
created.
|
|
393
|
+
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
400
394
|
:param pulumi.Input[str] type: The type of disk to create. Can be one of
|
|
401
395
|
`eagerZeroedThick`, `lazy`, or `thin`. Default: `eagerZeroedThick`. For
|
|
402
396
|
information on what each kind of disk provisioning policy means, click
|
|
403
397
|
[here][docs-vmware-vm-disk-provisioning].
|
|
404
398
|
|
|
405
|
-
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/
|
|
399
|
+
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
|
|
406
400
|
:param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
|
|
407
401
|
be created. This needs to end in `.vmdk`.
|
|
408
402
|
"""
|
|
@@ -499,19 +493,17 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
499
493
|
`create_directories` is enabled will not be deleted when the resource is
|
|
500
494
|
destroyed.
|
|
501
495
|
:param pulumi.Input[str] datacenter: The name of the datacenter in which to create the
|
|
502
|
-
disk. Can be omitted when ESXi or if there is only one datacenter in
|
|
496
|
+
disk. Can be omitted when when ESXi or if there is only one datacenter in
|
|
503
497
|
your infrastructure.
|
|
504
498
|
:param pulumi.Input[str] datastore: The name of the datastore in which to create the
|
|
505
499
|
disk.
|
|
506
|
-
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
507
|
-
If a disk of a smaller size is required then the original has to be destroyed along with its data and a new one has to be
|
|
508
|
-
created.
|
|
500
|
+
:param pulumi.Input[int] size: Size of the disk (in GB).
|
|
509
501
|
:param pulumi.Input[str] type: The type of disk to create. Can be one of
|
|
510
502
|
`eagerZeroedThick`, `lazy`, or `thin`. Default: `eagerZeroedThick`. For
|
|
511
503
|
information on what each kind of disk provisioning policy means, click
|
|
512
504
|
[here][docs-vmware-vm-disk-provisioning].
|
|
513
505
|
|
|
514
|
-
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/
|
|
506
|
+
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
|
|
515
507
|
:param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
|
|
516
508
|
be created. This needs to end in `.vmdk`.
|
|
517
509
|
"""
|
|
@@ -530,7 +522,6 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
530
522
|
|
|
531
523
|
@property
|
|
532
524
|
@pulumi.getter(name="adapterType")
|
|
533
|
-
@_utilities.deprecated("""this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""")
|
|
534
525
|
def adapter_type(self) -> pulumi.Output[Optional[str]]:
|
|
535
526
|
"""
|
|
536
527
|
The adapter type for this virtual disk. Can be
|
|
@@ -543,6 +534,9 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
543
534
|
disk controller types. This parameter will be removed in future versions of the
|
|
544
535
|
vSphere provider.
|
|
545
536
|
"""
|
|
537
|
+
warnings.warn("""this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""", DeprecationWarning)
|
|
538
|
+
pulumi.log.warn("""adapter_type is deprecated: this attribute has no effect on controller types - please use scsi_type in VirtualMachine instead""")
|
|
539
|
+
|
|
546
540
|
return pulumi.get(self, "adapter_type")
|
|
547
541
|
|
|
548
542
|
@property
|
|
@@ -564,7 +558,7 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
564
558
|
def datacenter(self) -> pulumi.Output[Optional[str]]:
|
|
565
559
|
"""
|
|
566
560
|
The name of the datacenter in which to create the
|
|
567
|
-
disk. Can be omitted when ESXi or if there is only one datacenter in
|
|
561
|
+
disk. Can be omitted when when ESXi or if there is only one datacenter in
|
|
568
562
|
your infrastructure.
|
|
569
563
|
"""
|
|
570
564
|
return pulumi.get(self, "datacenter")
|
|
@@ -582,9 +576,7 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
582
576
|
@pulumi.getter
|
|
583
577
|
def size(self) -> pulumi.Output[int]:
|
|
584
578
|
"""
|
|
585
|
-
Size of the disk (in GB).
|
|
586
|
-
If a disk of a smaller size is required then the original has to be destroyed along with its data and a new one has to be
|
|
587
|
-
created.
|
|
579
|
+
Size of the disk (in GB).
|
|
588
580
|
"""
|
|
589
581
|
return pulumi.get(self, "size")
|
|
590
582
|
|
|
@@ -597,7 +589,7 @@ class VirtualDisk(pulumi.CustomResource):
|
|
|
597
589
|
information on what each kind of disk provisioning policy means, click
|
|
598
590
|
[here][docs-vmware-vm-disk-provisioning].
|
|
599
591
|
|
|
600
|
-
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/
|
|
592
|
+
[docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
|
|
601
593
|
"""
|
|
602
594
|
return pulumi.get(self, "type")
|
|
603
595
|
|
|
@@ -2646,8 +2646,8 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2646
2646
|
boot_delay: Optional[pulumi.Input[int]] = None,
|
|
2647
2647
|
boot_retry_delay: Optional[pulumi.Input[int]] = None,
|
|
2648
2648
|
boot_retry_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2649
|
-
cdroms: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
2650
|
-
clone: Optional[pulumi.Input[
|
|
2649
|
+
cdroms: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineCdromArgs']]]]] = None,
|
|
2650
|
+
clone: Optional[pulumi.Input[pulumi.InputType['VirtualMachineCloneArgs']]] = None,
|
|
2651
2651
|
cpu_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2652
2652
|
cpu_hot_remove_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2653
2653
|
cpu_limit: Optional[pulumi.Input[int]] = None,
|
|
@@ -2659,7 +2659,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2659
2659
|
datacenter_id: Optional[pulumi.Input[str]] = None,
|
|
2660
2660
|
datastore_cluster_id: Optional[pulumi.Input[str]] = None,
|
|
2661
2661
|
datastore_id: Optional[pulumi.Input[str]] = None,
|
|
2662
|
-
disks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
2662
|
+
disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineDiskArgs']]]]] = None,
|
|
2663
2663
|
efi_secure_boot_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2664
2664
|
enable_disk_uuid: Optional[pulumi.Input[bool]] = None,
|
|
2665
2665
|
enable_logging: Optional[pulumi.Input[bool]] = None,
|
|
@@ -2686,10 +2686,10 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2686
2686
|
migrate_wait_timeout: Optional[pulumi.Input[int]] = None,
|
|
2687
2687
|
name: Optional[pulumi.Input[str]] = None,
|
|
2688
2688
|
nested_hv_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2689
|
-
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
2689
|
+
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineNetworkInterfaceArgs']]]]] = None,
|
|
2690
2690
|
num_cores_per_socket: Optional[pulumi.Input[int]] = None,
|
|
2691
2691
|
num_cpus: Optional[pulumi.Input[int]] = None,
|
|
2692
|
-
ovf_deploy: Optional[pulumi.Input[
|
|
2692
|
+
ovf_deploy: Optional[pulumi.Input[pulumi.InputType['VirtualMachineOvfDeployArgs']]] = None,
|
|
2693
2693
|
pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
2694
2694
|
poweron_timeout: Optional[pulumi.Input[int]] = None,
|
|
2695
2695
|
replace_trigger: Optional[pulumi.Input[str]] = None,
|
|
@@ -2710,7 +2710,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2710
2710
|
sync_time_with_host_periodically: Optional[pulumi.Input[bool]] = None,
|
|
2711
2711
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
2712
2712
|
tools_upgrade_policy: Optional[pulumi.Input[str]] = None,
|
|
2713
|
-
vapp: Optional[pulumi.Input[
|
|
2713
|
+
vapp: Optional[pulumi.Input[pulumi.InputType['VirtualMachineVappArgs']]] = None,
|
|
2714
2714
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2715
2715
|
vvtd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2716
2716
|
wait_for_guest_ip_timeout: Optional[pulumi.Input[int]] = None,
|
|
@@ -2726,8 +2726,8 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2726
2726
|
:param pulumi.Input[int] boot_delay: The number of milliseconds to wait before starting the boot sequence.
|
|
2727
2727
|
:param pulumi.Input[int] boot_retry_delay: The number of milliseconds to wait before retrying the boot sequence. This only valid if boot_retry_enabled is true.
|
|
2728
2728
|
:param pulumi.Input[bool] boot_retry_enabled: If set to true, a virtual machine that fails to boot will try again after the delay defined in boot_retry_delay.
|
|
2729
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
2730
|
-
:param pulumi.Input[
|
|
2729
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineCdromArgs']]]] cdroms: A specification for a CDROM device on this virtual machine.
|
|
2730
|
+
:param pulumi.Input[pulumi.InputType['VirtualMachineCloneArgs']] clone: A specification for cloning a virtual machine from template.
|
|
2731
2731
|
:param pulumi.Input[bool] cpu_hot_add_enabled: Allow CPUs to be added to this virtual machine while it is running.
|
|
2732
2732
|
:param pulumi.Input[bool] cpu_hot_remove_enabled: Allow CPUs to be added to this virtual machine while it is running.
|
|
2733
2733
|
:param pulumi.Input[int] cpu_limit: The maximum amount of memory (in MB) or CPU (in MHz) that this virtual machine can consume, regardless of available
|
|
@@ -2741,7 +2741,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2741
2741
|
:param pulumi.Input[str] datastore_cluster_id: The ID of a datastore cluster to put the virtual machine in.
|
|
2742
2742
|
:param pulumi.Input[str] datastore_id: The ID of the virtual machine's datastore. The virtual machine configuration is placed here, along with any virtual
|
|
2743
2743
|
disks that are created without datastores.
|
|
2744
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
2744
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineDiskArgs']]]] disks: A specification for a virtual disk device on this virtual machine.
|
|
2745
2745
|
:param pulumi.Input[bool] efi_secure_boot_enabled: When the boot type set in firmware is efi, this enables EFI secure boot.
|
|
2746
2746
|
:param pulumi.Input[bool] enable_disk_uuid: Expose the UUIDs of attached virtual disks to the virtual machine, allowing access to them in the guest.
|
|
2747
2747
|
:param pulumi.Input[bool] enable_logging: Enable logging on this virtual machine.
|
|
@@ -2773,11 +2773,11 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2773
2773
|
:param pulumi.Input[int] migrate_wait_timeout: The amount of time, in minutes, to wait for a vMotion operation to complete before failing.
|
|
2774
2774
|
:param pulumi.Input[str] name: The name of this virtual machine.
|
|
2775
2775
|
:param pulumi.Input[bool] nested_hv_enabled: Enable nested hardware virtualization on this virtual machine, facilitating nested virtualization in the guest.
|
|
2776
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
2776
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineNetworkInterfaceArgs']]]] network_interfaces: A specification for a virtual NIC on this virtual machine.
|
|
2777
2777
|
:param pulumi.Input[int] num_cores_per_socket: The number of cores to distribute amongst the CPUs in this virtual machine. If specified, the value supplied to num_cpus
|
|
2778
2778
|
must be evenly divisible by this value.
|
|
2779
2779
|
:param pulumi.Input[int] num_cpus: The number of virtual processors to assign to this virtual machine.
|
|
2780
|
-
:param pulumi.Input[
|
|
2780
|
+
:param pulumi.Input[pulumi.InputType['VirtualMachineOvfDeployArgs']] ovf_deploy: A specification for deploying a virtual machine from ovf/ova template.
|
|
2781
2781
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pci_device_ids: A list of PCI passthrough devices
|
|
2782
2782
|
:param pulumi.Input[int] poweron_timeout: The amount of time, in seconds, that we will be trying to power on a VM
|
|
2783
2783
|
:param pulumi.Input[str] replace_trigger: Triggers replacement of resource whenever it changes.
|
|
@@ -2798,7 +2798,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2798
2798
|
setting `sync_time_with_host` is enough for periodic synchronization. Requires VMware Tools to be installed.
|
|
2799
2799
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag IDs to apply to this object.
|
|
2800
2800
|
:param pulumi.Input[str] tools_upgrade_policy: Set the upgrade policy for VMware Tools. Can be one of `manual` or `upgradeAtPowerCycle`.
|
|
2801
|
-
:param pulumi.Input[
|
|
2801
|
+
:param pulumi.Input[pulumi.InputType['VirtualMachineVappArgs']] vapp: vApp configuration data for this virtual machine. Can be used to provide configuration data for OVF images.
|
|
2802
2802
|
:param pulumi.Input[bool] vbs_enabled: Flag to specify if Virtualization-based security is enabled for this virtual machine.
|
|
2803
2803
|
: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
|
|
2804
2804
|
I/O Virtualization (AMD-Vi or IOMMU), is enabled.
|
|
@@ -2837,8 +2837,8 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2837
2837
|
boot_delay: Optional[pulumi.Input[int]] = None,
|
|
2838
2838
|
boot_retry_delay: Optional[pulumi.Input[int]] = None,
|
|
2839
2839
|
boot_retry_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2840
|
-
cdroms: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
2841
|
-
clone: Optional[pulumi.Input[
|
|
2840
|
+
cdroms: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineCdromArgs']]]]] = None,
|
|
2841
|
+
clone: Optional[pulumi.Input[pulumi.InputType['VirtualMachineCloneArgs']]] = None,
|
|
2842
2842
|
cpu_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2843
2843
|
cpu_hot_remove_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2844
2844
|
cpu_limit: Optional[pulumi.Input[int]] = None,
|
|
@@ -2850,7 +2850,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2850
2850
|
datacenter_id: Optional[pulumi.Input[str]] = None,
|
|
2851
2851
|
datastore_cluster_id: Optional[pulumi.Input[str]] = None,
|
|
2852
2852
|
datastore_id: Optional[pulumi.Input[str]] = None,
|
|
2853
|
-
disks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
2853
|
+
disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineDiskArgs']]]]] = None,
|
|
2854
2854
|
efi_secure_boot_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2855
2855
|
enable_disk_uuid: Optional[pulumi.Input[bool]] = None,
|
|
2856
2856
|
enable_logging: Optional[pulumi.Input[bool]] = None,
|
|
@@ -2877,10 +2877,10 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2877
2877
|
migrate_wait_timeout: Optional[pulumi.Input[int]] = None,
|
|
2878
2878
|
name: Optional[pulumi.Input[str]] = None,
|
|
2879
2879
|
nested_hv_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2880
|
-
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
2880
|
+
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineNetworkInterfaceArgs']]]]] = None,
|
|
2881
2881
|
num_cores_per_socket: Optional[pulumi.Input[int]] = None,
|
|
2882
2882
|
num_cpus: Optional[pulumi.Input[int]] = None,
|
|
2883
|
-
ovf_deploy: Optional[pulumi.Input[
|
|
2883
|
+
ovf_deploy: Optional[pulumi.Input[pulumi.InputType['VirtualMachineOvfDeployArgs']]] = None,
|
|
2884
2884
|
pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
2885
2885
|
poweron_timeout: Optional[pulumi.Input[int]] = None,
|
|
2886
2886
|
replace_trigger: Optional[pulumi.Input[str]] = None,
|
|
@@ -2901,7 +2901,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
2901
2901
|
sync_time_with_host_periodically: Optional[pulumi.Input[bool]] = None,
|
|
2902
2902
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
2903
2903
|
tools_upgrade_policy: Optional[pulumi.Input[str]] = None,
|
|
2904
|
-
vapp: Optional[pulumi.Input[
|
|
2904
|
+
vapp: Optional[pulumi.Input[pulumi.InputType['VirtualMachineVappArgs']]] = None,
|
|
2905
2905
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2906
2906
|
vvtd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2907
2907
|
wait_for_guest_ip_timeout: Optional[pulumi.Input[int]] = None,
|
|
@@ -3019,9 +3019,9 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3019
3019
|
boot_delay: Optional[pulumi.Input[int]] = None,
|
|
3020
3020
|
boot_retry_delay: Optional[pulumi.Input[int]] = None,
|
|
3021
3021
|
boot_retry_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3022
|
-
cdroms: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
3022
|
+
cdroms: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineCdromArgs']]]]] = None,
|
|
3023
3023
|
change_version: Optional[pulumi.Input[str]] = None,
|
|
3024
|
-
clone: Optional[pulumi.Input[
|
|
3024
|
+
clone: Optional[pulumi.Input[pulumi.InputType['VirtualMachineCloneArgs']]] = None,
|
|
3025
3025
|
cpu_hot_add_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3026
3026
|
cpu_hot_remove_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3027
3027
|
cpu_limit: Optional[pulumi.Input[int]] = None,
|
|
@@ -3034,7 +3034,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3034
3034
|
datastore_cluster_id: Optional[pulumi.Input[str]] = None,
|
|
3035
3035
|
datastore_id: Optional[pulumi.Input[str]] = None,
|
|
3036
3036
|
default_ip_address: Optional[pulumi.Input[str]] = None,
|
|
3037
|
-
disks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
3037
|
+
disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineDiskArgs']]]]] = None,
|
|
3038
3038
|
efi_secure_boot_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3039
3039
|
enable_disk_uuid: Optional[pulumi.Input[bool]] = None,
|
|
3040
3040
|
enable_logging: Optional[pulumi.Input[bool]] = None,
|
|
@@ -3064,10 +3064,10 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3064
3064
|
moid: Optional[pulumi.Input[str]] = None,
|
|
3065
3065
|
name: Optional[pulumi.Input[str]] = None,
|
|
3066
3066
|
nested_hv_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3067
|
-
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
3067
|
+
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineNetworkInterfaceArgs']]]]] = None,
|
|
3068
3068
|
num_cores_per_socket: Optional[pulumi.Input[int]] = None,
|
|
3069
3069
|
num_cpus: Optional[pulumi.Input[int]] = None,
|
|
3070
|
-
ovf_deploy: Optional[pulumi.Input[
|
|
3070
|
+
ovf_deploy: Optional[pulumi.Input[pulumi.InputType['VirtualMachineOvfDeployArgs']]] = None,
|
|
3071
3071
|
pci_device_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
3072
3072
|
power_state: Optional[pulumi.Input[str]] = None,
|
|
3073
3073
|
poweron_timeout: Optional[pulumi.Input[int]] = None,
|
|
@@ -3091,7 +3091,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3091
3091
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
3092
3092
|
tools_upgrade_policy: Optional[pulumi.Input[str]] = None,
|
|
3093
3093
|
uuid: Optional[pulumi.Input[str]] = None,
|
|
3094
|
-
vapp: Optional[pulumi.Input[
|
|
3094
|
+
vapp: Optional[pulumi.Input[pulumi.InputType['VirtualMachineVappArgs']]] = None,
|
|
3095
3095
|
vapp_transports: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
3096
3096
|
vbs_enabled: Optional[pulumi.Input[bool]] = None,
|
|
3097
3097
|
vmware_tools_status: Optional[pulumi.Input[str]] = None,
|
|
@@ -3112,9 +3112,9 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3112
3112
|
:param pulumi.Input[int] boot_delay: The number of milliseconds to wait before starting the boot sequence.
|
|
3113
3113
|
:param pulumi.Input[int] boot_retry_delay: The number of milliseconds to wait before retrying the boot sequence. This only valid if boot_retry_enabled is true.
|
|
3114
3114
|
:param pulumi.Input[bool] boot_retry_enabled: If set to true, a virtual machine that fails to boot will try again after the delay defined in boot_retry_delay.
|
|
3115
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
3115
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineCdromArgs']]]] cdroms: A specification for a CDROM device on this virtual machine.
|
|
3116
3116
|
:param pulumi.Input[str] change_version: A unique identifier for a given version of the last configuration was applied.
|
|
3117
|
-
:param pulumi.Input[
|
|
3117
|
+
:param pulumi.Input[pulumi.InputType['VirtualMachineCloneArgs']] clone: A specification for cloning a virtual machine from template.
|
|
3118
3118
|
:param pulumi.Input[bool] cpu_hot_add_enabled: Allow CPUs to be added to this virtual machine while it is running.
|
|
3119
3119
|
:param pulumi.Input[bool] cpu_hot_remove_enabled: Allow CPUs to be added to this virtual machine while it is running.
|
|
3120
3120
|
:param pulumi.Input[int] cpu_limit: The maximum amount of memory (in MB) or CPU (in MHz) that this virtual machine can consume, regardless of available
|
|
@@ -3129,7 +3129,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3129
3129
|
:param pulumi.Input[str] datastore_id: The ID of the virtual machine's datastore. The virtual machine configuration is placed here, along with any virtual
|
|
3130
3130
|
disks that are created without datastores.
|
|
3131
3131
|
:param pulumi.Input[str] default_ip_address: The IP address selected by the provider to be used with any provisioners configured on this resource. When possible, this is the first IPv4 address that is reachable through the default gateway configured on the machine, then the first reachable IPv6 address, and then the first general discovered address if neither exists. If VMware Tools is not running on the virtual machine, or if the virtual machine is powered off, this value will be blank.
|
|
3132
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
3132
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineDiskArgs']]]] disks: A specification for a virtual disk device on this virtual machine.
|
|
3133
3133
|
:param pulumi.Input[bool] efi_secure_boot_enabled: When the boot type set in firmware is efi, this enables EFI secure boot.
|
|
3134
3134
|
:param pulumi.Input[bool] enable_disk_uuid: Expose the UUIDs of attached virtual disks to the virtual machine, allowing access to them in the guest.
|
|
3135
3135
|
:param pulumi.Input[bool] enable_logging: Enable logging on this virtual machine.
|
|
@@ -3164,11 +3164,11 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3164
3164
|
:param pulumi.Input[str] moid: The managed object reference ID of the created virtual machine.
|
|
3165
3165
|
:param pulumi.Input[str] name: The name of this virtual machine.
|
|
3166
3166
|
:param pulumi.Input[bool] nested_hv_enabled: Enable nested hardware virtualization on this virtual machine, facilitating nested virtualization in the guest.
|
|
3167
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
3167
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VirtualMachineNetworkInterfaceArgs']]]] network_interfaces: A specification for a virtual NIC on this virtual machine.
|
|
3168
3168
|
:param pulumi.Input[int] num_cores_per_socket: The number of cores to distribute amongst the CPUs in this virtual machine. If specified, the value supplied to num_cpus
|
|
3169
3169
|
must be evenly divisible by this value.
|
|
3170
3170
|
:param pulumi.Input[int] num_cpus: The number of virtual processors to assign to this virtual machine.
|
|
3171
|
-
:param pulumi.Input[
|
|
3171
|
+
:param pulumi.Input[pulumi.InputType['VirtualMachineOvfDeployArgs']] ovf_deploy: A specification for deploying a virtual machine from ovf/ova template.
|
|
3172
3172
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] pci_device_ids: A list of PCI passthrough devices
|
|
3173
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`.
|
|
3174
3174
|
:param pulumi.Input[int] poweron_timeout: The amount of time, in seconds, that we will be trying to power on a VM
|
|
@@ -3191,7 +3191,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3191
3191
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag IDs to apply to this object.
|
|
3192
3192
|
:param pulumi.Input[str] tools_upgrade_policy: Set the upgrade policy for VMware Tools. Can be one of `manual` or `upgradeAtPowerCycle`.
|
|
3193
3193
|
:param pulumi.Input[str] uuid: The UUID of the virtual machine. Also exposed as the `id` of the resource.
|
|
3194
|
-
:param pulumi.Input[
|
|
3194
|
+
:param pulumi.Input[pulumi.InputType['VirtualMachineVappArgs']] vapp: vApp configuration data for this virtual machine. Can be used to provide configuration data for OVF images.
|
|
3195
3195
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] vapp_transports: Computed value which is only valid for cloned virtual machines. A list of vApp transport methods supported by the source virtual machine or template.
|
|
3196
3196
|
:param pulumi.Input[bool] vbs_enabled: Flag to specify if Virtualization-based security is enabled for this virtual machine.
|
|
3197
3197
|
: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.
|
|
@@ -3493,7 +3493,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3493
3493
|
|
|
3494
3494
|
@property
|
|
3495
3495
|
@pulumi.getter(name="eptRviMode")
|
|
3496
|
-
def ept_rvi_mode(self) -> pulumi.Output[str]:
|
|
3496
|
+
def ept_rvi_mode(self) -> pulumi.Output[Optional[str]]:
|
|
3497
3497
|
"""
|
|
3498
3498
|
The EPT/RVI (hardware memory virtualization) setting for this virtual machine. Can be one of automatic, on, or off.
|
|
3499
3499
|
"""
|
|
@@ -3574,7 +3574,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
3574
3574
|
|
|
3575
3575
|
@property
|
|
3576
3576
|
@pulumi.getter(name="hvMode")
|
|
3577
|
-
def hv_mode(self) -> pulumi.Output[str]:
|
|
3577
|
+
def hv_mode(self) -> pulumi.Output[Optional[str]]:
|
|
3578
3578
|
"""
|
|
3579
3579
|
The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
|
|
3580
3580
|
"""
|
|
@@ -249,7 +249,6 @@ class VirtualMachineClass(pulumi.CustomResource):
|
|
|
249
249
|
```
|
|
250
250
|
|
|
251
251
|
**Create a class with a vGPU**
|
|
252
|
-
|
|
253
252
|
```python
|
|
254
253
|
import pulumi
|
|
255
254
|
import pulumi_vsphere as vsphere
|
|
@@ -297,7 +296,6 @@ class VirtualMachineClass(pulumi.CustomResource):
|
|
|
297
296
|
```
|
|
298
297
|
|
|
299
298
|
**Create a class with a vGPU**
|
|
300
|
-
|
|
301
299
|
```python
|
|
302
300
|
import pulumi
|
|
303
301
|
import pulumi_vsphere as vsphere
|
|
@@ -290,7 +290,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
|
|
|
290
290
|
For more information on managing snapshots and how they work in VMware, see
|
|
291
291
|
[here][ext-vm-snapshot-management].
|
|
292
292
|
|
|
293
|
-
[ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/
|
|
293
|
+
[ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
|
|
294
294
|
|
|
295
295
|
> **NOTE:** A snapshot in VMware differs from traditional disk snapshots, and
|
|
296
296
|
can contain the actual running state of the virtual machine, data for all disks
|
|
@@ -351,7 +351,7 @@ class VirtualMachineSnapshot(pulumi.CustomResource):
|
|
|
351
351
|
For more information on managing snapshots and how they work in VMware, see
|
|
352
352
|
[here][ext-vm-snapshot-management].
|
|
353
353
|
|
|
354
|
-
[ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/
|
|
354
|
+
[ext-vm-snapshot-management]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-CA948C69-7F58-4519-AEB1-739545EA94E5.html
|
|
355
355
|
|
|
356
356
|
> **NOTE:** A snapshot in VMware differs from traditional disk snapshots, and
|
|
357
357
|
can contain the actual running state of the virtual machine, data for all disks
|