pulumi-vsphere 4.11.0__py3-none-any.whl → 4.11.0a1__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 (48) hide show
  1. pulumi_vsphere/_inputs.py +6 -92
  2. pulumi_vsphere/_utilities.py +4 -40
  3. pulumi_vsphere/compute_cluster.py +20 -20
  4. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +18 -14
  5. pulumi_vsphere/content_library.py +10 -10
  6. pulumi_vsphere/datacenter.py +28 -7
  7. pulumi_vsphere/datastore_cluster.py +14 -0
  8. pulumi_vsphere/distributed_port_group.py +12 -61
  9. pulumi_vsphere/distributed_virtual_switch.py +43 -22
  10. pulumi_vsphere/entity_permissions.py +38 -59
  11. pulumi_vsphere/folder.py +21 -0
  12. pulumi_vsphere/get_compute_cluster_host_group.py +16 -18
  13. pulumi_vsphere/get_content_library.py +6 -10
  14. pulumi_vsphere/get_content_library_item.py +8 -12
  15. pulumi_vsphere/get_datastore.py +12 -12
  16. pulumi_vsphere/get_datastore_stats.py +40 -42
  17. pulumi_vsphere/get_dynamic.py +12 -14
  18. pulumi_vsphere/get_guest_os_customization.py +43 -8
  19. pulumi_vsphere/get_host_base_images.py +6 -6
  20. pulumi_vsphere/get_host_pci_device.py +2 -4
  21. pulumi_vsphere/get_host_thumbprint.py +12 -12
  22. pulumi_vsphere/get_host_vgpu_profile.py +2 -4
  23. pulumi_vsphere/get_license.py +1 -2
  24. pulumi_vsphere/get_network.py +14 -14
  25. pulumi_vsphere/get_resource_pool.py +8 -12
  26. pulumi_vsphere/get_role.py +4 -4
  27. pulumi_vsphere/get_virtual_machine.py +35 -60
  28. pulumi_vsphere/guest_os_customization.py +31 -31
  29. pulumi_vsphere/host.py +40 -49
  30. pulumi_vsphere/host_port_group.py +2 -2
  31. pulumi_vsphere/nas_datastore.py +7 -7
  32. pulumi_vsphere/offline_software_depot.py +2 -2
  33. pulumi_vsphere/outputs.py +40 -129
  34. pulumi_vsphere/provider.py +6 -2
  35. pulumi_vsphere/pulumi-plugin.json +1 -1
  36. pulumi_vsphere/resource_pool.py +2 -2
  37. pulumi_vsphere/supervisor.py +30 -134
  38. pulumi_vsphere/virtual_disk.py +30 -38
  39. pulumi_vsphere/virtual_machine.py +32 -32
  40. pulumi_vsphere/virtual_machine_class.py +0 -2
  41. pulumi_vsphere/virtual_machine_snapshot.py +2 -2
  42. pulumi_vsphere/vm_storage_policy.py +67 -67
  43. pulumi_vsphere/vnic.py +93 -89
  44. {pulumi_vsphere-4.11.0.dist-info → pulumi_vsphere-4.11.0a1.dist-info}/METADATA +1 -1
  45. pulumi_vsphere-4.11.0a1.dist-info/RECORD +86 -0
  46. {pulumi_vsphere-4.11.0.dist-info → pulumi_vsphere-4.11.0a1.dist-info}/WHEEL +1 -1
  47. pulumi_vsphere-4.11.0.dist-info/RECORD +0 -86
  48. {pulumi_vsphere-4.11.0.dist-info → pulumi_vsphere-4.11.0a1.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 vdswitch the nic will be attached to. Do not set if you set portgroup.
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.
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 vdswitch the nic will be attached to. Do not set if you set portgroup.
90
+ UUID of the DVSwitch 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 vdswitch the nic will be attached to. Do not set if you set portgroup.
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.
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 vdswitch the nic will be attached to. Do not set if you set portgroup.
246
+ UUID of the DVSwitch 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
 
@@ -356,8 +356,8 @@ class Vnic(pulumi.CustomResource):
356
356
  distributed_port_group: Optional[pulumi.Input[str]] = None,
357
357
  distributed_switch_port: Optional[pulumi.Input[str]] = None,
358
358
  host: Optional[pulumi.Input[str]] = None,
359
- ipv4: Optional[pulumi.Input[Union['VnicIpv4Args', 'VnicIpv4ArgsDict']]] = None,
360
- ipv6: Optional[pulumi.Input[Union['VnicIpv6Args', 'VnicIpv6ArgsDict']]] = None,
359
+ ipv4: Optional[pulumi.Input[pulumi.InputType['VnicIpv4Args']]] = None,
360
+ ipv6: Optional[pulumi.Input[pulumi.InputType['VnicIpv6Args']]] = None,
361
361
  mac: Optional[pulumi.Input[str]] = None,
362
362
  mtu: Optional[pulumi.Input[int]] = None,
363
363
  netstack: Optional[pulumi.Input[str]] = None,
@@ -369,33 +369,35 @@ class Vnic(pulumi.CustomResource):
369
369
 
370
370
  ## Example Usage
371
371
 
372
+ ### S
373
+
372
374
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
373
375
 
374
376
  ```python
375
377
  import pulumi
376
378
  import pulumi_vsphere as vsphere
377
379
 
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,
384
- hosts=[{
385
- "host_system_id": host.id,
386
- "devices": ["vnic3"],
387
- }])
388
- pg = vsphere.DistributedPortGroup("pg",
389
- name="pg-01",
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,
386
+ hosts=[vsphere.DistributedVirtualSwitchHostArgs(
387
+ host_system_id=h1.id,
388
+ devices=["vnic3"],
389
+ )])
390
+ p1 = vsphere.DistributedPortGroup("p1",
391
+ name="test-pg",
390
392
  vlan_id=1234,
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,
396
- ipv4={
397
- "dhcp": True,
398
- },
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,
398
+ ipv4=vsphere.VnicIpv4Args(
399
+ dhcp=True,
400
+ ),
399
401
  netstack="vmotion")
400
402
  ```
401
403
 
@@ -405,28 +407,28 @@ class Vnic(pulumi.CustomResource):
405
407
  import pulumi
406
408
  import pulumi_vsphere as vsphere
407
409
 
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,
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,
414
416
  network_adapters=[
415
417
  "vmnic3",
416
418
  "vmnic4",
417
419
  ],
418
420
  active_nics=["vmnic3"],
419
421
  standby_nics=["vmnic4"])
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,
427
- ipv4={
428
- "dhcp": True,
429
- },
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,
429
+ ipv4=vsphere.VnicIpv4Args(
430
+ dhcp=True,
431
+ ),
430
432
  services=[
431
433
  "vsan",
432
434
  "management",
@@ -445,10 +447,10 @@ class Vnic(pulumi.CustomResource):
445
447
  :param str resource_name: The name of the resource.
446
448
  :param pulumi.ResourceOptions opts: Options for the resource.
447
449
  :param pulumi.Input[str] distributed_port_group: Key of the distributed portgroup the nic will connect to.
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.
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.
449
451
  :param pulumi.Input[str] host: ESX host the interface belongs to
450
- :param pulumi.Input[Union['VnicIpv4Args', 'VnicIpv4ArgsDict']] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
451
- :param pulumi.Input[Union['VnicIpv6Args', 'VnicIpv6ArgsDict']] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
452
+ :param pulumi.Input[pulumi.InputType['VnicIpv4Args']] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
453
+ :param pulumi.Input[pulumi.InputType['VnicIpv6Args']] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
452
454
  :param pulumi.Input[str] mac: MAC address of the interface.
453
455
  :param pulumi.Input[int] mtu: MTU of the interface.
454
456
  :param pulumi.Input[str] netstack: TCP/IP stack setting for this interface. Possible values are `defaultTcpipStack``, 'vmotion', 'vSphereProvisioning'. Changing this will force the creation of a new interface since it's not possible to change the stack once it gets created. (Default:`defaultTcpipStack`)
@@ -466,33 +468,35 @@ class Vnic(pulumi.CustomResource):
466
468
 
467
469
  ## Example Usage
468
470
 
471
+ ### S
472
+
469
473
  ### Create a vnic attached to a distributed virtual switch using the vmotion TCP/IP stack
470
474
 
471
475
  ```python
472
476
  import pulumi
473
477
  import pulumi_vsphere as vsphere
474
478
 
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,
481
- hosts=[{
482
- "host_system_id": host.id,
483
- "devices": ["vnic3"],
484
- }])
485
- pg = vsphere.DistributedPortGroup("pg",
486
- name="pg-01",
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,
485
+ hosts=[vsphere.DistributedVirtualSwitchHostArgs(
486
+ host_system_id=h1.id,
487
+ devices=["vnic3"],
488
+ )])
489
+ p1 = vsphere.DistributedPortGroup("p1",
490
+ name="test-pg",
487
491
  vlan_id=1234,
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,
493
- ipv4={
494
- "dhcp": True,
495
- },
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,
497
+ ipv4=vsphere.VnicIpv4Args(
498
+ dhcp=True,
499
+ ),
496
500
  netstack="vmotion")
497
501
  ```
498
502
 
@@ -502,28 +506,28 @@ class Vnic(pulumi.CustomResource):
502
506
  import pulumi
503
507
  import pulumi_vsphere as vsphere
504
508
 
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,
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,
511
515
  network_adapters=[
512
516
  "vmnic3",
513
517
  "vmnic4",
514
518
  ],
515
519
  active_nics=["vmnic3"],
516
520
  standby_nics=["vmnic4"])
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,
524
- ipv4={
525
- "dhcp": True,
526
- },
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,
528
+ ipv4=vsphere.VnicIpv4Args(
529
+ dhcp=True,
530
+ ),
527
531
  services=[
528
532
  "vsan",
529
533
  "management",
@@ -557,8 +561,8 @@ class Vnic(pulumi.CustomResource):
557
561
  distributed_port_group: Optional[pulumi.Input[str]] = None,
558
562
  distributed_switch_port: Optional[pulumi.Input[str]] = None,
559
563
  host: Optional[pulumi.Input[str]] = None,
560
- ipv4: Optional[pulumi.Input[Union['VnicIpv4Args', 'VnicIpv4ArgsDict']]] = None,
561
- ipv6: Optional[pulumi.Input[Union['VnicIpv6Args', 'VnicIpv6ArgsDict']]] = None,
564
+ ipv4: Optional[pulumi.Input[pulumi.InputType['VnicIpv4Args']]] = None,
565
+ ipv6: Optional[pulumi.Input[pulumi.InputType['VnicIpv6Args']]] = None,
562
566
  mac: Optional[pulumi.Input[str]] = None,
563
567
  mtu: Optional[pulumi.Input[int]] = None,
564
568
  netstack: Optional[pulumi.Input[str]] = None,
@@ -598,8 +602,8 @@ class Vnic(pulumi.CustomResource):
598
602
  distributed_port_group: Optional[pulumi.Input[str]] = None,
599
603
  distributed_switch_port: Optional[pulumi.Input[str]] = None,
600
604
  host: Optional[pulumi.Input[str]] = None,
601
- ipv4: Optional[pulumi.Input[Union['VnicIpv4Args', 'VnicIpv4ArgsDict']]] = None,
602
- ipv6: Optional[pulumi.Input[Union['VnicIpv6Args', 'VnicIpv6ArgsDict']]] = None,
605
+ ipv4: Optional[pulumi.Input[pulumi.InputType['VnicIpv4Args']]] = None,
606
+ ipv6: Optional[pulumi.Input[pulumi.InputType['VnicIpv6Args']]] = None,
603
607
  mac: Optional[pulumi.Input[str]] = None,
604
608
  mtu: Optional[pulumi.Input[int]] = None,
605
609
  netstack: Optional[pulumi.Input[str]] = None,
@@ -613,10 +617,10 @@ class Vnic(pulumi.CustomResource):
613
617
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
614
618
  :param pulumi.ResourceOptions opts: Options for the resource.
615
619
  :param pulumi.Input[str] distributed_port_group: Key of the distributed portgroup the nic will connect to.
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.
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.
617
621
  :param pulumi.Input[str] host: ESX host the interface belongs to
618
- :param pulumi.Input[Union['VnicIpv4Args', 'VnicIpv4ArgsDict']] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
619
- :param pulumi.Input[Union['VnicIpv6Args', 'VnicIpv6ArgsDict']] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
622
+ :param pulumi.Input[pulumi.InputType['VnicIpv4Args']] ipv4: IPv4 settings. Either this or `ipv6` needs to be set. See IPv4 options below.
623
+ :param pulumi.Input[pulumi.InputType['VnicIpv6Args']] ipv6: IPv6 settings. Either this or `ipv6` needs to be set. See IPv6 options below.
620
624
  :param pulumi.Input[str] mac: MAC address of the interface.
621
625
  :param pulumi.Input[int] mtu: MTU of the interface.
622
626
  :param pulumi.Input[str] netstack: TCP/IP stack setting for this interface. Possible values are `defaultTcpipStack``, 'vmotion', 'vSphereProvisioning'. Changing this will force the creation of a new interface since it's not possible to change the stack once it gets created. (Default:`defaultTcpipStack`)
@@ -651,7 +655,7 @@ class Vnic(pulumi.CustomResource):
651
655
  @pulumi.getter(name="distributedSwitchPort")
652
656
  def distributed_switch_port(self) -> pulumi.Output[Optional[str]]:
653
657
  """
654
- UUID of the vdswitch the nic will be attached to. Do not set if you set portgroup.
658
+ UUID of the DVSwitch the nic will be attached to. Do not set if you set portgroup.
655
659
  """
656
660
  return pulumi.get(self, "distributed_switch_port")
657
661
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_vsphere
3
- Version: 4.11.0
3
+ Version: 4.11.0a1
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=ixkfGk_Yv3BJXWUEX2vtyKxe-1k_g501JLA0LCRjsAE,140246
3
+ pulumi_vsphere/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
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=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=YP47W3BA_1Z8prCz2NTwMQlyxIHesu5o4FpT3XIkozY,25623
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=rkdRDdJGuZpbcuA1PIVYr90vSTZIk26L-FCSql1H7rE,3999
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_base_images.py,sha256=Z3sBapAoI6XeUs6XxWEAwtfb-8ka_uEUjmtbRy0jucw,2934
39
+ pulumi_vsphere/get_host_pci_device.py,sha256=LCow2auxsoSB7p45FnQ4u0WDGUJTjyXrxcvQ2ZpSoqE,7612
40
+ pulumi_vsphere/get_host_thumbprint.py,sha256=Xj4plQOyPh5QXBFZFQFhR8VULbuozkWISNDuCdCizhM,4963
41
+ pulumi_vsphere/get_host_vgpu_profile.py,sha256=afbe_YuQVS676bCz96W0d-3VrPqYY0Cxa0j5dFo8xJ8,6348
42
+ pulumi_vsphere/get_license.py,sha256=NPtNrjcdrDFODRrd6gFnFo9IgVlGOocwrUW24r71lI4,5258
43
+ pulumi_vsphere/get_network.py,sha256=bm8QyrAhHs32jZnfwpqMOiSV8Pmyr03DqTMEOMGo-NI,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=AYqjQdLIVB_kIcqRx8l14Aey3KebJE_ybTjAdVAAsjU,7257
47
+ pulumi_vsphere/get_role.py,sha256=XpjnMAWOVCp9-L8HUkEi5q7KKnQVtbl4jbLG2_XHWPM,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=tvaOuo8cvtOTXyGxMKaQ8-tKxd5-gBVfQ0cWpfM2LXs,58531
52
+ pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
53
+ pulumi_vsphere/guest_os_customization.py,sha256=yfWCEDEdo2MIACZwJo7DhbUyLEp8dhYm_b0d7QPwGKs,17018
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=X5PeUipclE4MG0uHS_SlmpaHBrz4jtaLhVEfOybjYQY,48202
60
+ pulumi_vsphere/offline_software_depot.py,sha256=GKoYb1AzKVXA34GNOIvrcslSHN7IVySWAkDZ-APVkLc,7319
61
+ pulumi_vsphere/outputs.py,sha256=pHQWKY3l15rEvlhXYBFL8IRAztYGlPwFJqXnK_R8XJg,153273
62
+ pulumi_vsphere/provider.py,sha256=ljEs3n-BiTMtFb7qqPn6YDZh3M-L5Oq2LAbX1QfV274,20511
63
+ pulumi_vsphere/pulumi-plugin.json,sha256=NFN02Cgqt3zP6lw3HH3uZxeX8D4Ufg_TeytUR8x0fOo,75
64
+ pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ pulumi_vsphere/resource_pool.py,sha256=WMj87tZbw5JBb-wAcvncdnVY8FvmDHpy0go7Go5fNvg,54815
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=HeS61exRz8wkjxoapwlkDjvhpR-zY28BWID10NRm4fM,42959
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=wFycNUG7WdYogDgWDRc5zP1u9n2afPtQOUiX_987ito,28633
74
+ pulumi_vsphere/virtual_machine.py,sha256=it5F-ML0tRVEsXti0MNLi6eqoUvSYlNVot1tt23IA2U,214932
75
+ pulumi_vsphere/virtual_machine_class.py,sha256=PuDyxZffdDfR3nOouNiXEBkIf-NPiXx0to2z0q_WM8g,17161
76
+ pulumi_vsphere/virtual_machine_snapshot.py,sha256=znCP8B7dt2lvsEa7nTzzqACttXjQNKWNjxCZGjThYNs,23926
77
+ pulumi_vsphere/vm_storage_policy.py,sha256=IgoanyDCih8ALdG-wdewI9KvrYfSiew1Z7Xhb3SSqwA,20198
78
+ pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
79
+ pulumi_vsphere/vnic.py,sha256=uaj0DqvKOflKM4Sb_W6F3TCp1uikL8WhGxWCu4907aw,30503
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.11.0a1.dist-info/METADATA,sha256=BzxJkAE7jURFnsgp7VKvkTaw_m5bLT-rAToLB_KE8xg,4949
84
+ pulumi_vsphere-4.11.0a1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
85
+ pulumi_vsphere-4.11.0a1.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
+ pulumi_vsphere-4.11.0a1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,86 +0,0 @@
1
- pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
2
- pulumi_vsphere/_inputs.py,sha256=47uwlKCjl3fK0iCTYTup7EGLjtaR_TToxdHcMb4o2ew,143694
3
- pulumi_vsphere/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
4
- pulumi_vsphere/compute_cluster.py,sha256=Q40JsBcIcPjrE40Xv4FbHyxNqIzXXZ_PR0t4t8bUwDE,226996
5
- pulumi_vsphere/compute_cluster_host_group.py,sha256=QUCBKwC2RaJI6ZuC_qBDZJl5gey-rs3iVsbPrFFK-1g,13437
6
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=3VvW8aumyeBTrM-OdrdjZlviIF9jAOISjrIAYw9keDY,25037
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=mXiKLZmSA4kVwspxsSke6bShp506A0u4iT4ccpyuJRI,15352
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=B-cttwjo6cpsL7Ns0X94dpGRO9d_oYQ8lHfVN-MEJH8,134457
18
- pulumi_vsphere/distributed_virtual_switch.py,sha256=4I5yQLy2OU9hbYQT-q4i4wOiQdXv6YUd_Wt9fpA1M18,248696
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=ChtuPTQkJcPRzew0-8s5oKGWJwiEjGRWpL3JlBGUChQ,12982
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=1Y7S8iTxJSEwcVXvS-vpjQLWC2aT22H0GfX8kTvur9c,5979
31
- pulumi_vsphere/get_datastore_cluster.py,sha256=4nkwUsNLdqWIoxYhiFzkFoYjr4zyOf-5UToK_0vbELg,5157
32
- pulumi_vsphere/get_datastore_stats.py,sha256=GmG8O3j-wXzS4iveHFdF2E3SiMY7g8zFHcoBQDD5DH0,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=7cbdpbCgsLtWSkzmPdzOhlnILjAN5_cOb0UBnDKYG70,59209
52
- pulumi_vsphere/get_vmfs_disks.py,sha256=KotPjKN7ncgdWzl6qSU1DuuxIxu8BoQ5CLDH1JAgShg,6717
53
- pulumi_vsphere/guest_os_customization.py,sha256=McMmuw-0x6IDTkxshaESAMf9_MMuQ4n930zcrT4Nmfs,16953
54
- pulumi_vsphere/ha_vm_override.py,sha256=Z2p_A1fowtS4_UGq-SHP_dfw2ruZuYVMTo5DizkeOEQ,52698
55
- pulumi_vsphere/host.py,sha256=ixWV6MJmOWGIbSI_mkCGbzqCaH1Z0_Zckr3AdGeo3oU,47349
56
- pulumi_vsphere/host_port_group.py,sha256=b7VTsHfYZNw_6Fjdr7SJL6JKKtK7sU9Nc6DHRxsoKF0,56976
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=9NvticI3dlQeZZ-Z_TwT7Jo-qa2GwhfZG4reQM3Xl3U,7379
61
- pulumi_vsphere/outputs.py,sha256=tMsheiyMRU8KoTIz05uauvgdEJYmRxTownfIq6UsvCY,156594
62
- pulumi_vsphere/provider.py,sha256=8H6ulcRQh7CAH67BvSthuiqAV0nAVjssl3aFk2xb2ME,20263
63
- pulumi_vsphere/pulumi-plugin.json,sha256=OlXm55epxDqGUqIfHDZNohBu9_DwX5VGNpb0N2KudnY,67
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=6RWOhweDtZxeVUYkcWKG-WIt3FboOIYl4a5zadmtof4,46920
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=GeyUz6NJ8_Zx49T0O7D1xDweyf8jmZ65jdgxfQO7bBY,29451
74
- pulumi_vsphere/virtual_machine.py,sha256=J_lqLjcz9bZ6muNdm9zXcN_IBCmD0ODc52FLI5ZJPdk,215577
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=WHgz3BpuplQez-ISXWR9jRnfqX6F3PULJsr1gDV0TJ0,20009
78
- pulumi_vsphere/vmfs_datastore.py,sha256=gNhmetE0wMDKMEM_ImATFpnTJhqMEPd0q8eOgqpedr0,34596
79
- pulumi_vsphere/vnic.py,sha256=tFuxn8kk9H3an7jgkUvNNCnY0xuGB8-y2twMlur6PfQ,30563
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.11.0.dist-info/METADATA,sha256=G7OGr0hqlUByVMJz-AQx2TrLUiwXiepudeyazRy3EgM,4947
84
- pulumi_vsphere-4.11.0.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
85
- pulumi_vsphere-4.11.0.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
86
- pulumi_vsphere-4.11.0.dist-info/RECORD,,