pulumi-vsphere 4.10.0a1710160860__py3-none-any.whl → 4.10.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 (53) hide show
  1. pulumi_vsphere/__init__.py +2 -0
  2. pulumi_vsphere/_inputs.py +96 -230
  3. pulumi_vsphere/compute_cluster.py +700 -1477
  4. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +28 -16
  5. pulumi_vsphere/datacenter.py +26 -12
  6. pulumi_vsphere/datastore_cluster.py +154 -350
  7. pulumi_vsphere/distributed_port_group.py +70 -175
  8. pulumi_vsphere/distributed_virtual_switch.py +308 -805
  9. pulumi_vsphere/file.py +16 -24
  10. pulumi_vsphere/get_compute_cluster.py +0 -4
  11. pulumi_vsphere/get_compute_cluster_host_group.py +8 -10
  12. pulumi_vsphere/get_content_library.py +0 -4
  13. pulumi_vsphere/get_custom_attribute.py +0 -4
  14. pulumi_vsphere/get_datacenter.py +0 -4
  15. pulumi_vsphere/get_datastore.py +27 -7
  16. pulumi_vsphere/get_datastore_cluster.py +0 -4
  17. pulumi_vsphere/get_datastore_stats.py +194 -0
  18. pulumi_vsphere/get_distributed_virtual_switch.py +2 -4
  19. pulumi_vsphere/get_dynamic.py +4 -8
  20. pulumi_vsphere/get_folder.py +0 -4
  21. pulumi_vsphere/get_guest_os_customization.py +0 -4
  22. pulumi_vsphere/get_host.py +0 -4
  23. pulumi_vsphere/get_host_pci_device.py +4 -12
  24. pulumi_vsphere/get_host_thumbprint.py +0 -4
  25. pulumi_vsphere/get_host_vgpu_profile.py +182 -0
  26. pulumi_vsphere/get_license.py +0 -4
  27. pulumi_vsphere/get_network.py +0 -4
  28. pulumi_vsphere/get_policy.py +0 -4
  29. pulumi_vsphere/get_resource_pool.py +2 -10
  30. pulumi_vsphere/get_role.py +0 -4
  31. pulumi_vsphere/get_tag.py +0 -4
  32. pulumi_vsphere/get_tag_category.py +0 -4
  33. pulumi_vsphere/get_vapp_container.py +0 -4
  34. pulumi_vsphere/get_virtual_machine.py +29 -9
  35. pulumi_vsphere/get_vmfs_disks.py +0 -4
  36. pulumi_vsphere/guest_os_customization.py +50 -0
  37. pulumi_vsphere/ha_vm_override.py +189 -378
  38. pulumi_vsphere/host.py +0 -20
  39. pulumi_vsphere/host_port_group.py +12 -24
  40. pulumi_vsphere/host_virtual_switch.py +140 -287
  41. pulumi_vsphere/license.py +0 -32
  42. pulumi_vsphere/outputs.py +167 -230
  43. pulumi_vsphere/resource_pool.py +48 -22
  44. pulumi_vsphere/virtual_disk.py +10 -10
  45. pulumi_vsphere/virtual_machine.py +639 -807
  46. pulumi_vsphere/virtual_machine_snapshot.py +6 -10
  47. pulumi_vsphere/vm_storage_policy.py +72 -84
  48. pulumi_vsphere/vnic.py +8 -20
  49. {pulumi_vsphere-4.10.0a1710160860.dist-info → pulumi_vsphere-4.10.1.dist-info}/METADATA +1 -1
  50. pulumi_vsphere-4.10.1.dist-info/RECORD +82 -0
  51. {pulumi_vsphere-4.10.0a1710160860.dist-info → pulumi_vsphere-4.10.1.dist-info}/WHEEL +1 -1
  52. pulumi_vsphere-4.10.0a1710160860.dist-info/RECORD +0 -80
  53. {pulumi_vsphere-4.10.0a1710160860.dist-info → pulumi_vsphere-4.10.1.dist-info}/top_level.txt +0 -0
pulumi_vsphere/license.py CHANGED
@@ -165,22 +165,6 @@ class License(pulumi.CustomResource):
165
165
  """
166
166
  Provides a VMware vSphere license resource. This can be used to add and remove license keys.
167
167
 
168
- ## Example Usage
169
-
170
- <!--Start PulumiCodeChooser -->
171
- ```python
172
- import pulumi
173
- import pulumi_vsphere as vsphere
174
-
175
- license_key = vsphere.License("licenseKey",
176
- labels={
177
- "VpxClientLicenseLabel": "Hello World",
178
- "Workflow": "Hello World",
179
- },
180
- license_key="452CQ-2EK54-K8742-00000-00000")
181
- ```
182
- <!--End PulumiCodeChooser -->
183
-
184
168
  :param str resource_name: The name of the resource.
185
169
  :param pulumi.ResourceOptions opts: Options for the resource.
186
170
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A map of key/value pairs to be attached as labels (tags) to the license key.
@@ -195,22 +179,6 @@ class License(pulumi.CustomResource):
195
179
  """
196
180
  Provides a VMware vSphere license resource. This can be used to add and remove license keys.
197
181
 
198
- ## Example Usage
199
-
200
- <!--Start PulumiCodeChooser -->
201
- ```python
202
- import pulumi
203
- import pulumi_vsphere as vsphere
204
-
205
- license_key = vsphere.License("licenseKey",
206
- labels={
207
- "VpxClientLicenseLabel": "Hello World",
208
- "Workflow": "Hello World",
209
- },
210
- license_key="452CQ-2EK54-K8742-00000-00000")
211
- ```
212
- <!--End PulumiCodeChooser -->
213
-
214
182
  :param str resource_name: The name of the resource.
215
183
  :param LicenseArgs args: The arguments to use to populate this resource's properties.
216
184
  :param pulumi.ResourceOptions opts: Options for the resource.