pulumi-vsphere 4.16.0a1755845322__py3-none-any.whl → 4.16.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.
- pulumi_vsphere/__init__.py +10 -0
- pulumi_vsphere/compute_cluster.py +203 -462
- pulumi_vsphere/configuration_profile.py +286 -0
- pulumi_vsphere/datastore_cluster.py +35 -70
- pulumi_vsphere/distributed_port_group.py +21 -42
- pulumi_vsphere/distributed_virtual_switch.py +42 -77
- pulumi_vsphere/get_configuration_profile.py +145 -0
- pulumi_vsphere/get_guest_os_customization.py +4 -0
- pulumi_vsphere/get_ovf_vm_template.py +2 -2
- pulumi_vsphere/ha_vm_override.py +77 -161
- pulumi_vsphere/host_port_group.py +21 -42
- pulumi_vsphere/host_virtual_switch.py +21 -42
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/virtual_machine.py +98 -203
- {pulumi_vsphere-4.16.0a1755845322.dist-info → pulumi_vsphere-4.16.1.dist-info}/METADATA +1 -1
- {pulumi_vsphere-4.16.0a1755845322.dist-info → pulumi_vsphere-4.16.1.dist-info}/RECORD +18 -16
- {pulumi_vsphere-4.16.0a1755845322.dist-info → pulumi_vsphere-4.16.1.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.16.0a1755845322.dist-info → pulumi_vsphere-4.16.1.dist-info}/top_level.txt +0 -0
pulumi_vsphere/__init__.py
CHANGED
|
@@ -13,6 +13,7 @@ from .compute_cluster_vm_anti_affinity_rule import *
|
|
|
13
13
|
from .compute_cluster_vm_dependency_rule import *
|
|
14
14
|
from .compute_cluster_vm_group import *
|
|
15
15
|
from .compute_cluster_vm_host_rule import *
|
|
16
|
+
from .configuration_profile import *
|
|
16
17
|
from .content_library import *
|
|
17
18
|
from .content_library_item import *
|
|
18
19
|
from .custom_attribute import *
|
|
@@ -29,6 +30,7 @@ from .file import *
|
|
|
29
30
|
from .folder import *
|
|
30
31
|
from .get_compute_cluster import *
|
|
31
32
|
from .get_compute_cluster_host_group import *
|
|
33
|
+
from .get_configuration_profile import *
|
|
32
34
|
from .get_content_library import *
|
|
33
35
|
from .get_content_library_item import *
|
|
34
36
|
from .get_custom_attribute import *
|
|
@@ -149,6 +151,14 @@ _utilities.register(
|
|
|
149
151
|
"vsphere:index/computeClusterVmHostRule:ComputeClusterVmHostRule": "ComputeClusterVmHostRule"
|
|
150
152
|
}
|
|
151
153
|
},
|
|
154
|
+
{
|
|
155
|
+
"pkg": "vsphere",
|
|
156
|
+
"mod": "index/configurationProfile",
|
|
157
|
+
"fqn": "pulumi_vsphere",
|
|
158
|
+
"classes": {
|
|
159
|
+
"vsphere:index/configurationProfile:ConfigurationProfile": "ConfigurationProfile"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
152
162
|
{
|
|
153
163
|
"pkg": "vsphere",
|
|
154
164
|
"mod": "index/contentLibrary",
|