pulumi-vsphere 4.10.1__py3-none-any.whl → 4.10.2__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 +28 -0
- pulumi_vsphere/_inputs.py +470 -6
- pulumi_vsphere/_utilities.py +35 -0
- pulumi_vsphere/compute_cluster.py +47 -0
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +0 -4
- pulumi_vsphere/datacenter.py +7 -28
- pulumi_vsphere/datastore_cluster.py +0 -14
- pulumi_vsphere/distributed_port_group.py +56 -7
- pulumi_vsphere/distributed_virtual_switch.py +7 -28
- pulumi_vsphere/entity_permissions.py +56 -35
- pulumi_vsphere/folder.py +7 -28
- pulumi_vsphere/get_compute_cluster_host_group.py +18 -16
- pulumi_vsphere/get_content_library.py +10 -6
- pulumi_vsphere/get_content_library_item.py +12 -8
- pulumi_vsphere/get_datastore.py +9 -9
- pulumi_vsphere/get_datastore_stats.py +34 -32
- pulumi_vsphere/get_dynamic.py +14 -12
- pulumi_vsphere/get_folder.py +10 -2
- pulumi_vsphere/get_guest_os_customization.py +8 -43
- pulumi_vsphere/get_host_base_images.py +97 -0
- pulumi_vsphere/get_host_pci_device.py +4 -2
- pulumi_vsphere/get_host_thumbprint.py +12 -12
- pulumi_vsphere/get_host_vgpu_profile.py +4 -2
- pulumi_vsphere/get_license.py +2 -1
- pulumi_vsphere/get_network.py +14 -14
- pulumi_vsphere/get_resource_pool.py +12 -8
- pulumi_vsphere/get_role.py +4 -4
- pulumi_vsphere/get_virtual_machine.py +58 -33
- pulumi_vsphere/guest_os_customization.py +4 -4
- pulumi_vsphere/nas_datastore.py +7 -7
- pulumi_vsphere/offline_software_depot.py +180 -0
- pulumi_vsphere/outputs.py +495 -40
- pulumi_vsphere/provider.py +2 -6
- pulumi_vsphere/pulumi-plugin.json +2 -1
- pulumi_vsphere/resource_pool.py +2 -2
- pulumi_vsphere/supervisor.py +962 -0
- pulumi_vsphere/virtual_disk.py +10 -16
- pulumi_vsphere/virtual_machine.py +2 -2
- pulumi_vsphere/virtual_machine_class.py +442 -0
- pulumi_vsphere/virtual_machine_snapshot.py +2 -2
- pulumi_vsphere/vm_storage_policy.py +2 -2
- pulumi_vsphere/vnic.py +61 -65
- {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2.dist-info}/METADATA +1 -1
- pulumi_vsphere-4.10.2.dist-info/RECORD +86 -0
- {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.10.1.dist-info/RECORD +0 -82
- {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2.dist-info}/top_level.txt +0 -0
pulumi_vsphere/provider.py
CHANGED
|
@@ -196,10 +196,8 @@ class ProviderArgs:
|
|
|
196
196
|
|
|
197
197
|
@property
|
|
198
198
|
@pulumi.getter(name="vcenterServer")
|
|
199
|
+
@_utilities.deprecated("""This field has been renamed to vsphere_server.""")
|
|
199
200
|
def vcenter_server(self) -> Optional[pulumi.Input[str]]:
|
|
200
|
-
warnings.warn("""This field has been renamed to vsphere_server.""", DeprecationWarning)
|
|
201
|
-
pulumi.log.warn("""vcenter_server is deprecated: This field has been renamed to vsphere_server.""")
|
|
202
|
-
|
|
203
201
|
return pulumi.get(self, "vcenter_server")
|
|
204
202
|
|
|
205
203
|
@vcenter_server.setter
|
|
@@ -413,10 +411,8 @@ class Provider(pulumi.ProviderResource):
|
|
|
413
411
|
|
|
414
412
|
@property
|
|
415
413
|
@pulumi.getter(name="vcenterServer")
|
|
414
|
+
@_utilities.deprecated("""This field has been renamed to vsphere_server.""")
|
|
416
415
|
def vcenter_server(self) -> pulumi.Output[Optional[str]]:
|
|
417
|
-
warnings.warn("""This field has been renamed to vsphere_server.""", DeprecationWarning)
|
|
418
|
-
pulumi.log.warn("""vcenter_server is deprecated: This field has been renamed to vsphere_server.""")
|
|
419
|
-
|
|
420
416
|
return pulumi.get(self, "vcenter_server")
|
|
421
417
|
|
|
422
418
|
@property
|
pulumi_vsphere/resource_pool.py
CHANGED
|
@@ -650,7 +650,7 @@ class ResourcePool(pulumi.CustomResource):
|
|
|
650
650
|
For more information on vSphere resource pools, please refer to the
|
|
651
651
|
[product documentation][ref-vsphere-resource_pools].
|
|
652
652
|
|
|
653
|
-
[ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/
|
|
653
|
+
[ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
|
|
654
654
|
|
|
655
655
|
## Example Usage
|
|
656
656
|
|
|
@@ -772,7 +772,7 @@ class ResourcePool(pulumi.CustomResource):
|
|
|
772
772
|
For more information on vSphere resource pools, please refer to the
|
|
773
773
|
[product documentation][ref-vsphere-resource_pools].
|
|
774
774
|
|
|
775
|
-
[ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/
|
|
775
|
+
[ref-vsphere-resource_pools]: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-60077B40-66FF-4625-934A-641703ED7601.html
|
|
776
776
|
|
|
777
777
|
## Example Usage
|
|
778
778
|
|