pulumi-vsphere 4.11.5__py3-none-any.whl → 4.12.0a1725603256__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-vsphere might be problematic. Click here for more details.
- pulumi_vsphere/_inputs.py +5 -1066
- pulumi_vsphere/_utilities.py +1 -1
- pulumi_vsphere/compute_cluster.py +2 -181
- pulumi_vsphere/compute_cluster_host_group.py +2 -67
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +2 -29
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +2 -41
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py +2 -205
- pulumi_vsphere/compute_cluster_vm_group.py +2 -198
- pulumi_vsphere/compute_cluster_vm_host_rule.py +2 -73
- pulumi_vsphere/config/__init__.pyi +0 -5
- pulumi_vsphere/config/vars.py +0 -5
- pulumi_vsphere/content_library.py +2 -103
- pulumi_vsphere/content_library_item.py +2 -143
- pulumi_vsphere/custom_attribute.py +2 -77
- pulumi_vsphere/datacenter.py +4 -19
- pulumi_vsphere/datastore_cluster.py +2 -63
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +2 -159
- pulumi_vsphere/distributed_port_group.py +2 -285
- pulumi_vsphere/distributed_virtual_switch.py +2 -261
- pulumi_vsphere/dpm_host_override.py +2 -63
- pulumi_vsphere/drs_vm_override.py +2 -67
- pulumi_vsphere/entity_permissions.py +0 -5
- pulumi_vsphere/file.py +0 -5
- pulumi_vsphere/folder.py +2 -141
- pulumi_vsphere/get_compute_cluster.py +4 -15
- pulumi_vsphere/get_compute_cluster_host_group.py +6 -17
- pulumi_vsphere/get_content_library.py +4 -12
- pulumi_vsphere/get_content_library_item.py +4 -16
- pulumi_vsphere/get_custom_attribute.py +4 -13
- pulumi_vsphere/get_datacenter.py +4 -12
- pulumi_vsphere/get_datastore.py +4 -16
- pulumi_vsphere/get_datastore_cluster.py +4 -14
- pulumi_vsphere/get_datastore_stats.py +4 -16
- pulumi_vsphere/get_distributed_virtual_switch.py +4 -15
- pulumi_vsphere/get_dynamic.py +4 -16
- pulumi_vsphere/get_folder.py +4 -12
- pulumi_vsphere/get_guest_os_customization.py +4 -17
- pulumi_vsphere/get_host.py +4 -15
- pulumi_vsphere/get_host_base_images.py +4 -11
- pulumi_vsphere/get_host_pci_device.py +4 -19
- pulumi_vsphere/get_host_thumbprint.py +14 -34
- pulumi_vsphere/get_host_vgpu_profile.py +4 -15
- pulumi_vsphere/get_license.py +4 -17
- pulumi_vsphere/get_network.py +4 -17
- pulumi_vsphere/get_ovf_vm_template.py +4 -55
- pulumi_vsphere/get_policy.py +4 -12
- pulumi_vsphere/get_resource_pool.py +4 -14
- pulumi_vsphere/get_role.py +4 -18
- pulumi_vsphere/get_tag.py +4 -15
- pulumi_vsphere/get_tag_category.py +4 -15
- pulumi_vsphere/get_vapp_container.py +4 -14
- pulumi_vsphere/get_virtual_machine.py +4 -130
- pulumi_vsphere/get_vmfs_disks.py +4 -17
- pulumi_vsphere/guest_os_customization.py +0 -5
- pulumi_vsphere/ha_vm_override.py +2 -163
- pulumi_vsphere/host.py +12 -203
- pulumi_vsphere/host_port_group.py +2 -17
- pulumi_vsphere/host_virtual_switch.py +2 -69
- pulumi_vsphere/license.py +0 -5
- pulumi_vsphere/nas_datastore.py +2 -67
- pulumi_vsphere/offline_software_depot.py +0 -5
- pulumi_vsphere/outputs.py +0 -5
- pulumi_vsphere/provider.py +0 -5
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/resource_pool.py +437 -168
- pulumi_vsphere/role.py +2 -33
- pulumi_vsphere/storage_drs_vm_override.py +2 -133
- pulumi_vsphere/supervisor.py +0 -5
- pulumi_vsphere/tag.py +2 -159
- pulumi_vsphere/tag_category.py +2 -83
- pulumi_vsphere/vapp_container.py +2 -163
- pulumi_vsphere/vapp_entity.py +2 -147
- pulumi_vsphere/virtual_disk.py +2 -81
- pulumi_vsphere/virtual_machine.py +2 -53
- pulumi_vsphere/virtual_machine_class.py +0 -5
- pulumi_vsphere/virtual_machine_snapshot.py +0 -5
- pulumi_vsphere/vm_storage_policy.py +0 -5
- pulumi_vsphere/vmfs_datastore.py +2 -271
- pulumi_vsphere/vnic.py +4 -19
- {pulumi_vsphere-4.11.5.dist-info → pulumi_vsphere-4.12.0a1725603256.dist-info}/METADATA +2 -3
- pulumi_vsphere-4.12.0a1725603256.dist-info/RECORD +86 -0
- {pulumi_vsphere-4.11.5.dist-info → pulumi_vsphere-4.12.0a1725603256.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.11.5.dist-info/RECORD +0 -86
- {pulumi_vsphere-4.11.5.dist-info → pulumi_vsphere-4.12.0a1725603256.dist-info}/top_level.txt +0 -0
pulumi_vsphere/vmfs_datastore.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['VmfsDatastoreArgs', 'VmfsDatastore']
|
|
@@ -466,139 +461,7 @@ class VmfsDatastore(pulumi.CustomResource):
|
|
|
466
461
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
467
462
|
__props__=None):
|
|
468
463
|
"""
|
|
469
|
-
|
|
470
|
-
datastores on an ESXi host or a set of hosts. The resource supports using any
|
|
471
|
-
SCSI device that can generally be used in a datastore, such as local disks, or
|
|
472
|
-
disks presented to a host or multiple hosts over Fibre Channel or iSCSI.
|
|
473
|
-
Devices can be specified manually, or discovered using the
|
|
474
|
-
[`get_vmfs_disks`][data-source-vmfs-disks] data source.
|
|
475
|
-
|
|
476
|
-
[data-source-vmfs-disks]: /docs/providers/vsphere/d/vmfs_disks.html
|
|
477
|
-
|
|
478
|
-
## Auto-Mounting of Datastores Within vCenter
|
|
479
|
-
|
|
480
|
-
Note that the current behavior of this resource will auto-mount any created
|
|
481
|
-
datastores to any other host within vCenter that has access to the same disk.
|
|
482
|
-
|
|
483
|
-
Example: You want to create a datastore with a iSCSI LUN that is visible on 3
|
|
484
|
-
hosts in a single vSphere cluster (`esxi1`, `esxi2` and `esxi3`). When you
|
|
485
|
-
create the datastore on `esxi1`, the datastore will be automatically mounted on
|
|
486
|
-
`esxi2` and `esxi3`, without the need to configure the resource on either of
|
|
487
|
-
those two hosts.
|
|
488
|
-
|
|
489
|
-
Future versions of this resource may allow you to control the hosts that a
|
|
490
|
-
datastore is mounted to, but currently, this automatic behavior cannot be
|
|
491
|
-
changed, so keep this in mind when writing your configurations and deploying
|
|
492
|
-
your disks.
|
|
493
|
-
|
|
494
|
-
## Increasing Datastore Size
|
|
495
|
-
|
|
496
|
-
To increase the size of a datastore, you must add additional disks to the
|
|
497
|
-
`disks` attribute. Expanding the size of a datastore by increasing the size of
|
|
498
|
-
an already provisioned disk is currently not supported (but may be in future
|
|
499
|
-
versions of this resource).
|
|
500
|
-
|
|
501
|
-
> **NOTE:** You cannot decrease the size of a datastore. If the resource
|
|
502
|
-
detects disks removed from the configuration, the provider will give an error.
|
|
503
|
-
|
|
504
|
-
[cmd-taint]: /docs/commands/taint.html
|
|
505
|
-
|
|
506
|
-
## Example Usage
|
|
507
|
-
|
|
508
|
-
### Addition of local disks on a single host
|
|
509
|
-
|
|
510
|
-
The following example uses the default datacenter and default host to add a
|
|
511
|
-
datastore with local disks to a single ESXi server.
|
|
512
|
-
|
|
513
|
-
> **NOTE:** There are some situations where datastore creation will not work
|
|
514
|
-
when working through vCenter (usually when trying to create a datastore on a
|
|
515
|
-
single host with local disks). If you experience trouble creating the datastore
|
|
516
|
-
you need through vCenter, break the datastore off into a different configuration
|
|
517
|
-
and deploy it using the ESXi server as the provider endpoint, using a similar
|
|
518
|
-
configuration to what is below.
|
|
519
|
-
|
|
520
|
-
```python
|
|
521
|
-
import pulumi
|
|
522
|
-
import pulumi_vsphere as vsphere
|
|
523
|
-
|
|
524
|
-
datacenter = vsphere.get_datacenter()
|
|
525
|
-
host = vsphere.get_host(datacenter_id=datacenter.id)
|
|
526
|
-
datastore = vsphere.VmfsDatastore("datastore",
|
|
527
|
-
name="test",
|
|
528
|
-
host_system_id=esxi_host["id"],
|
|
529
|
-
disks=[
|
|
530
|
-
"mpx.vmhba1:C0:T1:L0",
|
|
531
|
-
"mpx.vmhba1:C0:T2:L0",
|
|
532
|
-
"mpx.vmhba1:C0:T2:L0",
|
|
533
|
-
])
|
|
534
|
-
```
|
|
535
|
-
|
|
536
|
-
### Auto-detection of disks via `get_vmfs_disks`
|
|
537
|
-
|
|
538
|
-
The following example makes use of the
|
|
539
|
-
`get_vmfs_disks` data source to auto-detect
|
|
540
|
-
exported iSCSI LUNS matching a certain NAA vendor ID (in this case, LUNs
|
|
541
|
-
exported from a [NetApp][ext-netapp]). These discovered disks are then loaded
|
|
542
|
-
into `VmfsDatastore`. The datastore is also placed in the
|
|
543
|
-
`datastore-folder` folder afterwards.
|
|
544
|
-
|
|
545
|
-
[ext-netapp]: https://kb.netapp.com/support/s/article/ka31A0000000rLRQAY/how-to-match-a-lun-s-naa-number-to-its-serial-number?language=en_US
|
|
546
|
-
|
|
547
|
-
```python
|
|
548
|
-
import pulumi
|
|
549
|
-
import pulumi_vsphere as vsphere
|
|
550
|
-
|
|
551
|
-
datacenter = vsphere.get_datacenter(name="dc-01")
|
|
552
|
-
host = vsphere.get_host(name="esxi-01.example.com",
|
|
553
|
-
datacenter_id=datacenter.id)
|
|
554
|
-
available = vsphere.get_vmfs_disks(host_system_id=host.id,
|
|
555
|
-
rescan=True,
|
|
556
|
-
filter="naa.60a98000")
|
|
557
|
-
datastore = vsphere.VmfsDatastore("datastore",
|
|
558
|
-
name="test",
|
|
559
|
-
host_system_id=esxi_host["id"],
|
|
560
|
-
folder="datastore-folder",
|
|
561
|
-
disks=[available.disks])
|
|
562
|
-
```
|
|
563
|
-
|
|
564
|
-
## Import
|
|
565
|
-
|
|
566
|
-
An existing VMFS datastore can be imported into this resource
|
|
567
|
-
|
|
568
|
-
via its managed object ID, via the command below. You also need the host system
|
|
569
|
-
|
|
570
|
-
ID.
|
|
571
|
-
|
|
572
|
-
```sh
|
|
573
|
-
$ pulumi import vsphere:index/vmfsDatastore:VmfsDatastore datastore datastore-123:host-10
|
|
574
|
-
```
|
|
575
|
-
|
|
576
|
-
You need a tool like [`govc`][ext-govc] that can display managed object IDs.
|
|
577
|
-
|
|
578
|
-
[ext-govc]: https://github.com/vmware/govmomi/tree/master/govc
|
|
579
|
-
|
|
580
|
-
In the case of govc, you can locate a managed object ID from an inventory path
|
|
581
|
-
|
|
582
|
-
by doing the following:
|
|
583
|
-
|
|
584
|
-
$ govc ls -i /dc/datastore/terraform-test
|
|
585
|
-
|
|
586
|
-
Datastore:datastore-123
|
|
587
|
-
|
|
588
|
-
To locate host IDs, it might be a good idea to supply the `-l` flag as well so
|
|
589
|
-
|
|
590
|
-
that you can line up the names with the IDs:
|
|
591
|
-
|
|
592
|
-
$ govc ls -l -i /dc/host/cluster1
|
|
593
|
-
|
|
594
|
-
ResourcePool:resgroup-10 /dc/host/cluster1/Resources
|
|
595
|
-
|
|
596
|
-
HostSystem:host-10 /dc/host/cluster1/esxi1
|
|
597
|
-
|
|
598
|
-
HostSystem:host-11 /dc/host/cluster1/esxi2
|
|
599
|
-
|
|
600
|
-
HostSystem:host-12 /dc/host/cluster1/esxi3
|
|
601
|
-
|
|
464
|
+
Create a VmfsDatastore resource with the given unique name, props, and options.
|
|
602
465
|
:param str resource_name: The name of the resource.
|
|
603
466
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
604
467
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] custom_attributes: Map of custom attribute ids to attribute
|
|
@@ -636,139 +499,7 @@ class VmfsDatastore(pulumi.CustomResource):
|
|
|
636
499
|
args: VmfsDatastoreArgs,
|
|
637
500
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
638
501
|
"""
|
|
639
|
-
|
|
640
|
-
datastores on an ESXi host or a set of hosts. The resource supports using any
|
|
641
|
-
SCSI device that can generally be used in a datastore, such as local disks, or
|
|
642
|
-
disks presented to a host or multiple hosts over Fibre Channel or iSCSI.
|
|
643
|
-
Devices can be specified manually, or discovered using the
|
|
644
|
-
[`get_vmfs_disks`][data-source-vmfs-disks] data source.
|
|
645
|
-
|
|
646
|
-
[data-source-vmfs-disks]: /docs/providers/vsphere/d/vmfs_disks.html
|
|
647
|
-
|
|
648
|
-
## Auto-Mounting of Datastores Within vCenter
|
|
649
|
-
|
|
650
|
-
Note that the current behavior of this resource will auto-mount any created
|
|
651
|
-
datastores to any other host within vCenter that has access to the same disk.
|
|
652
|
-
|
|
653
|
-
Example: You want to create a datastore with a iSCSI LUN that is visible on 3
|
|
654
|
-
hosts in a single vSphere cluster (`esxi1`, `esxi2` and `esxi3`). When you
|
|
655
|
-
create the datastore on `esxi1`, the datastore will be automatically mounted on
|
|
656
|
-
`esxi2` and `esxi3`, without the need to configure the resource on either of
|
|
657
|
-
those two hosts.
|
|
658
|
-
|
|
659
|
-
Future versions of this resource may allow you to control the hosts that a
|
|
660
|
-
datastore is mounted to, but currently, this automatic behavior cannot be
|
|
661
|
-
changed, so keep this in mind when writing your configurations and deploying
|
|
662
|
-
your disks.
|
|
663
|
-
|
|
664
|
-
## Increasing Datastore Size
|
|
665
|
-
|
|
666
|
-
To increase the size of a datastore, you must add additional disks to the
|
|
667
|
-
`disks` attribute. Expanding the size of a datastore by increasing the size of
|
|
668
|
-
an already provisioned disk is currently not supported (but may be in future
|
|
669
|
-
versions of this resource).
|
|
670
|
-
|
|
671
|
-
> **NOTE:** You cannot decrease the size of a datastore. If the resource
|
|
672
|
-
detects disks removed from the configuration, the provider will give an error.
|
|
673
|
-
|
|
674
|
-
[cmd-taint]: /docs/commands/taint.html
|
|
675
|
-
|
|
676
|
-
## Example Usage
|
|
677
|
-
|
|
678
|
-
### Addition of local disks on a single host
|
|
679
|
-
|
|
680
|
-
The following example uses the default datacenter and default host to add a
|
|
681
|
-
datastore with local disks to a single ESXi server.
|
|
682
|
-
|
|
683
|
-
> **NOTE:** There are some situations where datastore creation will not work
|
|
684
|
-
when working through vCenter (usually when trying to create a datastore on a
|
|
685
|
-
single host with local disks). If you experience trouble creating the datastore
|
|
686
|
-
you need through vCenter, break the datastore off into a different configuration
|
|
687
|
-
and deploy it using the ESXi server as the provider endpoint, using a similar
|
|
688
|
-
configuration to what is below.
|
|
689
|
-
|
|
690
|
-
```python
|
|
691
|
-
import pulumi
|
|
692
|
-
import pulumi_vsphere as vsphere
|
|
693
|
-
|
|
694
|
-
datacenter = vsphere.get_datacenter()
|
|
695
|
-
host = vsphere.get_host(datacenter_id=datacenter.id)
|
|
696
|
-
datastore = vsphere.VmfsDatastore("datastore",
|
|
697
|
-
name="test",
|
|
698
|
-
host_system_id=esxi_host["id"],
|
|
699
|
-
disks=[
|
|
700
|
-
"mpx.vmhba1:C0:T1:L0",
|
|
701
|
-
"mpx.vmhba1:C0:T2:L0",
|
|
702
|
-
"mpx.vmhba1:C0:T2:L0",
|
|
703
|
-
])
|
|
704
|
-
```
|
|
705
|
-
|
|
706
|
-
### Auto-detection of disks via `get_vmfs_disks`
|
|
707
|
-
|
|
708
|
-
The following example makes use of the
|
|
709
|
-
`get_vmfs_disks` data source to auto-detect
|
|
710
|
-
exported iSCSI LUNS matching a certain NAA vendor ID (in this case, LUNs
|
|
711
|
-
exported from a [NetApp][ext-netapp]). These discovered disks are then loaded
|
|
712
|
-
into `VmfsDatastore`. The datastore is also placed in the
|
|
713
|
-
`datastore-folder` folder afterwards.
|
|
714
|
-
|
|
715
|
-
[ext-netapp]: https://kb.netapp.com/support/s/article/ka31A0000000rLRQAY/how-to-match-a-lun-s-naa-number-to-its-serial-number?language=en_US
|
|
716
|
-
|
|
717
|
-
```python
|
|
718
|
-
import pulumi
|
|
719
|
-
import pulumi_vsphere as vsphere
|
|
720
|
-
|
|
721
|
-
datacenter = vsphere.get_datacenter(name="dc-01")
|
|
722
|
-
host = vsphere.get_host(name="esxi-01.example.com",
|
|
723
|
-
datacenter_id=datacenter.id)
|
|
724
|
-
available = vsphere.get_vmfs_disks(host_system_id=host.id,
|
|
725
|
-
rescan=True,
|
|
726
|
-
filter="naa.60a98000")
|
|
727
|
-
datastore = vsphere.VmfsDatastore("datastore",
|
|
728
|
-
name="test",
|
|
729
|
-
host_system_id=esxi_host["id"],
|
|
730
|
-
folder="datastore-folder",
|
|
731
|
-
disks=[available.disks])
|
|
732
|
-
```
|
|
733
|
-
|
|
734
|
-
## Import
|
|
735
|
-
|
|
736
|
-
An existing VMFS datastore can be imported into this resource
|
|
737
|
-
|
|
738
|
-
via its managed object ID, via the command below. You also need the host system
|
|
739
|
-
|
|
740
|
-
ID.
|
|
741
|
-
|
|
742
|
-
```sh
|
|
743
|
-
$ pulumi import vsphere:index/vmfsDatastore:VmfsDatastore datastore datastore-123:host-10
|
|
744
|
-
```
|
|
745
|
-
|
|
746
|
-
You need a tool like [`govc`][ext-govc] that can display managed object IDs.
|
|
747
|
-
|
|
748
|
-
[ext-govc]: https://github.com/vmware/govmomi/tree/master/govc
|
|
749
|
-
|
|
750
|
-
In the case of govc, you can locate a managed object ID from an inventory path
|
|
751
|
-
|
|
752
|
-
by doing the following:
|
|
753
|
-
|
|
754
|
-
$ govc ls -i /dc/datastore/terraform-test
|
|
755
|
-
|
|
756
|
-
Datastore:datastore-123
|
|
757
|
-
|
|
758
|
-
To locate host IDs, it might be a good idea to supply the `-l` flag as well so
|
|
759
|
-
|
|
760
|
-
that you can line up the names with the IDs:
|
|
761
|
-
|
|
762
|
-
$ govc ls -l -i /dc/host/cluster1
|
|
763
|
-
|
|
764
|
-
ResourcePool:resgroup-10 /dc/host/cluster1/Resources
|
|
765
|
-
|
|
766
|
-
HostSystem:host-10 /dc/host/cluster1/esxi1
|
|
767
|
-
|
|
768
|
-
HostSystem:host-11 /dc/host/cluster1/esxi2
|
|
769
|
-
|
|
770
|
-
HostSystem:host-12 /dc/host/cluster1/esxi3
|
|
771
|
-
|
|
502
|
+
Create a VmfsDatastore resource with the given unique name, props, and options.
|
|
772
503
|
:param str resource_name: The name of the resource.
|
|
773
504
|
:param VmfsDatastoreArgs args: The arguments to use to populate this resource's properties.
|
|
774
505
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
pulumi_vsphere/vnic.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
from . import outputs
|
|
17
12
|
from ._inputs import *
|
|
@@ -438,18 +433,13 @@ class Vnic(pulumi.CustomResource):
|
|
|
438
433
|
])
|
|
439
434
|
```
|
|
440
435
|
|
|
441
|
-
##
|
|
442
|
-
|
|
443
|
-
An existing vNic can be imported into this resource
|
|
436
|
+
## Importing
|
|
444
437
|
|
|
438
|
+
An existing vNic can be [imported][docs-import] into this resource
|
|
445
439
|
via supplying the vNic's ID. An example is below:
|
|
446
440
|
|
|
447
441
|
[docs-import]: /docs/import/index.html
|
|
448
442
|
|
|
449
|
-
```sh
|
|
450
|
-
$ pulumi import vsphere:index/vnic:Vnic vnic host-123_vmk2
|
|
451
|
-
```
|
|
452
|
-
|
|
453
443
|
The above would import the vnic `vmk2` from host with ID `host-123`.
|
|
454
444
|
|
|
455
445
|
:param str resource_name: The name of the resource.
|
|
@@ -540,18 +530,13 @@ class Vnic(pulumi.CustomResource):
|
|
|
540
530
|
])
|
|
541
531
|
```
|
|
542
532
|
|
|
543
|
-
##
|
|
544
|
-
|
|
545
|
-
An existing vNic can be imported into this resource
|
|
533
|
+
## Importing
|
|
546
534
|
|
|
535
|
+
An existing vNic can be [imported][docs-import] into this resource
|
|
547
536
|
via supplying the vNic's ID. An example is below:
|
|
548
537
|
|
|
549
538
|
[docs-import]: /docs/import/index.html
|
|
550
539
|
|
|
551
|
-
```sh
|
|
552
|
-
$ pulumi import vsphere:index/vnic:Vnic vnic host-123_vmk2
|
|
553
|
-
```
|
|
554
|
-
|
|
555
540
|
The above would import the vnic `vmk2` from host with ID `host-123`.
|
|
556
541
|
|
|
557
542
|
:param str resource_name: The name of the resource.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_vsphere
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.12.0a1725603256
|
|
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,8 @@ Keywords: pulumi,vsphere
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
|
13
13
|
Requires-Dist: semver >=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
15
14
|
|
|
16
15
|
[](https://github.com/pulumi/pulumi-vsphere/actions)
|
|
17
16
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,86 @@
|
|
|
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=WC8M100-W271RExuD3oeVqYziwTw32P7cNdkrIGQl8M,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=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.12.0a1725603256.dist-info/METADATA,sha256=px4c6_PBzdzjEEcKoeMPlr5RnPphA8xwrihvjXRZTPs,4958
|
|
84
|
+
pulumi_vsphere-4.12.0a1725603256.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
85
|
+
pulumi_vsphere-4.12.0a1725603256.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
86
|
+
pulumi_vsphere-4.12.0a1725603256.dist-info/RECORD,,
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
pulumi_vsphere/__init__.py,sha256=7zI4b3F2NEW8hz7TIVEWb1MZI_HqHV4GUM2o9lJKez0,10798
|
|
2
|
-
pulumi_vsphere/_inputs.py,sha256=Rx3S0DaG1pQdkHfDIrWyeB01V1ZNc_lt5nca9lUb5aU,183775
|
|
3
|
-
pulumi_vsphere/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
|
-
pulumi_vsphere/compute_cluster.py,sha256=nC43gSRf-Aznzmq_yxt5hGlI1nlwz91mimNK_RR9V-c,232890
|
|
5
|
-
pulumi_vsphere/compute_cluster_host_group.py,sha256=2pUMyC9r0vQS11yLxdcFIyQq4POf8VQmqMsgt8mDQN0,15605
|
|
6
|
-
pulumi_vsphere/compute_cluster_vm_affinity_rule.py,sha256=YUrv5Ro7_p9qNqrDPZLTHaa0fEt_SppTPMmLm1dHnA4,25709
|
|
7
|
-
pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py,sha256=BPhVHEzDWJRi0S0zo5p-RbOuP-yMI9wDmEXX7dCC2I4,18642
|
|
8
|
-
pulumi_vsphere/compute_cluster_vm_dependency_rule.py,sha256=hBTX8zYk7B0BoYUXNmj5Zk6uDY4P10p5G1LDElzEhjk,29673
|
|
9
|
-
pulumi_vsphere/compute_cluster_vm_group.py,sha256=3oNzZ6VNvDsVBYFHfWUt0x5SbxMIph8pBbrJO4lRZcY,23007
|
|
10
|
-
pulumi_vsphere/compute_cluster_vm_host_rule.py,sha256=RFsz1MW6aGxR4W0jE3iePqm5od_6MrJymx4o58KAUbc,26978
|
|
11
|
-
pulumi_vsphere/content_library.py,sha256=XW1jRVE1Oxt6ZkKD8FHpJlmdNA7MgjEjx2w176iTWy0,19738
|
|
12
|
-
pulumi_vsphere/content_library_item.py,sha256=HEw0sOVm7tL6QMTmBBDqHhZRKmFYXAa_5_P6U0zktZM,21094
|
|
13
|
-
pulumi_vsphere/custom_attribute.py,sha256=dd-TSTZBhZRd4kIMNawGvpqgFvp0CeWNQbesdNTJqn8,11759
|
|
14
|
-
pulumi_vsphere/datacenter.py,sha256=Kilc1gkC7VJXM3sC0Htsu-v4Dv_vHlqjNWCvjlJLGDQ,18960
|
|
15
|
-
pulumi_vsphere/datastore_cluster.py,sha256=RqdQ-Nq_ZabTpUvntNWu396num8oxf3uGD6wXibP1qg,84720
|
|
16
|
-
pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py,sha256=lapOmmiyy8KHGfNdw-Fp5FAKD5B0r-jUQHADWjt4V1E,23466
|
|
17
|
-
pulumi_vsphere/distributed_port_group.py,sha256=YGNGa6r99ZO90wqRN6CNlLBICtd60a8uBcc-1M4DdFw,144747
|
|
18
|
-
pulumi_vsphere/distributed_virtual_switch.py,sha256=onWoWCXlBojscjuQ7KP4eu4f89JGQtEB8wQX__5OaXs,258390
|
|
19
|
-
pulumi_vsphere/dpm_host_override.py,sha256=a-dOR21PIROpSGnaHEJYviVXznE7JtRg8Tvoa215_24,17703
|
|
20
|
-
pulumi_vsphere/drs_vm_override.py,sha256=hu0UMrNEoj9QQWiElIxCv_viyLbProf5uNr24G6y07s,19013
|
|
21
|
-
pulumi_vsphere/entity_permissions.py,sha256=z4PvbMWmQUXx_sK3bQHGp_FHXVHzedT4uh2ojdsjQ8o,13156
|
|
22
|
-
pulumi_vsphere/file.py,sha256=5nLX9atJuEC5bqbvsGd4CCV_hIve4J24qyezmrYcnV4,23571
|
|
23
|
-
pulumi_vsphere/folder.py,sha256=NiIjlAuM_ytWE9eE4bmr0VYS5b6pfm8ZHVkQHnDIuic,29476
|
|
24
|
-
pulumi_vsphere/get_compute_cluster.py,sha256=oaLinQa06PI7BNQ4MbE-s5jT5RLtayTqxPK17NW7vl0,6733
|
|
25
|
-
pulumi_vsphere/get_compute_cluster_host_group.py,sha256=Y-GnalPP-Ugz5Mb0lG0htyrXcgvmO53f-WAWhq52KHI,6936
|
|
26
|
-
pulumi_vsphere/get_content_library.py,sha256=Qt8BAfivtOZDJu8A8rdCDeEm1h0M6npKPfGf7P2M6Xc,3791
|
|
27
|
-
pulumi_vsphere/get_content_library_item.py,sha256=42ljrLFH_AqFps06_-EVcFdn6wlYjqX1b7bFlcu52BI,5265
|
|
28
|
-
pulumi_vsphere/get_custom_attribute.py,sha256=HJFOEOnTR8kcuFRLDRXiOo-297iOS2UD8MEiwyjHRTg,4989
|
|
29
|
-
pulumi_vsphere/get_datacenter.py,sha256=jpnozO6bGIhzbZc3IXfP7GUmchshROcM_dhIRhRzWLs,4627
|
|
30
|
-
pulumi_vsphere/get_datastore.py,sha256=UYdOgFwdIThPzVzbODS5N2_mSPSdIjL11Sd65pLvJbE,6709
|
|
31
|
-
pulumi_vsphere/get_datastore_cluster.py,sha256=EjiUVTOzp6LWWTL3j7AvjLIxpxHLO4XQ7JZ1-eyYEjY,5828
|
|
32
|
-
pulumi_vsphere/get_datastore_stats.py,sha256=vT8wVLxu-upvLyIIZNBJnKzec4nzjMLLGS6_74ttcfs,8425
|
|
33
|
-
pulumi_vsphere/get_distributed_virtual_switch.py,sha256=MRIEkO7_b7MSKaKQAfjjqNvFREWqkrRAHyVXUf_w9kY,7669
|
|
34
|
-
pulumi_vsphere/get_dynamic.py,sha256=qs9VnA66oqFDjZCDN8-1iTaA0N57IUv90vo9bcqOgSc,6750
|
|
35
|
-
pulumi_vsphere/get_folder.py,sha256=vq3eHsZKQY-ZYtLD7Pch4JpCO2Xj6AMAdqkJHwKNAg4,4531
|
|
36
|
-
pulumi_vsphere/get_guest_os_customization.py,sha256=PudWu3m-RrDJPvSdswSpMQjvN2MmW797qNn5M7jHIIc,6155
|
|
37
|
-
pulumi_vsphere/get_host.py,sha256=AKHrKw0YrWe-WAPkY4Te0nmpFMe8uluoR-GxD_1FtGI,5907
|
|
38
|
-
pulumi_vsphere/get_host_base_images.py,sha256=j9YmKDy3GyYCnxMxxwnp2wQOkErDQ1janLy3p8zS3eE,3470
|
|
39
|
-
pulumi_vsphere/get_host_pci_device.py,sha256=rt3bIXfYS4_mqq1-HkmUcY1-GurotqGq8RxKZ6caPlE,8525
|
|
40
|
-
pulumi_vsphere/get_host_thumbprint.py,sha256=tTQCMskcJ8OcvP22TueoAIet2J3QTJ2_ExDoMcxYUcA,6104
|
|
41
|
-
pulumi_vsphere/get_host_vgpu_profile.py,sha256=mXYEc4lmyricDsRJAPCFhN-p7xw4C9s6tjfuakPPsI8,7101
|
|
42
|
-
pulumi_vsphere/get_license.py,sha256=13TxVgQLj0htKVI-4NhBbUS3Hzm6t7NaHdFCGEqh8rU,6083
|
|
43
|
-
pulumi_vsphere/get_network.py,sha256=TDeyWPV_NM4P_gdVqzzhjX7so-FGOcTnRifqCaTPqEQ,8005
|
|
44
|
-
pulumi_vsphere/get_ovf_vm_template.py,sha256=AKSzlYHqC0VGVyaTNbM2tx1LqBnH7YdCwky53-_Hgv4,29139
|
|
45
|
-
pulumi_vsphere/get_policy.py,sha256=6WOqQiVKDghL6bchOPPRoRwiwo6E9q-OimCn5jzf7rI,3957
|
|
46
|
-
pulumi_vsphere/get_resource_pool.py,sha256=KhszMivarwVeorFAbs65FzR_FRKyT70IrZHrUkeI6lU,7926
|
|
47
|
-
pulumi_vsphere/get_role.py,sha256=pUG53pKCHdkDO5-q9o9w5mBikoUJCDIRq-c9rEUyZDM,6037
|
|
48
|
-
pulumi_vsphere/get_tag.py,sha256=l-QcqIxkIHmBimRMSuu-iTPlKeVKibrdwdecNPYfIhI,5502
|
|
49
|
-
pulumi_vsphere/get_tag_category.py,sha256=KTqgtnayt588RAjvH4FrArSJ9u3CWjS4Xa2wQd9d8HU,5773
|
|
50
|
-
pulumi_vsphere/get_vapp_container.py,sha256=y61jvZ1LvVTqOLb-aBFLwjSSshN_4URTBTXbm389RsU,5135
|
|
51
|
-
pulumi_vsphere/get_virtual_machine.py,sha256=Zk_9ItbIoMC9LFb_cNu8H1a_rLm20JDNMlmu5Kblngw,67395
|
|
52
|
-
pulumi_vsphere/get_vmfs_disks.py,sha256=NHHao8HWF2mnzZKZ0WoTbUOsrdMeS4ivp-hWtAritxU,7510
|
|
53
|
-
pulumi_vsphere/guest_os_customization.py,sha256=0raXcrdKGs5ZjwOYndtD6yRTub4nWWjOaXI-MMnqhcY,17127
|
|
54
|
-
pulumi_vsphere/ha_vm_override.py,sha256=Lvu7onjeQWliq_ONQIr9MFwDy4b8zGCZkQ2w0ggjZEI,59134
|
|
55
|
-
pulumi_vsphere/host.py,sha256=ztACxMQSacO8sE4og6vtkr8ehWz7zYbMiEGzaYXQNUU,50913
|
|
56
|
-
pulumi_vsphere/host_port_group.py,sha256=11PeLX7X2BbIZqOqNa0p089Hwhmfe79JlpvYnhNUe6w,57428
|
|
57
|
-
pulumi_vsphere/host_virtual_switch.py,sha256=MYNQ9Fv0XCbhn62fA0Gw-963D_xATYkUQtOCly4k61E,59955
|
|
58
|
-
pulumi_vsphere/license.py,sha256=DwsJQehrx_QetnhEotAXj9uMGN6s52Ex62seIN79WOc,12196
|
|
59
|
-
pulumi_vsphere/nas_datastore.py,sha256=CyB6l1bs6Lg28ZSXZOm63SAhaWC72PV0I1JgqbjNPe4,50328
|
|
60
|
-
pulumi_vsphere/offline_software_depot.py,sha256=O4VuQf4h2gobA55ipUN5N--o4-mPTakVX1Xpe6E4ek0,7553
|
|
61
|
-
pulumi_vsphere/outputs.py,sha256=LVPJlAlUREWF6x-KjLtWlDg_6mdw3fa94nksYXiYw_g,156768
|
|
62
|
-
pulumi_vsphere/provider.py,sha256=ebBbKo9SR-1kQc5iyRLFK9rtQhWlI_u-nAZrEFC83zA,20437
|
|
63
|
-
pulumi_vsphere/pulumi-plugin.json,sha256=b_tO9XI_EN7xndL50d9-z7LdA8EhPOANhakRBXb3xg8,67
|
|
64
|
-
pulumi_vsphere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
-
pulumi_vsphere/resource_pool.py,sha256=EoVpNGqrDYXjP7Zyg12-rGOJDav9BW4Z05GqLIEBsEY,43639
|
|
66
|
-
pulumi_vsphere/role.py,sha256=7AvmMTWG_J07ePZEu810mBVtVF1Vcndh0C8K5dn9CI8,9394
|
|
67
|
-
pulumi_vsphere/storage_drs_vm_override.py,sha256=MCP1RH74V9cVOtSMUA08DvZ8lAX3U19Gxqz4-TkQWA0,25746
|
|
68
|
-
pulumi_vsphere/supervisor.py,sha256=Kv6lXlK-lqO-uOTpJCfNXS_lNW60DMIxOqhR3-N2RG4,47094
|
|
69
|
-
pulumi_vsphere/tag.py,sha256=ACyCpYeEW_iyhosN8UcDYkzgwvq67g55v8patQa-1Ik,15167
|
|
70
|
-
pulumi_vsphere/tag_category.py,sha256=hfmCV_kprfnlgLD-6fjDcZNTt6-cuZFSgxc2TQbTQg0,17800
|
|
71
|
-
pulumi_vsphere/vapp_container.py,sha256=9hU9i-yf-TqqkCxIbcqSkYHaisHDQyI-aWQ5P-vJjzM,54219
|
|
72
|
-
pulumi_vsphere/vapp_entity.py,sha256=MdjmOZkG-amjGbAk_lnbSPJYhssZDSVSixeZt5fLw4A,34903
|
|
73
|
-
pulumi_vsphere/virtual_disk.py,sha256=A56NN7b1Bzm2MW5DG-SNBiJsxY2_I5ZqiRR1mquhSHU,32133
|
|
74
|
-
pulumi_vsphere/virtual_machine.py,sha256=1-u9YQ8NgzMtGr4SDOVRNiOCo-QuQIDt3v1dMrQ-_hM,220835
|
|
75
|
-
pulumi_vsphere/virtual_machine_class.py,sha256=lkJgYH2TEguJscKPbDPq5B9I0uVi5PD3K9FhMF4mxV8,17337
|
|
76
|
-
pulumi_vsphere/virtual_machine_snapshot.py,sha256=YuZAbiD0Pu48BGifXpGYzmEKzZsNsmQOB-6fmeINIdA,24086
|
|
77
|
-
pulumi_vsphere/vm_storage_policy.py,sha256=YyV9B6CVh23AoH-VxJ9lwZy78I63NbTSW6xWn-iYK00,20183
|
|
78
|
-
pulumi_vsphere/vmfs_datastore.py,sha256=sXzgqOY4I4UQAs7V3ENUW5tsLD_64m_xKi64W7_tMTw,45348
|
|
79
|
-
pulumi_vsphere/vnic.py,sha256=e6nihrNo_9qeRT4n0qBf3Rm29xrpFYr9KtIBy-VB_Y0,30891
|
|
80
|
-
pulumi_vsphere/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
81
|
-
pulumi_vsphere/config/__init__.pyi,sha256=iEdb3b8LpA1hgxsdfzIl9TB79_koUKrlg5KHtM-7xDg,1525
|
|
82
|
-
pulumi_vsphere/config/vars.py,sha256=qYPNSppleMGJaxbz3VnPRGlln--OcnHmvlXJIXq6t20,3384
|
|
83
|
-
pulumi_vsphere-4.11.5.dist-info/METADATA,sha256=TqnIGSlm2J8PvnFTIB79jbOwyvw3CF-Cmlt4sTJPSzg,5015
|
|
84
|
-
pulumi_vsphere-4.11.5.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
85
|
-
pulumi_vsphere-4.11.5.dist-info/top_level.txt,sha256=00BIE8zaYtdsw0_tBfXR8E5sTs3lRnwlcZ6lUdu4loI,15
|
|
86
|
-
pulumi_vsphere-4.11.5.dist-info/RECORD,,
|
{pulumi_vsphere-4.11.5.dist-info → pulumi_vsphere-4.12.0a1725603256.dist-info}/top_level.txt
RENAMED
|
File without changes
|