pulumi-vsphere 4.14.0a1745952392__py3-none-any.whl → 4.14.0a1747752163__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 (61) hide show
  1. pulumi_vsphere/compute_cluster.py +11 -13
  2. pulumi_vsphere/compute_cluster_host_group.py +71 -3
  3. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +1 -3
  4. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +5 -3
  5. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +5 -3
  6. pulumi_vsphere/compute_cluster_vm_group.py +5 -3
  7. pulumi_vsphere/compute_cluster_vm_host_rule.py +5 -3
  8. pulumi_vsphere/content_library.py +5 -3
  9. pulumi_vsphere/content_library_item.py +5 -3
  10. pulumi_vsphere/custom_attribute.py +5 -3
  11. pulumi_vsphere/datacenter.py +1 -3
  12. pulumi_vsphere/datastore_cluster.py +89 -3
  13. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +5 -3
  14. pulumi_vsphere/distributed_port_group.py +5 -3
  15. pulumi_vsphere/distributed_virtual_switch.py +5 -3
  16. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +1 -3
  17. pulumi_vsphere/dpm_host_override.py +89 -3
  18. pulumi_vsphere/drs_vm_override.py +5 -3
  19. pulumi_vsphere/entity_permissions.py +1 -3
  20. pulumi_vsphere/file.py +35 -52
  21. pulumi_vsphere/folder.py +17 -15
  22. pulumi_vsphere/get_compute_cluster_host_group.py +0 -4
  23. pulumi_vsphere/get_datastore_cluster.py +1 -1
  24. pulumi_vsphere/get_datastore_stats.py +0 -4
  25. pulumi_vsphere/get_dynamic.py +0 -4
  26. pulumi_vsphere/get_folder.py +130 -8
  27. pulumi_vsphere/get_guest_os_customization.py +21 -2
  28. pulumi_vsphere/get_license.py +8 -6
  29. pulumi_vsphere/get_network.py +35 -1
  30. pulumi_vsphere/get_ovf_vm_template.py +4 -4
  31. pulumi_vsphere/guest_os_customization.py +1 -3
  32. pulumi_vsphere/ha_vm_override.py +5 -3
  33. pulumi_vsphere/host.py +61 -9
  34. pulumi_vsphere/host_port_group.py +1 -3
  35. pulumi_vsphere/host_virtual_switch.py +5 -3
  36. pulumi_vsphere/license.py +67 -29
  37. pulumi_vsphere/nas_datastore.py +63 -3
  38. pulumi_vsphere/offline_software_depot.py +5 -3
  39. pulumi_vsphere/outputs.py +33 -0
  40. pulumi_vsphere/provider.py +21 -3
  41. pulumi_vsphere/pulumi-plugin.json +1 -1
  42. pulumi_vsphere/resource_pool.py +490 -166
  43. pulumi_vsphere/role.py +1 -3
  44. pulumi_vsphere/storage_drs_vm_override.py +5 -3
  45. pulumi_vsphere/supervisor.py +3 -5
  46. pulumi_vsphere/tag.py +5 -3
  47. pulumi_vsphere/tag_category.py +5 -3
  48. pulumi_vsphere/vapp_container.py +5 -3
  49. pulumi_vsphere/vapp_entity.py +5 -3
  50. pulumi_vsphere/virtual_disk.py +5 -3
  51. pulumi_vsphere/virtual_machine.py +5 -7
  52. pulumi_vsphere/virtual_machine_class.py +5 -7
  53. pulumi_vsphere/virtual_machine_snapshot.py +1 -3
  54. pulumi_vsphere/vm_storage_policy.py +1 -3
  55. pulumi_vsphere/vmfs_datastore.py +5 -3
  56. pulumi_vsphere/vnic.py +1 -3
  57. {pulumi_vsphere-4.14.0a1745952392.dist-info → pulumi_vsphere-4.14.0a1747752163.dist-info}/METADATA +3 -3
  58. pulumi_vsphere-4.14.0a1747752163.dist-info/RECORD +87 -0
  59. {pulumi_vsphere-4.14.0a1745952392.dist-info → pulumi_vsphere-4.14.0a1747752163.dist-info}/WHEEL +1 -1
  60. pulumi_vsphere-4.14.0a1745952392.dist-info/RECORD +0 -87
  61. {pulumi_vsphere-4.14.0a1745952392.dist-info → pulumi_vsphere-4.14.0a1747752163.dist-info}/top_level.txt +0 -0
pulumi_vsphere/role.py CHANGED
@@ -113,10 +113,8 @@ class _RoleState:
113
113
  pulumi.set(self, "role_privileges", value)
114
114
 
115
115
 
116
+ @pulumi.type_token("vsphere:index/role:Role")
116
117
  class Role(pulumi.CustomResource):
117
-
118
- pulumi_type = "vsphere:index/role:Role"
119
-
120
118
  @overload
121
119
  def __init__(__self__,
122
120
  resource_name: str,
@@ -239,10 +239,8 @@ class _StorageDrsVmOverrideState:
239
239
  pulumi.set(self, "virtual_machine_id", value)
240
240
 
241
241
 
242
+ @pulumi.type_token("vsphere:index/storageDrsVmOverride:StorageDrsVmOverride")
242
243
  class StorageDrsVmOverride(pulumi.CustomResource):
243
-
244
- pulumi_type = "vsphere:index/storageDrsVmOverride:StorageDrsVmOverride"
245
-
246
244
  @overload
247
245
  def __init__(__self__,
248
246
  resource_name: str,
@@ -310,6 +308,8 @@ class StorageDrsVmOverride(pulumi.CustomResource):
310
308
 
311
309
  An example is below:
312
310
 
311
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
312
+
313
313
  ```sh
314
314
  $ pulumi import vsphere:index/storageDrsVmOverride:StorageDrsVmOverride drs_vm_override \\
315
315
  ```
@@ -401,6 +401,8 @@ class StorageDrsVmOverride(pulumi.CustomResource):
401
401
 
402
402
  An example is below:
403
403
 
404
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
405
+
404
406
  ```sh
405
407
  $ pulumi import vsphere:index/storageDrsVmOverride:StorageDrsVmOverride drs_vm_override \\
406
408
  ```
@@ -583,10 +583,8 @@ class _SupervisorState:
583
583
  pulumi.set(self, "worker_ntps", value)
584
584
 
585
585
 
586
+ @pulumi.type_token("vsphere:index/supervisor:Supervisor")
586
587
  class Supervisor(pulumi.CustomResource):
587
-
588
- pulumi_type = "vsphere:index/supervisor:Supervisor"
589
-
590
588
  @overload
591
589
  def __init__(__self__,
592
590
  resource_name: str,
@@ -616,7 +614,7 @@ class Supervisor(pulumi.CustomResource):
616
614
 
617
615
  ### S
618
616
 
619
- **Enable Workload Management on a compute cluster**
617
+ ### Enable Workload Management on a Compute Cluster
620
618
 
621
619
  ```python
622
620
  import pulumi
@@ -704,7 +702,7 @@ class Supervisor(pulumi.CustomResource):
704
702
 
705
703
  ### S
706
704
 
707
- **Enable Workload Management on a compute cluster**
705
+ ### Enable Workload Management on a Compute Cluster
708
706
 
709
707
  ```python
710
708
  import pulumi
pulumi_vsphere/tag.py CHANGED
@@ -136,10 +136,8 @@ class _TagState:
136
136
  pulumi.set(self, "name", value)
137
137
 
138
138
 
139
+ @pulumi.type_token("vsphere:index/tag:Tag")
139
140
  class Tag(pulumi.CustomResource):
140
-
141
- pulumi_type = "vsphere:index/tag:Tag"
142
-
143
141
  @overload
144
142
  def __init__(__self__,
145
143
  resource_name: str,
@@ -220,6 +218,8 @@ class Tag(pulumi.CustomResource):
220
218
 
221
219
  `pulumi import`, as per the example below:
222
220
 
221
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
222
+
223
223
  ```sh
224
224
  $ pulumi import vsphere:index/tag:Tag tag \\
225
225
  ```
@@ -312,6 +312,8 @@ class Tag(pulumi.CustomResource):
312
312
 
313
313
  `pulumi import`, as per the example below:
314
314
 
315
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
316
+
315
317
  ```sh
316
318
  $ pulumi import vsphere:index/tag:Tag tag \\
317
319
  ```
@@ -191,10 +191,8 @@ class _TagCategoryState:
191
191
  pulumi.set(self, "name", value)
192
192
 
193
193
 
194
+ @pulumi.type_token("vsphere:index/tagCategory:TagCategory")
194
195
  class TagCategory(pulumi.CustomResource):
195
-
196
- pulumi_type = "vsphere:index/tagCategory:TagCategory"
197
-
198
196
  @overload
199
197
  def __init__(__self__,
200
198
  resource_name: str,
@@ -240,6 +238,8 @@ class TagCategory(pulumi.CustomResource):
240
238
 
241
239
  its name, using the following command:
242
240
 
241
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
242
+
243
243
  ```sh
244
244
  $ pulumi import vsphere:index/tagCategory:TagCategory category terraform-test-category
245
245
  ```
@@ -301,6 +301,8 @@ class TagCategory(pulumi.CustomResource):
301
301
 
302
302
  its name, using the following command:
303
303
 
304
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
305
+
304
306
  ```sh
305
307
  $ pulumi import vsphere:index/tagCategory:TagCategory category terraform-test-category
306
308
  ```
@@ -624,10 +624,8 @@ class _VappContainerState:
624
624
  pulumi.set(self, "tags", value)
625
625
 
626
626
 
627
+ @pulumi.type_token("vsphere:index/vappContainer:VappContainer")
627
628
  class VappContainer(pulumi.CustomResource):
628
-
629
- pulumi_type = "vsphere:index/vappContainer:VappContainer"
630
-
631
629
  @overload
632
630
  def __init__(__self__,
633
631
  resource_name: str,
@@ -716,6 +714,8 @@ class VappContainer(pulumi.CustomResource):
716
714
 
717
715
  the path to the vApp container, using the following command:
718
716
 
717
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
718
+
719
719
  Example:
720
720
 
721
721
  ```sh
@@ -848,6 +848,8 @@ class VappContainer(pulumi.CustomResource):
848
848
 
849
849
  the path to the vApp container, using the following command:
850
850
 
851
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
852
+
851
853
  Example:
852
854
 
853
855
  ```sh
@@ -395,10 +395,8 @@ class _VappEntityState:
395
395
  pulumi.set(self, "wait_for_guest", value)
396
396
 
397
397
 
398
+ @pulumi.type_token("vsphere:index/vappEntity:VappEntity")
398
399
  class VappEntity(pulumi.CustomResource):
399
-
400
- pulumi_type = "vsphere:index/vappEntity:VappEntity"
401
-
402
400
  @overload
403
401
  def __init__(__self__,
404
402
  resource_name: str,
@@ -476,6 +474,8 @@ class VappEntity(pulumi.CustomResource):
476
474
 
477
475
  the ID of the vApp Entity.
478
476
 
477
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
478
+
479
479
  ```sh
480
480
  $ pulumi import vsphere:index/vappEntity:VappEntity vapp_entity vm-123:res-456
481
481
  ```
@@ -578,6 +578,8 @@ class VappEntity(pulumi.CustomResource):
578
578
 
579
579
  the ID of the vApp Entity.
580
580
 
581
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
582
+
581
583
  ```sh
582
584
  $ pulumi import vsphere:index/vappEntity:VappEntity vapp_entity vm-123:res-456
583
585
  ```
@@ -362,10 +362,8 @@ class _VirtualDiskState:
362
362
  pulumi.set(self, "vmdk_path", value)
363
363
 
364
364
 
365
+ @pulumi.type_token("vsphere:index/virtualDisk:VirtualDisk")
365
366
  class VirtualDisk(pulumi.CustomResource):
366
-
367
- pulumi_type = "vsphere:index/virtualDisk:VirtualDisk"
368
-
369
367
  @overload
370
368
  def __init__(__self__,
371
369
  resource_name: str,
@@ -407,6 +405,8 @@ class VirtualDisk(pulumi.CustomResource):
407
405
 
408
406
  via supplying the full datastore path to the virtual disk. An example is below:
409
407
 
408
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
409
+
410
410
  ```sh
411
411
  $ pulumi import vsphere:index/virtualDisk:VirtualDisk virtual_disk \\
412
412
  ```
@@ -487,6 +487,8 @@ class VirtualDisk(pulumi.CustomResource):
487
487
 
488
488
  via supplying the full datastore path to the virtual disk. An example is below:
489
489
 
490
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
491
+
490
492
  ```sh
491
493
  $ pulumi import vsphere:index/virtualDisk:VirtualDisk virtual_disk \\
492
494
  ```
@@ -1399,7 +1399,7 @@ class _VirtualMachineState:
1399
1399
  :param pulumi.Input[builtins.str] folder: The name of the folder to locate the virtual machine in.
1400
1400
  :param pulumi.Input[builtins.bool] force_power_off: Set to true to force power-off a virtual machine if a graceful guest shutdown failed for a necessary operation.
1401
1401
  :param pulumi.Input[builtins.str] guest_id: The guest ID for the operating system.
1402
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] guest_ip_addresses: The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtul machine is powered off, this list will be empty.
1402
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] guest_ip_addresses: The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtual machine is powered off, this list will be empty.
1403
1403
  :param pulumi.Input[builtins.int] hardware_version: The hardware version for the virtual machine.
1404
1404
  :param pulumi.Input[builtins.str] host_system_id: The ID of an optional host system to pin the virtual machine to.
1405
1405
  :param pulumi.Input[builtins.str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
@@ -2020,7 +2020,7 @@ class _VirtualMachineState:
2020
2020
  @pulumi.getter(name="guestIpAddresses")
2021
2021
  def guest_ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
2022
2022
  """
2023
- The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtul machine is powered off, this list will be empty.
2023
+ The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtual machine is powered off, this list will be empty.
2024
2024
  """
2025
2025
  return pulumi.get(self, "guest_ip_addresses")
2026
2026
 
@@ -2698,10 +2698,8 @@ class _VirtualMachineState:
2698
2698
  pulumi.set(self, "wait_for_guest_net_timeout", value)
2699
2699
 
2700
2700
 
2701
+ @pulumi.type_token("vsphere:index/virtualMachine:VirtualMachine")
2701
2702
  class VirtualMachine(pulumi.CustomResource):
2702
-
2703
- pulumi_type = "vsphere:index/virtualMachine:VirtualMachine"
2704
-
2705
2703
  @overload
2706
2704
  def __init__(__self__,
2707
2705
  resource_name: str,
@@ -3261,7 +3259,7 @@ class VirtualMachine(pulumi.CustomResource):
3261
3259
  :param pulumi.Input[builtins.str] folder: The name of the folder to locate the virtual machine in.
3262
3260
  :param pulumi.Input[builtins.bool] force_power_off: Set to true to force power-off a virtual machine if a graceful guest shutdown failed for a necessary operation.
3263
3261
  :param pulumi.Input[builtins.str] guest_id: The guest ID for the operating system.
3264
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] guest_ip_addresses: The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtul machine is powered off, this list will be empty.
3262
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] guest_ip_addresses: The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtual machine is powered off, this list will be empty.
3265
3263
  :param pulumi.Input[builtins.int] hardware_version: The hardware version for the virtual machine.
3266
3264
  :param pulumi.Input[builtins.str] host_system_id: The ID of an optional host system to pin the virtual machine to.
3267
3265
  :param pulumi.Input[builtins.str] hv_mode: The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.
@@ -3675,7 +3673,7 @@ class VirtualMachine(pulumi.CustomResource):
3675
3673
  @pulumi.getter(name="guestIpAddresses")
3676
3674
  def guest_ip_addresses(self) -> pulumi.Output[Sequence[builtins.str]]:
3677
3675
  """
3678
- The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtul machine is powered off, this list will be empty.
3676
+ The current list of IP addresses on this machine, including the value of `default_ip_address`. If VMware Tools is not running on the virtual machine, or if the virtual machine is powered off, this list will be empty.
3679
3677
  """
3680
3678
  return pulumi.get(self, "guest_ip_addresses")
3681
3679
 
@@ -223,10 +223,8 @@ class _VirtualMachineClassState:
223
223
  pulumi.set(self, "vgpu_devices", value)
224
224
 
225
225
 
226
+ @pulumi.type_token("vsphere:index/virtualMachineClass:VirtualMachineClass")
226
227
  class VirtualMachineClass(pulumi.CustomResource):
227
-
228
- pulumi_type = "vsphere:index/virtualMachineClass:VirtualMachineClass"
229
-
230
228
  @overload
231
229
  def __init__(__self__,
232
230
  resource_name: str,
@@ -245,7 +243,7 @@ class VirtualMachineClass(pulumi.CustomResource):
245
243
 
246
244
  ### S
247
245
 
248
- **Create a basic class**
246
+ ### Create a Basic Class
249
247
 
250
248
  ```python
251
249
  import pulumi
@@ -257,7 +255,7 @@ class VirtualMachineClass(pulumi.CustomResource):
257
255
  memory=4096)
258
256
  ```
259
257
 
260
- **Create a class with a vGPU**
258
+ ### Create a Class with a vGPU
261
259
 
262
260
  ```python
263
261
  import pulumi
@@ -293,7 +291,7 @@ class VirtualMachineClass(pulumi.CustomResource):
293
291
 
294
292
  ### S
295
293
 
296
- **Create a basic class**
294
+ ### Create a Basic Class
297
295
 
298
296
  ```python
299
297
  import pulumi
@@ -305,7 +303,7 @@ class VirtualMachineClass(pulumi.CustomResource):
305
303
  memory=4096)
306
304
  ```
307
305
 
308
- **Create a class with a vGPU**
306
+ ### Create a Class with a vGPU
309
307
 
310
308
  ```python
311
309
  import pulumi
@@ -276,10 +276,8 @@ class _VirtualMachineSnapshotState:
276
276
  pulumi.set(self, "virtual_machine_uuid", value)
277
277
 
278
278
 
279
+ @pulumi.type_token("vsphere:index/virtualMachineSnapshot:VirtualMachineSnapshot")
279
280
  class VirtualMachineSnapshot(pulumi.CustomResource):
280
-
281
- pulumi_type = "vsphere:index/virtualMachineSnapshot:VirtualMachineSnapshot"
282
-
283
281
  @overload
284
282
  def __init__(__self__,
285
283
  resource_name: str,
@@ -130,10 +130,8 @@ class _VmStoragePolicyState:
130
130
  pulumi.set(self, "tag_rules", value)
131
131
 
132
132
 
133
+ @pulumi.type_token("vsphere:index/vmStoragePolicy:VmStoragePolicy")
133
134
  class VmStoragePolicy(pulumi.CustomResource):
134
-
135
- pulumi_type = "vsphere:index/vmStoragePolicy:VmStoragePolicy"
136
-
137
135
  @overload
138
136
  def __init__(__self__,
139
137
  resource_name: str,
@@ -453,10 +453,8 @@ class _VmfsDatastoreState:
453
453
  pulumi.set(self, "url", value)
454
454
 
455
455
 
456
+ @pulumi.type_token("vsphere:index/vmfsDatastore:VmfsDatastore")
456
457
  class VmfsDatastore(pulumi.CustomResource):
457
-
458
- pulumi_type = "vsphere:index/vmfsDatastore:VmfsDatastore"
459
-
460
458
  @overload
461
459
  def __init__(__self__,
462
460
  resource_name: str,
@@ -573,6 +571,8 @@ class VmfsDatastore(pulumi.CustomResource):
573
571
 
574
572
  ID.
575
573
 
574
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
575
+
576
576
  ```sh
577
577
  $ pulumi import vsphere:index/vmfsDatastore:VmfsDatastore datastore datastore-123:host-10
578
578
  ```
@@ -743,6 +743,8 @@ class VmfsDatastore(pulumi.CustomResource):
743
743
 
744
744
  ID.
745
745
 
746
+ [docs-import]: https://developer.hashicorp.com/terraform/cli/import
747
+
746
748
  ```sh
747
749
  $ pulumi import vsphere:index/vmfsDatastore:VmfsDatastore datastore datastore-123:host-10
748
750
  ```
pulumi_vsphere/vnic.py CHANGED
@@ -354,10 +354,8 @@ class _VnicState:
354
354
  pulumi.set(self, "services", value)
355
355
 
356
356
 
357
+ @pulumi.type_token("vsphere:index/vnic:Vnic")
357
358
  class Vnic(pulumi.CustomResource):
358
-
359
- pulumi_type = "vsphere:index/vnic:Vnic"
360
-
361
359
  @overload
362
360
  def __init__(__self__,
363
361
  resource_name: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_vsphere
3
- Version: 4.14.0a1745952392
3
+ Version: 4.14.0a1747752163
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -9,9 +9,9 @@ Keywords: pulumi,vsphere
9
9
  Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.142.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
- Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
15
 
16
16
  [![Actions Status](https://github.com/pulumi/pulumi-vsphere/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-vsphere/actions)
17
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,87 @@
1
+ pulumi_vsphere/__init__.py,sha256=jnjSPKaBa-HqgX5RoNYaQtPJORCkVN9kNBQX11HI3W4,11131
2
+ pulumi_vsphere/_inputs.py,sha256=Icvu3aEWfU-wEkXt8OLuOyqtpaW3tbTToMBxMIrZQIY,195101
3
+ pulumi_vsphere/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
+ pulumi_vsphere/compute_cluster.py,sha256=c4LoYG-fKDOEJ4hXVjTNwzF7yrEpESS3nMmn0bcdHp4,241289
5
+ pulumi_vsphere/compute_cluster_host_group.py,sha256=d_-gd-849jG8pKwAJ_2k0GaEEQ5af55qz3ZyGO-EDbA,18823
6
+ pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=Rof58zLS-O2gSbp7Yh7JEEzmXE4YVSzc80301PebI-8,26449
7
+ pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=0IgC1zhnziFwftbo5T3w9Ltiezt-uppj_JGEMyqtEPs,19544
8
+ pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=1UyZJW9K3FS6paTr11g-M93Y5cY3g1E5kUU0Pz1xaJ8,30697
9
+ pulumi_vsphere/compute_cluster_vm_group.py,sha256=RaCnyaxFE5szZNokcH90XBSQgc3a7xBfLx92dCCTJmQ,23635
10
+ pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=tGiic5UBC4I3dlPxM08rpUb8PHwlry0T_iTmivHYCgU,33342
11
+ pulumi_vsphere/content_library.py,sha256=Ai9wtJaBpekn7Wr5HHIW3o-_-WXSZnCnD5AUI5VCu84,20352
12
+ pulumi_vsphere/content_library_item.py,sha256=FLKod1HOrIz5vbRjIhLsDJP1d7YN0iPTzWXNOot5PqA,22094
13
+ pulumi_vsphere/custom_attribute.py,sha256=L3TRGs13OEGkq5L3lA_wfIA2BNo3ogSid67H_GE98us,12407
14
+ pulumi_vsphere/datacenter.py,sha256=D-TxazmUaSEyhoCPrNXYyQxIeEYq823dsQExGIgdK0U,19601
15
+ pulumi_vsphere/datastore_cluster.py,sha256=wmZplAcL_GR6vUEIYttRrFx_A9DWyg80x19jiImbxD8,91394
16
+ pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=Yx5q6ShboW5a_8kXpWHAw0F0zknBt7uBVNy6jP8f0Vc,24372
17
+ pulumi_vsphere/distributed_port_group.py,sha256=_vJbRkXSQ3-gfB1yhsgobhMlRHBWGEHRg9XmcaTgfls,148096
18
+ pulumi_vsphere/distributed_virtual_switch.py,sha256=VGEJx6zaH5aTuoncAtTwIuKWjFQr0iOWtlT9Fluq9Nw,270150
19
+ pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py,sha256=Di2uMgUW-rkSTV79_j3fkkevTu_friNmWyuz4LLPUSs,15286
20
+ pulumi_vsphere/dpm_host_override.py,sha256=4GrJedkw0kRVRaJBGAX0s5sGqqKVKKUbu_BckLHOs8I,22009
21
+ pulumi_vsphere/drs_vm_override.py,sha256=6j_B8i3GqMSx_VeVa3E1YxlhVOVcj2eeUD7NFUrYl24,23487
22
+ pulumi_vsphere/entity_permissions.py,sha256=VCEVK_IBzOUBov3O_xn5yJMT-K4SMj_mK5YT0y9lg5s,13496
23
+ pulumi_vsphere/file.py,sha256=O3kX3F-Pmd90fezV0nuMXSvYFqyukI6E7cxSlm1I_K0,23300
24
+ pulumi_vsphere/folder.py,sha256=pWeImw9uS4FYT2_dvhl750WCzNEZ_1qUqrf05-oSVq4,30414
25
+ pulumi_vsphere/get_compute_cluster.py,sha256=-NaM93Fq-JgmIFzuA5kY1Z9FCT7NbC42wW0or_xlvvg,6898
26
+ pulumi_vsphere/get_compute_cluster_host_group.py,sha256=taMwncRmFKgXbuJEofWzB5aeBh0xAOsQJnAK16A_Nxo,6829
27
+ pulumi_vsphere/get_content_library.py,sha256=9M8ycNkDpFwABOvXIlW4NfLAZS4NAInmKNqIZkxvYOY,3902
28
+ pulumi_vsphere/get_content_library_item.py,sha256=8HoXLsqybrzA0pO0xa2xHXkmF7yYHfurr46beH-oTRs,5466
29
+ pulumi_vsphere/get_custom_attribute.py,sha256=bwypUREOMYcSku4VebVIVf8wDh4NcjafEBz-9lD0YxE,5109
30
+ pulumi_vsphere/get_datacenter.py,sha256=iMwem0xnkMYoiuhW4Jgm7eGfsRniLMkGGE7hLeqWBbU,5442
31
+ pulumi_vsphere/get_datastore.py,sha256=U1TZHZ5LaaZS7niQbmjFN2Qpujq-yeax_VMeURuyUSA,6910
32
+ pulumi_vsphere/get_datastore_cluster.py,sha256=7m8p6CnGWFD0DHbLAJH56yqYaB9Ot28zJlNcv1cpcT0,6589
33
+ pulumi_vsphere/get_datastore_stats.py,sha256=o8hC8evvGFZxIo1XoTeZyN8BbfByoIAp5PZR9L-nB-o,8354
34
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=a9Rykv6wOrwSHCUq_rOcZRDqYmWSH98c4ejHW_ZblXM,7834
35
+ pulumi_vsphere/get_dynamic.py,sha256=ARZuF0Wipih6JdS-m9KL36ovA8kjxYgpAQO-v-__Cio,6715
36
+ pulumi_vsphere/get_folder.py,sha256=hDDcrjqfNYh594m23asXvK-mudZburkH7woTyNGIh_w,11470
37
+ pulumi_vsphere/get_guest_os_customization.py,sha256=fXXtcfMcrVkptCjXDhDesM_-TMgF7wzWxn5JzNoHLVY,6818
38
+ pulumi_vsphere/get_host.py,sha256=2JzVOuqQXM5w1y0Bwju2qenxvKBml-uhKxkJ3pS0vqo,6072
39
+ pulumi_vsphere/get_host_base_images.py,sha256=UUGI4W5IVWrArMqEczginXf2Za5uP_cVYKt_idCH1vI,3545
40
+ pulumi_vsphere/get_host_pci_device.py,sha256=80xlwgrmUBLX6yUsD4mhlGF-vSPr7Hhxex5TbRBS-2E,8780
41
+ pulumi_vsphere/get_host_thumbprint.py,sha256=Mu81-ylS2qPfR9KYK1nt2hvjWFnoDwJZti8HAXqSees,6305
42
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=btURFCIycDMUbRW28YkpjRnWAntaSiyT444TACP3MRI,7257
43
+ pulumi_vsphere/get_license.py,sha256=92tCaCwiD0GPdGLrYjGOJEq3fBzcIGlQzifkyJ0YCKM,6248
44
+ pulumi_vsphere/get_network.py,sha256=3SefkAP_ErVi7IjmwE55jTX3rM2EWr3M2ikj9lojCj0,12106
45
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=vePe5U179AwjDMRCFnYfb0v3x_L6bIxWpcXFTmVZSQw,30008
46
+ pulumi_vsphere/get_policy.py,sha256=g_KmDeVUvXR3l-SZe_Qd6TxsNuchdN7yxB23IBiwxvw,4068
47
+ pulumi_vsphere/get_resource_pool.py,sha256=tU7iTg1XKDnwcZaGZPDovg5RzXsDIVFf-2R0fCl-sg0,8096
48
+ pulumi_vsphere/get_role.py,sha256=4rat9Jn10n4ocUf8lc5QuQ_GdUbH52R6ktGSyn43Y_s,6265
49
+ pulumi_vsphere/get_tag.py,sha256=cmCrUKj39Mfo5nLdTI_syUzMoejQFIH8ekSK6T7y7j8,5667
50
+ pulumi_vsphere/get_tag_category.py,sha256=tT6NCXC-h5FwQtT7uSbUqHv1LM7-txLkZbkdTuUk8Mo,5911
51
+ pulumi_vsphere/get_vapp_container.py,sha256=hwaTEPbM2JSHyNaXWMNrGznnPKkLuyBFB-5dAfA1xEw,5291
52
+ pulumi_vsphere/get_virtual_machine.py,sha256=nWl3g-Vzrk3n688_dAIQcbPJiAusrPiHRRec1GA6DME,71159
53
+ pulumi_vsphere/get_vmfs_disks.py,sha256=7pSfSUUoqpImEIf4qe6SAGNNDA3PLARepaHPvbSItOA,7720
54
+ pulumi_vsphere/guest_os_customization.py,sha256=OC9O96KebqDRl67uMGSFY_fF4X5j5y3CK7r72L9sq3c,17725
55
+ pulumi_vsphere/ha_vm_override.py,sha256=c4h7inqBNir2PUj8KFz6w6GCNnFdF1K5CQ-XPKFJaFI,61214
56
+ pulumi_vsphere/host.py,sha256=d7MrruekBTL3mEIEJQMjosAkzwlgH8t_3mpmNOxiCDw,54517
57
+ pulumi_vsphere/host_port_group.py,sha256=k2HmJfVaV5rlkcWeA4A3v8Igu8-HjjDtjkNUw-nugR0,59782
58
+ pulumi_vsphere/host_virtual_switch.py,sha256=zXH5fhPFW7B0d3fOUan8xrkU_TzPC1YK8ddfXLGLJUQ,65997
59
+ pulumi_vsphere/license.py,sha256=J4B4piVZnkSHKT-s_6lSQN1PAUoJ3Yb67EJtukLMphI,13715
60
+ pulumi_vsphere/nas_datastore.py,sha256=zscN9y3bHNnVyHNfQy4tnhPIcAGUjuSfOvD-lO0FCwo,54556
61
+ pulumi_vsphere/offline_software_depot.py,sha256=Qk0ZYww6iHhTuKY3KqCJrX0kwazfr7_1Dqo-eiruy1c,7803
62
+ pulumi_vsphere/outputs.py,sha256=PMoizJ5RksVrBtPMpt7LKfv7E5doLHLyUL8eYcVfmRs,166015
63
+ pulumi_vsphere/provider.py,sha256=yM0EZxJ3WKaAUEJLHZCVwzSWCh5-LzYvj9ubSub13II,22243
64
+ pulumi_vsphere/pulumi-plugin.json,sha256=1MVk56N6C3nE2Sygr3fP3PUIMkA3469FqHYY1zkuSs0,84
65
+ pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ pulumi_vsphere/resource_pool.py,sha256=0fHxI6r2F__guZQEXzgMn0RUMRXnYNOmZT5uffXwuYk,58753
67
+ pulumi_vsphere/role.py,sha256=VXn3Awa2GMNDo_9Cj9bpBjw0OsPHU32AogANfF3-hpo,9771
68
+ pulumi_vsphere/storage_drs_vm_override.py,sha256=U5VYUyGIQTF2K6BSUTrJKxJgdHoaIrKyd4vXTx4i8jg,26648
69
+ pulumi_vsphere/supervisor.py,sha256=9qLtcRE4V5MLezLOkMHDyPchr5nDmi-7RZTu3CV4_VY,53370
70
+ pulumi_vsphere/tag.py,sha256=cGW489B8mjGV-1fy8TaiqDsVYKHO_7joM_PaTb9b9Ic,15709
71
+ pulumi_vsphere/tag_category.py,sha256=mT_mxPO2hv3BbDOwu5mvwdio5PDhXaEma6zFcZPK6kA,18484
72
+ pulumi_vsphere/vapp_container.py,sha256=fXOzZa2stT7fLFls-fQ8QtpfPXvIQ4Ht6nbLJWMdOdM,56537
73
+ pulumi_vsphere/vapp_entity.py,sha256=QcfAZsfgSYdmOFUJAjlMivVHjyAA1CrMOiCcCNIz9eg,36349
74
+ pulumi_vsphere/virtual_disk.py,sha256=7xMb4G39HWRRPsBiPF5qs23s5qEDUFaLSmV6K694bys,35786
75
+ pulumi_vsphere/virtual_machine.py,sha256=YOaPBdFcsV1yfyDPmL3ZlWgu_ztZOmNoa94tQJOZHHI,234455
76
+ pulumi_vsphere/virtual_machine_class.py,sha256=94MimDjPwy70BGrhtzcjSBPdp07Z_8OGXl6Ivbc1mM4,18185
77
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=b71TpFovhAQXrpnFIUBqNhXX0oqjbG9Brr4smFMio7Y,25948
78
+ pulumi_vsphere/vm_storage_policy.py,sha256=I92H9JPwkb4SoEUr3bYj82tj157jLzleUi9p3GEdod0,20519
79
+ pulumi_vsphere/vmfs_datastore.py,sha256=xedZGq50ijYOQav2ObUlmNU_3lKT0Vga5bFdlbYLcQQ,46905
80
+ pulumi_vsphere/vnic.py,sha256=iQRs-zoAJ6fBIiGCqwmgNdlpuOGtLauqgt5wo7GdWYI,31961
81
+ pulumi_vsphere/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
82
+ pulumi_vsphere/config/__init__.pyi,sha256=T8DcZ3COfafIyal5gnO0dWbdD7N942JKDLtF7ZapMw4,1541
83
+ pulumi_vsphere/config/vars.py,sha256=6_WK19_hs7A-gCkeKi-Wm1yHQdPSxnklmk82PwRGUfo,3400
84
+ pulumi_vsphere-4.14.0a1747752163.dist-info/METADATA,sha256=_J6A3bS99UmVNBuVfme-vuFVW2MWdifzdor7KMdyBp0,5024
85
+ pulumi_vsphere-4.14.0a1747752163.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
86
+ pulumi_vsphere-4.14.0a1747752163.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
87
+ pulumi_vsphere-4.14.0a1747752163.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.0.0)
2
+ Generator: setuptools (80.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,87 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=jnjSPKaBa-HqgX5RoNYaQtPJORCkVN9kNBQX11HI3W4,11131
2
- pulumi_vsphere/_inputs.py,sha256=Icvu3aEWfU-wEkXt8OLuOyqtpaW3tbTToMBxMIrZQIY,195101
3
- pulumi_vsphere/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_vsphere/compute_cluster.py,sha256=OgyEMmPNEIrmECXYBmUXBpOETJly56DzMD4FhqEjIkI,241195
5
- pulumi_vsphere/compute_cluster_host_group.py,sha256=ehyi7_PlsRB8XMwyceZTz_fJXH5TpdmfxHYb0D37Xbc,16083
6
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=mYsp02Vf2c4pAyNC2qkz4unBrg7GLWz5Kpgk1khYmVc,26449
7
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=imhZfMHPKXSzwxUlOIrg6qlLRzGSe1A9OsEEWf0PNyg,19390
8
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=yCNxdClnmkSKDCH7EFo3anw41qh-XaptlIVrmpMJOmc,30543
9
- pulumi_vsphere/compute_cluster_vm_group.py,sha256=KvAlPTVJTjMtLrzjd-V98bWFGl4xnusIS-n4__uOtxs,23481
10
- pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=ql3nV3SrC5jNaCLD7foGMmHexlqe7D_o0ngAQhmf65E,33188
11
- pulumi_vsphere/content_library.py,sha256=2aqhKTZe2BnSAuZ0W2sWxzuCSKImzqM7TAj0SAHFEQY,20198
12
- pulumi_vsphere/content_library_item.py,sha256=1s-Pi_fSEAzDJRf6GyaW6g2KuELyTWvOd-D0iLybiOc,21940
13
- pulumi_vsphere/custom_attribute.py,sha256=QpdDDDu7NrrAcao05VwthrvJ6QN7vXmto_uu1LTIN7k,12253
14
- pulumi_vsphere/datacenter.py,sha256=-nmd5NEn6zaioRBtFI5kYr48Z6ThW_DXdDJlhE4X8ek,19601
15
- pulumi_vsphere/datastore_cluster.py,sha256=QTF3vHqZ9_6oL9iYzilhCbkJGDdlfMPztZPyiVwpHtA,87980
16
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=ffQuAa1oHrGWF_iukqG6XAfReqCGUtlp4rr3S_5Gmyw,24218
17
- pulumi_vsphere/distributed_port_group.py,sha256=rEgW4ysUqrTYKuSMnysuOQrXUE5ecQ65XL0Gf5A8Hpk,147942
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=88ejKLCZOBeCJpc07KIjrhejwZaaGPsVNxgIXRnEYxs,269996
19
- pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py,sha256=IOuHvqsS_OfOPzQpG-BfwVqZe3XSyWS1iPM9p7LCNXw,15286
20
- pulumi_vsphere/dpm_host_override.py,sha256=YSxlswHXGKep5wMeA2FUKc41EJo2LhS3k-I-AtYP1Ig,18385
21
- pulumi_vsphere/drs_vm_override.py,sha256=Sj0UZx8lATKflD3nleIWVkYqlZSF4adZX99PBbrlotc,23333
22
- pulumi_vsphere/entity_permissions.py,sha256=6fBwrbi-ZCr7idjkvoBqhKX4yIye_fqa4Rd8krECZ9s,13496
23
- pulumi_vsphere/file.py,sha256=HgW85lOQ7i5AaUvxO8ZokZZnunfaeBLebtYgPP51cVs,24479
24
- pulumi_vsphere/folder.py,sha256=XkYIDj06wkVWsbJH8BHed4DD9S62_rciwP-0IT-0LPg,30172
25
- pulumi_vsphere/get_compute_cluster.py,sha256=-NaM93Fq-JgmIFzuA5kY1Z9FCT7NbC42wW0or_xlvvg,6898
26
- pulumi_vsphere/get_compute_cluster_host_group.py,sha256=IoAUe2_OeK9pex75Pm7Nn6xlB3YgS46FgL3Lea36XaI,7101
27
- pulumi_vsphere/get_content_library.py,sha256=9M8ycNkDpFwABOvXIlW4NfLAZS4NAInmKNqIZkxvYOY,3902
28
- pulumi_vsphere/get_content_library_item.py,sha256=8HoXLsqybrzA0pO0xa2xHXkmF7yYHfurr46beH-oTRs,5466
29
- pulumi_vsphere/get_custom_attribute.py,sha256=bwypUREOMYcSku4VebVIVf8wDh4NcjafEBz-9lD0YxE,5109
30
- pulumi_vsphere/get_datacenter.py,sha256=iMwem0xnkMYoiuhW4Jgm7eGfsRniLMkGGE7hLeqWBbU,5442
31
- pulumi_vsphere/get_datastore.py,sha256=U1TZHZ5LaaZS7niQbmjFN2Qpujq-yeax_VMeURuyUSA,6910
32
- pulumi_vsphere/get_datastore_cluster.py,sha256=jNYjDx01ULLatcS3yyleKUTZg68Tm3cVoHPy8rpgRpY,6590
33
- pulumi_vsphere/get_datastore_stats.py,sha256=jexvl97vnhaP_QaPo_T_QjjxIk2zBULnCO9YkiXwLaY,8626
34
- pulumi_vsphere/get_distributed_virtual_switch.py,sha256=a9Rykv6wOrwSHCUq_rOcZRDqYmWSH98c4ejHW_ZblXM,7834
35
- pulumi_vsphere/get_dynamic.py,sha256=qcZvVhkr-oVMNJwvmMePF44qow3Qr3ZjWRHuyEFlf_M,6951
36
- pulumi_vsphere/get_folder.py,sha256=b-fPioZ2puk7OHiTCP0vqncBQveC17OuaUji8Lcc-Bw,4642
37
- pulumi_vsphere/get_guest_os_customization.py,sha256=3z0ADHUALv7XsNMZXoOuJbKVcVZC0PUdaiYnGGRNnis,6302
38
- pulumi_vsphere/get_host.py,sha256=2JzVOuqQXM5w1y0Bwju2qenxvKBml-uhKxkJ3pS0vqo,6072
39
- pulumi_vsphere/get_host_base_images.py,sha256=UUGI4W5IVWrArMqEczginXf2Za5uP_cVYKt_idCH1vI,3545
40
- pulumi_vsphere/get_host_pci_device.py,sha256=80xlwgrmUBLX6yUsD4mhlGF-vSPr7Hhxex5TbRBS-2E,8780
41
- pulumi_vsphere/get_host_thumbprint.py,sha256=Mu81-ylS2qPfR9KYK1nt2hvjWFnoDwJZti8HAXqSees,6305
42
- pulumi_vsphere/get_host_vgpu_profile.py,sha256=btURFCIycDMUbRW28YkpjRnWAntaSiyT444TACP3MRI,7257
43
- pulumi_vsphere/get_license.py,sha256=36CIaVG1UHVrZUgneCLypX5a3CcpJTui_XyB_v4wnJA,6239
44
- pulumi_vsphere/get_network.py,sha256=DEDyq6lBgOkL7xKfRWEVtF6V9kzyue0hWB9jB3MeJy8,9979
45
- pulumi_vsphere/get_ovf_vm_template.py,sha256=Wge4z2TNEneGAJP32FQABgi1sRPDt3IKoVaNSLE18AQ,29988
46
- pulumi_vsphere/get_policy.py,sha256=g_KmDeVUvXR3l-SZe_Qd6TxsNuchdN7yxB23IBiwxvw,4068
47
- pulumi_vsphere/get_resource_pool.py,sha256=tU7iTg1XKDnwcZaGZPDovg5RzXsDIVFf-2R0fCl-sg0,8096
48
- pulumi_vsphere/get_role.py,sha256=4rat9Jn10n4ocUf8lc5QuQ_GdUbH52R6ktGSyn43Y_s,6265
49
- pulumi_vsphere/get_tag.py,sha256=cmCrUKj39Mfo5nLdTI_syUzMoejQFIH8ekSK6T7y7j8,5667
50
- pulumi_vsphere/get_tag_category.py,sha256=tT6NCXC-h5FwQtT7uSbUqHv1LM7-txLkZbkdTuUk8Mo,5911
51
- pulumi_vsphere/get_vapp_container.py,sha256=hwaTEPbM2JSHyNaXWMNrGznnPKkLuyBFB-5dAfA1xEw,5291
52
- pulumi_vsphere/get_virtual_machine.py,sha256=nWl3g-Vzrk3n688_dAIQcbPJiAusrPiHRRec1GA6DME,71159
53
- pulumi_vsphere/get_vmfs_disks.py,sha256=7pSfSUUoqpImEIf4qe6SAGNNDA3PLARepaHPvbSItOA,7720
54
- pulumi_vsphere/guest_os_customization.py,sha256=AG4SyY18yNJs1J4n7NMHFTqScCMOx2PNE0HSPXhKcf4,17725
55
- pulumi_vsphere/ha_vm_override.py,sha256=9xufa2HuiSwNeaR3Wlbe8NH6ranRuFd5xBE8PhrWVMs,61060
56
- pulumi_vsphere/host.py,sha256=0sr_RS6vtWc1d04CauR5v_GgN25VrADnEWCokdfiq7E,52739
57
- pulumi_vsphere/host_port_group.py,sha256=LSrmAq-1wgk_NuLv-PfqGkJ4G9fQpEGzup2Gx5-1b3M,59782
58
- pulumi_vsphere/host_virtual_switch.py,sha256=aCf4ph_mL6gUQ6yZqLcTBdQkvK8VeHN0oIEbMKc-fp4,65843
59
- pulumi_vsphere/license.py,sha256=H9XNS7lmhuYqJain7GQqEvjSOzX8jZ5_5_14N2R1pc8,12768
60
- pulumi_vsphere/nas_datastore.py,sha256=sdKTeYgaChCnk1nco2FgWyRcb7P8A3t_m6dgszQvkbI,52296
61
- pulumi_vsphere/offline_software_depot.py,sha256=gl9KjwJhYQ5R1_9Pb-KXsPwt0Bd9eGo7cwkbx51xdSE,7773
62
- pulumi_vsphere/outputs.py,sha256=kmXk5PbiRYmDMuZn-hxqxtkFuPK8yxGvrsNXT7Kn57I,164716
63
- pulumi_vsphere/provider.py,sha256=SyJXmCSssXibx4G9BJ8GjZGjrkp8457ndk2wVmuRyiA,21373
64
- pulumi_vsphere/pulumi-plugin.json,sha256=XeXJXWDUMg1IGU8VbkHybRQZ2Jucww8ukb8ISDcZQ8s,84
65
- pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- pulumi_vsphere/resource_pool.py,sha256=kcbme2HkasYE--dYyGMmRAWdiQB59esj897SO6439lQ,45607
67
- pulumi_vsphere/role.py,sha256=ZIVb2QTtJOf_4jhXP-ICJAq7yjSlmr1SDEBLmC4SgFo,9771
68
- pulumi_vsphere/storage_drs_vm_override.py,sha256=DHGfGaNr-rTxfcMEfIjRsKOxaOFVt0FDGd7msFLnZFQ,26494
69
- pulumi_vsphere/supervisor.py,sha256=yy8RaYyih-oOe7TjfDdSYR5gkcvZJgjqU-0ExrQhkLk,53370
70
- pulumi_vsphere/tag.py,sha256=m9MIvA4x8HnNYq17uQ7hBCuoNpIYIFg-6hvmIrdjX1A,15555
71
- pulumi_vsphere/tag_category.py,sha256=TiJXnhP8LgFXuoEgeumJH7v67DYORShaUg1rIPRcxh0,18330
72
- pulumi_vsphere/vapp_container.py,sha256=RWJ4vt1WvLNg-FPM0hKWdxf27_9rc-nOaj9Vj3fqLIY,56383
73
- pulumi_vsphere/vapp_entity.py,sha256=1UBUt85G6G6LbpgEHZ1jMSz7hIJSwO7PnzV4R4X70BE,36195
74
- pulumi_vsphere/virtual_disk.py,sha256=N8sXUNL654XQ1y_5mh9UyYFGI1C6gH_ls7DPf5Xvj7E,35632
75
- pulumi_vsphere/virtual_machine.py,sha256=42k7HUpO941fYZ5RuVFKtpDnaUexxL6cB45s_9Hc9t8,234451
76
- pulumi_vsphere/virtual_machine_class.py,sha256=s-P0U1-3RnIi2DTpumv9gxsz9esTVEKGOXQaVcYyhGI,18185
77
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=NJWqwRBxast_ax7dZ2atTLCuPBBavLCCmRYWXsuyA-4,25948
78
- pulumi_vsphere/vm_storage_policy.py,sha256=QZ7CZi8wJdVth_4jQHqcMk5JCCqffb9v6jt4pl3pr2M,20519
79
- pulumi_vsphere/vmfs_datastore.py,sha256=iv33Xqplo43--OwBwwmT5BLF3lF1SsPLfH5RVKoffpw,46751
80
- pulumi_vsphere/vnic.py,sha256=E7bjbdfTxGvltbubhvZxTgiO_4_Jl-DMAvg9U5sH2W0,31961
81
- pulumi_vsphere/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
82
- pulumi_vsphere/config/__init__.pyi,sha256=T8DcZ3COfafIyal5gnO0dWbdD7N942JKDLtF7ZapMw4,1541
83
- pulumi_vsphere/config/vars.py,sha256=6_WK19_hs7A-gCkeKi-Wm1yHQdPSxnklmk82PwRGUfo,3400
84
- pulumi_vsphere-4.14.0a1745952392.dist-info/METADATA,sha256=2ueDqYueQYgsTChfJY0lHHLskJC_j9Gl7d8NCch5vGU,5021
85
- pulumi_vsphere-4.14.0a1745952392.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
86
- pulumi_vsphere-4.14.0a1745952392.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
87
- pulumi_vsphere-4.14.0a1745952392.dist-info/RECORD,,