pulumi-vsphere 4.11.0a1713561492__py3-none-any.whl → 4.11.0a1713905355__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 +96 -232
- pulumi_vsphere/compute_cluster.py +700 -1477
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +0 -8
- pulumi_vsphere/datacenter.py +0 -8
- pulumi_vsphere/datastore_cluster.py +154 -350
- pulumi_vsphere/distributed_port_group.py +70 -175
- pulumi_vsphere/distributed_virtual_switch.py +308 -798
- pulumi_vsphere/file.py +0 -8
- pulumi_vsphere/get_compute_cluster.py +0 -4
- pulumi_vsphere/get_compute_cluster_host_group.py +0 -4
- pulumi_vsphere/get_content_library.py +0 -4
- pulumi_vsphere/get_custom_attribute.py +0 -4
- pulumi_vsphere/get_datacenter.py +0 -4
- pulumi_vsphere/get_datastore.py +0 -4
- pulumi_vsphere/get_datastore_cluster.py +0 -4
- pulumi_vsphere/get_datastore_stats.py +0 -8
- pulumi_vsphere/get_distributed_virtual_switch.py +0 -4
- pulumi_vsphere/get_dynamic.py +0 -4
- pulumi_vsphere/get_folder.py +0 -4
- pulumi_vsphere/get_guest_os_customization.py +0 -4
- pulumi_vsphere/get_host.py +0 -4
- pulumi_vsphere/get_host_pci_device.py +4 -12
- pulumi_vsphere/get_host_thumbprint.py +0 -4
- pulumi_vsphere/get_host_vgpu_profile.py +0 -8
- pulumi_vsphere/get_license.py +0 -4
- pulumi_vsphere/get_network.py +0 -4
- pulumi_vsphere/get_policy.py +0 -4
- pulumi_vsphere/get_resource_pool.py +0 -8
- pulumi_vsphere/get_role.py +0 -4
- pulumi_vsphere/get_tag.py +0 -4
- pulumi_vsphere/get_tag_category.py +0 -4
- pulumi_vsphere/get_vapp_container.py +0 -4
- pulumi_vsphere/get_virtual_machine.py +0 -8
- pulumi_vsphere/get_vmfs_disks.py +0 -4
- pulumi_vsphere/guest_os_customization.py +0 -4
- pulumi_vsphere/ha_vm_override.py +189 -378
- pulumi_vsphere/host.py +0 -8
- pulumi_vsphere/host_port_group.py +0 -8
- pulumi_vsphere/host_virtual_switch.py +140 -287
- pulumi_vsphere/outputs.py +96 -232
- pulumi_vsphere/resource_pool.py +0 -12
- pulumi_vsphere/virtual_machine.py +599 -739
- pulumi_vsphere/virtual_machine_snapshot.py +0 -4
- pulumi_vsphere/vm_storage_policy.py +0 -12
- pulumi_vsphere/vnic.py +0 -8
- {pulumi_vsphere-4.11.0a1713561492.dist-info → pulumi_vsphere-4.11.0a1713905355.dist-info}/METADATA +1 -1
- pulumi_vsphere-4.11.0a1713905355.dist-info/RECORD +82 -0
- pulumi_vsphere-4.11.0a1713561492.dist-info/RECORD +0 -82
- {pulumi_vsphere-4.11.0a1713561492.dist-info → pulumi_vsphere-4.11.0a1713905355.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.11.0a1713561492.dist-info → pulumi_vsphere-4.11.0a1713905355.dist-info}/top_level.txt +0 -0
pulumi_vsphere/host.py
CHANGED
|
@@ -616,7 +616,6 @@ class Host(pulumi.CustomResource):
|
|
|
616
616
|
|
|
617
617
|
### Create a standalone host
|
|
618
618
|
|
|
619
|
-
<!--Start PulumiCodeChooser -->
|
|
620
619
|
```python
|
|
621
620
|
import pulumi
|
|
622
621
|
import pulumi_vsphere as vsphere
|
|
@@ -632,11 +631,9 @@ class Host(pulumi.CustomResource):
|
|
|
632
631
|
thumbprint=thumbprint.id,
|
|
633
632
|
datacenter=datacenter.id)
|
|
634
633
|
```
|
|
635
|
-
<!--End PulumiCodeChooser -->
|
|
636
634
|
|
|
637
635
|
### Create host in a compute cluster
|
|
638
636
|
|
|
639
|
-
<!--Start PulumiCodeChooser -->
|
|
640
637
|
```python
|
|
641
638
|
import pulumi
|
|
642
639
|
import pulumi_vsphere as vsphere
|
|
@@ -654,7 +651,6 @@ class Host(pulumi.CustomResource):
|
|
|
654
651
|
thumbprint=thumbprint.id,
|
|
655
652
|
cluster=cluster.id)
|
|
656
653
|
```
|
|
657
|
-
<!--End PulumiCodeChooser -->
|
|
658
654
|
|
|
659
655
|
## Importing
|
|
660
656
|
|
|
@@ -725,7 +721,6 @@ class Host(pulumi.CustomResource):
|
|
|
725
721
|
|
|
726
722
|
### Create a standalone host
|
|
727
723
|
|
|
728
|
-
<!--Start PulumiCodeChooser -->
|
|
729
724
|
```python
|
|
730
725
|
import pulumi
|
|
731
726
|
import pulumi_vsphere as vsphere
|
|
@@ -741,11 +736,9 @@ class Host(pulumi.CustomResource):
|
|
|
741
736
|
thumbprint=thumbprint.id,
|
|
742
737
|
datacenter=datacenter.id)
|
|
743
738
|
```
|
|
744
|
-
<!--End PulumiCodeChooser -->
|
|
745
739
|
|
|
746
740
|
### Create host in a compute cluster
|
|
747
741
|
|
|
748
|
-
<!--Start PulumiCodeChooser -->
|
|
749
742
|
```python
|
|
750
743
|
import pulumi
|
|
751
744
|
import pulumi_vsphere as vsphere
|
|
@@ -763,7 +756,6 @@ class Host(pulumi.CustomResource):
|
|
|
763
756
|
thumbprint=thumbprint.id,
|
|
764
757
|
cluster=cluster.id)
|
|
765
758
|
```
|
|
766
|
-
<!--End PulumiCodeChooser -->
|
|
767
759
|
|
|
768
760
|
## Importing
|
|
769
761
|
|
|
@@ -696,7 +696,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
696
696
|
|
|
697
697
|
**Create a Virtual Switch and Bind a Port Group:**
|
|
698
698
|
|
|
699
|
-
<!--Start PulumiCodeChooser -->
|
|
700
699
|
```python
|
|
701
700
|
import pulumi
|
|
702
701
|
import pulumi_vsphere as vsphere
|
|
@@ -718,7 +717,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
718
717
|
host_system_id=host.id,
|
|
719
718
|
virtual_switch_name=host_virtual_switch.name)
|
|
720
719
|
```
|
|
721
|
-
<!--End PulumiCodeChooser -->
|
|
722
720
|
|
|
723
721
|
**Create a Port Group with a VLAN and ab Override:**
|
|
724
722
|
|
|
@@ -728,7 +726,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
728
726
|
to ensure that all traffic is seen on the port. The setting overrides
|
|
729
727
|
the implicit default of `false` set on the standard switch.
|
|
730
728
|
|
|
731
|
-
<!--Start PulumiCodeChooser -->
|
|
732
729
|
```python
|
|
733
730
|
import pulumi
|
|
734
731
|
import pulumi_vsphere as vsphere
|
|
@@ -752,7 +749,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
752
749
|
vlan_id=4095,
|
|
753
750
|
allow_promiscuous=True)
|
|
754
751
|
```
|
|
755
|
-
<!--End PulumiCodeChooser -->
|
|
756
752
|
|
|
757
753
|
## Importing
|
|
758
754
|
|
|
@@ -810,7 +806,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
810
806
|
|
|
811
807
|
**Create a Virtual Switch and Bind a Port Group:**
|
|
812
808
|
|
|
813
|
-
<!--Start PulumiCodeChooser -->
|
|
814
809
|
```python
|
|
815
810
|
import pulumi
|
|
816
811
|
import pulumi_vsphere as vsphere
|
|
@@ -832,7 +827,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
832
827
|
host_system_id=host.id,
|
|
833
828
|
virtual_switch_name=host_virtual_switch.name)
|
|
834
829
|
```
|
|
835
|
-
<!--End PulumiCodeChooser -->
|
|
836
830
|
|
|
837
831
|
**Create a Port Group with a VLAN and ab Override:**
|
|
838
832
|
|
|
@@ -842,7 +836,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
842
836
|
to ensure that all traffic is seen on the port. The setting overrides
|
|
843
837
|
the implicit default of `false` set on the standard switch.
|
|
844
838
|
|
|
845
|
-
<!--Start PulumiCodeChooser -->
|
|
846
839
|
```python
|
|
847
840
|
import pulumi
|
|
848
841
|
import pulumi_vsphere as vsphere
|
|
@@ -866,7 +859,6 @@ class HostPortGroup(pulumi.CustomResource):
|
|
|
866
859
|
vlan_id=4095,
|
|
867
860
|
allow_promiscuous=True)
|
|
868
861
|
```
|
|
869
|
-
<!--End PulumiCodeChooser -->
|
|
870
862
|
|
|
871
863
|
## Importing
|
|
872
864
|
|