pulumi-vsphere 4.10.1__py3-none-any.whl → 4.10.2a1720054582__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 (47) hide show
  1. pulumi_vsphere/__init__.py +28 -0
  2. pulumi_vsphere/_inputs.py +470 -6
  3. pulumi_vsphere/_utilities.py +35 -0
  4. pulumi_vsphere/compute_cluster.py +47 -0
  5. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +0 -4
  6. pulumi_vsphere/datacenter.py +7 -28
  7. pulumi_vsphere/datastore_cluster.py +0 -14
  8. pulumi_vsphere/distributed_port_group.py +56 -7
  9. pulumi_vsphere/distributed_virtual_switch.py +7 -28
  10. pulumi_vsphere/entity_permissions.py +56 -35
  11. pulumi_vsphere/folder.py +7 -28
  12. pulumi_vsphere/get_compute_cluster_host_group.py +18 -16
  13. pulumi_vsphere/get_content_library.py +10 -6
  14. pulumi_vsphere/get_content_library_item.py +12 -8
  15. pulumi_vsphere/get_datastore.py +9 -9
  16. pulumi_vsphere/get_datastore_stats.py +34 -32
  17. pulumi_vsphere/get_dynamic.py +14 -12
  18. pulumi_vsphere/get_folder.py +10 -2
  19. pulumi_vsphere/get_guest_os_customization.py +8 -43
  20. pulumi_vsphere/get_host_base_images.py +97 -0
  21. pulumi_vsphere/get_host_pci_device.py +4 -2
  22. pulumi_vsphere/get_host_thumbprint.py +12 -12
  23. pulumi_vsphere/get_host_vgpu_profile.py +4 -2
  24. pulumi_vsphere/get_license.py +2 -1
  25. pulumi_vsphere/get_network.py +14 -14
  26. pulumi_vsphere/get_resource_pool.py +12 -8
  27. pulumi_vsphere/get_role.py +4 -4
  28. pulumi_vsphere/get_virtual_machine.py +58 -33
  29. pulumi_vsphere/guest_os_customization.py +4 -4
  30. pulumi_vsphere/nas_datastore.py +7 -7
  31. pulumi_vsphere/offline_software_depot.py +180 -0
  32. pulumi_vsphere/outputs.py +495 -40
  33. pulumi_vsphere/provider.py +2 -6
  34. pulumi_vsphere/pulumi-plugin.json +2 -1
  35. pulumi_vsphere/resource_pool.py +2 -2
  36. pulumi_vsphere/supervisor.py +962 -0
  37. pulumi_vsphere/virtual_disk.py +10 -16
  38. pulumi_vsphere/virtual_machine.py +2 -2
  39. pulumi_vsphere/virtual_machine_class.py +442 -0
  40. pulumi_vsphere/virtual_machine_snapshot.py +2 -2
  41. pulumi_vsphere/vm_storage_policy.py +2 -2
  42. pulumi_vsphere/vnic.py +61 -65
  43. {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2a1720054582.dist-info}/METADATA +1 -1
  44. pulumi_vsphere-4.10.2a1720054582.dist-info/RECORD +86 -0
  45. {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2a1720054582.dist-info}/WHEEL +1 -1
  46. pulumi_vsphere-4.10.1.dist-info/RECORD +0 -82
  47. {pulumi_vsphere-4.10.1.dist-info → pulumi_vsphere-4.10.2a1720054582.dist-info}/top_level.txt +0 -0
pulumi_vsphere/vnic.py CHANGED
@@ -30,7 +30,7 @@ class VnicArgs:
30
30
  The set of arguments for constructing a Vnic resource.
31
31
  :param pulumi.Input[str] host: ESX host the interface belongs to
32
32
  :param pulumi.Input[str] distributed_port_group: Key of the distributed portgroup the nic will connect to.
33
- :param pulumi.Input[str] distributed_switch_port: UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
33
+ :param pulumi.Input[str] distributed_switch_port: UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
34
34
  :param pulumi.Input['VnicIpv4Args'] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
35
35
  :param pulumi.Input['VnicIpv6Args'] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
36
36
  :param pulumi.Input[str] mac: MAC address of the interface.
@@ -87,7 +87,7 @@ class VnicArgs:
87
87
  @pulumi.getter(name="distributedSwitchPort")
88
88
  def distributed_switch_port(self) -> Optional[pulumi.Input[str]]:
89
89
  """
90
- UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
90
+ UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
91
91
  """
92
92
  return pulumi.get(self, "distributed_switch_port")
93
93
 
@@ -196,7 +196,7 @@ class _VnicState:
196
196
  """
197
197
  Input properties used for looking up and filtering Vnic resources.
198
198
  :param pulumi.Input[str] distributed_port_group: Key of the distributed portgroup the nic will connect to.
199
- :param pulumi.Input[str] distributed_switch_port: UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
199
+ :param pulumi.Input[str] distributed_switch_port: UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
200
200
  :param pulumi.Input[str] host: ESX host the interface belongs to
201
201
  :param pulumi.Input['VnicIpv4Args'] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
202
202
  :param pulumi.Input['VnicIpv6Args'] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
@@ -243,7 +243,7 @@ class _VnicState:
243
243
  @pulumi.getter(name="distributedSwitchPort")
244
244
  def distributed_switch_port(self) -> Optional[pulumi.Input[str]]:
245
245
  """
246
- UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
246
+ UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
247
247
  """
248
248
  return pulumi.get(self, "distributed_switch_port")
249
249
 
@@ -369,32 +369,30 @@ class Vnic(pulumi.CustomResource):
369
369
 
370
370
  ## Example Usage
371
371
 
372
- ### S
373
-
374
372
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
375
373
 
376
374
  ```python
377
375
  import pulumi
378
376
  import pulumi_vsphere as vsphere
379
377
 
380
- dc = vsphere.get_datacenter(name="mydc")
381
- h1 = vsphere.get_host(name="esxi1.host.test",
382
- datacenter_id=dc.id)
383
- d1 = vsphere.DistributedVirtualSwitch("d1",
384
- name="dc_DVPG0",
385
- datacenter_id=dc.id,
378
+ datacenter = vsphere.get_datacenter(name="dc-01")
379
+ host = vsphere.get_host(name="esxi-01.example.com",
380
+ datacenter_id=datacenter.id)
381
+ vds = vsphere.DistributedVirtualSwitch("vds",
382
+ name="vds-01",
383
+ datacenter_id=datacenter.id,
386
384
  hosts=[vsphere.DistributedVirtualSwitchHostArgs(
387
- host_system_id=h1.id,
385
+ host_system_id=host.id,
388
386
  devices=["vnic3"],
389
387
  )])
390
- p1 = vsphere.DistributedPortGroup("p1",
391
- name="test-pg",
388
+ pg = vsphere.DistributedPortGroup("pg",
389
+ name="pg-01",
392
390
  vlan_id=1234,
393
- distributed_virtual_switch_uuid=d1.id)
394
- v1 = vsphere.Vnic("v1",
395
- host=h1.id,
396
- distributed_switch_port=d1.id,
397
- distributed_port_group=p1.id,
391
+ distributed_virtual_switch_uuid=vds.id)
392
+ vnic = vsphere.Vnic("vnic",
393
+ host=host.id,
394
+ distributed_switch_port=vds.id,
395
+ distributed_port_group=pg.id,
398
396
  ipv4=vsphere.VnicIpv4Args(
399
397
  dhcp=True,
400
398
  ),
@@ -407,25 +405,25 @@ class Vnic(pulumi.CustomResource):
407
405
  import pulumi
408
406
  import pulumi_vsphere as vsphere
409
407
 
410
- dc = vsphere.get_datacenter(name="mydc")
411
- h1 = vsphere.get_host(name="esxi1.host.test",
412
- datacenter_id=dc.id)
413
- hvs1 = vsphere.HostVirtualSwitch("hvs1",
414
- name="dc_HPG0",
415
- host_system_id=h1.id,
408
+ datacenter = vsphere.get_datacenter(name="dc-01")
409
+ host = vsphere.get_host(name="esxi-01.example.com",
410
+ datacenter_id=datacenter.id)
411
+ hvs = vsphere.HostVirtualSwitch("hvs",
412
+ name="hvs-01",
413
+ host_system_id=host.id,
416
414
  network_adapters=[
417
415
  "vmnic3",
418
416
  "vmnic4",
419
417
  ],
420
418
  active_nics=["vmnic3"],
421
419
  standby_nics=["vmnic4"])
422
- p1 = vsphere.HostPortGroup("p1",
423
- name="my-pg",
424
- virtual_switch_name=hvs1.name,
425
- host_system_id=h1.id)
426
- v1 = vsphere.Vnic("v1",
427
- host=h1.id,
428
- portgroup=p1.name,
420
+ pg = vsphere.HostPortGroup("pg",
421
+ name="pg-01",
422
+ virtual_switch_name=hvs.name,
423
+ host_system_id=host.id)
424
+ vnic = vsphere.Vnic("vnic",
425
+ host=host.id,
426
+ portgroup=pg.name,
429
427
  ipv4=vsphere.VnicIpv4Args(
430
428
  dhcp=True,
431
429
  ),
@@ -447,7 +445,7 @@ class Vnic(pulumi.CustomResource):
447
445
  :param str resource_name: The name of the resource.
448
446
  :param pulumi.ResourceOptions opts: Options for the resource.
449
447
  :param pulumi.Input[str] distributed_port_group: Key of the distributed portgroup the nic will connect to.
450
- :param pulumi.Input[str] distributed_switch_port: UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
448
+ :param pulumi.Input[str] distributed_switch_port: UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
451
449
  :param pulumi.Input[str] host: ESX host the interface belongs to
452
450
  :param pulumi.Input[pulumi.InputType['VnicIpv4Args']] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
453
451
  :param pulumi.Input[pulumi.InputType['VnicIpv6Args']] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
@@ -468,32 +466,30 @@ class Vnic(pulumi.CustomResource):
468
466
 
469
467
  ## Example Usage
470
468
 
471
- ### S
472
-
473
469
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
474
470
 
475
471
  ```python
476
472
  import pulumi
477
473
  import pulumi_vsphere as vsphere
478
474
 
479
- dc = vsphere.get_datacenter(name="mydc")
480
- h1 = vsphere.get_host(name="esxi1.host.test",
481
- datacenter_id=dc.id)
482
- d1 = vsphere.DistributedVirtualSwitch("d1",
483
- name="dc_DVPG0",
484
- datacenter_id=dc.id,
475
+ datacenter = vsphere.get_datacenter(name="dc-01")
476
+ host = vsphere.get_host(name="esxi-01.example.com",
477
+ datacenter_id=datacenter.id)
478
+ vds = vsphere.DistributedVirtualSwitch("vds",
479
+ name="vds-01",
480
+ datacenter_id=datacenter.id,
485
481
  hosts=[vsphere.DistributedVirtualSwitchHostArgs(
486
- host_system_id=h1.id,
482
+ host_system_id=host.id,
487
483
  devices=["vnic3"],
488
484
  )])
489
- p1 = vsphere.DistributedPortGroup("p1",
490
- name="test-pg",
485
+ pg = vsphere.DistributedPortGroup("pg",
486
+ name="pg-01",
491
487
  vlan_id=1234,
492
- distributed_virtual_switch_uuid=d1.id)
493
- v1 = vsphere.Vnic("v1",
494
- host=h1.id,
495
- distributed_switch_port=d1.id,
496
- distributed_port_group=p1.id,
488
+ distributed_virtual_switch_uuid=vds.id)
489
+ vnic = vsphere.Vnic("vnic",
490
+ host=host.id,
491
+ distributed_switch_port=vds.id,
492
+ distributed_port_group=pg.id,
497
493
  ipv4=vsphere.VnicIpv4Args(
498
494
  dhcp=True,
499
495
  ),
@@ -506,25 +502,25 @@ class Vnic(pulumi.CustomResource):
506
502
  import pulumi
507
503
  import pulumi_vsphere as vsphere
508
504
 
509
- dc = vsphere.get_datacenter(name="mydc")
510
- h1 = vsphere.get_host(name="esxi1.host.test",
511
- datacenter_id=dc.id)
512
- hvs1 = vsphere.HostVirtualSwitch("hvs1",
513
- name="dc_HPG0",
514
- host_system_id=h1.id,
505
+ datacenter = vsphere.get_datacenter(name="dc-01")
506
+ host = vsphere.get_host(name="esxi-01.example.com",
507
+ datacenter_id=datacenter.id)
508
+ hvs = vsphere.HostVirtualSwitch("hvs",
509
+ name="hvs-01",
510
+ host_system_id=host.id,
515
511
  network_adapters=[
516
512
  "vmnic3",
517
513
  "vmnic4",
518
514
  ],
519
515
  active_nics=["vmnic3"],
520
516
  standby_nics=["vmnic4"])
521
- p1 = vsphere.HostPortGroup("p1",
522
- name="my-pg",
523
- virtual_switch_name=hvs1.name,
524
- host_system_id=h1.id)
525
- v1 = vsphere.Vnic("v1",
526
- host=h1.id,
527
- portgroup=p1.name,
517
+ pg = vsphere.HostPortGroup("pg",
518
+ name="pg-01",
519
+ virtual_switch_name=hvs.name,
520
+ host_system_id=host.id)
521
+ vnic = vsphere.Vnic("vnic",
522
+ host=host.id,
523
+ portgroup=pg.name,
528
524
  ipv4=vsphere.VnicIpv4Args(
529
525
  dhcp=True,
530
526
  ),
@@ -617,7 +613,7 @@ class Vnic(pulumi.CustomResource):
617
613
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
618
614
  :param pulumi.ResourceOptions opts: Options for the resource.
619
615
  :param pulumi.Input[str] distributed_port_group: Key of the distributed portgroup the nic will connect to.
620
- :param pulumi.Input[str] distributed_switch_port: UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
616
+ :param pulumi.Input[str] distributed_switch_port: UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
621
617
  :param pulumi.Input[str] host: ESX host the interface belongs to
622
618
  :param pulumi.Input[pulumi.InputType['VnicIpv4Args']] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
623
619
  :param pulumi.Input[pulumi.InputType['VnicIpv6Args']] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
@@ -655,7 +651,7 @@ class Vnic(pulumi.CustomResource):
655
651
  @pulumi.getter(name="distributedSwitchPort")
656
652
  def distributed_switch_port(self) -> pulumi.Output[Optional[str]]:
657
653
  """
658
- UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
654
+ UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
659
655
  """
660
656
  return pulumi.get(self, "distributed_switch_port")
661
657
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_vsphere
3
- Version: 4.10.1
3
+ Version: 4.10.2a1720054582
4
4
  Summary: A Pulumi package for creating vsphere resources
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,86 @@
1
+ pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
2
+ pulumi_vsphere/_inputs.py,sha256=lN6ecF2j2oZ9jyWFXjEM20hr_2pcv5fVx_7-NpRwPLo,140319
3
+ pulumi_vsphere/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
4
+ pulumi_vsphere/compute_cluster.py,sha256=FLa9KrvlULmst9Cip4LkGhKmxnM_6-x2bwHkjvxMRPs,226411
5
+ pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
6
+ pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=IHctuI4O7vGe7UWDv_qGbclP1nKOr0yO5Wvcdp_8lmo,25163
7
+ pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=-5K0E6HRhIWGBKAcMZsqXNFQLWIAhJs07_PKVi-3PBg,17554
8
+ pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=_q1lrkr1pWzl10dGA1PdRSOXibmYvLKBLTdZG0O0YNQ,21613
9
+ pulumi_vsphere/compute_cluster_vm_group.py,sha256=l3gk0qAc9UiX6DpkCZl30L6qmTigu4pGo5O1YBJoatU,13459
10
+ pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=Am9PFFU8PghrdOTRbqJzeFS6nLxgX5Pob-SKqCEaY3k,24422
11
+ pulumi_vsphere/content_library.py,sha256=-3mst76bjX3vq4izMl8pIlZR2B9RjEG3A0VA7jpOfRc,15087
12
+ pulumi_vsphere/content_library_item.py,sha256=qjHPcnsxpNiFOzCPxQXngZXtR1R1RrsqAhdJgpqgZUc,15640
13
+ pulumi_vsphere/custom_attribute.py,sha256=wTuv97G4uXpJ9kv_TaKZc1OYj1e_68c9dAsFc9Ds5nQ,9031
14
+ pulumi_vsphere/datacenter.py,sha256=DP4KPkyplkDpV2-rPjQ6z6mosbUBwHJjq0pB64WdVuo,18630
15
+ pulumi_vsphere/datastore_cluster.py,sha256=GnsFuuY2iRpOhFTMBnF94I5Y_3jkjigr44RtDmcN0Uk,82368
16
+ pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=8eKwKS9ZYaZICVxjNrNLDDBqBKyQqOJmC_nt0jlqYJY,16842
17
+ pulumi_vsphere/distributed_port_group.py,sha256=Biek5d3makCA4mTuM7DyfmibAeSYuZn5xvf1mXFCCyg,134307
18
+ pulumi_vsphere/distributed_virtual_switch.py,sha256=Duos_uWPzBhH6OW7FRvniIA9YUUGLfJ6aHPxLDrHZCA,248196
19
+ pulumi_vsphere/dpm_host_override.py,sha256=i3eG4PkI3Hi2KodP6OFAGC6QLczmNDRcSIt9MbK7U1Q,15371
20
+ pulumi_vsphere/drs_vm_override.py,sha256=qGlUe9gq9StYW4OHDSZKA03j0ru3Ruvb9SEaVcpHo1c,16657
21
+ pulumi_vsphere/entity_permissions.py,sha256=1Xccvvtt3H3EzK1Z4PihIdLB5317LdC-WMG6psBkNr4,12842
22
+ pulumi_vsphere/file.py,sha256=uJeBCHJ2IXJO6Dj5vYeZvkYaHNNoWhkQ6PzmWVwkRIE,23397
23
+ pulumi_vsphere/folder.py,sha256=lITGsvOq_FvltVZdQDOG9Oz45ti2XqUxo9Bg7F8uV1o,24646
24
+ pulumi_vsphere/get_compute_cluster.py,sha256=nBgxOLhF9RV5vGGwgCxeNCyVNKr_tQi44VnaBhBbX1M,5997
25
+ pulumi_vsphere/get_compute_cluster_host_group.py,sha256=Po6-0iXe3KNHYb0e6uBvl9AKXsgjyh4mz2YfKQ_qXps,6164
26
+ pulumi_vsphere/get_content_library.py,sha256=OvtzMI4plfMyPnHrTV39BFJ4OQDmkQRif7vnW9HPGoE,3236
27
+ pulumi_vsphere/get_content_library_item.py,sha256=pxYlJl6sTUulRxDL21CmFrWs3PfItrkooQF1aKHDykw,4526
28
+ pulumi_vsphere/get_custom_attribute.py,sha256=skM0hjQmPyYCQdEgXjbofu9Ulez4ylw9jQKb9g3Zz2I,4354
29
+ pulumi_vsphere/get_datacenter.py,sha256=sfXiHyHNnm9S-bUpcbaGw1ei7ZMNJ1-s_lV6Z7B0UH4,4083
30
+ pulumi_vsphere/get_datastore.py,sha256=2y6wC5RYP6agawoiaXW2qc0sm82PM2GkeMlOWnhV7bE,5979
31
+ pulumi_vsphere/get_datastore_cluster.py,sha256=4nkwUsNLdqWIoxYhiFzkFoYjr4zyOf-5UToK_0vbELg,5157
32
+ pulumi_vsphere/get_datastore_stats.py,sha256=-KFEHIKK1EStNWxjgNXOL-O6Wy8-yS3TCz5NMhnrifY,7646
33
+ pulumi_vsphere/get_distributed_virtual_switch.py,sha256=icwEpCtIYmPBXvT_3M_dHV0fjwPzbR7cQWQtN-75F0c,6922
34
+ pulumi_vsphere/get_dynamic.py,sha256=CdhKrE8AwkRIgWwlvtcfCKy9awzC-zr1LqU7WdQogu4,6030
35
+ pulumi_vsphere/get_folder.py,sha256=rkdRDdJGuZpbcuA1PIVYr90vSTZIk26L-FCSql1H7rE,3999
36
+ pulumi_vsphere/get_guest_os_customization.py,sha256=inPUaDfJiThL6BfWVMqWHcVnOCbDd0aBTWbHMaS3Dus,5288
37
+ pulumi_vsphere/get_host.py,sha256=aZ-2kism0hoSyeCGALJr759ILDrk2ohDskmexXRwSb8,5200
38
+ pulumi_vsphere/get_host_base_images.py,sha256=3DqvJWpPTjOgi2PiQMTaCBxMFdvXUZYH883VwCWPBSE,2936
39
+ pulumi_vsphere/get_host_pci_device.py,sha256=fp5WacjO3RBLrE16D6s23hkuN4je0KaNld9N8pX6Fos,7634
40
+ pulumi_vsphere/get_host_thumbprint.py,sha256=MjZDDUPSzOhicLmslzATnk8hKPu2wDA3St4vr5PnUxk,4963
41
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=4y8v6Zj8IhqrAQVhwtM-tZ1blVNFmCOBiI4VenUSu3c,6370
42
+ pulumi_vsphere/get_license.py,sha256=QOSDZXEch29tPPs2-Ja7fWFG5t53f3amLTRhuNjwrFY,5266
43
+ pulumi_vsphere/get_network.py,sha256=_w0wCBVKFsNdVAA3Ps-VX8F3KOCtQ_1tjcZ7rU8EY2Q,7133
44
+ pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
45
+ pulumi_vsphere/get_policy.py,sha256=ntQk22TpTCHRg4X5aYx4-oTfxyofEqfywYmFHmCF-II,3425
46
+ pulumi_vsphere/get_resource_pool.py,sha256=9NGv83oYMVaG66UIiUtlA-bY2XQFQ-5EYBQTKqBusYs,7267
47
+ pulumi_vsphere/get_role.py,sha256=N7ITzqIrfczeEG9t8wT7cl045u-TCQfOmOi_uzXbA1w,5211
48
+ pulumi_vsphere/get_tag.py,sha256=NJIo7J9NsSr0SxCScu7QrNn41dWVc5vXAcIQN5VmAj8,4816
49
+ pulumi_vsphere/get_tag_category.py,sha256=R-kLcRAuATkFp8PPKt01OGp8lpmceKnRf9lEn_ZJzUk,5034
50
+ pulumi_vsphere/get_vapp_container.py,sha256=1OUABHMT3qFbSQRqFBCQNltmuo_OF983GJR09vnJUsY,4473
51
+ pulumi_vsphere/get_virtual_machine.py,sha256=Q3cRrr1j4zLNkH4mf7v-fcc0Gi7U9hNUikWtIV8f3MM,59165
52
+ pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
53
+ pulumi_vsphere/guest_os_customization.py,sha256=kPKgG5Sft5fLGxfY2hjGMn6eCJEwZoAH9JUW1rbGKVk,16952
54
+ pulumi_vsphere/ha_vm_override.py,sha256=Z2p_A1fowtS4_UGq-SHP_dfw2ruZuYVMTo5DizkeOEQ,52698
55
+ pulumi_vsphere/host.py,sha256=iLAODc_Ez09iYoOZ_opB3xfINe17ZohHnN_ZTq98owc,45815
56
+ pulumi_vsphere/host_port_group.py,sha256=jtSm7mmPU0SWP54n-dr_5fgEHz6Y3fHb5YNl_ArRuKE,56940
57
+ pulumi_vsphere/host_virtual_switch.py,sha256=WTZtqM4GDzLIcmviM_fQ47SHNXQrEHVqV0q3wEB0sFA,57317
58
+ pulumi_vsphere/license.py,sha256=4IhaSHnAjOFSlSKu4AYGcbraULzzTRASs29wB7nw7aU,12022
59
+ pulumi_vsphere/nas_datastore.py,sha256=aPmG1bbVD909T_v-xPDVLOTkh_HBuwStemqCLHNyFBc,48132
60
+ pulumi_vsphere/offline_software_depot.py,sha256=GKoYb1AzKVXA34GNOIvrcslSHN7IVySWAkDZ-APVkLc,7319
61
+ pulumi_vsphere/outputs.py,sha256=DFXPG2Hn5HlMkLvBPAomimeGkR7BtjeHVvhWsB6su1w,153365
62
+ pulumi_vsphere/provider.py,sha256=8H6ulcRQh7CAH67BvSthuiqAV0nAVjssl3aFk2xb2ME,20263
63
+ pulumi_vsphere/pulumi-plugin.json,sha256=2uTkvNwj3NBAVnjR9TPyuvZkkBk-VZPEkGf3ylpjPNI,84
64
+ pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ pulumi_vsphere/resource_pool.py,sha256=7ew08gNozV_P-oS0sh2cWIbmU1T8jHbsFPLJnUrxk5Q,54809
66
+ pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
67
+ pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
68
+ pulumi_vsphere/supervisor.py,sha256=q5b5dP0WwddGxXcvL5xOLQBKztxPTndO06cM0nvjoGw,46563
69
+ pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
70
+ pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
71
+ pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
72
+ pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
73
+ pulumi_vsphere/virtual_disk.py,sha256=Z8TEAC-rw16WfTFd1JygxD6q-v3t5t6WOxYSsBxo8cs,28072
74
+ pulumi_vsphere/virtual_machine.py,sha256=2b8TLcNDkN4jEWqVTY8ZwKKVUr59EmS7XQFeqFPauws,214912
75
+ pulumi_vsphere/virtual_machine_class.py,sha256=ZQY09IV6uI24zYoBBOMbmccyO6bQYPai6LBi6b1e74Y,17163
76
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=wkVXW19WAVE281qnofn4TBbhoa4CfhVN6YLMDhrm2Ek,23912
77
+ pulumi_vsphere/vm_storage_policy.py,sha256=S_ccDyuNDy3egL7dyk9LGqASWk3jLdPkzsgx-eSseYo,20194
78
+ pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
79
+ pulumi_vsphere/vnic.py,sha256=wefbFghuOeRQnWeLyq9-59YF1zUQ91nXfRE2wOCvbrk,30609
80
+ pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
81
+ pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
82
+ pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
83
+ pulumi_vsphere-4.10.2a1720054582.dist-info/METADATA,sha256=P08E1_U0Uurtoa4scOFF1Zs5QWDBj_blTlsvAbTJjdM,4958
84
+ pulumi_vsphere-4.10.2a1720054582.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
85
+ pulumi_vsphere-4.10.2a1720054582.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
+ pulumi_vsphere-4.10.2a1720054582.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (70.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,82 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=D0xUdIG9TzexthoPimJXUxoqiIfxr5H0lOHIAJhhsjE,10114
2
- pulumi_vsphere/_inputs.py,sha256=A-AOdN3vdiKw2uby1zoJFhf68yNyHP-marLknmDO2vU,125235
3
- pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_vsphere/compute_cluster.py,sha256=4R4A8J41iSG3xpfYd8kSpeDtte3E_HmOf9iqEJf82yA,223844
5
- pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
6
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=UuLsBkI_YfSdpuGVMurBxC_if3nbjKGZwryeQNkIRGw,25317
7
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=-5K0E6HRhIWGBKAcMZsqXNFQLWIAhJs07_PKVi-3PBg,17554
8
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=_q1lrkr1pWzl10dGA1PdRSOXibmYvLKBLTdZG0O0YNQ,21613
9
- pulumi_vsphere/compute_cluster_vm_group.py,sha256=l3gk0qAc9UiX6DpkCZl30L6qmTigu4pGo5O1YBJoatU,13459
10
- pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=Am9PFFU8PghrdOTRbqJzeFS6nLxgX5Pob-SKqCEaY3k,24422
11
- pulumi_vsphere/content_library.py,sha256=-3mst76bjX3vq4izMl8pIlZR2B9RjEG3A0VA7jpOfRc,15087
12
- pulumi_vsphere/content_library_item.py,sha256=qjHPcnsxpNiFOzCPxQXngZXtR1R1RrsqAhdJgpqgZUc,15640
13
- pulumi_vsphere/custom_attribute.py,sha256=wTuv97G4uXpJ9kv_TaKZc1OYj1e_68c9dAsFc9Ds5nQ,9031
14
- pulumi_vsphere/datacenter.py,sha256=VheWVrfjRFZMQjI2M_8dNKG93ixCwuKj1ecGyqNTok0,19614
15
- pulumi_vsphere/datastore_cluster.py,sha256=76rYqp4f7WjBTYtn_1xpb5TE2taxUBSAkGk8z_hrZ4w,82939
16
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=8eKwKS9ZYaZICVxjNrNLDDBqBKyQqOJmC_nt0jlqYJY,16842
17
- pulumi_vsphere/distributed_port_group.py,sha256=4Lm22mCkYArB_SdSW7sS-_n0QVc-jPQaTburJgPVNic,132133
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=Hu1MuRC9eZhVYOfGJgnSssDosYsynbUXeUZMxND_c5Q,249390
19
- pulumi_vsphere/dpm_host_override.py,sha256=i3eG4PkI3Hi2KodP6OFAGC6QLczmNDRcSIt9MbK7U1Q,15371
20
- pulumi_vsphere/drs_vm_override.py,sha256=qGlUe9gq9StYW4OHDSZKA03j0ru3Ruvb9SEaVcpHo1c,16657
21
- pulumi_vsphere/entity_permissions.py,sha256=uPVnBk47c6csM0kQLwJC3Niml9uCTq23KGOfhNyNrrk,12429
22
- pulumi_vsphere/file.py,sha256=uJeBCHJ2IXJO6Dj5vYeZvkYaHNNoWhkQ6PzmWVwkRIE,23397
23
- pulumi_vsphere/folder.py,sha256=wCsVzpLVQn5tbx0kn4hKNUBxQpalVn9ydGemsbz_MLc,25630
24
- pulumi_vsphere/get_compute_cluster.py,sha256=nBgxOLhF9RV5vGGwgCxeNCyVNKr_tQi44VnaBhBbX1M,5997
25
- pulumi_vsphere/get_compute_cluster_host_group.py,sha256=J-pjwUhXIc4f0S9swi-UaNszb0c8x4m7Ja5wsgLr4gw,6174
26
- pulumi_vsphere/get_content_library.py,sha256=r1v63MViQ-uXD92M81VCWv-6dzpmB82AHjDytMR6x6I,3218
27
- pulumi_vsphere/get_content_library_item.py,sha256=-yztx7VLc3cyG8nwjZ4iA4QbwvVGgL6K81YHOrYHJ4U,4496
28
- pulumi_vsphere/get_custom_attribute.py,sha256=skM0hjQmPyYCQdEgXjbofu9Ulez4ylw9jQKb9g3Zz2I,4354
29
- pulumi_vsphere/get_datacenter.py,sha256=sfXiHyHNnm9S-bUpcbaGw1ei7ZMNJ1-s_lV6Z7B0UH4,4083
30
- pulumi_vsphere/get_datastore.py,sha256=vAkqhKmMU5DEVVgFnaGMb7GL8FTX6aDcg2CIiaOfkO8,5979
31
- pulumi_vsphere/get_datastore_cluster.py,sha256=4nkwUsNLdqWIoxYhiFzkFoYjr4zyOf-5UToK_0vbELg,5157
32
- pulumi_vsphere/get_datastore_stats.py,sha256=2WAAe8o9BQL6Uq3jsPUd4MOx2quy_Cw-_okOBqIGKI0,7625
33
- pulumi_vsphere/get_distributed_virtual_switch.py,sha256=icwEpCtIYmPBXvT_3M_dHV0fjwPzbR7cQWQtN-75F0c,6922
34
- pulumi_vsphere/get_dynamic.py,sha256=-s--cho8svTCbBr9C2jvqPuhyV39CVpWWyGgfwwDx2c,5974
35
- pulumi_vsphere/get_folder.py,sha256=7g9DRvEFP2WEudM8PEZFApsCpgKLzABYEqo4ixznkGA,3625
36
- pulumi_vsphere/get_guest_os_customization.py,sha256=IWLONiIdg-z06VbYAVL-fBBoQjRiVw7NQVa4DNf32ck,6370
37
- pulumi_vsphere/get_host.py,sha256=aZ-2kism0hoSyeCGALJr759ILDrk2ohDskmexXRwSb8,5200
38
- pulumi_vsphere/get_host_pci_device.py,sha256=LCow2auxsoSB7p45FnQ4u0WDGUJTjyXrxcvQ2ZpSoqE,7612
39
- pulumi_vsphere/get_host_thumbprint.py,sha256=Xj4plQOyPh5QXBFZFQFhR8VULbuozkWISNDuCdCizhM,4963
40
- pulumi_vsphere/get_host_vgpu_profile.py,sha256=afbe_YuQVS676bCz96W0d-3VrPqYY0Cxa0j5dFo8xJ8,6348
41
- pulumi_vsphere/get_license.py,sha256=NPtNrjcdrDFODRrd6gFnFo9IgVlGOocwrUW24r71lI4,5258
42
- pulumi_vsphere/get_network.py,sha256=bm8QyrAhHs32jZnfwpqMOiSV8Pmyr03DqTMEOMGo-NI,7133
43
- pulumi_vsphere/get_ovf_vm_template.py,sha256=1C3sBBXBAzpxaZBiv4knADbzSNN7XaV3ItNLwRcFwb4,25791
44
- pulumi_vsphere/get_policy.py,sha256=ntQk22TpTCHRg4X5aYx4-oTfxyofEqfywYmFHmCF-II,3425
45
- pulumi_vsphere/get_resource_pool.py,sha256=AYqjQdLIVB_kIcqRx8l14Aey3KebJE_ybTjAdVAAsjU,7257
46
- pulumi_vsphere/get_role.py,sha256=XpjnMAWOVCp9-L8HUkEi5q7KKnQVtbl4jbLG2_XHWPM,5211
47
- pulumi_vsphere/get_tag.py,sha256=NJIo7J9NsSr0SxCScu7QrNn41dWVc5vXAcIQN5VmAj8,4816
48
- pulumi_vsphere/get_tag_category.py,sha256=R-kLcRAuATkFp8PPKt01OGp8lpmceKnRf9lEn_ZJzUk,5034
49
- pulumi_vsphere/get_vapp_container.py,sha256=1OUABHMT3qFbSQRqFBCQNltmuo_OF983GJR09vnJUsY,4473
50
- pulumi_vsphere/get_virtual_machine.py,sha256=tvaOuo8cvtOTXyGxMKaQ8-tKxd5-gBVfQ0cWpfM2LXs,58531
51
- pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
52
- pulumi_vsphere/guest_os_customization.py,sha256=yfWCEDEdo2MIACZwJo7DhbUyLEp8dhYm_b0d7QPwGKs,17018
53
- pulumi_vsphere/ha_vm_override.py,sha256=Z2p_A1fowtS4_UGq-SHP_dfw2ruZuYVMTo5DizkeOEQ,52698
54
- pulumi_vsphere/host.py,sha256=iLAODc_Ez09iYoOZ_opB3xfINe17ZohHnN_ZTq98owc,45815
55
- pulumi_vsphere/host_port_group.py,sha256=jtSm7mmPU0SWP54n-dr_5fgEHz6Y3fHb5YNl_ArRuKE,56940
56
- pulumi_vsphere/host_virtual_switch.py,sha256=WTZtqM4GDzLIcmviM_fQ47SHNXQrEHVqV0q3wEB0sFA,57317
57
- pulumi_vsphere/license.py,sha256=4IhaSHnAjOFSlSKu4AYGcbraULzzTRASs29wB7nw7aU,12022
58
- pulumi_vsphere/nas_datastore.py,sha256=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
59
- pulumi_vsphere/outputs.py,sha256=SJymtFJHp5nI8qOSAHVzyN4RTgS3NZ2I1Te_LOTK-e4,139415
60
- pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
61
- pulumi_vsphere/pulumi-plugin.json,sha256=GPkzWdIfUGLp-CeSzzIZ8ksrThmeZnOYMcpaT3JCpTU,44
62
- pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
- pulumi_vsphere/resource_pool.py,sha256=WMj87tZbw5JBb-wAcvncdnVY8FvmDHpy0go7Go5fNvg,54815
64
- pulumi_vsphere/role.py,sha256=kO9DfdLWHq5bfwD0EBAsZuWQxrcX7amJBVUrfREHf3c,8528
65
- pulumi_vsphere/storage_drs_vm_override.py,sha256=f1DoLBiMk4_JQdPaemv5RW6xPksw5p4w-AFLZsC6Jr8,20828
66
- pulumi_vsphere/tag.py,sha256=gF7uOgj1Xm_k2cV7YIiwBGakQvhi-jlsNYKDm7JDFWw,9943
67
- pulumi_vsphere/tag_category.py,sha256=FzqdUOMwmAo7W6Xuw3-CByCbBSmsvkCGXiLRaMUVVQ4,15120
68
- pulumi_vsphere/vapp_container.py,sha256=1On1t7PnLEqnQvNIt1XIh9VFu7LaSegyRyDaJf8lQmQ,48255
69
- pulumi_vsphere/vapp_entity.py,sha256=JePz7OF__e1x7aFp_9I257S61HnDT7gdHsWK-u17nlM,29555
70
- pulumi_vsphere/virtual_disk.py,sha256=wFycNUG7WdYogDgWDRc5zP1u9n2afPtQOUiX_987ito,28633
71
- pulumi_vsphere/virtual_machine.py,sha256=it5F-ML0tRVEsXti0MNLi6eqoUvSYlNVot1tt23IA2U,214932
72
- pulumi_vsphere/virtual_machine_snapshot.py,sha256=znCP8B7dt2lvsEa7nTzzqACttXjQNKWNjxCZGjThYNs,23926
73
- pulumi_vsphere/vm_storage_policy.py,sha256=IgoanyDCih8ALdG-wdewI9KvrYfSiew1Z7Xhb3SSqwA,20198
74
- pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
75
- pulumi_vsphere/vnic.py,sha256=uaj0DqvKOflKM4Sb_W6F3TCp1uikL8WhGxWCu4907aw,30503
76
- pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
77
- pulumi_vsphere/config/__init__.pyi,sha256=ZO6ktIIpO1bKQNe2__l8JqDti_ZKgnRvHTcXcRWzb0M,1351
78
- pulumi_vsphere/config/vars.py,sha256=fcurb1Hwqp3evWnRD4s2t--MUjqR9R11nIm04F1UMW0,3210
79
- pulumi_vsphere-4.10.1.dist-info/METADATA,sha256=QHnzHHOuLOsTK9_tFPkuv5ocRbflkRNiRfKKUuSvcXg,4947
80
- pulumi_vsphere-4.10.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
81
- pulumi_vsphere-4.10.1.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
82
- pulumi_vsphere-4.10.1.dist-info/RECORD,,