pulumi-vsphere 4.13.0a1737527662__py3-none-any.whl → 4.13.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-vsphere might be problematic. Click here for more details.

Files changed (31) hide show
  1. pulumi_vsphere/__init__.py +9 -0
  2. pulumi_vsphere/_inputs.py +3 -3
  3. pulumi_vsphere/compute_cluster.py +4 -4
  4. pulumi_vsphere/compute_cluster_vm_host_rule.py +124 -0
  5. pulumi_vsphere/custom_attribute.py +2 -2
  6. pulumi_vsphere/datastore_cluster.py +2 -2
  7. pulumi_vsphere/distributed_port_group.py +4 -53
  8. pulumi_vsphere/distributed_virtual_switch.py +11 -11
  9. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +293 -0
  10. pulumi_vsphere/dpm_host_override.py +2 -2
  11. pulumi_vsphere/drs_vm_override.py +96 -2
  12. pulumi_vsphere/get_resource_pool.py +2 -2
  13. pulumi_vsphere/get_virtual_machine.py +22 -3
  14. pulumi_vsphere/ha_vm_override.py +2 -2
  15. pulumi_vsphere/host_port_group.py +2 -2
  16. pulumi_vsphere/host_virtual_switch.py +98 -2
  17. pulumi_vsphere/outputs.py +2 -2
  18. pulumi_vsphere/pulumi-plugin.json +1 -1
  19. pulumi_vsphere/storage_drs_vm_override.py +2 -2
  20. pulumi_vsphere/supervisor.py +98 -2
  21. pulumi_vsphere/tag.py +2 -2
  22. pulumi_vsphere/tag_category.py +2 -2
  23. pulumi_vsphere/vapp_container.py +2 -2
  24. pulumi_vsphere/vapp_entity.py +2 -2
  25. pulumi_vsphere/virtual_disk.py +7 -7
  26. pulumi_vsphere/virtual_machine.py +34 -0
  27. pulumi_vsphere/virtual_machine_snapshot.py +4 -4
  28. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/METADATA +1 -1
  29. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/RECORD +31 -30
  30. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/WHEEL +0 -0
  31. {pulumi_vsphere-4.13.0a1737527662.dist-info → pulumi_vsphere-4.13.1.dist-info}/top_level.txt +0 -0
@@ -777,10 +777,58 @@ class HostVirtualSwitch(pulumi.CustomResource):
777
777
  For an overview on vSphere networking concepts, see [this
778
778
  page][ref-vsphere-net-concepts].
779
779
 
780
- [ref-vsphere-net-concepts]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.networking.doc/GUID-2B11DBB8-CB3C-4AFF-8885-EFEA0FC562F4.html
780
+ [ref-vsphere-net-concepts]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking-8-0/introduction-to-vsphere-networking.html
781
781
 
782
782
  ## Example Usage
783
783
 
784
+ ### Create a virtual switch with one active and one standby NIC
785
+
786
+ ```python
787
+ import pulumi
788
+ import pulumi_vsphere as vsphere
789
+
790
+ datacenter = vsphere.get_datacenter(name="dc-01")
791
+ host = vsphere.get_host(name="esxi-01.example.com",
792
+ datacenter_id=datacenter.id)
793
+ switch = vsphere.HostVirtualSwitch("switch",
794
+ name="vSwitchTest",
795
+ host_system_id=host.id,
796
+ network_adapters=[
797
+ "vmnic0",
798
+ "vmnic1",
799
+ ],
800
+ active_nics=["vmnic0"],
801
+ standby_nics=["vmnic1"])
802
+ ```
803
+
804
+ ### Create a virtual switch with extra networking policy options
805
+
806
+ ```python
807
+ import pulumi
808
+ import pulumi_vsphere as vsphere
809
+
810
+ datacenter = vsphere.get_datacenter(name="dc-01")
811
+ host = vsphere.get_host(name="esxi-01.example.com",
812
+ datacenter_id=datacenter.id)
813
+ switch = vsphere.HostVirtualSwitch("switch",
814
+ name="vSwitchTest",
815
+ host_system_id=host.id,
816
+ network_adapters=[
817
+ "vmnic0",
818
+ "vmnic1",
819
+ ],
820
+ active_nics=["vmnic0"],
821
+ standby_nics=["vmnic1"],
822
+ teaming_policy="failover_explicit",
823
+ allow_promiscuous=False,
824
+ allow_forged_transmits=False,
825
+ allow_mac_changes=False,
826
+ shaping_enabled=True,
827
+ shaping_average_bandwidth=50000000,
828
+ shaping_peak_bandwidth=100000000,
829
+ shaping_burst_size=1000000000)
830
+ ```
831
+
784
832
  ## Import
785
833
 
786
834
  An existing vSwitch can be imported into this resource by its ID.
@@ -850,10 +898,58 @@ class HostVirtualSwitch(pulumi.CustomResource):
850
898
  For an overview on vSphere networking concepts, see [this
851
899
  page][ref-vsphere-net-concepts].
852
900
 
853
- [ref-vsphere-net-concepts]: https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.networking.doc/GUID-2B11DBB8-CB3C-4AFF-8885-EFEA0FC562F4.html
901
+ [ref-vsphere-net-concepts]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking-8-0/introduction-to-vsphere-networking.html
854
902
 
855
903
  ## Example Usage
856
904
 
905
+ ### Create a virtual switch with one active and one standby NIC
906
+
907
+ ```python
908
+ import pulumi
909
+ import pulumi_vsphere as vsphere
910
+
911
+ datacenter = vsphere.get_datacenter(name="dc-01")
912
+ host = vsphere.get_host(name="esxi-01.example.com",
913
+ datacenter_id=datacenter.id)
914
+ switch = vsphere.HostVirtualSwitch("switch",
915
+ name="vSwitchTest",
916
+ host_system_id=host.id,
917
+ network_adapters=[
918
+ "vmnic0",
919
+ "vmnic1",
920
+ ],
921
+ active_nics=["vmnic0"],
922
+ standby_nics=["vmnic1"])
923
+ ```
924
+
925
+ ### Create a virtual switch with extra networking policy options
926
+
927
+ ```python
928
+ import pulumi
929
+ import pulumi_vsphere as vsphere
930
+
931
+ datacenter = vsphere.get_datacenter(name="dc-01")
932
+ host = vsphere.get_host(name="esxi-01.example.com",
933
+ datacenter_id=datacenter.id)
934
+ switch = vsphere.HostVirtualSwitch("switch",
935
+ name="vSwitchTest",
936
+ host_system_id=host.id,
937
+ network_adapters=[
938
+ "vmnic0",
939
+ "vmnic1",
940
+ ],
941
+ active_nics=["vmnic0"],
942
+ standby_nics=["vmnic1"],
943
+ teaming_policy="failover_explicit",
944
+ allow_promiscuous=False,
945
+ allow_forged_transmits=False,
946
+ allow_mac_changes=False,
947
+ shaping_enabled=True,
948
+ shaping_average_bandwidth=50000000,
949
+ shaping_peak_bandwidth=100000000,
950
+ shaping_burst_size=1000000000)
951
+ ```
952
+
857
953
  ## Import
858
954
 
859
955
  An existing vSwitch can be imported into this resource by its ID.
pulumi_vsphere/outputs.py CHANGED
@@ -2682,7 +2682,7 @@ class VirtualMachineDisk(dict):
2682
2682
  """
2683
2683
  :param str label: A unique label for this disk.
2684
2684
  :param bool attach: If this is true, the disk is attached instead of created. Implies keep_on_remove.
2685
- :param str controller_type: The type of controller the disk should be connected to. Must be 'scsi', 'sata', or 'ide'.
2685
+ :param str controller_type: The type of controller the disk should be connected to. Must be 'scsi', 'sata', 'nvme', or 'ide'.
2686
2686
  :param str datastore_id: The datastore ID for this virtual disk, if different than the virtual machine.
2687
2687
  :param str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
2688
2688
  :param str disk_mode: The mode of this this virtual disk for purposes of writes and snapshotting. Can be one of append, independent_nonpersistent, independent_persistent, nonpersistent, persistent, or undoable.
@@ -2764,7 +2764,7 @@ class VirtualMachineDisk(dict):
2764
2764
  @pulumi.getter(name="controllerType")
2765
2765
  def controller_type(self) -> Optional[str]:
2766
2766
  """
2767
- The type of controller the disk should be connected to. Must be 'scsi', 'sata', or 'ide'.
2767
+ The type of controller the disk should be connected to. Must be 'scsi', 'sata', 'nvme', or 'ide'.
2768
2768
  """
2769
2769
  return pulumi.get(self, "controller_type")
2770
2770
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "vsphere",
4
- "version": "4.13.0-alpha.1737527662"
4
+ "version": "4.13.1"
5
5
  }
@@ -259,7 +259,7 @@ class StorageDrsVmOverride(pulumi.CustomResource):
259
259
  For more information on vSphere datastore clusters and Storage DRS, see [this
260
260
  page][ref-vsphere-datastore-clusters].
261
261
 
262
- [ref-vsphere-datastore-clusters]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-598DF695-107E-406B-9C95-0AF961FC227A.html
262
+ [ref-vsphere-datastore-clusters]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-resource-management-8-0/creating-a-datastore-cluster.html
263
263
 
264
264
  ## Example Usage
265
265
 
@@ -350,7 +350,7 @@ class StorageDrsVmOverride(pulumi.CustomResource):
350
350
  For more information on vSphere datastore clusters and Storage DRS, see [this
351
351
  page][ref-vsphere-datastore-clusters].
352
352
 
353
- [ref-vsphere-datastore-clusters]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-598DF695-107E-406B-9C95-0AF961FC227A.html
353
+ [ref-vsphere-datastore-clusters]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-resource-management-8-0/creating-a-datastore-cluster.html
354
354
 
355
355
  ## Example Usage
356
356
 
@@ -28,6 +28,7 @@ class SupervisorArgs:
28
28
  egress_cidrs: pulumi.Input[Sequence[pulumi.Input['SupervisorEgressCidrArgs']]],
29
29
  ingress_cidrs: pulumi.Input[Sequence[pulumi.Input['SupervisorIngressCidrArgs']]],
30
30
  main_dns: pulumi.Input[Sequence[pulumi.Input[str]]],
31
+ main_ntps: pulumi.Input[Sequence[pulumi.Input[str]]],
31
32
  management_network: pulumi.Input['SupervisorManagementNetworkArgs'],
32
33
  pod_cidrs: pulumi.Input[Sequence[pulumi.Input['SupervisorPodCidrArgs']]],
33
34
  search_domains: pulumi.Input[str],
@@ -35,6 +36,7 @@ class SupervisorArgs:
35
36
  sizing_hint: pulumi.Input[str],
36
37
  storage_policy: pulumi.Input[str],
37
38
  worker_dns: pulumi.Input[Sequence[pulumi.Input[str]]],
39
+ worker_ntps: pulumi.Input[Sequence[pulumi.Input[str]]],
38
40
  namespaces: Optional[pulumi.Input[Sequence[pulumi.Input['SupervisorNamespaceArgs']]]] = None):
39
41
  """
40
42
  The set of arguments for constructing a Supervisor resource.
@@ -45,6 +47,7 @@ class SupervisorArgs:
45
47
  :param pulumi.Input[Sequence[pulumi.Input['SupervisorEgressCidrArgs']]] egress_cidrs: CIDR blocks from which NSX assigns IP addresses used for performing SNAT from container IPs to external IPs.
46
48
  :param pulumi.Input[Sequence[pulumi.Input['SupervisorIngressCidrArgs']]] ingress_cidrs: CIDR blocks from which NSX assigns IP addresses for Kubernetes Ingresses and Kubernetes Services of type LoadBalancer.
47
49
  :param pulumi.Input[Sequence[pulumi.Input[str]]] main_dns: The list of addresses of the primary DNS servers.
50
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] main_ntps: The list of addresses of the primary NTP servers.
48
51
  :param pulumi.Input['SupervisorManagementNetworkArgs'] management_network: The configuration for the management network which the control plane VMs will be connected to.
49
52
  * * `network` - ID of the network. (e.g. a distributed port group).
50
53
  * * `starting_address` - Starting address of the management network range.
@@ -57,6 +60,7 @@ class SupervisorArgs:
57
60
  :param pulumi.Input[str] sizing_hint: The size of the Kubernetes API server.
58
61
  :param pulumi.Input[str] storage_policy: The name of the storage policy.
59
62
  :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_dns: The list of addresses of the DNS servers to use for the worker nodes.
63
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_ntps: The list of addresses of the NTP servers to use for the worker nodes.
60
64
  :param pulumi.Input[Sequence[pulumi.Input['SupervisorNamespaceArgs']]] namespaces: The list of namespaces to create in the Supervisor cluster
61
65
  """
62
66
  pulumi.set(__self__, "cluster", cluster)
@@ -66,6 +70,7 @@ class SupervisorArgs:
66
70
  pulumi.set(__self__, "egress_cidrs", egress_cidrs)
67
71
  pulumi.set(__self__, "ingress_cidrs", ingress_cidrs)
68
72
  pulumi.set(__self__, "main_dns", main_dns)
73
+ pulumi.set(__self__, "main_ntps", main_ntps)
69
74
  pulumi.set(__self__, "management_network", management_network)
70
75
  pulumi.set(__self__, "pod_cidrs", pod_cidrs)
71
76
  pulumi.set(__self__, "search_domains", search_domains)
@@ -73,6 +78,7 @@ class SupervisorArgs:
73
78
  pulumi.set(__self__, "sizing_hint", sizing_hint)
74
79
  pulumi.set(__self__, "storage_policy", storage_policy)
75
80
  pulumi.set(__self__, "worker_dns", worker_dns)
81
+ pulumi.set(__self__, "worker_ntps", worker_ntps)
76
82
  if namespaces is not None:
77
83
  pulumi.set(__self__, "namespaces", namespaces)
78
84
 
@@ -160,6 +166,18 @@ class SupervisorArgs:
160
166
  def main_dns(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
161
167
  pulumi.set(self, "main_dns", value)
162
168
 
169
+ @property
170
+ @pulumi.getter(name="mainNtps")
171
+ def main_ntps(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
172
+ """
173
+ The list of addresses of the primary NTP servers.
174
+ """
175
+ return pulumi.get(self, "main_ntps")
176
+
177
+ @main_ntps.setter
178
+ def main_ntps(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
179
+ pulumi.set(self, "main_ntps", value)
180
+
163
181
  @property
164
182
  @pulumi.getter(name="managementNetwork")
165
183
  def management_network(self) -> pulumi.Input['SupervisorManagementNetworkArgs']:
@@ -249,6 +267,18 @@ class SupervisorArgs:
249
267
  def worker_dns(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
250
268
  pulumi.set(self, "worker_dns", value)
251
269
 
270
+ @property
271
+ @pulumi.getter(name="workerNtps")
272
+ def worker_ntps(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
273
+ """
274
+ The list of addresses of the NTP servers to use for the worker nodes.
275
+ """
276
+ return pulumi.get(self, "worker_ntps")
277
+
278
+ @worker_ntps.setter
279
+ def worker_ntps(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
280
+ pulumi.set(self, "worker_ntps", value)
281
+
252
282
  @property
253
283
  @pulumi.getter
254
284
  def namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SupervisorNamespaceArgs']]]]:
@@ -272,6 +302,7 @@ class _SupervisorState:
272
302
  egress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input['SupervisorEgressCidrArgs']]]] = None,
273
303
  ingress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input['SupervisorIngressCidrArgs']]]] = None,
274
304
  main_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
305
+ main_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
275
306
  management_network: Optional[pulumi.Input['SupervisorManagementNetworkArgs']] = None,
276
307
  namespaces: Optional[pulumi.Input[Sequence[pulumi.Input['SupervisorNamespaceArgs']]]] = None,
277
308
  pod_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input['SupervisorPodCidrArgs']]]] = None,
@@ -279,7 +310,8 @@ class _SupervisorState:
279
310
  service_cidr: Optional[pulumi.Input['SupervisorServiceCidrArgs']] = None,
280
311
  sizing_hint: Optional[pulumi.Input[str]] = None,
281
312
  storage_policy: Optional[pulumi.Input[str]] = None,
282
- worker_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
313
+ worker_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
314
+ worker_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
283
315
  """
284
316
  Input properties used for looking up and filtering Supervisor resources.
285
317
  :param pulumi.Input[str] cluster: The identifier of the compute cluster.
@@ -289,6 +321,7 @@ class _SupervisorState:
289
321
  :param pulumi.Input[Sequence[pulumi.Input['SupervisorEgressCidrArgs']]] egress_cidrs: CIDR blocks from which NSX assigns IP addresses used for performing SNAT from container IPs to external IPs.
290
322
  :param pulumi.Input[Sequence[pulumi.Input['SupervisorIngressCidrArgs']]] ingress_cidrs: CIDR blocks from which NSX assigns IP addresses for Kubernetes Ingresses and Kubernetes Services of type LoadBalancer.
291
323
  :param pulumi.Input[Sequence[pulumi.Input[str]]] main_dns: The list of addresses of the primary DNS servers.
324
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] main_ntps: The list of addresses of the primary NTP servers.
292
325
  :param pulumi.Input['SupervisorManagementNetworkArgs'] management_network: The configuration for the management network which the control plane VMs will be connected to.
293
326
  * * `network` - ID of the network. (e.g. a distributed port group).
294
327
  * * `starting_address` - Starting address of the management network range.
@@ -302,6 +335,7 @@ class _SupervisorState:
302
335
  :param pulumi.Input[str] sizing_hint: The size of the Kubernetes API server.
303
336
  :param pulumi.Input[str] storage_policy: The name of the storage policy.
304
337
  :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_dns: The list of addresses of the DNS servers to use for the worker nodes.
338
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_ntps: The list of addresses of the NTP servers to use for the worker nodes.
305
339
  """
306
340
  if cluster is not None:
307
341
  pulumi.set(__self__, "cluster", cluster)
@@ -317,6 +351,8 @@ class _SupervisorState:
317
351
  pulumi.set(__self__, "ingress_cidrs", ingress_cidrs)
318
352
  if main_dns is not None:
319
353
  pulumi.set(__self__, "main_dns", main_dns)
354
+ if main_ntps is not None:
355
+ pulumi.set(__self__, "main_ntps", main_ntps)
320
356
  if management_network is not None:
321
357
  pulumi.set(__self__, "management_network", management_network)
322
358
  if namespaces is not None:
@@ -333,6 +369,8 @@ class _SupervisorState:
333
369
  pulumi.set(__self__, "storage_policy", storage_policy)
334
370
  if worker_dns is not None:
335
371
  pulumi.set(__self__, "worker_dns", worker_dns)
372
+ if worker_ntps is not None:
373
+ pulumi.set(__self__, "worker_ntps", worker_ntps)
336
374
 
337
375
  @property
338
376
  @pulumi.getter
@@ -418,6 +456,18 @@ class _SupervisorState:
418
456
  def main_dns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
419
457
  pulumi.set(self, "main_dns", value)
420
458
 
459
+ @property
460
+ @pulumi.getter(name="mainNtps")
461
+ def main_ntps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
462
+ """
463
+ The list of addresses of the primary NTP servers.
464
+ """
465
+ return pulumi.get(self, "main_ntps")
466
+
467
+ @main_ntps.setter
468
+ def main_ntps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
469
+ pulumi.set(self, "main_ntps", value)
470
+
421
471
  @property
422
472
  @pulumi.getter(name="managementNetwork")
423
473
  def management_network(self) -> Optional[pulumi.Input['SupervisorManagementNetworkArgs']]:
@@ -519,6 +569,18 @@ class _SupervisorState:
519
569
  def worker_dns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
520
570
  pulumi.set(self, "worker_dns", value)
521
571
 
572
+ @property
573
+ @pulumi.getter(name="workerNtps")
574
+ def worker_ntps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
575
+ """
576
+ The list of addresses of the NTP servers to use for the worker nodes.
577
+ """
578
+ return pulumi.get(self, "worker_ntps")
579
+
580
+ @worker_ntps.setter
581
+ def worker_ntps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
582
+ pulumi.set(self, "worker_ntps", value)
583
+
522
584
 
523
585
  class Supervisor(pulumi.CustomResource):
524
586
  @overload
@@ -532,6 +594,7 @@ class Supervisor(pulumi.CustomResource):
532
594
  egress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorEgressCidrArgs', 'SupervisorEgressCidrArgsDict']]]]] = None,
533
595
  ingress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorIngressCidrArgs', 'SupervisorIngressCidrArgsDict']]]]] = None,
534
596
  main_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
597
+ main_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
535
598
  management_network: Optional[pulumi.Input[Union['SupervisorManagementNetworkArgs', 'SupervisorManagementNetworkArgsDict']]] = None,
536
599
  namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorNamespaceArgs', 'SupervisorNamespaceArgsDict']]]]] = None,
537
600
  pod_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorPodCidrArgs', 'SupervisorPodCidrArgsDict']]]]] = None,
@@ -540,6 +603,7 @@ class Supervisor(pulumi.CustomResource):
540
603
  sizing_hint: Optional[pulumi.Input[str]] = None,
541
604
  storage_policy: Optional[pulumi.Input[str]] = None,
542
605
  worker_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
606
+ worker_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
543
607
  __props__=None):
544
608
  """
545
609
  Provides a resource for configuring Workload Management.
@@ -607,6 +671,7 @@ class Supervisor(pulumi.CustomResource):
607
671
  :param pulumi.Input[Sequence[pulumi.Input[Union['SupervisorEgressCidrArgs', 'SupervisorEgressCidrArgsDict']]]] egress_cidrs: CIDR blocks from which NSX assigns IP addresses used for performing SNAT from container IPs to external IPs.
608
672
  :param pulumi.Input[Sequence[pulumi.Input[Union['SupervisorIngressCidrArgs', 'SupervisorIngressCidrArgsDict']]]] ingress_cidrs: CIDR blocks from which NSX assigns IP addresses for Kubernetes Ingresses and Kubernetes Services of type LoadBalancer.
609
673
  :param pulumi.Input[Sequence[pulumi.Input[str]]] main_dns: The list of addresses of the primary DNS servers.
674
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] main_ntps: The list of addresses of the primary NTP servers.
610
675
  :param pulumi.Input[Union['SupervisorManagementNetworkArgs', 'SupervisorManagementNetworkArgsDict']] management_network: The configuration for the management network which the control plane VMs will be connected to.
611
676
  * * `network` - ID of the network. (e.g. a distributed port group).
612
677
  * * `starting_address` - Starting address of the management network range.
@@ -620,6 +685,7 @@ class Supervisor(pulumi.CustomResource):
620
685
  :param pulumi.Input[str] sizing_hint: The size of the Kubernetes API server.
621
686
  :param pulumi.Input[str] storage_policy: The name of the storage policy.
622
687
  :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_dns: The list of addresses of the DNS servers to use for the worker nodes.
688
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_ntps: The list of addresses of the NTP servers to use for the worker nodes.
623
689
  """
624
690
  ...
625
691
  @overload
@@ -706,6 +772,7 @@ class Supervisor(pulumi.CustomResource):
706
772
  egress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorEgressCidrArgs', 'SupervisorEgressCidrArgsDict']]]]] = None,
707
773
  ingress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorIngressCidrArgs', 'SupervisorIngressCidrArgsDict']]]]] = None,
708
774
  main_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
775
+ main_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
709
776
  management_network: Optional[pulumi.Input[Union['SupervisorManagementNetworkArgs', 'SupervisorManagementNetworkArgsDict']]] = None,
710
777
  namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorNamespaceArgs', 'SupervisorNamespaceArgsDict']]]]] = None,
711
778
  pod_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorPodCidrArgs', 'SupervisorPodCidrArgsDict']]]]] = None,
@@ -714,6 +781,7 @@ class Supervisor(pulumi.CustomResource):
714
781
  sizing_hint: Optional[pulumi.Input[str]] = None,
715
782
  storage_policy: Optional[pulumi.Input[str]] = None,
716
783
  worker_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
784
+ worker_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
717
785
  __props__=None):
718
786
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
719
787
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -744,6 +812,9 @@ class Supervisor(pulumi.CustomResource):
744
812
  if main_dns is None and not opts.urn:
745
813
  raise TypeError("Missing required property 'main_dns'")
746
814
  __props__.__dict__["main_dns"] = main_dns
815
+ if main_ntps is None and not opts.urn:
816
+ raise TypeError("Missing required property 'main_ntps'")
817
+ __props__.__dict__["main_ntps"] = main_ntps
747
818
  if management_network is None and not opts.urn:
748
819
  raise TypeError("Missing required property 'management_network'")
749
820
  __props__.__dict__["management_network"] = management_network
@@ -766,6 +837,9 @@ class Supervisor(pulumi.CustomResource):
766
837
  if worker_dns is None and not opts.urn:
767
838
  raise TypeError("Missing required property 'worker_dns'")
768
839
  __props__.__dict__["worker_dns"] = worker_dns
840
+ if worker_ntps is None and not opts.urn:
841
+ raise TypeError("Missing required property 'worker_ntps'")
842
+ __props__.__dict__["worker_ntps"] = worker_ntps
769
843
  super(Supervisor, __self__).__init__(
770
844
  'vsphere:index/supervisor:Supervisor',
771
845
  resource_name,
@@ -783,6 +857,7 @@ class Supervisor(pulumi.CustomResource):
783
857
  egress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorEgressCidrArgs', 'SupervisorEgressCidrArgsDict']]]]] = None,
784
858
  ingress_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorIngressCidrArgs', 'SupervisorIngressCidrArgsDict']]]]] = None,
785
859
  main_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
860
+ main_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
786
861
  management_network: Optional[pulumi.Input[Union['SupervisorManagementNetworkArgs', 'SupervisorManagementNetworkArgsDict']]] = None,
787
862
  namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorNamespaceArgs', 'SupervisorNamespaceArgsDict']]]]] = None,
788
863
  pod_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SupervisorPodCidrArgs', 'SupervisorPodCidrArgsDict']]]]] = None,
@@ -790,7 +865,8 @@ class Supervisor(pulumi.CustomResource):
790
865
  service_cidr: Optional[pulumi.Input[Union['SupervisorServiceCidrArgs', 'SupervisorServiceCidrArgsDict']]] = None,
791
866
  sizing_hint: Optional[pulumi.Input[str]] = None,
792
867
  storage_policy: Optional[pulumi.Input[str]] = None,
793
- worker_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'Supervisor':
868
+ worker_dns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
869
+ worker_ntps: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'Supervisor':
794
870
  """
795
871
  Get an existing Supervisor resource's state with the given name, id, and optional extra
796
872
  properties used to qualify the lookup.
@@ -805,6 +881,7 @@ class Supervisor(pulumi.CustomResource):
805
881
  :param pulumi.Input[Sequence[pulumi.Input[Union['SupervisorEgressCidrArgs', 'SupervisorEgressCidrArgsDict']]]] egress_cidrs: CIDR blocks from which NSX assigns IP addresses used for performing SNAT from container IPs to external IPs.
806
882
  :param pulumi.Input[Sequence[pulumi.Input[Union['SupervisorIngressCidrArgs', 'SupervisorIngressCidrArgsDict']]]] ingress_cidrs: CIDR blocks from which NSX assigns IP addresses for Kubernetes Ingresses and Kubernetes Services of type LoadBalancer.
807
883
  :param pulumi.Input[Sequence[pulumi.Input[str]]] main_dns: The list of addresses of the primary DNS servers.
884
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] main_ntps: The list of addresses of the primary NTP servers.
808
885
  :param pulumi.Input[Union['SupervisorManagementNetworkArgs', 'SupervisorManagementNetworkArgsDict']] management_network: The configuration for the management network which the control plane VMs will be connected to.
809
886
  * * `network` - ID of the network. (e.g. a distributed port group).
810
887
  * * `starting_address` - Starting address of the management network range.
@@ -818,6 +895,7 @@ class Supervisor(pulumi.CustomResource):
818
895
  :param pulumi.Input[str] sizing_hint: The size of the Kubernetes API server.
819
896
  :param pulumi.Input[str] storage_policy: The name of the storage policy.
820
897
  :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_dns: The list of addresses of the DNS servers to use for the worker nodes.
898
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] worker_ntps: The list of addresses of the NTP servers to use for the worker nodes.
821
899
  """
822
900
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
823
901
 
@@ -830,6 +908,7 @@ class Supervisor(pulumi.CustomResource):
830
908
  __props__.__dict__["egress_cidrs"] = egress_cidrs
831
909
  __props__.__dict__["ingress_cidrs"] = ingress_cidrs
832
910
  __props__.__dict__["main_dns"] = main_dns
911
+ __props__.__dict__["main_ntps"] = main_ntps
833
912
  __props__.__dict__["management_network"] = management_network
834
913
  __props__.__dict__["namespaces"] = namespaces
835
914
  __props__.__dict__["pod_cidrs"] = pod_cidrs
@@ -838,6 +917,7 @@ class Supervisor(pulumi.CustomResource):
838
917
  __props__.__dict__["sizing_hint"] = sizing_hint
839
918
  __props__.__dict__["storage_policy"] = storage_policy
840
919
  __props__.__dict__["worker_dns"] = worker_dns
920
+ __props__.__dict__["worker_ntps"] = worker_ntps
841
921
  return Supervisor(resource_name, opts=opts, __props__=__props__)
842
922
 
843
923
  @property
@@ -896,6 +976,14 @@ class Supervisor(pulumi.CustomResource):
896
976
  """
897
977
  return pulumi.get(self, "main_dns")
898
978
 
979
+ @property
980
+ @pulumi.getter(name="mainNtps")
981
+ def main_ntps(self) -> pulumi.Output[Sequence[str]]:
982
+ """
983
+ The list of addresses of the primary NTP servers.
984
+ """
985
+ return pulumi.get(self, "main_ntps")
986
+
899
987
  @property
900
988
  @pulumi.getter(name="managementNetwork")
901
989
  def management_network(self) -> pulumi.Output['outputs.SupervisorManagementNetwork']:
@@ -965,3 +1053,11 @@ class Supervisor(pulumi.CustomResource):
965
1053
  """
966
1054
  return pulumi.get(self, "worker_dns")
967
1055
 
1056
+ @property
1057
+ @pulumi.getter(name="workerNtps")
1058
+ def worker_ntps(self) -> pulumi.Output[Sequence[str]]:
1059
+ """
1060
+ The list of addresses of the NTP servers to use for the worker nodes.
1061
+ """
1062
+ return pulumi.get(self, "worker_ntps")
1063
+
pulumi_vsphere/tag.py CHANGED
@@ -151,7 +151,7 @@ class Tag(pulumi.CustomResource):
151
151
 
152
152
  For more information about tags, click [here][ext-tags-general].
153
153
 
154
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
154
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
155
155
 
156
156
  ## Example Usage
157
157
 
@@ -243,7 +243,7 @@ class Tag(pulumi.CustomResource):
243
243
 
244
244
  For more information about tags, click [here][ext-tags-general].
245
245
 
246
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
246
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
247
247
 
248
248
  ## Example Usage
249
249
 
@@ -207,7 +207,7 @@ class TagCategory(pulumi.CustomResource):
207
207
 
208
208
  For more information about tags, click [here][ext-tags-general].
209
209
 
210
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
210
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
211
211
 
212
212
  ## Example Usage
213
213
 
@@ -268,7 +268,7 @@ class TagCategory(pulumi.CustomResource):
268
268
 
269
269
  For more information about tags, click [here][ext-tags-general].
270
270
 
271
- [ext-tags-general]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vcenter-esxi-management/GUID-E8E854DD-AA97-4E0C-8419-CE84F93C4058.html
271
+ [ext-tags-general]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-tags-and-attributes.html
272
272
 
273
273
  ## Example Usage
274
274
 
@@ -650,7 +650,7 @@ class VappContainer(pulumi.CustomResource):
650
650
 
651
651
  For more information on vSphere vApps, see the VMware vSphere [product documentation][ref-vsphere-vapp].
652
652
 
653
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-E6E9D2A9-D358-4996-9BC7-F8D9D9645290.html
653
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration-guide-8-0/managing-multi-tiered-applications-with-vsphere-vapp-in-the-vsphere-web-clientvsphere-vm-admin.html
654
654
 
655
655
  ## Basic Example
656
656
 
@@ -782,7 +782,7 @@ class VappContainer(pulumi.CustomResource):
782
782
 
783
783
  For more information on vSphere vApps, see the VMware vSphere [product documentation][ref-vsphere-vapp].
784
784
 
785
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-E6E9D2A9-D358-4996-9BC7-F8D9D9645290.html
785
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration-guide-8-0/managing-multi-tiered-applications-with-vsphere-vapp-in-the-vsphere-web-clientvsphere-vm-admin.html
786
786
 
787
787
  ## Basic Example
788
788
 
@@ -417,7 +417,7 @@ class VappEntity(pulumi.CustomResource):
417
417
  For more information on vSphere vApps, see [this
418
418
  page][ref-vsphere-vapp].
419
419
 
420
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-2A95EBB8-1779-40FA-B4FB-4D0845750879.html
420
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/create-a-vapp-h5-and-flex.html
421
421
 
422
422
  ## Example Usage
423
423
 
@@ -519,7 +519,7 @@ class VappEntity(pulumi.CustomResource):
519
519
  For more information on vSphere vApps, see [this
520
520
  page][ref-vsphere-vapp].
521
521
 
522
- [ref-vsphere-vapp]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-2A95EBB8-1779-40FA-B4FB-4D0845750879.html
522
+ [ref-vsphere-vapp]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/create-a-vapp-h5-and-flex.html
523
523
 
524
524
  ## Example Usage
525
525
 
@@ -59,7 +59,7 @@ class VirtualDiskArgs:
59
59
  information on what each kind of disk provisioning policy means, click
60
60
  [here][docs-vmware-vm-disk-provisioning].
61
61
 
62
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
62
+ [docs-vmware-vm-disk-provisioning]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
63
63
  """
64
64
  pulumi.set(__self__, "datastore", datastore)
65
65
  pulumi.set(__self__, "size", size)
@@ -178,7 +178,7 @@ class VirtualDiskArgs:
178
178
  information on what each kind of disk provisioning policy means, click
179
179
  [here][docs-vmware-vm-disk-provisioning].
180
180
 
181
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
181
+ [docs-vmware-vm-disk-provisioning]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
182
182
  """
183
183
  return pulumi.get(self, "type")
184
184
 
@@ -228,7 +228,7 @@ class _VirtualDiskState:
228
228
  information on what each kind of disk provisioning policy means, click
229
229
  [here][docs-vmware-vm-disk-provisioning].
230
230
 
231
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
231
+ [docs-vmware-vm-disk-provisioning]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
232
232
  :param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
233
233
  be created. This needs to end in `.vmdk`.
234
234
  """
@@ -339,7 +339,7 @@ class _VirtualDiskState:
339
339
  information on what each kind of disk provisioning policy means, click
340
340
  [here][docs-vmware-vm-disk-provisioning].
341
341
 
342
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
342
+ [docs-vmware-vm-disk-provisioning]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
343
343
  """
344
344
  return pulumi.get(self, "type")
345
345
 
@@ -444,7 +444,7 @@ class VirtualDisk(pulumi.CustomResource):
444
444
  information on what each kind of disk provisioning policy means, click
445
445
  [here][docs-vmware-vm-disk-provisioning].
446
446
 
447
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
447
+ [docs-vmware-vm-disk-provisioning]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
448
448
  :param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
449
449
  be created. This needs to end in `.vmdk`.
450
450
  """
@@ -590,7 +590,7 @@ class VirtualDisk(pulumi.CustomResource):
590
590
  information on what each kind of disk provisioning policy means, click
591
591
  [here][docs-vmware-vm-disk-provisioning].
592
592
 
593
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
593
+ [docs-vmware-vm-disk-provisioning]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
594
594
  :param pulumi.Input[str] vmdk_path: The path, including filename, of the virtual disk to
595
595
  be created. This needs to end in `.vmdk`.
596
596
  """
@@ -676,7 +676,7 @@ class VirtualDisk(pulumi.CustomResource):
676
676
  information on what each kind of disk provisioning policy means, click
677
677
  [here][docs-vmware-vm-disk-provisioning].
678
678
 
679
- [docs-vmware-vm-disk-provisioning]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-vm-administration/GUID-4C0F4D73-82F2-4B81-8AA7-1DD752A8A5AC.html
679
+ [docs-vmware-vm-disk-provisioning]: https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-single-host-management-vmware-host-client-8-0/virtual-machine-management-with-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/configuring-virtual-machines-in-the-vsphere-host-client-vSphereSingleHostManagementVMwareHostClient/virtual-disk-configuration-vSphereSingleHostManagementVMwareHostClient/about-virtual-disk-provisioning-policies-vSphereSingleHostManagementVMwareHostClient.html
680
680
  """
681
681
  return pulumi.get(self, "type")
682
682